
    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_5519e887d915e360de0b1bbb.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.727000;font-style:normal;font-weight:normal;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_bc52b40826f523cb8301d8c1.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.137000;font-style:normal;font-weight:normal;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_bc0162fe2c43e028c7f3270a.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_f6779f87836dd75ac81d68eb.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:0.860000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00000;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:1.113000;font-style: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.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m3_c00000{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m2_c00000{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00000{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00000{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:-36.247127px;}
.ws2_c00000{word-spacing:-36.123736px;}
.ws1_c00000{word-spacing:-19.807492px;}
.ws3_c00000{word-spacing:0.000000px;}
._1_c00000{margin-left:-1.182730px;}
._0_c00000{width:1.074117px;}
._2_c00000{width:63.698966px;}
.fc0_c00000{color:rgb(35,31,32);}
.fs0_c00000{font-size:50.586940px;}
.fs3_c00000{font-size:65.550574px;}
.fs2_c00000{font-size:71.249972px;}
.fs4_c00000{font-size:94.762762px;}
.fs1_c00000{font-size:130.385348px;}
.y0_c00000{bottom:0.000000px;}
.y1_c00000{bottom:0.120938px;}
.ye_c00000{bottom:0.356514px;}
.yd_c00000{bottom:88.881300px;}
.yc_c00000{bottom:109.780269px;}
.yb_c00000{bottom:163.394597px;}
.ya_c00000{bottom:183.877989px;}
.y9_c00000{bottom:477.064572px;}
.y8_c00000{bottom:532.994599px;}
.y7_c00000{bottom:588.750327px;}
.y6_c00000{bottom:772.575253px;}
.y5_c00000{bottom:810.871738px;}
.y4_c00000{bottom:847.744723px;}
.y3_c00000{bottom:892.096706px;}
.y2_c00000{bottom:966.196676px;}
.ha_c00000{height:16.032060px;}
.h2_c00000{height:36.220249px;}
.hb_c00000{height:44.705491px;}
.h7_c00000{height:48.592481px;}
.h6_c00000{height:59.890066px;}
.h5_c00000{height:60.765382px;}
.h9_c00000{height:63.911224px;}
.h4_c00000{height:66.048724px;}
.h8_c00000{height:85.002198px;}
.h3_c00000{height:120.867217px;}
.h1_c00000{height:1262.879062px;}
.h0_c00000{height:1263.000000px;}
.w2_c00000{width:9.621000px;}
.w1_c00000{width:892.414744px;}
.w0_c00000{width:892.500000px;}
.x0_c00000{left:0.000000px;}
.x6_c00000{left:132.273191px;}
.x8_c00000{left:189.449278px;}
.x7_c00000{left:225.609535px;}
.x2_c00000{left:245.384246px;}
.x3_c00000{left:252.681743px;}
.x5_c00000{left:297.747725px;}
.xc_c00000{left:320.027400px;}
.xa_c00000{left:430.272843px;}
.xb_c00000{left:476.765153px;}
.x9_c00000{left:498.495644px;}
.x1_c00000{left:541.956627px;}
.x4_c00000{left:641.169587px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:-32.219668pt;}
.ws2_c00000{word-spacing:-32.109987pt;}
.ws1_c00000{word-spacing:-17.606660pt;}
.ws3_c00000{word-spacing:0.000000pt;}
._1_c00000{margin-left:-1.051316pt;}
._0_c00000{width:0.954771pt;}
._2_c00000{width:56.621303pt;}
.fs0_c00000{font-size:44.966169pt;}
.fs3_c00000{font-size:58.267177pt;}
.fs2_c00000{font-size:63.333308pt;}
.fs4_c00000{font-size:84.233566pt;}
.fs1_c00000{font-size:115.898087pt;}
.y0_c00000{bottom:0.000000pt;}
.y1_c00000{bottom:0.107500pt;}
.ye_c00000{bottom:0.316902pt;}
.yd_c00000{bottom:79.005600pt;}
.yc_c00000{bottom:97.582461pt;}
.yb_c00000{bottom:145.239642pt;}
.ya_c00000{bottom:163.447101pt;}
.y9_c00000{bottom:424.057397pt;}
.y8_c00000{bottom:473.772977pt;}
.y7_c00000{bottom:523.333624pt;}
.y6_c00000{bottom:686.733559pt;}
.y5_c00000{bottom:720.774878pt;}
.y4_c00000{bottom:753.550865pt;}
.y3_c00000{bottom:792.974849pt;}
.y2_c00000{bottom:858.841490pt;}
.ha_c00000{height:14.250720pt;}
.h2_c00000{height:32.195777pt;}
.hb_c00000{height:39.738215pt;}
.h7_c00000{height:43.193316pt;}
.h6_c00000{height:53.235614pt;}
.h5_c00000{height:54.013673pt;}
.h9_c00000{height:56.809977pt;}
.h4_c00000{height:58.709977pt;}
.h8_c00000{height:75.557509pt;}
.h3_c00000{height:107.437527pt;}
.h1_c00000{height:1122.559167pt;}
.h0_c00000{height:1122.666667pt;}
.w2_c00000{width:8.552000pt;}
.w1_c00000{width:793.257550pt;}
.w0_c00000{width:793.333333pt;}
.x0_c00000{left:0.000000pt;}
.x6_c00000{left:117.576170pt;}
.x8_c00000{left:168.399358pt;}
.x7_c00000{left:200.541809pt;}
.x2_c00000{left:218.119329pt;}
.x3_c00000{left:224.605993pt;}
.x5_c00000{left:264.664644pt;}
.xc_c00000{left:284.468800pt;}
.xa_c00000{left:382.464750pt;}
.xb_c00000{left:423.791247pt;}
.x9_c00000{left:443.107239pt;}
.x1_c00000{left:481.739224pt;}
.x4_c00000{left:569.928522pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfb039a27477127e5e6a5537.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.046000;font-style:normal;font-weight:normal;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_bc2da18164633488f097dd11.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.113000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.112000;font-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_c00001{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,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:-83.362767px;}
.ws1_c00001{word-spacing:-71.249972px;}
.ws2_c00001{word-spacing:-20.840692px;}
.ws3_c00001{word-spacing:0.000000px;}
._6_c00001{margin-left:-1175.809268px;}
._1_c00001{margin-left:-939.539483px;}
._3_c00001{margin-left:-119.018028px;}
._4_c00001{margin-left:-39.397244px;}
._5_c00001{margin-left:-19.414521px;}
._7_c00001{margin-left:-16.386710px;}
._0_c00001{margin-left:-1.018959px;}
._2_c00001{width:1.581259px;}
._c_c00001{width:3.057910px;}
._a_c00001{width:6.889229px;}
._b_c00001{width:7.890971px;}
._8_c00001{width:19.951865px;}
._9_c00001{width:21.301900px;}
.fc0_c00001{color:rgb(35,31,32);}
.fs1_c00001{font-size:71.249972px;}
.fs0_c00001{font-size:83.362767px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:6.826644px;}
.y16_c00001{bottom:231.503161px;}
.y15_c00001{bottom:354.405912px;}
.y14_c00001{bottom:415.858337px;}
.y13_c00001{bottom:518.456946px;}
.y12_c00001{bottom:559.425979px;}
.y11_c00001{bottom:600.392913px;}
.y10_c00001{bottom:661.666689px;}
.yf_c00001{bottom:723.121964px;}
.ye_c00001{bottom:753.402002px;}
.yd_c00001{bottom:825.721173px;}
.yc_c00001{bottom:907.654890px;}
.ya_c00001{bottom:952.539072px;}
.yb_c00001{bottom:952.544472px;}
.y9_c00001{bottom:996.360655px;}
.y8_c00001{bottom:1036.972388px;}
.y7_c00001{bottom:1068.677697px;}
.y6_c00001{bottom:1069.032776px;}
.y5_c00001{bottom:1098.958430px;}
.y4_c00001{bottom:1099.314914px;}
.y3_c00001{bottom:1127.281231px;}
.y2_c00001{bottom:1127.634902px;}
.h3_c00001{height:62.628725px;}
.h5_c00001{height:63.839974px;}
.h4_c00001{height:63.911224px;}
.h2_c00001{height:73.275872px;}
.h6_c00001{height:74.693039px;}
.h1_c00001{height:1249.830756px;}
.h0_c00001{height:1263.000000px;}
.w1_c00001{width:883.195846px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:1.541954px;}
.x8_c00001{left:137.156391px;}
.x2_c00001{left:175.810475px;}
.xd_c00001{left:340.752667px;}
.xb_c00001{left:348.773914px;}
.x9_c00001{left:370.142898px;}
.xc_c00001{left:396.328291px;}
.x3_c00001{left:410.578252px;}
.x4_c00001{left:440.681881px;}
.x5_c00001{left:450.834302px;}
.x6_c00001{left:456.001564px;}
.xa_c00001{left:617.021799px;}
.x7_c00001{left:750.080314px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:-74.100237pt;}
.ws1_c00001{word-spacing:-63.333308pt;}
.ws2_c00001{word-spacing:-18.525059pt;}
.ws3_c00001{word-spacing:0.000000pt;}
._6_c00001{margin-left:-1045.163794pt;}
._1_c00001{margin-left:-835.146207pt;}
._3_c00001{margin-left:-105.793803pt;}
._4_c00001{margin-left:-35.019772pt;}
._5_c00001{margin-left:-17.257352pt;}
._7_c00001{margin-left:-14.565964pt;}
._0_c00001{margin-left:-0.905741pt;}
._2_c00001{width:1.405564pt;}
._c_c00001{width:2.718142pt;}
._a_c00001{width:6.123759pt;}
._b_c00001{width:7.014197pt;}
._8_c00001{width:17.734991pt;}
._9_c00001{width:18.935022pt;}
.fs1_c00001{font-size:63.333308pt;}
.fs0_c00001{font-size:74.100237pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:6.068128pt;}
.y16_c00001{bottom:205.780587pt;}
.y15_c00001{bottom:315.027477pt;}
.y14_c00001{bottom:369.651855pt;}
.y13_c00001{bottom:460.850619pt;}
.y12_c00001{bottom:497.267537pt;}
.y11_c00001{bottom:533.682589pt;}
.y10_c00001{bottom:588.148168pt;}
.yf_c00001{bottom:642.775079pt;}
.ye_c00001{bottom:669.690668pt;}
.yd_c00001{bottom:733.974376pt;}
.yc_c00001{bottom:806.804347pt;}
.ya_c00001{bottom:846.701398pt;}
.yb_c00001{bottom:846.706198pt;}
.y9_c00001{bottom:885.653915pt;}
.y8_c00001{bottom:921.753234pt;}
.y7_c00001{bottom:949.935731pt;}
.y6_c00001{bottom:950.251356pt;}
.y5_c00001{bottom:976.851937pt;}
.y4_c00001{bottom:977.168812pt;}
.y3_c00001{bottom:1002.027761pt;}
.y2_c00001{bottom:1002.342135pt;}
.h3_c00001{height:55.669978pt;}
.h5_c00001{height:56.746644pt;}
.h4_c00001{height:56.809977pt;}
.h2_c00001{height:65.134108pt;}
.h6_c00001{height:66.393812pt;}
.h1_c00001{height:1110.960672pt;}
.h0_c00001{height:1122.666667pt;}
.w1_c00001{width:785.062974pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:1.370626pt;}
.x8_c00001{left:121.916792pt;}
.x2_c00001{left:156.275978pt;}
.xd_c00001{left:302.891260pt;}
.xb_c00001{left:310.021257pt;}
.x9_c00001{left:329.015909pt;}
.xc_c00001{left:352.291814pt;}
.x3_c00001{left:364.958446pt;}
.x4_c00001{left:391.717228pt;}
.x5_c00001{left:400.741602pt;}
.x6_c00001{left:405.334723pt;}
.xa_c00001{left:548.463821pt;}
.x7_c00001{left:666.738057pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc2da18164633488f097dd11.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.113000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
._0_c00002{margin-left:-1.057074px;}
.fc0_c00002{color:rgb(35,31,32);}
.fs0_c00002{font-size:118.985952px;}
.y0_c00002{bottom:0.000000px;}
.y1_c00002{bottom:0.120938px;}
.y3_c00002{bottom:405.107050px;}
.y2_c00002{bottom:456.408380px;}
.h2_c00002{height:106.730399px;}
.h1_c00002{height:1262.879062px;}
.h0_c00002{height:1263.000000px;}
.w1_c00002{width:892.414744px;}
.w0_c00002{width:892.500000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:429.027672px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
._0_c00002{margin-left:-0.939621pt;}
.fs0_c00002{font-size:105.765291pt;}
.y0_c00002{bottom:0.000000pt;}
.y1_c00002{bottom:0.107500pt;}
.y3_c00002{bottom:360.095156pt;}
.y2_c00002{bottom:405.696338pt;}
.h2_c00002{height:94.871466pt;}
.h1_c00002{height:1122.559167pt;}
.h0_c00002{height:1122.666667pt;}
.w1_c00002{width:793.257550pt;}
.w0_c00002{width:793.333333pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:381.357931pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc2da18164633488f097dd11.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.113000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:0.632000;font-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_c00003{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00003{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,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;}
._1_c00003{margin-left:-1.004042px;}
._0_c00003{width:1.083637px;}
._3_c00003{width:125.687149px;}
._2_c00003{width:158.999039px;}
.fc0_c00003{color:rgb(35,31,32);}
.fs3_c00003{font-size:65.550574px;}
.fs2_c00003{font-size:83.362767px;}
.fs0_c00003{font-size:94.762762px;}
.fs1_c00003{font-size:118.985952px;}
.y0_c00003{bottom:0.000000px;}
.y1_c00003{bottom:0.120938px;}
.y9_c00003{bottom:3.201414px;}
.y6_c00003{bottom:121.715164px;}
.y5_c00003{bottom:175.505292px;}
.yb_c00003{bottom:327.445781px;}
.ya_c00003{bottom:390.679906px;}
.y8_c00003{bottom:461.696400px;}
.y7_c00003{bottom:484.908368px;}
.y4_c00003{bottom:865.554516px;}
.y3_c00003{bottom:921.484544px;}
.y2_c00003{bottom:977.238172px;}
.h5_c00003{height:18.882000px;}
.h6_c00003{height:41.427963px;}
.h4_c00003{height:74.776402px;}
.h2_c00003{height:85.002198px;}
.h3_c00003{height:106.730399px;}
.h1_c00003{height:1262.879062px;}
.h0_c00003{height:1263.000000px;}
.w2_c00003{width:9.619200px;}
.w1_c00003{width:892.414744px;}
.w0_c00003{width:892.500000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:129.244242px;}
.x3_c00003{left:189.269232px;}
.x2_c00003{left:225.432338px;}
.x6_c00003{left:241.998747px;}
.x5_c00003{left:277.445233px;}
.x4_c00003{left:338.718347px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._1_c00003{margin-left:-0.892481pt;}
._0_c00003{width:0.963233pt;}
._3_c00003{width:111.721910pt;}
._2_c00003{width:141.332479pt;}
.fs3_c00003{font-size:58.267177pt;}
.fs2_c00003{font-size:74.100237pt;}
.fs0_c00003{font-size:84.233566pt;}
.fs1_c00003{font-size:105.765291pt;}
.y0_c00003{bottom:0.000000pt;}
.y1_c00003{bottom:0.107500pt;}
.y9_c00003{bottom:2.845701pt;}
.y6_c00003{bottom:108.191257pt;}
.y5_c00003{bottom:156.004704pt;}
.yb_c00003{bottom:291.062917pt;}
.ya_c00003{bottom:347.271028pt;}
.y8_c00003{bottom:410.396800pt;}
.y7_c00003{bottom:431.029661pt;}
.y4_c00003{bottom:769.381792pt;}
.y3_c00003{bottom:819.097372pt;}
.y2_c00003{bottom:868.656152pt;}
.h5_c00003{height:16.784000pt;}
.h6_c00003{height:36.824856pt;}
.h4_c00003{height:66.467913pt;}
.h2_c00003{height:75.557509pt;}
.h3_c00003{height:94.871466pt;}
.h1_c00003{height:1122.559167pt;}
.h0_c00003{height:1122.666667pt;}
.w2_c00003{width:8.550400pt;}
.w1_c00003{width:793.257550pt;}
.w0_c00003{width:793.333333pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:114.883771pt;}
.x3_c00003{left:168.239317pt;}
.x2_c00003{left:200.384300pt;}
.x6_c00003{left:215.109997pt;}
.x5_c00003{left:246.617985pt;}
.x4_c00003{left:301.082975pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc2da18164633488f097dd11.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.113000;font-style:normal;font-weight:normal;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_280282e5a74f6d0762ab891c.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:0.864000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.112000;font-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_c00004{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00004{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00004{word-spacing:-33.234141px;}
.ws0_c00004{word-spacing:-16.387643px;}
.ws2_c00004{word-spacing:0.000000px;}
._e_c00004{margin-left:-2.289179px;}
._1_c00004{margin-left:-1.089999px;}
._0_c00004{width:1.064642px;}
._c_c00004{width:3.880754px;}
._7_c00004{width:5.425138px;}
._8_c00004{width:6.809910px;}
._d_c00004{width:7.828877px;}
._2_c00004{width:8.848866px;}
._3_c00004{width:10.203217px;}
._4_c00004{width:11.378687px;}
._5_c00004{width:12.814552px;}
._6_c00004{width:14.224777px;}
._f_c00004{width:15.695157px;}
._10_c00004{width:16.756309px;}
._a_c00004{width:19.095819px;}
._9_c00004{width:20.417975px;}
._b_c00004{width:21.675292px;}
.fc1_c00004{color:rgb(35,31,32);}
.fc0_c00004{color:rgb(69,93,36);}
.fs1_c00004{font-size:65.550574px;}
.fs0_c00004{font-size:71.249972px;}
.y0_c00004{bottom:0.000000px;}
.y1_c00004{bottom:6.826644px;}
.y1c_c00004{bottom:119.104006px;}
.y1b_c00004{bottom:149.919843px;}
.y1a_c00004{bottom:211.372269px;}
.y19_c00004{bottom:242.011706px;}
.y18_c00004{bottom:272.826194px;}
.y17_c00004{bottom:303.462032px;}
.y16_c00004{bottom:334.277870px;}
.y15_c00004{bottom:364.915807px;}
.y14_c00004{bottom:395.731645px;}
.y13_c00004{bottom:426.367483px;}
.y12_c00004{bottom:457.182570px;}
.y11_c00004{bottom:487.818408px;}
.y10_c00004{bottom:549.268734px;}
.yf_c00004{bottom:580.088171px;}
.ye_c00004{bottom:610.725359px;}
.yd_c00004{bottom:672.177784px;}
.yc_c00004{bottom:702.994972px;}
.yb_c00004{bottom:733.631560px;}
.ya_c00004{bottom:773.707044px;}
.y9_c00004{bottom:850.297913px;}
.y8_c00004{bottom:880.401551px;}
.y7_c00004{bottom:910.150439px;}
.y6_c00004{bottom:946.843725px;}
.y5_c00004{bottom:983.360460px;}
.y4_c00004{bottom:1057.992480px;}
.y3_c00004{bottom:1103.592912px;}
.y2_c00004{bottom:1149.189894px;}
.h5_c00004{height:44.967694px;}
.h3_c00004{height:58.798865px;}
.h4_c00004{height:58.801865px;}
.h6_c00004{height:63.839974px;}
.h2_c00004{height:63.911224px;}
.h1_c00004{height:1249.830756px;}
.h0_c00004{height:1263.000000px;}
.w1_c00004{width:883.195846px;}
.w0_c00004{width:892.500000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:1.541954px;}
.xb_c00004{left:105.271803px;}
.x8_c00004{left:110.618099px;}
.x7_c00004{left:136.618357px;}
.x2_c00004{left:206.267963px;}
.x4_c00004{left:251.155436px;}
.x3_c00004{left:278.407769px;}
.x6_c00004{left:285.173416px;}
.x5_c00004{left:347.696907px;}
.x9_c00004{left:349.302251px;}
.xa_c00004{left:376.730895px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws1_c00004{word-spacing:-29.541459pt;}
.ws0_c00004{word-spacing:-14.566794pt;}
.ws2_c00004{word-spacing:0.000000pt;}
._e_c00004{margin-left:-2.034826pt;}
._1_c00004{margin-left:-0.968888pt;}
._0_c00004{width:0.946348pt;}
._c_c00004{width:3.449559pt;}
._7_c00004{width:4.822344pt;}
._8_c00004{width:6.053253pt;}
._d_c00004{width:6.959002pt;}
._2_c00004{width:7.865659pt;}
._3_c00004{width:9.069526pt;}
._4_c00004{width:10.114388pt;}
._5_c00004{width:11.390713pt;}
._6_c00004{width:12.644246pt;}
._f_c00004{width:13.951251pt;}
._10_c00004{width:14.894497pt;}
._a_c00004{width:16.974061pt;}
._9_c00004{width:18.149311pt;}
._b_c00004{width:19.266926pt;}
.fs1_c00004{font-size:58.267177pt;}
.fs0_c00004{font-size:63.333308pt;}
.y0_c00004{bottom:0.000000pt;}
.y1_c00004{bottom:6.068128pt;}
.y1c_c00004{bottom:105.870227pt;}
.y1b_c00004{bottom:133.262083pt;}
.y1a_c00004{bottom:187.886461pt;}
.y19_c00004{bottom:215.121517pt;}
.y18_c00004{bottom:242.512173pt;}
.y17_c00004{bottom:269.744028pt;}
.y16_c00004{bottom:297.135884pt;}
.y15_c00004{bottom:324.369606pt;}
.y14_c00004{bottom:351.761462pt;}
.y13_c00004{bottom:378.993318pt;}
.y12_c00004{bottom:406.384507pt;}
.y11_c00004{bottom:433.616363pt;}
.y10_c00004{bottom:488.238874pt;}
.yf_c00004{bottom:515.633930pt;}
.ye_c00004{bottom:542.866986pt;}
.yd_c00004{bottom:597.491364pt;}
.yc_c00004{bottom:624.884420pt;}
.yb_c00004{bottom:652.116942pt;}
.ya_c00004{bottom:687.739594pt;}
.y9_c00004{bottom:755.820367pt;}
.y8_c00004{bottom:782.579157pt;}
.y7_c00004{bottom:809.022613pt;}
.y6_c00004{bottom:841.638866pt;}
.y5_c00004{bottom:874.098187pt;}
.y4_c00004{bottom:940.437760pt;}
.y3_c00004{bottom:980.971477pt;}
.y2_c00004{bottom:1021.502128pt;}
.h5_c00004{height:39.971283pt;}
.h3_c00004{height:52.265657pt;}
.h4_c00004{height:52.268324pt;}
.h6_c00004{height:56.746644pt;}
.h2_c00004{height:56.809977pt;}
.h1_c00004{height:1110.960672pt;}
.h0_c00004{height:1122.666667pt;}
.w1_c00004{width:785.062974pt;}
.w0_c00004{width:793.333333pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:1.370626pt;}
.xb_c00004{left:93.574936pt;}
.x8_c00004{left:98.327199pt;}
.x7_c00004{left:121.438539pt;}
.x2_c00004{left:183.349301pt;}
.x4_c00004{left:223.249277pt;}
.x3_c00004{left:247.473572pt;}
.x6_c00004{left:253.487481pt;}
.x5_c00004{left:309.063917pt;}
.x9_c00004{left:310.490890pt;}
.xa_c00004{left:334.871907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,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;}
._8_c00005{margin-left:-2.693739px;}
._3_c00005{margin-left:-1.039427px;}
._1_c00005{width:1.003700px;}
._6_c00005{width:3.209787px;}
._5_c00005{width:4.749032px;}
._2_c00005{width:6.197371px;}
._0_c00005{width:9.383197px;}
._7_c00005{width:19.031146px;}
._4_c00005{width:78.431969px;}
.fc0_c00005{color:rgb(35,31,32);}
.fs0_c00005{font-size:71.249972px;}
.y0_c00005{bottom:0.000000px;}
.y1_c00005{bottom:0.120938px;}
.y13_c00005{bottom:480.631120px;}
.y12_c00005{bottom:511.268308px;}
.y11_c00005{bottom:542.084146px;}
.y10_c00005{bottom:634.173759px;}
.yf_c00005{bottom:664.986746px;}
.ye_c00005{bottom:695.623334px;}
.yd_c00005{bottom:726.442022px;}
.yc_c00005{bottom:757.079960px;}
.yb_c00005{bottom:787.894447px;}
.ya_c00005{bottom:818.533135px;}
.y9_c00005{bottom:849.346123px;}
.y8_c00005{bottom:879.984060px;}
.y7_c00005{bottom:910.798548px;}
.y6_c00005{bottom:941.435736px;}
.y5_c00005{bottom:1002.888161px;}
.y4_c00005{bottom:1033.522649px;}
.y3_c00005{bottom:1064.163437px;}
.y2_c00005{bottom:1094.800625px;}
.h2_c00005{height:63.839974px;}
.h1_c00005{height:1262.879062px;}
.h0_c00005{height:1263.000000px;}
.w1_c00005{width:892.414744px;}
.w0_c00005{width:892.500000px;}
.x0_c00005{left:0.000000px;}
.x4_c00005{left:106.802300px;}
.x1_c00005{left:120.338446px;}
.x2_c00005{left:133.517055px;}
.x3_c00005{left:160.234058px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
._8_c00005{margin-left:-2.394435pt;}
._3_c00005{margin-left:-0.923935pt;}
._1_c00005{width:0.892177pt;}
._6_c00005{width:2.853144pt;}
._5_c00005{width:4.221362pt;}
._2_c00005{width:5.508774pt;}
._0_c00005{width:8.340620pt;}
._7_c00005{width:16.916574pt;}
._4_c00005{width:69.717305pt;}
.fs0_c00005{font-size:63.333308pt;}
.y0_c00005{bottom:0.000000pt;}
.y1_c00005{bottom:0.107500pt;}
.y13_c00005{bottom:427.227662pt;}
.y12_c00005{bottom:454.460718pt;}
.y11_c00005{bottom:481.852574pt;}
.y10_c00005{bottom:563.710008pt;}
.yf_c00005{bottom:591.099330pt;}
.ye_c00005{bottom:618.331853pt;}
.yd_c00005{bottom:645.726242pt;}
.yc_c00005{bottom:672.959964pt;}
.yb_c00005{bottom:700.350620pt;}
.ya_c00005{bottom:727.585009pt;}
.y9_c00005{bottom:754.974331pt;}
.y8_c00005{bottom:782.208054pt;}
.y7_c00005{bottom:809.598709pt;}
.y6_c00005{bottom:836.831765pt;}
.y5_c00005{bottom:891.456143pt;}
.y4_c00005{bottom:918.686799pt;}
.y3_c00005{bottom:945.923055pt;}
.y2_c00005{bottom:973.156111pt;}
.h2_c00005{height:56.746644pt;}
.h1_c00005{height:1122.559167pt;}
.h0_c00005{height:1122.666667pt;}
.w1_c00005{width:793.257550pt;}
.w0_c00005{width:793.333333pt;}
.x0_c00005{left:0.000000pt;}
.x4_c00005{left:94.935378pt;}
.x1_c00005{left:106.967507pt;}
.x2_c00005{left:118.681826pt;}
.x3_c00005{left:142.430274pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc2da18164633488f097dd11.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:0.000000px;}
._0_c00006{width:1.189628px;}
.fc0_c00006{color:rgb(35,31,32);}
.fs0_c00006{font-size:106.873757px;}
.y0_c00006{bottom:0.000000px;}
.y1_c00006{bottom:0.120938px;}
.y2_c00006{bottom:561.678338px;}
.h2_c00006{height:95.865760px;}
.h1_c00006{height:1262.879062px;}
.h0_c00006{height:1263.000000px;}
.w1_c00006{width:892.414744px;}
.w0_c00006{width:892.500000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:108.404900px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
._0_c00006{width:1.057447pt;}
.fs0_c00006{font-size:94.998895pt;}
.y0_c00006{bottom:0.000000pt;}
.y1_c00006{bottom:0.107500pt;}
.y2_c00006{bottom:499.269634pt;}
.h2_c00006{height:85.214009pt;}
.h1_c00006{height:1122.559167pt;}
.h0_c00006{height:1122.666667pt;}
.w1_c00006{width:793.257550pt;}
.w0_c00006{width:793.333333pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00007;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00007{font-family:ff5_c00007;line-height:1.112000;font-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_c00007{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00007{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls1_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:0.009894px;}
.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:-17.812493px;}
.ws5_c00007{word-spacing:-16.387643px;}
.ws7_c00007{word-spacing:-4.257078px;}
.ws3_c00007{word-spacing:-3.572618px;}
.ws6_c00007{word-spacing:-3.545696px;}
.ws2_c00007{word-spacing:-3.545368px;}
.ws1_c00007{word-spacing:-3.544975px;}
.ws4_c00007{word-spacing:-3.544647px;}
.ws8_c00007{word-spacing:0.000000px;}
._1_c00007{margin-left:-1.265599px;}
._0_c00007{width:1.056287px;}
._7_c00007{width:3.074226px;}
._3_c00007{width:4.300929px;}
._4_c00007{width:6.345145px;}
._a_c00007{width:7.762692px;}
._6_c00007{width:8.868345px;}
._2_c00007{width:10.513834px;}
._9_c00007{width:12.599882px;}
._5_c00007{width:13.974475px;}
._8_c00007{width:28.333561px;}
.fc1_c00007{color:rgb(105,148,45);}
.fc0_c00007{color:rgb(35,31,32);}
.fs2_c00007{font-size:59.136936px;}
.fs1_c00007{font-size:65.550574px;}
.fs0_c00007{font-size:71.249972px;}
.fs3_c00007{font-size:83.362767px;}
.y0_c00007{bottom:0.000000px;}
.y3_c00007{bottom:0.120938px;}
.y2_c00007{bottom:4.277064px;}
.y8_c00007{bottom:6.826644px;}
.ya_c00007{bottom:66.910327px;}
.y1_c00007{bottom:86.030100px;}
.y32_c00007{bottom:119.811705px;}
.y31_c00007{bottom:138.873398px;}
.y30_c00007{bottom:166.660887px;}
.y2f_c00007{bottom:194.269126px;}
.y2e_c00007{bottom:213.147968px;}
.y2d_c00007{bottom:240.760407px;}
.y2c_c00007{bottom:268.369246px;}
.y2b_c00007{bottom:296.160485px;}
.y2a_c00007{bottom:313.255528px;}
.y29_c00007{bottom:330.360471px;}
.y28_c00007{bottom:347.457014px;}
.y27_c00007{bottom:364.381208px;}
.y26_c00007{bottom:381.481201px;}
.y25_c00007{bottom:398.581194px;}
.y24_c00007{bottom:415.680587px;}
.y23_c00007{bottom:443.290176px;}
.y22_c00007{bottom:471.074665px;}
.y21_c00007{bottom:488.174658px;}
.y20_c00007{bottom:505.094351px;}
.y1f_c00007{bottom:523.794694px;}
.y1e_c00007{bottom:551.585633px;}
.y1d_c00007{bottom:579.193122px;}
.y1c_c00007{bottom:619.633105px;}
.y1b_c00007{bottom:651.694693px;}
.y1a_c00007{bottom:668.792586px;}
.y19_c00007{bottom:685.892579px;}
.y18_c00007{bottom:702.992572px;}
.y17_c00007{bottom:720.092565px;}
.y16_c00007{bottom:737.014058px;}
.y15_c00007{bottom:764.621547px;}
.y14_c00007{bottom:792.412036px;}
.y13_c00007{bottom:809.512029px;}
.y12_c00007{bottom:826.432023px;}
.y11_c00007{bottom:867.043006px;}
.y10_c00007{bottom:898.922944px;}
.yf_c00007{bottom:926.712533px;}
.ye_c00007{bottom:954.323472px;}
.yd_c00007{bottom:994.755355px;}
.yc_c00007{bottom:1053.537932px;}
.yb_c00007{bottom:1077.764422px;}
.y9_c00007{bottom:1094.327416px;}
.y7_c00007{bottom:1125.436612px;}
.y6_c00007{bottom:1146.276554px;}
.y5_c00007{bottom:1166.762796px;}
.y4_c00007{bottom:1187.245588px;}
.h1_c00007{height:19.950480px;}
.h8_c00007{height:37.906776px;}
.h6_c00007{height:42.017918px;}
.hb_c00007{height:52.986695px;}
.h7_c00007{height:58.667764px;}
.ha_c00007{height:58.929966px;}
.h2_c00007{height:63.768724px;}
.h4_c00007{height:64.053724px;}
.h9_c00007{height:74.943127px;}
.h5_c00007{height:1249.830756px;}
.h3_c00007{height:1262.879062px;}
.h0_c00007{height:1263.000000px;}
.w6_c00007{width:5.346000px;}
.w4_c00007{width:7.837200px;}
.wa_c00007{width:7.839000px;}
.w2_c00007{width:7.844400px;}
.w5_c00007{width:8.902800px;}
.wc_c00007{width:8.904600px;}
.w7_c00007{width:8.906400px;}
.w9_c00007{width:16.923600px;}
.w3_c00007{width:21.726000px;}
.w1_c00007{width:21.907800px;}
.w8_c00007{width:27.790200px;}
.wb_c00007{width:28.672200px;}
.we_c00007{width:883.195846px;}
.wd_c00007{width:892.414744px;}
.w0_c00007{width:892.500000px;}
.x0_c00007{left:0.000000px;}
.x12_c00007{left:1.541954px;}
.x13_c00007{left:112.753050px;}
.x15_c00007{left:127.537645px;}
.x16_c00007{left:142.500139px;}
.x17_c00007{left:169.931692px;}
.xf_c00007{left:252.504495px;}
.xe_c00007{left:270.140236px;}
.x14_c00007{left:318.662918px;}
.x11_c00007{left:373.451028px;}
.x10_c00007{left:420.296029px;}
.x1_c00007{left:582.226200px;}
.x2_c00007{left:604.134000px;}
.x3_c00007{left:611.978400px;}
.x4_c00007{left:633.704400px;}
.x5_c00007{left:641.541600px;}
.x6_c00007{left:650.444400px;}
.x7_c00007{left:655.434000px;}
.x8_c00007{left:667.902600px;}
.x9_c00007{left:699.786000px;}
.xa_c00007{left:714.931200px;}
.xb_c00007{left:722.770200px;}
.xc_c00007{left:751.442400px;}
.xd_c00007{left:756.788400px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls1_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:0.008794pt;}
.ws0_c00007{word-spacing:-15.833327pt;}
.ws5_c00007{word-spacing:-14.566794pt;}
.ws7_c00007{word-spacing:-3.784069pt;}
.ws3_c00007{word-spacing:-3.175660pt;}
.ws6_c00007{word-spacing:-3.151730pt;}
.ws2_c00007{word-spacing:-3.151439pt;}
.ws1_c00007{word-spacing:-3.151089pt;}
.ws4_c00007{word-spacing:-3.150798pt;}
.ws8_c00007{word-spacing:0.000000pt;}
._1_c00007{margin-left:-1.124976pt;}
._0_c00007{width:0.938922pt;}
._7_c00007{width:2.732645pt;}
._3_c00007{width:3.823048pt;}
._4_c00007{width:5.640129pt;}
._a_c00007{width:6.900171pt;}
._6_c00007{width:7.882973pt;}
._2_c00007{width:9.345630pt;}
._9_c00007{width:11.199895pt;}
._5_c00007{width:12.421756pt;}
._8_c00007{width:25.185388pt;}
.fs2_c00007{font-size:52.566166pt;}
.fs1_c00007{font-size:58.267177pt;}
.fs0_c00007{font-size:63.333308pt;}
.fs3_c00007{font-size:74.100237pt;}
.y0_c00007{bottom:0.000000pt;}
.y3_c00007{bottom:0.107500pt;}
.y2_c00007{bottom:3.801835pt;}
.y8_c00007{bottom:6.068128pt;}
.ya_c00007{bottom:59.475846pt;}
.y1_c00007{bottom:76.471200pt;}
.y32_c00007{bottom:106.499294pt;}
.y31_c00007{bottom:123.443020pt;}
.y30_c00007{bottom:148.143010pt;}
.y2f_c00007{bottom:172.683667pt;}
.y2e_c00007{bottom:189.464860pt;}
.y2d_c00007{bottom:214.009251pt;}
.y2c_c00007{bottom:238.550441pt;}
.y2b_c00007{bottom:263.253764pt;}
.y2a_c00007{bottom:278.449358pt;}
.y29_c00007{bottom:293.653752pt;}
.y28_c00007{bottom:308.850679pt;}
.y27_c00007{bottom:323.894407pt;}
.y26_c00007{bottom:339.094401pt;}
.y25_c00007{bottom:354.294395pt;}
.y24_c00007{bottom:369.493855pt;}
.y23_c00007{bottom:394.035712pt;}
.y22_c00007{bottom:418.733035pt;}
.y21_c00007{bottom:433.933029pt;}
.y20_c00007{bottom:448.972757pt;}
.y1f_c00007{bottom:465.595283pt;}
.y1e_c00007{bottom:490.298340pt;}
.y1d_c00007{bottom:514.838330pt;}
.y1c_c00007{bottom:550.784983pt;}
.y1b_c00007{bottom:579.284171pt;}
.y1a_c00007{bottom:594.482298pt;}
.y19_c00007{bottom:609.682292pt;}
.y18_c00007{bottom:624.882286pt;}
.y17_c00007{bottom:640.082280pt;}
.y16_c00007{bottom:655.123608pt;}
.y15_c00007{bottom:679.663598pt;}
.y14_c00007{bottom:704.366254pt;}
.y13_c00007{bottom:719.566248pt;}
.y12_c00007{bottom:734.606242pt;}
.y11_c00007{bottom:770.704895pt;}
.y10_c00007{bottom:799.042617pt;}
.yf_c00007{bottom:823.744473pt;}
.ye_c00007{bottom:848.287530pt;}
.yd_c00007{bottom:884.226983pt;}
.yc_c00007{bottom:936.478162pt;}
.yb_c00007{bottom:958.012820pt;}
.y9_c00007{bottom:972.735480pt;}
.y7_c00007{bottom:1000.388100pt;}
.y6_c00007{bottom:1018.912492pt;}
.y5_c00007{bottom:1037.122485pt;}
.y4_c00007{bottom:1055.329411pt;}
.h1_c00007{height:17.733760pt;}
.h8_c00007{height:33.694912pt;}
.h6_c00007{height:37.349260pt;}
.hb_c00007{height:47.099284pt;}
.h7_c00007{height:52.149123pt;}
.ha_c00007{height:52.382192pt;}
.h2_c00007{height:56.683311pt;}
.h4_c00007{height:56.936644pt;}
.h9_c00007{height:66.616113pt;}
.h5_c00007{height:1110.960672pt;}
.h3_c00007{height:1122.559167pt;}
.h0_c00007{height:1122.666667pt;}
.w6_c00007{width:4.752000pt;}
.w4_c00007{width:6.966400pt;}
.wa_c00007{width:6.968000pt;}
.w2_c00007{width:6.972800pt;}
.w5_c00007{width:7.913600pt;}
.wc_c00007{width:7.915200pt;}
.w7_c00007{width:7.916800pt;}
.w9_c00007{width:15.043200pt;}
.w3_c00007{width:19.312000pt;}
.w1_c00007{width:19.473600pt;}
.w8_c00007{width:24.702400pt;}
.wb_c00007{width:25.486400pt;}
.we_c00007{width:785.062974pt;}
.wd_c00007{width:793.257550pt;}
.w0_c00007{width:793.333333pt;}
.x0_c00007{left:0.000000pt;}
.x12_c00007{left:1.370626pt;}
.x13_c00007{left:100.224934pt;}
.x15_c00007{left:113.366795pt;}
.x16_c00007{left:126.666790pt;}
.x17_c00007{left:151.050393pt;}
.xf_c00007{left:224.448440pt;}
.xe_c00007{left:240.124654pt;}
.x14_c00007{left:283.255927pt;}
.x11_c00007{left:331.956469pt;}
.x10_c00007{left:373.596470pt;}
.x1_c00007{left:517.534400pt;}
.x2_c00007{left:537.008000pt;}
.x3_c00007{left:543.980800pt;}
.x4_c00007{left:563.292800pt;}
.x5_c00007{left:570.259200pt;}
.x6_c00007{left:578.172800pt;}
.x7_c00007{left:582.608000pt;}
.x8_c00007{left:593.691200pt;}
.x9_c00007{left:622.032000pt;}
.xa_c00007{left:635.494400pt;}
.xb_c00007{left:642.462400pt;}
.xc_c00007{left:667.948800pt;}
.xd_c00007{left:672.700800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_cea00cad088ae0172acf5904.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00008;src:url('chunks/assets/font_bc0162fe2c43e028c7f3270a.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:0.632000;font-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_c00008{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls1_c00008{letter-spacing:0.000000px;}
.ls0_c00008{letter-spacing:0.009894px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:-17.812493px;}
.ws1_c00008{word-spacing:-3.544975px;}
.ws2_c00008{word-spacing:0.000000px;}
._1_c00008{margin-left:-1.018125px;}
._0_c00008{width:1.056287px;}
._7_c00008{width:2.522549px;}
._3_c00008{width:9.197722px;}
._6_c00008{width:10.385298px;}
._8_c00008{width:12.645654px;}
._4_c00008{width:15.473719px;}
._2_c00008{width:17.215518px;}
._5_c00008{width:19.447357px;}
.fc1_c00008{color:rgb(105,148,45);}
.fc0_c00008{color:rgb(35,31,32);}
.fs1_c00008{font-size:65.550574px;}
.fs0_c00008{font-size:71.249972px;}
.fs2_c00008{font-size:83.362767px;}
.y0_c00008{bottom:0.000000px;}
.y3_c00008{bottom:0.120938px;}
.y2_c00008{bottom:4.277064px;}
.y8_c00008{bottom:6.826644px;}
.ya_c00008{bottom:66.910327px;}
.y1_c00008{bottom:86.030100px;}
.y14_c00008{bottom:725.080063px;}
.y13_c00008{bottom:753.402302px;}
.y12_c00008{bottom:798.290534px;}
.y11_c00008{bottom:830.173021px;}
.y10_c00008{bottom:857.780510px;}
.yf_c00008{bottom:898.394944px;}
.ye_c00008{bottom:943.101076px;}
.yd_c00008{bottom:987.812008px;}
.yc_c00008{bottom:1032.522940px;}
.yb_c00008{bottom:1074.197424px;}
.y9_c00008{bottom:1094.327416px;}
.y7_c00008{bottom:1125.436612px;}
.y6_c00008{bottom:1146.276554px;}
.y5_c00008{bottom:1166.762796px;}
.y4_c00008{bottom:1187.245588px;}
.h1_c00008{height:19.950480px;}
.ha_c00008{height:41.427963px;}
.h6_c00008{height:42.017918px;}
.h7_c00008{height:58.667764px;}
.h9_c00008{height:58.929966px;}
.h2_c00008{height:63.768724px;}
.h4_c00008{height:64.053724px;}
.h8_c00008{height:74.943127px;}
.h5_c00008{height:1249.830756px;}
.h3_c00008{height:1262.879062px;}
.h0_c00008{height:1263.000000px;}
.w6_c00008{width:5.346000px;}
.w4_c00008{width:7.837200px;}
.wa_c00008{width:7.839000px;}
.w2_c00008{width:7.844400px;}
.w5_c00008{width:8.902800px;}
.wc_c00008{width:8.904600px;}
.w7_c00008{width:8.906400px;}
.w9_c00008{width:16.923600px;}
.w3_c00008{width:21.726000px;}
.w1_c00008{width:21.907800px;}
.w8_c00008{width:27.790200px;}
.wb_c00008{width:28.672200px;}
.we_c00008{width:883.195846px;}
.wd_c00008{width:892.414744px;}
.w0_c00008{width:892.500000px;}
.x0_c00008{left:0.000000px;}
.x12_c00008{left:1.541954px;}
.x13_c00008{left:112.753050px;}
.x14_c00008{left:127.537645px;}
.xf_c00008{left:252.504495px;}
.xe_c00008{left:270.140236px;}
.x11_c00008{left:373.451028px;}
.x10_c00008{left:420.296029px;}
.x1_c00008{left:582.226200px;}
.x2_c00008{left:604.134000px;}
.x3_c00008{left:611.978400px;}
.x4_c00008{left:633.704400px;}
.x5_c00008{left:641.541600px;}
.x6_c00008{left:650.444400px;}
.x7_c00008{left:655.434000px;}
.x8_c00008{left:667.902600px;}
.x9_c00008{left:699.786000px;}
.xa_c00008{left:714.931200px;}
.xb_c00008{left:722.770200px;}
.xc_c00008{left:751.442400px;}
.xd_c00008{left:756.788400px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls1_c00008{letter-spacing:0.000000pt;}
.ls0_c00008{letter-spacing:0.008794pt;}
.ws0_c00008{word-spacing:-15.833327pt;}
.ws1_c00008{word-spacing:-3.151089pt;}
.ws2_c00008{word-spacing:0.000000pt;}
._1_c00008{margin-left:-0.905000pt;}
._0_c00008{width:0.938922pt;}
._7_c00008{width:2.242266pt;}
._3_c00008{width:8.175753pt;}
._6_c00008{width:9.231376pt;}
._8_c00008{width:11.240581pt;}
._4_c00008{width:13.754417pt;}
._2_c00008{width:15.302683pt;}
._5_c00008{width:17.286539pt;}
.fs1_c00008{font-size:58.267177pt;}
.fs0_c00008{font-size:63.333308pt;}
.fs2_c00008{font-size:74.100237pt;}
.y0_c00008{bottom:0.000000pt;}
.y3_c00008{bottom:0.107500pt;}
.y2_c00008{bottom:3.801835pt;}
.y8_c00008{bottom:6.068128pt;}
.ya_c00008{bottom:59.475846pt;}
.y1_c00008{bottom:76.471200pt;}
.y14_c00008{bottom:644.515612pt;}
.y13_c00008{bottom:669.690935pt;}
.y12_c00008{bottom:709.591586pt;}
.y11_c00008{bottom:737.931574pt;}
.y10_c00008{bottom:762.471565pt;}
.yf_c00008{bottom:798.573283pt;}
.ye_c00008{bottom:838.312068pt;}
.yd_c00008{bottom:878.055118pt;}
.yc_c00008{bottom:917.798169pt;}
.yb_c00008{bottom:954.842154pt;}
.y9_c00008{bottom:972.735480pt;}
.y7_c00008{bottom:1000.388100pt;}
.y6_c00008{bottom:1018.912492pt;}
.y5_c00008{bottom:1037.122485pt;}
.y4_c00008{bottom:1055.329411pt;}
.h1_c00008{height:17.733760pt;}
.ha_c00008{height:36.824856pt;}
.h6_c00008{height:37.349260pt;}
.h7_c00008{height:52.149123pt;}
.h9_c00008{height:52.382192pt;}
.h2_c00008{height:56.683311pt;}
.h4_c00008{height:56.936644pt;}
.h8_c00008{height:66.616113pt;}
.h5_c00008{height:1110.960672pt;}
.h3_c00008{height:1122.559167pt;}
.h0_c00008{height:1122.666667pt;}
.w6_c00008{width:4.752000pt;}
.w4_c00008{width:6.966400pt;}
.wa_c00008{width:6.968000pt;}
.w2_c00008{width:6.972800pt;}
.w5_c00008{width:7.913600pt;}
.wc_c00008{width:7.915200pt;}
.w7_c00008{width:7.916800pt;}
.w9_c00008{width:15.043200pt;}
.w3_c00008{width:19.312000pt;}
.w1_c00008{width:19.473600pt;}
.w8_c00008{width:24.702400pt;}
.wb_c00008{width:25.486400pt;}
.we_c00008{width:785.062974pt;}
.wd_c00008{width:793.257550pt;}
.w0_c00008{width:793.333333pt;}
.x0_c00008{left:0.000000pt;}
.x12_c00008{left:1.370626pt;}
.x13_c00008{left:100.224934pt;}
.x14_c00008{left:113.366795pt;}
.xf_c00008{left:224.448440pt;}
.xe_c00008{left:240.124654pt;}
.x11_c00008{left:331.956469pt;}
.x10_c00008{left:373.596470pt;}
.x1_c00008{left:517.534400pt;}
.x2_c00008{left:537.008000pt;}
.x3_c00008{left:543.980800pt;}
.x4_c00008{left:563.292800pt;}
.x5_c00008{left:570.259200pt;}
.x6_c00008{left:578.172800pt;}
.x7_c00008{left:582.608000pt;}
.x8_c00008{left:593.691200pt;}
.x9_c00008{left:622.032000pt;}
.xa_c00008{left:635.494400pt;}
.xb_c00008{left:642.462400pt;}
.xc_c00008{left:667.948800pt;}
.xd_c00008{left:672.700800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_b79d060df7006064640edbc7.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.112000;font-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_c00009{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,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;}
}
.ws1_c00009{word-spacing:-33.234141px;}
.ws0_c00009{word-spacing:-17.812493px;}
.ws2_c00009{word-spacing:0.000000px;}
._1_c00009{margin-left:-2.690198px;}
._2_c00009{margin-left:-1.684150px;}
._0_c00009{width:1.056287px;}
._8_c00009{width:2.251746px;}
._5_c00009{width:3.360233px;}
._10_c00009{width:5.235793px;}
._6_c00009{width:6.255768px;}
._e_c00009{width:7.303554px;}
._7_c00009{width:8.494309px;}
._b_c00009{width:19.073351px;}
._9_c00009{width:23.940191px;}
._a_c00009{width:25.283819px;}
._f_c00009{width:26.430939px;}
._4_c00009{width:28.343054px;}
._3_c00009{width:29.523684px;}
._d_c00009{width:38.338134px;}
._c_c00009{width:39.520220px;}
.fc1_c00009{color:rgb(105,148,45);}
.fc0_c00009{color:rgb(35,31,32);}
.fs2_c00009{font-size:59.136936px;}
.fs1_c00009{font-size:65.550574px;}
.fs0_c00009{font-size:71.249972px;}
.fs3_c00009{font-size:83.362767px;}
.y0_c00009{bottom:0.000000px;}
.y3_c00009{bottom:0.120938px;}
.y2_c00009{bottom:4.276426px;}
.y8_c00009{bottom:6.826644px;}
.ya_c00009{bottom:99.329814px;}
.y1_c00009{bottom:105.446880px;}
.y25_c00009{bottom:131.572601px;}
.y24_c00009{bottom:162.209788px;}
.y23_c00009{bottom:192.847726px;}
.y22_c00009{bottom:223.483564px;}
.y21_c00009{bottom:254.121502px;}
.y20_c00009{bottom:315.394677px;}
.y1f_c00009{bottom:346.032615px;}
.y1e_c00009{bottom:376.669803px;}
.y1d_c00009{bottom:407.305640px;}
.y1c_c00009{bottom:437.942228px;}
.y1b_c00009{bottom:468.584366px;}
.y1a_c00009{bottom:499.218854px;}
.y19_c00009{bottom:560.494129px;}
.y18_c00009{bottom:591.129967px;}
.y17_c00009{bottom:621.769405px;}
.y16_c00009{bottom:652.408092px;}
.y15_c00009{bottom:683.042580px;}
.y14_c00009{bottom:713.679168px;}
.y13_c00009{bottom:764.979897px;}
.y12_c00009{bottom:826.075173px;}
.y11_c00009{bottom:856.712361px;}
.y10_c00009{bottom:887.350298px;}
.yf_c00009{bottom:917.988986px;}
.ye_c00009{bottom:972.846514px;}
.yd_c00009{bottom:1013.283948px;}
.yc_c00009{bottom:1037.685938px;}
.yb_c00009{bottom:1077.764422px;}
.y9_c00009{bottom:1094.327416px;}
.y7_c00009{bottom:1125.436612px;}
.y6_c00009{bottom:1146.276554px;}
.y5_c00009{bottom:1166.762796px;}
.y4_c00009{bottom:1187.245588px;}
.h1_c00009{height:20.129760px;}
.h7_c00009{height:37.906776px;}
.h6_c00009{height:42.017918px;}
.h9_c00009{height:58.929966px;}
.h2_c00009{height:63.768724px;}
.ha_c00009{height:63.839974px;}
.h4_c00009{height:64.053724px;}
.h8_c00009{height:74.943127px;}
.h5_c00009{height:1249.830756px;}
.h3_c00009{height:1262.879062px;}
.h0_c00009{height:1263.000000px;}
.wb_c00009{width:5.162400px;}
.w5_c00009{width:5.344200px;}
.w2_c00009{width:7.837200px;}
.w9_c00009{width:7.839000px;}
.w4_c00009{width:8.902800px;}
.w6_c00009{width:8.910000px;}
.w8_c00009{width:16.923600px;}
.w3_c00009{width:21.733200px;}
.w7_c00009{width:27.792000px;}
.wa_c00009{width:28.857600px;}
.w1_c00009{width:39.542400px;}
.wd_c00009{width:883.195846px;}
.wc_c00009{width:892.414744px;}
.w0_c00009{width:892.500000px;}
.x0_c00009{left:0.000000px;}
.x12_c00009{left:1.541954px;}
.x13_c00009{left:112.753050px;}
.x16_c00009{left:126.290335px;}
.x15_c00009{left:165.296979px;}
.x17_c00009{left:178.836872px;}
.x14_c00009{left:227.287455px;}
.xf_c00009{left:252.504495px;}
.xe_c00009{left:270.140236px;}
.x11_c00009{left:373.451028px;}
.x10_c00009{left:420.296029px;}
.x1_c00009{left:564.771600px;}
.x2_c00009{left:604.314000px;}
.x3_c00009{left:612.151200px;}
.x4_c00009{left:633.884400px;}
.x5_c00009{left:641.721600px;}
.x6_c00009{left:650.624400px;}
.x7_c00009{left:655.610400px;}
.x8_c00009{left:668.080800px;}
.x9_c00009{left:699.966000px;}
.xa_c00009{left:715.104000px;}
.xb_c00009{left:722.943000px;}
.xc_c00009{left:751.800600px;}
.xd_c00009{left:756.963000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws1_c00009{word-spacing:-29.541459pt;}
.ws0_c00009{word-spacing:-15.833327pt;}
.ws2_c00009{word-spacing:0.000000pt;}
._1_c00009{margin-left:-2.391287pt;}
._2_c00009{margin-left:-1.497023pt;}
._0_c00009{width:0.938922pt;}
._8_c00009{width:2.001552pt;}
._5_c00009{width:2.986874pt;}
._10_c00009{width:4.654038pt;}
._6_c00009{width:5.560683pt;}
._e_c00009{width:6.492048pt;}
._7_c00009{width:7.550497pt;}
._b_c00009{width:16.954090pt;}
._9_c00009{width:21.280170pt;}
._a_c00009{width:22.474506pt;}
._f_c00009{width:23.494168pt;}
._4_c00009{width:25.193825pt;}
._3_c00009{width:26.243275pt;}
._d_c00009{width:34.078341pt;}
._c_c00009{width:35.129084pt;}
.fs2_c00009{font-size:52.566166pt;}
.fs1_c00009{font-size:58.267177pt;}
.fs0_c00009{font-size:63.333308pt;}
.fs3_c00009{font-size:74.100237pt;}
.y0_c00009{bottom:0.000000pt;}
.y3_c00009{bottom:0.107500pt;}
.y2_c00009{bottom:3.801268pt;}
.y8_c00009{bottom:6.068128pt;}
.ya_c00009{bottom:88.293168pt;}
.y1_c00009{bottom:93.730560pt;}
.y25_c00009{bottom:116.953423pt;}
.y24_c00009{bottom:144.186479pt;}
.y23_c00009{bottom:171.420201pt;}
.y22_c00009{bottom:198.652057pt;}
.y21_c00009{bottom:225.885779pt;}
.y20_c00009{bottom:280.350824pt;}
.y1f_c00009{bottom:307.584547pt;}
.y1e_c00009{bottom:334.817602pt;}
.y1d_c00009{bottom:362.049458pt;}
.y1c_c00009{bottom:389.281981pt;}
.y1b_c00009{bottom:416.519436pt;}
.y1a_c00009{bottom:443.750092pt;}
.y19_c00009{bottom:498.217004pt;}
.y18_c00009{bottom:525.448859pt;}
.y17_c00009{bottom:552.683915pt;}
.y16_c00009{bottom:579.918304pt;}
.y15_c00009{bottom:607.148960pt;}
.y14_c00009{bottom:634.381482pt;}
.y13_c00009{bottom:679.982131pt;}
.y12_c00009{bottom:734.289043pt;}
.y11_c00009{bottom:761.522098pt;}
.y10_c00009{bottom:788.755821pt;}
.yf_c00009{bottom:815.990210pt;}
.ye_c00009{bottom:864.752457pt;}
.yd_c00009{bottom:900.696843pt;}
.yc_c00009{bottom:922.387501pt;}
.yb_c00009{bottom:958.012820pt;}
.y9_c00009{bottom:972.735480pt;}
.y7_c00009{bottom:1000.388100pt;}
.y6_c00009{bottom:1018.912492pt;}
.y5_c00009{bottom:1037.122485pt;}
.y4_c00009{bottom:1055.329411pt;}
.h1_c00009{height:17.893120pt;}
.h7_c00009{height:33.694912pt;}
.h6_c00009{height:37.349260pt;}
.h9_c00009{height:52.382192pt;}
.h2_c00009{height:56.683311pt;}
.ha_c00009{height:56.746644pt;}
.h4_c00009{height:56.936644pt;}
.h8_c00009{height:66.616113pt;}
.h5_c00009{height:1110.960672pt;}
.h3_c00009{height:1122.559167pt;}
.h0_c00009{height:1122.666667pt;}
.wb_c00009{width:4.588800pt;}
.w5_c00009{width:4.750400pt;}
.w2_c00009{width:6.966400pt;}
.w9_c00009{width:6.968000pt;}
.w4_c00009{width:7.913600pt;}
.w6_c00009{width:7.920000pt;}
.w8_c00009{width:15.043200pt;}
.w3_c00009{width:19.318400pt;}
.w7_c00009{width:24.704000pt;}
.wa_c00009{width:25.651200pt;}
.w1_c00009{width:35.148800pt;}
.wd_c00009{width:785.062974pt;}
.wc_c00009{width:793.257550pt;}
.w0_c00009{width:793.333333pt;}
.x0_c00009{left:0.000000pt;}
.x12_c00009{left:1.370626pt;}
.x13_c00009{left:100.224934pt;}
.x16_c00009{left:112.258076pt;}
.x15_c00009{left:146.930648pt;}
.x17_c00009{left:158.966109pt;}
.x14_c00009{left:202.033293pt;}
.xf_c00009{left:224.448440pt;}
.xe_c00009{left:240.124654pt;}
.x11_c00009{left:331.956469pt;}
.x10_c00009{left:373.596470pt;}
.x1_c00009{left:502.019200pt;}
.x2_c00009{left:537.168000pt;}
.x3_c00009{left:544.134400pt;}
.x4_c00009{left:563.452800pt;}
.x5_c00009{left:570.419200pt;}
.x6_c00009{left:578.332800pt;}
.x7_c00009{left:582.764800pt;}
.x8_c00009{left:593.849600pt;}
.x9_c00009{left:622.192000pt;}
.xa_c00009{left:635.648000pt;}
.xb_c00009{left:642.616000pt;}
.xc_c00009{left:668.267200pt;}
.xd_c00009{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.115000;font-style:normal;font-weight:normal;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_c5be9e68b99925b39473e093.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:1.112000;font-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_c00010{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00010{word-spacing:-33.234141px;}
.ws0_c00010{word-spacing:-17.812493px;}
.ws2_c00010{word-spacing:0.000000px;}
._4_c00010{margin-left:-1.404629px;}
._0_c00010{width:1.056287px;}
._5_c00010{width:2.816435px;}
._2_c00010{width:4.315163px;}
._3_c00010{width:5.898767px;}
._9_c00010{width:7.434793px;}
._a_c00010{width:8.787093px;}
._b_c00010{width:10.261120px;}
._8_c00010{width:11.691301px;}
._1_c00010{width:13.475639px;}
._6_c00010{width:25.262256px;}
._7_c00010{width:26.400950px;}
.fc1_c00010{color:rgb(105,148,45);}
.fc0_c00010{color:rgb(35,31,32);}
.fs1_c00010{font-size:65.550574px;}
.fs0_c00010{font-size:71.249972px;}
.y0_c00010{bottom:0.000000px;}
.y3_c00010{bottom:0.120938px;}
.y2_c00010{bottom:4.276426px;}
.y8_c00010{bottom:6.826644px;}
.ya_c00010{bottom:99.329814px;}
.y1_c00010{bottom:105.446880px;}
.y24_c00010{bottom:154.371992px;}
.y23_c00010{bottom:185.007829px;}
.y22_c00010{bottom:215.645017px;}
.y21_c00010{bottom:246.282955px;}
.y20_c00010{bottom:307.559580px;}
.y1f_c00010{bottom:368.833356px;}
.y1e_c00010{bottom:399.469193px;}
.y1d_c00010{bottom:430.105031px;}
.y1c_c00010{bottom:460.744469px;}
.y1b_c00010{bottom:491.381657px;}
.y1a_c00010{bottom:522.017494px;}
.y19_c00010{bottom:552.655432px;}
.y18_c00010{bottom:583.292620px;}
.y17_c00010{bottom:644.566395px;}
.y16_c00010{bottom:675.204333px;}
.y15_c00010{bottom:705.841521px;}
.y14_c00010{bottom:736.477359px;}
.y13_c00010{bottom:767.113946px;}
.y12_c00010{bottom:797.749784px;}
.y11_c00010{bottom:828.391922px;}
.y10_c00010{bottom:889.663597px;}
.yf_c00010{bottom:920.301535px;}
.ye_c00010{bottom:950.940223px;}
.yd_c00010{bottom:981.576811px;}
.yc_c00010{bottom:1012.213998px;}
.yb_c00010{bottom:1042.851936px;}
.y9_c00010{bottom:1094.327416px;}
.y7_c00010{bottom:1125.436612px;}
.y6_c00010{bottom:1146.276554px;}
.y5_c00010{bottom:1166.762796px;}
.y4_c00010{bottom:1187.245588px;}
.h1_c00010{height:20.129760px;}
.h6_c00010{height:42.017918px;}
.h2_c00010{height:63.768724px;}
.h7_c00010{height:63.839974px;}
.h4_c00010{height:64.053724px;}
.h5_c00010{height:1249.830756px;}
.h3_c00010{height:1262.879062px;}
.h0_c00010{height:1263.000000px;}
.wb_c00010{width:5.162400px;}
.w5_c00010{width:5.344200px;}
.w2_c00010{width:7.837200px;}
.w9_c00010{width:7.839000px;}
.w4_c00010{width:8.902800px;}
.w6_c00010{width:8.910000px;}
.w8_c00010{width:16.923600px;}
.w3_c00010{width:21.733200px;}
.w7_c00010{width:27.792000px;}
.wa_c00010{width:28.857600px;}
.w1_c00010{width:39.542400px;}
.wd_c00010{width:883.195846px;}
.wc_c00010{width:892.414744px;}
.w0_c00010{width:892.500000px;}
.x0_c00010{left:0.000000px;}
.x12_c00010{left:1.541954px;}
.x13_c00010{left:112.753050px;}
.x15_c00010{left:126.291834px;}
.x14_c00010{left:165.296979px;}
.xf_c00010{left:252.504495px;}
.xe_c00010{left:270.140236px;}
.x11_c00010{left:373.451028px;}
.x10_c00010{left:420.296029px;}
.x1_c00010{left:564.771600px;}
.x2_c00010{left:604.314000px;}
.x3_c00010{left:612.151200px;}
.x4_c00010{left:633.884400px;}
.x5_c00010{left:641.721600px;}
.x6_c00010{left:650.624400px;}
.x7_c00010{left:655.610400px;}
.x8_c00010{left:668.080800px;}
.x9_c00010{left:699.966000px;}
.xa_c00010{left:715.104000px;}
.xb_c00010{left:722.943000px;}
.xc_c00010{left:751.800600px;}
.xd_c00010{left:756.963000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws1_c00010{word-spacing:-29.541459pt;}
.ws0_c00010{word-spacing:-15.833327pt;}
.ws2_c00010{word-spacing:0.000000pt;}
._4_c00010{margin-left:-1.248559pt;}
._0_c00010{width:0.938922pt;}
._5_c00010{width:2.503498pt;}
._2_c00010{width:3.835700pt;}
._3_c00010{width:5.243348pt;}
._9_c00010{width:6.608705pt;}
._a_c00010{width:7.810749pt;}
._b_c00010{width:9.120996pt;}
._8_c00010{width:10.392268pt;}
._1_c00010{width:11.978346pt;}
._6_c00010{width:22.455339pt;}
._7_c00010{width:23.467512pt;}
.fs1_c00010{font-size:58.267177pt;}
.fs0_c00010{font-size:63.333308pt;}
.y0_c00010{bottom:0.000000pt;}
.y3_c00010{bottom:0.107500pt;}
.y2_c00010{bottom:3.801268pt;}
.y8_c00010{bottom:6.068128pt;}
.ya_c00010{bottom:88.293168pt;}
.y1_c00010{bottom:93.730560pt;}
.y24_c00010{bottom:137.219548pt;}
.y23_c00010{bottom:164.451404pt;}
.y22_c00010{bottom:191.684460pt;}
.y21_c00010{bottom:218.918182pt;}
.y20_c00010{bottom:273.386294pt;}
.y1f_c00010{bottom:327.851872pt;}
.y1e_c00010{bottom:355.083728pt;}
.y1d_c00010{bottom:382.315583pt;}
.y1c_c00010{bottom:409.550639pt;}
.y1b_c00010{bottom:436.783695pt;}
.y1a_c00010{bottom:464.015551pt;}
.y19_c00010{bottom:491.249273pt;}
.y18_c00010{bottom:518.482329pt;}
.y17_c00010{bottom:572.947907pt;}
.y16_c00010{bottom:600.181630pt;}
.y15_c00010{bottom:627.414685pt;}
.y14_c00010{bottom:654.646541pt;}
.y13_c00010{bottom:681.879063pt;}
.y12_c00010{bottom:709.110919pt;}
.y11_c00010{bottom:736.348375pt;}
.y10_c00010{bottom:790.812087pt;}
.yf_c00010{bottom:818.045809pt;}
.ye_c00010{bottom:845.280198pt;}
.yd_c00010{bottom:872.512721pt;}
.yc_c00010{bottom:899.745776pt;}
.yb_c00010{bottom:926.979499pt;}
.y9_c00010{bottom:972.735480pt;}
.y7_c00010{bottom:1000.388100pt;}
.y6_c00010{bottom:1018.912492pt;}
.y5_c00010{bottom:1037.122485pt;}
.y4_c00010{bottom:1055.329411pt;}
.h1_c00010{height:17.893120pt;}
.h6_c00010{height:37.349260pt;}
.h2_c00010{height:56.683311pt;}
.h7_c00010{height:56.746644pt;}
.h4_c00010{height:56.936644pt;}
.h5_c00010{height:1110.960672pt;}
.h3_c00010{height:1122.559167pt;}
.h0_c00010{height:1122.666667pt;}
.wb_c00010{width:4.588800pt;}
.w5_c00010{width:4.750400pt;}
.w2_c00010{width:6.966400pt;}
.w9_c00010{width:6.968000pt;}
.w4_c00010{width:7.913600pt;}
.w6_c00010{width:7.920000pt;}
.w8_c00010{width:15.043200pt;}
.w3_c00010{width:19.318400pt;}
.w7_c00010{width:24.704000pt;}
.wa_c00010{width:25.651200pt;}
.w1_c00010{width:35.148800pt;}
.wd_c00010{width:785.062974pt;}
.wc_c00010{width:793.257550pt;}
.w0_c00010{width:793.333333pt;}
.x0_c00010{left:0.000000pt;}
.x12_c00010{left:1.370626pt;}
.x13_c00010{left:100.224934pt;}
.x15_c00010{left:112.259408pt;}
.x14_c00010{left:146.930648pt;}
.xf_c00010{left:224.448440pt;}
.xe_c00010{left:240.124654pt;}
.x11_c00010{left:331.956469pt;}
.x10_c00010{left:373.596470pt;}
.x1_c00010{left:502.019200pt;}
.x2_c00010{left:537.168000pt;}
.x3_c00010{left:544.134400pt;}
.x4_c00010{left:563.452800pt;}
.x5_c00010{left:570.419200pt;}
.x6_c00010{left:578.332800pt;}
.x7_c00010{left:582.764800pt;}
.x8_c00010{left:593.849600pt;}
.x9_c00010{left:622.192000pt;}
.xa_c00010{left:635.648000pt;}
.xb_c00010{left:642.616000pt;}
.xc_c00010{left:668.267200pt;}
.xd_c00010{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.115000;font-style:normal;font-weight:normal;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_afba0864f70fb0b567dbc649.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.112000;font-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_c00011{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,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;}
}
.ws1_c00011{word-spacing:-33.234141px;}
.ws0_c00011{word-spacing:-17.812493px;}
.ws2_c00011{word-spacing:0.000000px;}
._1_c00011{margin-left:-1.067618px;}
._0_c00011{width:1.056287px;}
._a_c00011{width:3.094256px;}
._8_c00011{width:4.420444px;}
._9_c00011{width:5.478356px;}
._b_c00011{width:6.750871px;}
._c_c00011{width:7.831022px;}
._4_c00011{width:9.400436px;}
._3_c00011{width:16.356155px;}
._2_c00011{width:18.913168px;}
._7_c00011{width:33.180650px;}
._6_c00011{width:34.692058px;}
._5_c00011{width:78.431969px;}
.fc1_c00011{color:rgb(105,148,45);}
.fc0_c00011{color:rgb(35,31,32);}
.fs1_c00011{font-size:65.550574px;}
.fs0_c00011{font-size:71.249972px;}
.y0_c00011{bottom:0.000000px;}
.y3_c00011{bottom:0.120938px;}
.y2_c00011{bottom:4.276426px;}
.y8_c00011{bottom:6.826644px;}
.ya_c00011{bottom:99.329814px;}
.y1_c00011{bottom:105.446880px;}
.y1e_c00011{bottom:369.192156px;}
.y1d_c00011{bottom:399.830093px;}
.y1c_c00011{bottom:430.467281px;}
.y1b_c00011{bottom:491.918207px;}
.y1a_c00011{bottom:522.552694px;}
.y19_c00011{bottom:553.368532px;}
.y18_c00011{bottom:584.006470px;}
.y17_c00011{bottom:614.822307px;}
.y16_c00011{bottom:645.460995px;}
.y15_c00011{bottom:676.276083px;}
.y14_c00011{bottom:706.911921px;}
.y13_c00011{bottom:737.727758px;}
.y12_c00011{bottom:768.365696px;}
.y11_c00011{bottom:799.001534px;}
.y10_c00011{bottom:860.455309px;}
.yf_c00011{bottom:891.093997px;}
.ye_c00011{bottom:921.731935px;}
.yd_c00011{bottom:952.367772px;}
.yc_c00011{bottom:983.004960px;}
.yb_c00011{bottom:1038.041438px;}
.y9_c00011{bottom:1094.327416px;}
.y7_c00011{bottom:1125.436612px;}
.y6_c00011{bottom:1146.276554px;}
.y5_c00011{bottom:1166.762796px;}
.y4_c00011{bottom:1187.245588px;}
.h1_c00011{height:20.129760px;}
.h6_c00011{height:42.017918px;}
.h7_c00011{height:58.929966px;}
.h2_c00011{height:63.768724px;}
.h8_c00011{height:63.839974px;}
.h4_c00011{height:64.053724px;}
.h5_c00011{height:1249.830756px;}
.h3_c00011{height:1262.879062px;}
.h0_c00011{height:1263.000000px;}
.wb_c00011{width:5.162400px;}
.w5_c00011{width:5.344200px;}
.w2_c00011{width:7.837200px;}
.w9_c00011{width:7.839000px;}
.w4_c00011{width:8.902800px;}
.w6_c00011{width:8.910000px;}
.w8_c00011{width:16.923600px;}
.w3_c00011{width:21.733200px;}
.w7_c00011{width:27.792000px;}
.wa_c00011{width:28.857600px;}
.w1_c00011{width:39.542400px;}
.wd_c00011{width:883.195846px;}
.wc_c00011{width:892.414744px;}
.w0_c00011{width:892.500000px;}
.x0_c00011{left:0.000000px;}
.x12_c00011{left:1.541954px;}
.x13_c00011{left:112.753050px;}
.x15_c00011{left:126.290335px;}
.x16_c00011{left:139.470398px;}
.x14_c00011{left:165.296979px;}
.xf_c00011{left:252.504495px;}
.xe_c00011{left:270.140236px;}
.x11_c00011{left:373.451028px;}
.x10_c00011{left:420.296029px;}
.x1_c00011{left:564.771600px;}
.x2_c00011{left:604.314000px;}
.x3_c00011{left:612.151200px;}
.x4_c00011{left:633.884400px;}
.x5_c00011{left:641.721600px;}
.x6_c00011{left:650.624400px;}
.x7_c00011{left:655.610400px;}
.x8_c00011{left:668.080800px;}
.x9_c00011{left:699.966000px;}
.xa_c00011{left:715.104000px;}
.xb_c00011{left:722.943000px;}
.xc_c00011{left:751.800600px;}
.xd_c00011{left:756.963000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws1_c00011{word-spacing:-29.541459pt;}
.ws0_c00011{word-spacing:-15.833327pt;}
.ws2_c00011{word-spacing:0.000000pt;}
._1_c00011{margin-left:-0.948994pt;}
._0_c00011{width:0.938922pt;}
._a_c00011{width:2.750450pt;}
._8_c00011{width:3.929284pt;}
._9_c00011{width:4.869650pt;}
._b_c00011{width:6.000774pt;}
._c_c00011{width:6.960908pt;}
._4_c00011{width:8.355943pt;}
._3_c00011{width:14.538804pt;}
._2_c00011{width:16.811705pt;}
._7_c00011{width:29.493911pt;}
._6_c00011{width:30.837385pt;}
._5_c00011{width:69.717305pt;}
.fs1_c00011{font-size:58.267177pt;}
.fs0_c00011{font-size:63.333308pt;}
.y0_c00011{bottom:0.000000pt;}
.y3_c00011{bottom:0.107500pt;}
.y2_c00011{bottom:3.801268pt;}
.y8_c00011{bottom:6.068128pt;}
.ya_c00011{bottom:88.293168pt;}
.y1_c00011{bottom:93.730560pt;}
.y1e_c00011{bottom:328.170805pt;}
.y1d_c00011{bottom:355.404527pt;}
.y1c_c00011{bottom:382.637583pt;}
.y1b_c00011{bottom:437.260628pt;}
.y1a_c00011{bottom:464.491284pt;}
.y19_c00011{bottom:491.883139pt;}
.y18_c00011{bottom:519.116862pt;}
.y17_c00011{bottom:546.508718pt;}
.y16_c00011{bottom:573.743107pt;}
.y15_c00011{bottom:601.134296pt;}
.y14_c00011{bottom:628.366152pt;}
.y13_c00011{bottom:655.758007pt;}
.y12_c00011{bottom:682.991730pt;}
.y11_c00011{bottom:710.223585pt;}
.y10_c00011{bottom:764.849164pt;}
.yf_c00011{bottom:792.083553pt;}
.ye_c00011{bottom:819.317275pt;}
.yd_c00011{bottom:846.549131pt;}
.yc_c00011{bottom:873.782187pt;}
.yb_c00011{bottom:922.703500pt;}
.y9_c00011{bottom:972.735480pt;}
.y7_c00011{bottom:1000.388100pt;}
.y6_c00011{bottom:1018.912492pt;}
.y5_c00011{bottom:1037.122485pt;}
.y4_c00011{bottom:1055.329411pt;}
.h1_c00011{height:17.893120pt;}
.h6_c00011{height:37.349260pt;}
.h7_c00011{height:52.382192pt;}
.h2_c00011{height:56.683311pt;}
.h8_c00011{height:56.746644pt;}
.h4_c00011{height:56.936644pt;}
.h5_c00011{height:1110.960672pt;}
.h3_c00011{height:1122.559167pt;}
.h0_c00011{height:1122.666667pt;}
.wb_c00011{width:4.588800pt;}
.w5_c00011{width:4.750400pt;}
.w2_c00011{width:6.966400pt;}
.w9_c00011{width:6.968000pt;}
.w4_c00011{width:7.913600pt;}
.w6_c00011{width:7.920000pt;}
.w8_c00011{width:15.043200pt;}
.w3_c00011{width:19.318400pt;}
.w7_c00011{width:24.704000pt;}
.wa_c00011{width:25.651200pt;}
.w1_c00011{width:35.148800pt;}
.wd_c00011{width:785.062974pt;}
.wc_c00011{width:793.257550pt;}
.w0_c00011{width:793.333333pt;}
.x0_c00011{left:0.000000pt;}
.x12_c00011{left:1.370626pt;}
.x13_c00011{left:100.224934pt;}
.x15_c00011{left:112.258076pt;}
.x16_c00011{left:123.973687pt;}
.x14_c00011{left:146.930648pt;}
.xf_c00011{left:224.448440pt;}
.xe_c00011{left:240.124654pt;}
.x11_c00011{left:331.956469pt;}
.x10_c00011{left:373.596470pt;}
.x1_c00011{left:502.019200pt;}
.x2_c00011{left:537.168000pt;}
.x3_c00011{left:544.134400pt;}
.x4_c00011{left:563.452800pt;}
.x5_c00011{left:570.419200pt;}
.x6_c00011{left:578.332800pt;}
.x7_c00011{left:582.764800pt;}
.x8_c00011{left:593.849600pt;}
.x9_c00011{left:622.192000pt;}
.xa_c00011{left:635.648000pt;}
.xb_c00011{left:642.616000pt;}
.xc_c00011{left:668.267200pt;}
.xd_c00011{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.115000;font-style:normal;font-weight:normal;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_4cf8a57bbd3314cdb1f65d10.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00012;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00012{font-family:ff4_c00012;line-height:1.112000;font-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_c00012{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00012{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00012{word-spacing:-33.234141px;}
.ws0_c00012{word-spacing:-17.812493px;}
.ws2_c00012{word-spacing:0.000000px;}
._9_c00012{margin-left:-2.150745px;}
._1_c00012{margin-left:-1.013511px;}
._0_c00012{width:1.056287px;}
._4_c00012{width:2.082937px;}
._b_c00012{width:3.804662px;}
._a_c00012{width:4.891370px;}
._7_c00012{width:5.897049px;}
._8_c00012{width:6.946817px;}
._e_c00012{width:7.999112px;}
._3_c00012{width:15.698494px;}
._5_c00012{width:23.657227px;}
._6_c00012{width:24.891895px;}
._d_c00012{width:52.784916px;}
._c_c00012{width:54.125977px;}
._2_c00012{width:78.432681px;}
.fc1_c00012{color:rgb(105,148,45);}
.fc0_c00012{color:rgb(35,31,32);}
.fs2_c00012{font-size:59.136936px;}
.fs1_c00012{font-size:65.550574px;}
.fs0_c00012{font-size:71.249972px;}
.y0_c00012{bottom:0.000000px;}
.y3_c00012{bottom:0.120938px;}
.y2_c00012{bottom:4.276426px;}
.y8_c00012{bottom:6.826644px;}
.ya_c00012{bottom:99.329814px;}
.y1_c00012{bottom:105.446880px;}
.y29_c00012{bottom:130.142741px;}
.y28_c00012{bottom:145.106645px;}
.y27_c00012{bottom:159.892649px;}
.y26_c00012{bottom:174.676553px;}
.y25_c00012{bottom:189.639047px;}
.y24_c00012{bottom:204.423656px;}
.y23_c00012{bottom:219.208266px;}
.y22_c00012{bottom:276.389443px;}
.y21_c00012{bottom:307.203930px;}
.y20_c00012{bottom:337.840518px;}
.y1f_c00012{bottom:368.656356px;}
.y1e_c00012{bottom:399.293544px;}
.y1d_c00012{bottom:430.108031px;}
.y1c_c00012{bottom:460.744619px;}
.y1b_c00012{bottom:491.563307px;}
.y1a_c00012{bottom:522.199894px;}
.y19_c00012{bottom:553.014382px;}
.y18_c00012{bottom:583.650220px;}
.y17_c00012{bottom:614.466057px;}
.y16_c00012{bottom:645.102645px;}
.y15_c00012{bottom:675.917133px;}
.y14_c00012{bottom:706.555821px;}
.y13_c00012{bottom:737.370308px;}
.y12_c00012{bottom:768.008246px;}
.y11_c00012{bottom:798.822734px;}
.y10_c00012{bottom:829.462171px;}
.yf_c00012{bottom:860.275159px;}
.ye_c00012{bottom:890.913847px;}
.yd_c00012{bottom:921.731785px;}
.yc_c00012{bottom:983.004960px;}
.yb_c00012{bottom:1038.041438px;}
.y9_c00012{bottom:1094.327416px;}
.y7_c00012{bottom:1125.436612px;}
.y6_c00012{bottom:1146.276554px;}
.y5_c00012{bottom:1166.762796px;}
.y4_c00012{bottom:1187.245588px;}
.h1_c00012{height:20.129760px;}
.h9_c00012{height:37.906776px;}
.h6_c00012{height:42.017918px;}
.h7_c00012{height:58.929966px;}
.h2_c00012{height:63.768724px;}
.h8_c00012{height:63.839974px;}
.h4_c00012{height:64.053724px;}
.h5_c00012{height:1249.830756px;}
.h3_c00012{height:1262.879062px;}
.h0_c00012{height:1263.000000px;}
.wb_c00012{width:5.162400px;}
.w5_c00012{width:5.344200px;}
.w2_c00012{width:7.837200px;}
.w9_c00012{width:7.839000px;}
.w4_c00012{width:8.902800px;}
.w6_c00012{width:8.910000px;}
.w8_c00012{width:16.923600px;}
.w3_c00012{width:21.733200px;}
.w7_c00012{width:27.792000px;}
.wa_c00012{width:28.857600px;}
.w1_c00012{width:39.542400px;}
.wd_c00012{width:883.195846px;}
.wc_c00012{width:892.414744px;}
.w0_c00012{width:892.500000px;}
.x0_c00012{left:0.000000px;}
.x12_c00012{left:1.541954px;}
.x13_c00012{left:112.753050px;}
.x15_c00012{left:139.473442px;}
.x14_c00012{left:165.296979px;}
.xf_c00012{left:252.504495px;}
.xe_c00012{left:270.140236px;}
.x11_c00012{left:373.451028px;}
.x10_c00012{left:420.296029px;}
.x1_c00012{left:564.771600px;}
.x2_c00012{left:604.314000px;}
.x3_c00012{left:612.151200px;}
.x4_c00012{left:633.884400px;}
.x5_c00012{left:641.721600px;}
.x6_c00012{left:650.624400px;}
.x7_c00012{left:655.610400px;}
.x8_c00012{left:668.080800px;}
.x9_c00012{left:699.966000px;}
.xa_c00012{left:715.104000px;}
.xb_c00012{left:722.943000px;}
.xc_c00012{left:751.800600px;}
.xd_c00012{left:756.963000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws1_c00012{word-spacing:-29.541459pt;}
.ws0_c00012{word-spacing:-15.833327pt;}
.ws2_c00012{word-spacing:0.000000pt;}
._9_c00012{margin-left:-1.911773pt;}
._1_c00012{margin-left:-0.900899pt;}
._0_c00012{width:0.938922pt;}
._4_c00012{width:1.851499pt;}
._b_c00012{width:3.381921pt;}
._a_c00012{width:4.347884pt;}
._7_c00012{width:5.241821pt;}
._8_c00012{width:6.174948pt;}
._e_c00012{width:7.110322pt;}
._3_c00012{width:13.954217pt;}
._5_c00012{width:21.028646pt;}
._6_c00012{width:22.126129pt;}
._d_c00012{width:46.919926pt;}
._c_c00012{width:48.111980pt;}
._2_c00012{width:69.717939pt;}
.fs2_c00012{font-size:52.566166pt;}
.fs1_c00012{font-size:58.267177pt;}
.fs0_c00012{font-size:63.333308pt;}
.y0_c00012{bottom:0.000000pt;}
.y3_c00012{bottom:0.107500pt;}
.y2_c00012{bottom:3.801268pt;}
.y8_c00012{bottom:6.068128pt;}
.ya_c00012{bottom:88.293168pt;}
.y1_c00012{bottom:93.730560pt;}
.y29_c00012{bottom:115.682437pt;}
.y28_c00012{bottom:128.983685pt;}
.y27_c00012{bottom:142.126799pt;}
.y26_c00012{bottom:155.268047pt;}
.y25_c00012{bottom:168.568042pt;}
.y24_c00012{bottom:181.709917pt;}
.y23_c00012{bottom:194.851792pt;}
.y22_c00012{bottom:245.679505pt;}
.y21_c00012{bottom:273.070160pt;}
.y20_c00012{bottom:300.302683pt;}
.y1f_c00012{bottom:327.694538pt;}
.y1e_c00012{bottom:354.927594pt;}
.y1d_c00012{bottom:382.318250pt;}
.y1c_c00012{bottom:409.550772pt;}
.y1b_c00012{bottom:436.945161pt;}
.y1a_c00012{bottom:464.177684pt;}
.y19_c00012{bottom:491.568340pt;}
.y18_c00012{bottom:518.800195pt;}
.y17_c00012{bottom:546.192051pt;}
.y16_c00012{bottom:573.424574pt;}
.y15_c00012{bottom:600.815229pt;}
.y14_c00012{bottom:628.049618pt;}
.y13_c00012{bottom:655.440274pt;}
.y12_c00012{bottom:682.673997pt;}
.y11_c00012{bottom:710.064652pt;}
.y10_c00012{bottom:737.299708pt;}
.yf_c00012{bottom:764.689030pt;}
.ye_c00012{bottom:791.923419pt;}
.yd_c00012{bottom:819.317142pt;}
.yc_c00012{bottom:873.782187pt;}
.yb_c00012{bottom:922.703500pt;}
.y9_c00012{bottom:972.735480pt;}
.y7_c00012{bottom:1000.388100pt;}
.y6_c00012{bottom:1018.912492pt;}
.y5_c00012{bottom:1037.122485pt;}
.y4_c00012{bottom:1055.329411pt;}
.h1_c00012{height:17.893120pt;}
.h9_c00012{height:33.694912pt;}
.h6_c00012{height:37.349260pt;}
.h7_c00012{height:52.382192pt;}
.h2_c00012{height:56.683311pt;}
.h8_c00012{height:56.746644pt;}
.h4_c00012{height:56.936644pt;}
.h5_c00012{height:1110.960672pt;}
.h3_c00012{height:1122.559167pt;}
.h0_c00012{height:1122.666667pt;}
.wb_c00012{width:4.588800pt;}
.w5_c00012{width:4.750400pt;}
.w2_c00012{width:6.966400pt;}
.w9_c00012{width:6.968000pt;}
.w4_c00012{width:7.913600pt;}
.w6_c00012{width:7.920000pt;}
.w8_c00012{width:15.043200pt;}
.w3_c00012{width:19.318400pt;}
.w7_c00012{width:24.704000pt;}
.wa_c00012{width:25.651200pt;}
.w1_c00012{width:35.148800pt;}
.wd_c00012{width:785.062974pt;}
.wc_c00012{width:793.257550pt;}
.w0_c00012{width:793.333333pt;}
.x0_c00012{left:0.000000pt;}
.x12_c00012{left:1.370626pt;}
.x13_c00012{left:100.224934pt;}
.x15_c00012{left:123.976392pt;}
.x14_c00012{left:146.930648pt;}
.xf_c00012{left:224.448440pt;}
.xe_c00012{left:240.124654pt;}
.x11_c00012{left:331.956469pt;}
.x10_c00012{left:373.596470pt;}
.x1_c00012{left:502.019200pt;}
.x2_c00012{left:537.168000pt;}
.x3_c00012{left:544.134400pt;}
.x4_c00012{left:563.452800pt;}
.x5_c00012{left:570.419200pt;}
.x6_c00012{left:578.332800pt;}
.x7_c00012{left:582.764800pt;}
.x8_c00012{left:593.849600pt;}
.x9_c00012{left:622.192000pt;}
.xa_c00012{left:635.648000pt;}
.xb_c00012{left:642.616000pt;}
.xc_c00012{left:668.267200pt;}
.xd_c00012{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.115000;font-style:normal;font-weight:normal;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_99df9f3a4d269b49e8863453.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00013;src:url('chunks/assets/font_bc0162fe2c43e028c7f3270a.woff2')format("woff");}.ff6_c00013{font-family:ff6_c00013;line-height:0.632000;font-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_c00013{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2_c00013{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,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;}
}
.ws1_c00013{word-spacing:-33.234141px;}
.ws0_c00013{word-spacing:-17.812493px;}
.ws2_c00013{word-spacing:0.000000px;}
._6_c00013{margin-left:-2.203588px;}
._1_c00013{margin-left:-1.034305px;}
._0_c00013{width:1.056287px;}
._4_c00013{width:2.095856px;}
._3_c00013{width:3.117423px;}
._2_c00013{width:5.087703px;}
._7_c00013{width:6.513531px;}
._b_c00013{width:8.983234px;}
._8_c00013{width:10.542594px;}
._9_c00013{width:11.981041px;}
._a_c00013{width:13.480775px;}
._5_c00013{width:16.512511px;}
.fc1_c00013{color:rgb(105,148,45);}
.fc0_c00013{color:rgb(35,31,32);}
.fs3_c00013{font-size:47.737061px;}
.fs4_c00013{font-size:59.136936px;}
.fs1_c00013{font-size:65.550574px;}
.fs0_c00013{font-size:71.249972px;}
.fs2_c00013{font-size:83.362767px;}
.y0_c00013{bottom:0.000000px;}
.y3_c00013{bottom:0.120938px;}
.y2_c00013{bottom:4.276426px;}
.y8_c00013{bottom:6.826644px;}
.ya_c00013{bottom:99.329814px;}
.y1_c00013{bottom:105.446880px;}
.y27_c00013{bottom:204.782021px;}
.y26_c00013{bottom:235.595009px;}
.y25_c00013{bottom:266.237147px;}
.y24_c00013{bottom:297.051634px;}
.y23_c00013{bottom:327.689572px;}
.y22_c00013{bottom:358.504060px;}
.y21_c00013{bottom:389.141248px;}
.y20_c00013{bottom:419.957085px;}
.y1f_c00013{bottom:450.595023px;}
.y1e_c00013{bottom:481.408011px;}
.y1d_c00013{bottom:511.690149px;}
.y1c_c00013{bottom:531.105541px;}
.y1b_c00013{bottom:546.068035px;}
.y19_c00013{bottom:572.424974px;}
.y1a_c00013{bottom:572.429624px;}
.y18_c00013{bottom:603.240812px;}
.y17_c00013{bottom:633.878000px;}
.y16_c00013{bottom:664.695937px;}
.y15_c00013{bottom:695.331775px;}
.y14_c00013{bottom:726.149713px;}
.y13_c00013{bottom:756.782701px;}
.y12_c00013{bottom:818.237226px;}
.y11_c00013{bottom:849.052314px;}
.y10_c00013{bottom:879.686801px;}
.yf_c00013{bottom:941.144777px;}
.ye_c00013{bottom:971.957764px;}
.yd_c00013{bottom:1002.594952px;}
.yc_c00013{bottom:1051.935932px;}
.yb_c00013{bottom:1070.280925px;}
.y9_c00013{bottom:1094.327416px;}
.y7_c00013{bottom:1125.436612px;}
.y6_c00013{bottom:1146.276554px;}
.y5_c00013{bottom:1166.762796px;}
.y4_c00013{bottom:1187.245588px;}
.h1_c00013{height:20.129760px;}
.h8_c00013{height:30.599456px;}
.hc_c00013{height:37.374544px;}
.hb_c00013{height:37.906776px;}
.h6_c00013{height:42.017918px;}
.h2_c00013{height:63.768724px;}
.h9_c00013{height:63.839974px;}
.ha_c00013{height:63.911224px;}
.h4_c00013{height:64.053724px;}
.h7_c00013{height:74.943127px;}
.h5_c00013{height:1249.830756px;}
.h3_c00013{height:1262.879062px;}
.h0_c00013{height:1263.000000px;}
.wb_c00013{width:5.162400px;}
.w5_c00013{width:5.344200px;}
.w2_c00013{width:7.837200px;}
.w9_c00013{width:7.839000px;}
.w4_c00013{width:8.902800px;}
.w6_c00013{width:8.910000px;}
.w8_c00013{width:16.923600px;}
.w3_c00013{width:21.733200px;}
.w7_c00013{width:27.792000px;}
.wa_c00013{width:28.857600px;}
.w1_c00013{width:39.542400px;}
.wd_c00013{width:883.195846px;}
.wc_c00013{width:892.414744px;}
.w0_c00013{width:892.500000px;}
.x0_c00013{left:0.000000px;}
.x12_c00013{left:1.541954px;}
.x13_c00013{left:112.753050px;}
.x16_c00013{left:126.292970px;}
.x18_c00013{left:165.297639px;}
.x15_c00013{left:179.729974px;}
.xf_c00013{left:252.504495px;}
.xe_c00013{left:270.140236px;}
.x17_c00013{left:295.328927px;}
.x14_c00013{left:369.605898px;}
.x11_c00013{left:373.451028px;}
.x10_c00013{left:420.296029px;}
.x1_c00013{left:564.771600px;}
.x2_c00013{left:604.314000px;}
.x3_c00013{left:612.151200px;}
.x4_c00013{left:633.884400px;}
.x5_c00013{left:641.721600px;}
.x6_c00013{left:650.624400px;}
.x7_c00013{left:655.610400px;}
.x8_c00013{left:668.080800px;}
.x9_c00013{left:699.966000px;}
.xa_c00013{left:715.104000px;}
.xb_c00013{left:722.943000px;}
.xc_c00013{left:751.800600px;}
.xd_c00013{left:756.963000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws1_c00013{word-spacing:-29.541459pt;}
.ws0_c00013{word-spacing:-15.833327pt;}
.ws2_c00013{word-spacing:0.000000pt;}
._6_c00013{margin-left:-1.958745pt;}
._1_c00013{margin-left:-0.919382pt;}
._0_c00013{width:0.938922pt;}
._4_c00013{width:1.862983pt;}
._3_c00013{width:2.771043pt;}
._2_c00013{width:4.522402pt;}
._7_c00013{width:5.789805pt;}
._b_c00013{width:7.985097pt;}
._8_c00013{width:9.371194pt;}
._9_c00013{width:10.649814pt;}
._a_c00013{width:11.982911pt;}
._5_c00013{width:14.677788pt;}
.fs3_c00013{font-size:42.432943pt;}
.fs4_c00013{font-size:52.566166pt;}
.fs1_c00013{font-size:58.267177pt;}
.fs0_c00013{font-size:63.333308pt;}
.fs2_c00013{font-size:74.100237pt;}
.y0_c00013{bottom:0.000000pt;}
.y3_c00013{bottom:0.107500pt;}
.y2_c00013{bottom:3.801268pt;}
.y8_c00013{bottom:6.068128pt;}
.ya_c00013{bottom:88.293168pt;}
.y1_c00013{bottom:93.730560pt;}
.y27_c00013{bottom:182.028463pt;}
.y26_c00013{bottom:209.417786pt;}
.y25_c00013{bottom:236.655242pt;}
.y24_c00013{bottom:264.045897pt;}
.y23_c00013{bottom:291.279620pt;}
.y22_c00013{bottom:318.670275pt;}
.y21_c00013{bottom:345.903331pt;}
.y20_c00013{bottom:373.295187pt;}
.y1f_c00013{bottom:400.528909pt;}
.y1e_c00013{bottom:427.918232pt;}
.y1d_c00013{bottom:454.835688pt;}
.y1c_c00013{bottom:472.093814pt;}
.y1b_c00013{bottom:485.393809pt;}
.y19_c00013{bottom:508.822199pt;}
.y1a_c00013{bottom:508.826333pt;}
.y18_c00013{bottom:536.214055pt;}
.y17_c00013{bottom:563.447111pt;}
.y16_c00013{bottom:590.840833pt;}
.y15_c00013{bottom:618.072689pt;}
.y14_c00013{bottom:645.466411pt;}
.y13_c00013{bottom:672.695734pt;}
.y12_c00013{bottom:727.321979pt;}
.y11_c00013{bottom:754.713168pt;}
.y10_c00013{bottom:781.943823pt;}
.yf_c00013{bottom:836.573135pt;}
.ye_c00013{bottom:863.962457pt;}
.yd_c00013{bottom:891.195513pt;}
.yc_c00013{bottom:935.054162pt;}
.yb_c00013{bottom:951.360822pt;}
.y9_c00013{bottom:972.735480pt;}
.y7_c00013{bottom:1000.388100pt;}
.y6_c00013{bottom:1018.912492pt;}
.y5_c00013{bottom:1037.122485pt;}
.y4_c00013{bottom:1055.329411pt;}
.h1_c00013{height:17.893120pt;}
.h8_c00013{height:27.199516pt;}
.hc_c00013{height:33.221817pt;}
.hb_c00013{height:33.694912pt;}
.h6_c00013{height:37.349260pt;}
.h2_c00013{height:56.683311pt;}
.h9_c00013{height:56.746644pt;}
.ha_c00013{height:56.809977pt;}
.h4_c00013{height:56.936644pt;}
.h7_c00013{height:66.616113pt;}
.h5_c00013{height:1110.960672pt;}
.h3_c00013{height:1122.559167pt;}
.h0_c00013{height:1122.666667pt;}
.wb_c00013{width:4.588800pt;}
.w5_c00013{width:4.750400pt;}
.w2_c00013{width:6.966400pt;}
.w9_c00013{width:6.968000pt;}
.w4_c00013{width:7.913600pt;}
.w6_c00013{width:7.920000pt;}
.w8_c00013{width:15.043200pt;}
.w3_c00013{width:19.318400pt;}
.w7_c00013{width:24.704000pt;}
.wa_c00013{width:25.651200pt;}
.w1_c00013{width:35.148800pt;}
.wd_c00013{width:785.062974pt;}
.wc_c00013{width:793.257550pt;}
.w0_c00013{width:793.333333pt;}
.x0_c00013{left:0.000000pt;}
.x12_c00013{left:1.370626pt;}
.x13_c00013{left:100.224934pt;}
.x16_c00013{left:112.260417pt;}
.x18_c00013{left:146.931234pt;}
.x15_c00013{left:159.759977pt;}
.xf_c00013{left:224.448440pt;}
.xe_c00013{left:240.124654pt;}
.x17_c00013{left:262.514602pt;}
.x14_c00013{left:328.538576pt;}
.x11_c00013{left:331.956469pt;}
.x10_c00013{left:373.596470pt;}
.x1_c00013{left:502.019200pt;}
.x2_c00013{left:537.168000pt;}
.x3_c00013{left:544.134400pt;}
.x4_c00013{left:563.452800pt;}
.x5_c00013{left:570.419200pt;}
.x6_c00013{left:578.332800pt;}
.x7_c00013{left:582.764800pt;}
.x8_c00013{left:593.849600pt;}
.x9_c00013{left:622.192000pt;}
.xa_c00013{left:635.648000pt;}
.xb_c00013{left:642.616000pt;}
.xc_c00013{left:668.267200pt;}
.xd_c00013{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.115000;font-style:normal;font-weight:normal;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_14aaabb4afab837b724c8c89.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00014;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:1.113000;font-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_c00014{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00014{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00014{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v2_c00014{vertical-align:-45.587982px;}
.v0_c00014{vertical-align:0.000000px;}
.v3_c00014{vertical-align:1.420313px;}
.v1_c00014{vertical-align:17.105993px;}
.ls0_c00014{letter-spacing:0.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00014{word-spacing:-33.234141px;}
.ws0_c00014{word-spacing:-17.812493px;}
.ws2_c00014{word-spacing:-14.784234px;}
.ws4_c00014{word-spacing:0.000000px;}
.ws3_c00014{word-spacing:374.599476px;}
._b_c00014{margin-left:-4.064254px;}
._8_c00014{margin-left:-2.526264px;}
._3_c00014{margin-left:-1.404280px;}
._0_c00014{width:1.056287px;}
._6_c00014{width:3.016809px;}
._5_c00014{width:6.426284px;}
._4_c00014{width:7.618694px;}
._1_c00014{width:19.972008px;}
._2_c00014{width:21.393689px;}
._a_c00014{width:236.089222px;}
._c_c00014{width:342.959563px;}
._d_c00014{width:498.225551px;}
._7_c00014{width:518.073982px;}
._9_c00014{width:857.912127px;}
.fc1_c00014{color:rgb(105,148,45);}
.fc0_c00014{color:rgb(35,31,32);}
.fs5_c00014{font-size:38.474625px;}
.fs3_c00014{font-size:41.324503px;}
.fs4_c00014{font-size:44.887062px;}
.fs6_c00014{font-size:50.586940px;}
.fs2_c00014{font-size:59.136936px;}
.fs1_c00014{font-size:65.550574px;}
.fs0_c00014{font-size:71.249972px;}
.y0_c00014{bottom:0.000000px;}
.y3_c00014{bottom:0.120938px;}
.y2_c00014{bottom:4.276426px;}
.y8_c00014{bottom:6.826644px;}
.ya_c00014{bottom:99.329814px;}
.y1_c00014{bottom:105.446880px;}
.y38_c00014{bottom:146.538245px;}
.y37_c00014{bottom:184.300280px;}
.y36_c00014{bottom:264.629747px;}
.y35_c00014{bottom:300.076233px;}
.y33_c00014{bottom:319.670725px;}
.y34_c00014{bottom:320.027725px;}
.y30_c00014{bottom:362.596208px;}
.y32_c00014{bottom:367.054206px;}
.y2e_c00014{bottom:382.726200px;}
.y2f_c00014{bottom:383.084700px;}
.y31_c00014{bottom:386.290199px;}
.y2d_c00014{bottom:402.676192px;}
.y2c_c00014{bottom:417.286186px;}
.y2b_c00014{bottom:431.711681px;}
.y23_c00014{bottom:462.706168px;}
.y2a_c00014{bottom:463.238668px;}
.y29_c00014{bottom:481.229661px;}
.y22_c00014{bottom:493.342156px;}
.y28_c00014{bottom:494.056156px;}
.y27_c00014{bottom:511.870149px;}
.y21_c00014{bottom:523.978144px;}
.y26_c00014{bottom:524.692143px;}
.y25_c00014{bottom:542.506136px;}
.y20_c00014{bottom:554.615631px;}
.y24_c00014{bottom:554.973081px;}
.y1e_c00014{bottom:581.689121px;}
.y1f_c00014{bottom:601.819113px;}
.y1d_c00014{bottom:602.174612px;}
.y1b_c00014{bottom:617.492606px;}
.y1c_c00014{bottom:621.056605px;}
.y1a_c00014{bottom:637.621098px;}
.y19_c00014{bottom:651.692593px;}
.y18_c00014{bottom:668.792586px;}
.y17_c00014{bottom:703.882072px;}
.y16_c00014{bottom:720.982065px;}
.y15_c00014{bottom:755.893051px;}
.y14_c00014{bottom:768.008546px;}
.y13_c00014{bottom:797.042534px;}
.y12_c00014{bottom:827.677022px;}
.y11_c00014{bottom:858.492710px;}
.y10_c00014{bottom:889.129298px;}
.yf_c00014{bottom:919.946485px;}
.ye_c00014{bottom:950.584273px;}
.yd_c00014{bottom:981.398761px;}
.yc_c00014{bottom:1012.035948px;}
.yb_c00014{bottom:1042.851936px;}
.y9_c00014{bottom:1094.327416px;}
.y7_c00014{bottom:1125.436612px;}
.y6_c00014{bottom:1146.276554px;}
.y5_c00014{bottom:1166.762796px;}
.y4_c00014{bottom:1187.245588px;}
.h1_c00014{height:20.129760px;}
.h10_c00014{height:24.662234px;}
.h9_c00014{height:26.489007px;}
.hb_c00014{height:28.772607px;}
.h11_c00014{height:32.426228px;}
.hd_c00014{height:37.906776px;}
.h6_c00014{height:42.017918px;}
.h8_c00014{height:52.927558px;}
.hc_c00014{height:58.798865px;}
.ha_c00014{height:58.929966px;}
.h2_c00014{height:63.768724px;}
.h7_c00014{height:63.839974px;}
.he_c00014{height:63.911224px;}
.h4_c00014{height:64.053724px;}
.h12_c00014{height:65.189038px;}
.hf_c00014{height:81.017218px;}
.h5_c00014{height:1249.830756px;}
.h3_c00014{height:1262.879062px;}
.h0_c00014{height:1263.000000px;}
.wb_c00014{width:5.162400px;}
.w5_c00014{width:5.344200px;}
.w2_c00014{width:7.837200px;}
.w9_c00014{width:7.839000px;}
.w4_c00014{width:8.902800px;}
.w6_c00014{width:8.910000px;}
.w8_c00014{width:16.923600px;}
.w3_c00014{width:21.733200px;}
.w7_c00014{width:27.792000px;}
.wa_c00014{width:28.857600px;}
.w1_c00014{width:39.542400px;}
.wd_c00014{width:883.195846px;}
.wc_c00014{width:892.414744px;}
.w0_c00014{width:892.500000px;}
.x0_c00014{left:0.000000px;}
.x12_c00014{left:1.541954px;}
.x13_c00014{left:112.753050px;}
.x19_c00014{left:120.234297px;}
.x1d_c00014{left:127.893444px;}
.x21_c00014{left:129.319344px;}
.x1a_c00014{left:160.667981px;}
.x14_c00014{left:165.296979px;}
.x22_c00014{left:169.217978px;}
.x23_c00014{left:186.671971px;}
.x15_c00014{left:217.843458px;}
.x16_c00014{left:250.084446px;}
.xf_c00014{left:252.504495px;}
.x17_c00014{left:262.379941px;}
.xe_c00014{left:270.140236px;}
.x1f_c00014{left:281.969933px;}
.x1e_c00014{left:300.315705px;}
.x11_c00014{left:373.451028px;}
.x18_c00014{left:399.176886px;}
.x10_c00014{left:420.296029px;}
.x20_c00014{left:465.794859px;}
.x1_c00014{left:564.771600px;}
.x2_c00014{left:604.314000px;}
.x1b_c00014{left:605.620303px;}
.x3_c00014{left:612.151200px;}
.x4_c00014{left:633.884400px;}
.x5_c00014{left:641.721600px;}
.x6_c00014{left:650.624400px;}
.x7_c00014{left:655.610400px;}
.x1c_c00014{left:666.361279px;}
.x8_c00014{left:668.080800px;}
.x9_c00014{left:699.966000px;}
.xa_c00014{left:715.104000px;}
.xb_c00014{left:722.943000px;}
.x24_c00014{left:741.350749px;}
.xc_c00014{left:751.800600px;}
.xd_c00014{left:756.963000px;}
@media print{
.v2_c00014{vertical-align:-40.522650pt;}
.v0_c00014{vertical-align:0.000000pt;}
.v3_c00014{vertical-align:1.262501pt;}
.v1_c00014{vertical-align:15.205327pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws1_c00014{word-spacing:-29.541459pt;}
.ws0_c00014{word-spacing:-15.833327pt;}
.ws2_c00014{word-spacing:-13.141541pt;}
.ws4_c00014{word-spacing:0.000000pt;}
.ws3_c00014{word-spacing:332.977312pt;}
._b_c00014{margin-left:-3.612671pt;}
._8_c00014{margin-left:-2.245568pt;}
._3_c00014{margin-left:-1.248249pt;}
._0_c00014{width:0.938922pt;}
._6_c00014{width:2.681608pt;}
._5_c00014{width:5.712253pt;}
._4_c00014{width:6.772172pt;}
._1_c00014{width:17.752896pt;}
._2_c00014{width:19.016612pt;}
._a_c00014{width:209.857086pt;}
._c_c00014{width:304.852945pt;}
._d_c00014{width:442.867156pt;}
._7_c00014{width:460.510206pt;}
._9_c00014{width:762.588558pt;}
.fs5_c00014{font-size:34.199666pt;}
.fs3_c00014{font-size:36.732892pt;}
.fs4_c00014{font-size:39.899611pt;}
.fs6_c00014{font-size:44.966169pt;}
.fs2_c00014{font-size:52.566166pt;}
.fs1_c00014{font-size:58.267177pt;}
.fs0_c00014{font-size:63.333308pt;}
.y0_c00014{bottom:0.000000pt;}
.y3_c00014{bottom:0.107500pt;}
.y2_c00014{bottom:3.801268pt;}
.y8_c00014{bottom:6.068128pt;}
.ya_c00014{bottom:88.293168pt;}
.y1_c00014{bottom:93.730560pt;}
.y38_c00014{bottom:130.256217pt;}
.y37_c00014{bottom:163.822471pt;}
.y36_c00014{bottom:235.226442pt;}
.y35_c00014{bottom:266.734430pt;}
.y33_c00014{bottom:284.151756pt;}
.y34_c00014{bottom:284.469089pt;}
.y30_c00014{bottom:322.307741pt;}
.y32_c00014{bottom:326.270406pt;}
.y2e_c00014{bottom:340.201067pt;}
.y2f_c00014{bottom:340.519733pt;}
.y31_c00014{bottom:343.369066pt;}
.y2d_c00014{bottom:357.934393pt;}
.y2c_c00014{bottom:370.921055pt;}
.y2b_c00014{bottom:383.743716pt;}
.y23_c00014{bottom:411.294372pt;}
.y2a_c00014{bottom:411.767705pt;}
.y29_c00014{bottom:427.759698pt;}
.y22_c00014{bottom:438.526361pt;}
.y28_c00014{bottom:439.161027pt;}
.y27_c00014{bottom:454.995688pt;}
.y21_c00014{bottom:465.758350pt;}
.y26_c00014{bottom:466.393016pt;}
.y25_c00014{bottom:482.227677pt;}
.y20_c00014{bottom:492.991672pt;}
.y24_c00014{bottom:493.309406pt;}
.y1e_c00014{bottom:517.056996pt;}
.y1f_c00014{bottom:534.950322pt;}
.y1d_c00014{bottom:535.266322pt;}
.y1b_c00014{bottom:548.882317pt;}
.y1c_c00014{bottom:552.050315pt;}
.y1a_c00014{bottom:566.774310pt;}
.y19_c00014{bottom:579.282305pt;}
.y18_c00014{bottom:594.482298pt;}
.y17_c00014{bottom:625.672953pt;}
.y16_c00014{bottom:640.872947pt;}
.y15_c00014{bottom:671.904934pt;}
.y14_c00014{bottom:682.674263pt;}
.y13_c00014{bottom:708.482253pt;}
.y12_c00014{bottom:735.712909pt;}
.y11_c00014{bottom:763.104631pt;}
.y10_c00014{bottom:790.337153pt;}
.yf_c00014{bottom:817.730209pt;}
.ye_c00014{bottom:844.963798pt;}
.yd_c00014{bottom:872.354454pt;}
.yc_c00014{bottom:899.587510pt;}
.yb_c00014{bottom:926.979499pt;}
.y9_c00014{bottom:972.735480pt;}
.y7_c00014{bottom:1000.388100pt;}
.y6_c00014{bottom:1018.912492pt;}
.y5_c00014{bottom:1037.122485pt;}
.y4_c00014{bottom:1055.329411pt;}
.h1_c00014{height:17.893120pt;}
.h10_c00014{height:21.921986pt;}
.h9_c00014{height:23.545784pt;}
.hb_c00014{height:25.575650pt;}
.h11_c00014{height:28.823314pt;}
.hd_c00014{height:33.694912pt;}
.h6_c00014{height:37.349260pt;}
.h8_c00014{height:47.046718pt;}
.hc_c00014{height:52.265657pt;}
.ha_c00014{height:52.382192pt;}
.h2_c00014{height:56.683311pt;}
.h7_c00014{height:56.746644pt;}
.he_c00014{height:56.809977pt;}
.h4_c00014{height:56.936644pt;}
.h12_c00014{height:57.945811pt;}
.hf_c00014{height:72.015305pt;}
.h5_c00014{height:1110.960672pt;}
.h3_c00014{height:1122.559167pt;}
.h0_c00014{height:1122.666667pt;}
.wb_c00014{width:4.588800pt;}
.w5_c00014{width:4.750400pt;}
.w2_c00014{width:6.966400pt;}
.w9_c00014{width:6.968000pt;}
.w4_c00014{width:7.913600pt;}
.w6_c00014{width:7.920000pt;}
.w8_c00014{width:15.043200pt;}
.w3_c00014{width:19.318400pt;}
.w7_c00014{width:24.704000pt;}
.wa_c00014{width:25.651200pt;}
.w1_c00014{width:35.148800pt;}
.wd_c00014{width:785.062974pt;}
.wc_c00014{width:793.257550pt;}
.w0_c00014{width:793.333333pt;}
.x0_c00014{left:0.000000pt;}
.x12_c00014{left:1.370626pt;}
.x13_c00014{left:100.224934pt;}
.x19_c00014{left:106.874931pt;}
.x1d_c00014{left:113.683062pt;}
.x21_c00014{left:114.950528pt;}
.x1a_c00014{left:142.815983pt;}
.x14_c00014{left:146.930648pt;}
.x22_c00014{left:150.415980pt;}
.x23_c00014{left:165.930641pt;}
.x15_c00014{left:193.638630pt;}
.x16_c00014{left:222.297285pt;}
.xf_c00014{left:224.448440pt;}
.x17_c00014{left:233.226614pt;}
.xe_c00014{left:240.124654pt;}
.x1f_c00014{left:250.639940pt;}
.x1e_c00014{left:266.947294pt;}
.x11_c00014{left:331.956469pt;}
.x18_c00014{left:354.823899pt;}
.x10_c00014{left:373.596470pt;}
.x20_c00014{left:414.039875pt;}
.x1_c00014{left:502.019200pt;}
.x2_c00014{left:537.168000pt;}
.x1b_c00014{left:538.329159pt;}
.x3_c00014{left:544.134400pt;}
.x4_c00014{left:563.452800pt;}
.x5_c00014{left:570.419200pt;}
.x6_c00014{left:578.332800pt;}
.x7_c00014{left:582.764800pt;}
.x1c_c00014{left:592.321137pt;}
.x8_c00014{left:593.849600pt;}
.x9_c00014{left:622.192000pt;}
.xa_c00014{left:635.648000pt;}
.xb_c00014{left:642.616000pt;}
.x24_c00014{left:658.978444pt;}
.xc_c00014{left:668.267200pt;}
.xd_c00014{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.115000;font-style:normal;font-weight:normal;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_2976fe02e4ec426a07f3715f.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00015;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00015{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00015{word-spacing:-33.234141px;}
.ws0_c00015{word-spacing:-17.812493px;}
.ws2_c00015{word-spacing:0.000000px;}
._3_c00015{margin-left:-3.341325px;}
._5_c00015{margin-left:-2.320009px;}
._2_c00015{margin-left:-1.044243px;}
._0_c00015{width:1.056287px;}
._4_c00015{width:2.059388px;}
._6_c00015{width:3.613826px;}
._b_c00015{width:5.816268px;}
._d_c00015{width:6.901798px;}
._c_c00015{width:8.315050px;}
._7_c00015{width:15.627683px;}
._a_c00015{width:16.684421px;}
._9_c00015{width:18.974605px;}
._8_c00015{width:21.258237px;}
._1_c00015{width:841.101273px;}
.fc1_c00015{color:rgb(105,148,45);}
.fc0_c00015{color:rgb(35,31,32);}
.fs4_c00015{font-size:29.924628px;}
.fs5_c00015{font-size:41.324503px;}
.fs6_c00015{font-size:44.887062px;}
.fs2_c00015{font-size:59.136936px;}
.fs1_c00015{font-size:65.550574px;}
.fs0_c00015{font-size:71.249972px;}
.fs3_c00015{font-size:83.362767px;}
.y0_c00015{bottom:0.000000px;}
.y3_c00015{bottom:0.120938px;}
.y37_c00015{bottom:3.560126px;}
.y3d_c00015{bottom:3.563171px;}
.y1c_c00015{bottom:3.914033px;}
.y2_c00015{bottom:4.276426px;}
.y1d_c00015{bottom:6.826644px;}
.y1_c00015{bottom:105.446880px;}
.y9_c00015{bottom:106.035520px;}
.y4e_c00015{bottom:150.099693px;}
.y4d_c00015{bottom:180.736281px;}
.y4c_c00015{bottom:199.970773px;}
.y4b_c00015{bottom:214.043768px;}
.y4a_c00015{bottom:237.731758px;}
.y49_c00015{bottom:268.368946px;}
.y48_c00015{bottom:299.186884px;}
.y47_c00015{bottom:329.822721px;}
.y46_c00015{bottom:348.884714px;}
.y45_c00015{bottom:362.953208px;}
.y44_c00015{bottom:379.342202px;}
.y43_c00015{bottom:417.104836px;}
.y42_c00015{bottom:438.482678px;}
.y41_c00015{bottom:458.429670px;}
.y40_c00015{bottom:498.331154px;}
.y3f_c00015{bottom:526.651593px;}
.y2d_c00015{bottom:543.389336px;}
.y3e_c00015{bottom:546.245635px;}
.y2c_c00015{bottom:568.865026px;}
.y3c_c00015{bottom:569.100600px;}
.y1a_c00015{bottom:583.585829px;}
.y3b_c00015{bottom:592.134926px;}
.y2b_c00015{bottom:594.512165px;}
.y19_c00015{bottom:604.246821px;}
.y3a_c00015{bottom:611.906118px;}
.y18_c00015{bottom:623.842813px;}
.y2a_c00015{bottom:645.454995px;}
.y39_c00015{bottom:646.282654px;}
.y38_c00015{bottom:665.878796px;}
.y29_c00015{bottom:671.105735px;}
.y36_c00015{bottom:682.212600px;}
.y28_c00015{bottom:696.579175px;}
.y35_c00015{bottom:698.534574px;}
.y34_c00015{bottom:718.129216px;}
.y27_c00015{bottom:722.049914px;}
.y17_c00015{bottom:723.058773px;}
.y16_c00015{bottom:742.293266px;}
.y15_c00015{bottom:755.832260px;}
.y26_c00015{bottom:773.170644px;}
.y33_c00015{bottom:779.222392px;}
.y14_c00015{bottom:793.236245px;}
.y25_c00015{bottom:798.641384px;}
.y32_c00015{bottom:798.818534px;}
.y13_c00015{bottom:813.900237px;}
.y24_c00015{bottom:814.851877px;}
.y31_c00015{bottom:818.413926px;}
.y23_c00015{bottom:830.881021px;}
.y12_c00015{bottom:833.493229px;}
.y22_c00015{bottom:847.093014px;}
.y30_c00015{bottom:852.968962px;}
.y20_c00015{bottom:862.766508px;}
.y21_c00015{bottom:862.768008px;}
.y2f_c00015{bottom:872.560154px;}
.y11_c00015{bottom:879.451711px;}
.y1f_c00015{bottom:879.686501px;}
.y2e_c00015{bottom:892.154196px;}
.y1e_c00015{bottom:896.078495px;}
.y10_c00015{bottom:899.577203px;}
.y1b_c00015{bottom:913.773600px;}
.yf_c00015{bottom:917.566695px;}
.ye_c00015{bottom:982.759669px;}
.yd_c00015{bottom:1005.739750px;}
.yc_c00015{bottom:1020.523654px;}
.yb_c00015{bottom:1040.471696px;}
.ya_c00015{bottom:1080.907630px;}
.y8_c00015{bottom:1101.033122px;}
.y7_c00015{bottom:1125.436612px;}
.y6_c00015{bottom:1146.276554px;}
.y5_c00015{bottom:1166.762796px;}
.y4_c00015{bottom:1187.245588px;}
.hc_c00015{height:15.852600px;}
.hf_c00015{height:16.743600px;}
.h10_c00015{height:16.749000px;}
.hb_c00015{height:19.181687px;}
.h1_c00015{height:20.129760px;}
.h12_c00015{height:26.489007px;}
.h14_c00015{height:28.772607px;}
.h7_c00015{height:37.906776px;}
.h5_c00015{height:42.017918px;}
.h9_c00015{height:45.671232px;}
.he_c00015{height:52.986695px;}
.ha_c00015{height:53.435533px;}
.h6_c00015{height:58.798865px;}
.h11_c00015{height:58.929966px;}
.h2_c00015{height:63.768724px;}
.h13_c00015{height:63.839974px;}
.h8_c00015{height:63.911224px;}
.h4_c00015{height:64.053724px;}
.hd_c00015{height:1249.830756px;}
.h3_c00015{height:1262.879062px;}
.h0_c00015{height:1263.000000px;}
.wb_c00015{width:5.162400px;}
.w5_c00015{width:5.344200px;}
.w2_c00015{width:7.837200px;}
.w9_c00015{width:7.839000px;}
.wd_c00015{width:8.728200px;}
.w4_c00015{width:8.902800px;}
.w6_c00015{width:8.910000px;}
.w8_c00015{width:16.923600px;}
.w3_c00015{width:21.733200px;}
.w7_c00015{width:27.792000px;}
.wa_c00015{width:28.857600px;}
.w1_c00015{width:39.542400px;}
.wf_c00015{width:153.903600px;}
.we_c00015{width:883.195846px;}
.wc_c00015{width:892.414744px;}
.w0_c00015{width:892.500000px;}
.x0_c00015{left:0.000000px;}
.x17_c00015{left:1.541954px;}
.x2d_c00015{left:112.753050px;}
.x12_c00015{left:114.282348px;}
.x14_c00015{left:126.928843px;}
.x15_c00015{left:134.587990px;}
.x2c_c00015{left:178.837474px;}
.xf_c00015{left:252.504495px;}
.xe_c00015{left:270.140236px;}
.x18_c00015{left:272.708936px;}
.x16_c00015{left:274.249800px;}
.x1e_c00015{left:280.900176px;}
.x21_c00015{left:291.945503px;}
.x22_c00015{left:293.549512px;}
.x1c_c00015{left:295.505653px;}
.x1f_c00015{left:299.073449px;}
.x20_c00015{left:313.496938px;}
.x19_c00015{left:341.283922px;}
.x13_c00015{left:355.104702px;}
.x11_c00015{left:373.451028px;}
.x1a_c00015{left:398.818528px;}
.x23_c00015{left:403.449617px;}
.x10_c00015{left:420.296029px;}
.x1d_c00015{left:431.059411px;}
.x1b_c00015{left:510.146842px;}
.x1_c00015{left:564.771600px;}
.x2_c00015{left:604.314000px;}
.x3_c00015{left:612.151200px;}
.x4_c00015{left:633.884400px;}
.x5_c00015{left:641.721600px;}
.x27_c00015{left:643.741030px;}
.x25_c00015{left:646.054985px;}
.x6_c00015{left:650.624400px;}
.x24_c00015{left:652.466779px;}
.x7_c00015{left:655.610400px;}
.x26_c00015{left:659.412948px;}
.x2a_c00015{left:660.939939px;}
.x8_c00015{left:668.080800px;}
.x28_c00015{left:677.405178px;}
.x2b_c00015{left:685.062689px;}
.x29_c00015{left:686.591987px;}
.x9_c00015{left:699.966000px;}
.xa_c00015{left:715.104000px;}
.xb_c00015{left:722.943000px;}
.xc_c00015{left:751.800600px;}
.xd_c00015{left:756.963000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws1_c00015{word-spacing:-29.541459pt;}
.ws0_c00015{word-spacing:-15.833327pt;}
.ws2_c00015{word-spacing:0.000000pt;}
._3_c00015{margin-left:-2.970067pt;}
._5_c00015{margin-left:-2.062230pt;}
._2_c00015{margin-left:-0.928216pt;}
._0_c00015{width:0.938922pt;}
._4_c00015{width:1.830567pt;}
._6_c00015{width:3.212290pt;}
._b_c00015{width:5.170016pt;}
._d_c00015{width:6.134932pt;}
._c_c00015{width:7.391155pt;}
._7_c00015{width:13.891274pt;}
._a_c00015{width:14.830596pt;}
._9_c00015{width:16.866315pt;}
._8_c00015{width:18.896211pt;}
._1_c00015{width:747.645576pt;}
.fs4_c00015{font-size:26.599669pt;}
.fs5_c00015{font-size:36.732892pt;}
.fs6_c00015{font-size:39.899611pt;}
.fs2_c00015{font-size:52.566166pt;}
.fs1_c00015{font-size:58.267177pt;}
.fs0_c00015{font-size:63.333308pt;}
.fs3_c00015{font-size:74.100237pt;}
.y0_c00015{bottom:0.000000pt;}
.y3_c00015{bottom:0.107500pt;}
.y37_c00015{bottom:3.164556pt;}
.y3d_c00015{bottom:3.167263pt;}
.y1c_c00015{bottom:3.479140pt;}
.y2_c00015{bottom:3.801268pt;}
.y1d_c00015{bottom:6.068128pt;}
.y1_c00015{bottom:93.730560pt;}
.y9_c00015{bottom:94.253796pt;}
.y4e_c00015{bottom:133.421950pt;}
.y4d_c00015{bottom:160.654472pt;}
.y4c_c00015{bottom:177.751798pt;}
.y4b_c00015{bottom:190.261127pt;}
.y4a_c00015{bottom:211.317118pt;}
.y49_c00015{bottom:238.550174pt;}
.y48_c00015{bottom:265.943897pt;}
.y47_c00015{bottom:293.175752pt;}
.y46_c00015{bottom:310.119746pt;}
.y45_c00015{bottom:322.625074pt;}
.y44_c00015{bottom:337.193068pt;}
.y43_c00015{bottom:370.759855pt;}
.y42_c00015{bottom:389.762380pt;}
.y41_c00015{bottom:407.493040pt;}
.y40_c00015{bottom:442.961026pt;}
.y3f_c00015{bottom:468.134749pt;}
.y2d_c00015{bottom:483.012743pt;}
.y3e_c00015{bottom:485.551675pt;}
.y2c_c00015{bottom:505.657801pt;}
.y3c_c00015{bottom:505.867200pt;}
.y1a_c00015{bottom:518.742959pt;}
.y3b_c00015{bottom:526.342156pt;}
.y2b_c00015{bottom:528.455258pt;}
.y19_c00015{bottom:537.108285pt;}
.y3a_c00015{bottom:543.916549pt;}
.y18_c00015{bottom:554.526945pt;}
.y2a_c00015{bottom:573.737773pt;}
.y39_c00015{bottom:574.473470pt;}
.y38_c00015{bottom:591.892263pt;}
.y29_c00015{bottom:596.538431pt;}
.y36_c00015{bottom:606.411200pt;}
.y28_c00015{bottom:619.181489pt;}
.y35_c00015{bottom:620.919621pt;}
.y34_c00015{bottom:638.337081pt;}
.y27_c00015{bottom:641.822146pt;}
.y17_c00015{bottom:642.718910pt;}
.y16_c00015{bottom:659.816236pt;}
.y15_c00015{bottom:671.850898pt;}
.y26_c00015{bottom:687.262795pt;}
.y33_c00015{bottom:692.642126pt;}
.y14_c00015{bottom:705.098885pt;}
.y25_c00015{bottom:709.903452pt;}
.y32_c00015{bottom:710.060919pt;}
.y13_c00015{bottom:723.466877pt;}
.y24_c00015{bottom:724.312780pt;}
.y31_c00015{bottom:727.479045pt;}
.y23_c00015{bottom:738.560907pt;}
.y12_c00015{bottom:740.882870pt;}
.y22_c00015{bottom:752.971568pt;}
.y30_c00015{bottom:758.194633pt;}
.y20_c00015{bottom:766.903563pt;}
.y21_c00015{bottom:766.904896pt;}
.y2f_c00015{bottom:775.609026pt;}
.y11_c00015{bottom:781.734854pt;}
.y1f_c00015{bottom:781.943557pt;}
.y2e_c00015{bottom:793.025952pt;}
.y1e_c00015{bottom:796.514218pt;}
.y10_c00015{bottom:799.624180pt;}
.y1b_c00015{bottom:812.243200pt;}
.yf_c00015{bottom:815.614840pt;}
.ye_c00015{bottom:873.564151pt;}
.yd_c00015{bottom:893.990889pt;}
.yc_c00015{bottom:907.132137pt;}
.yb_c00015{bottom:924.863730pt;}
.ya_c00015{bottom:960.806782pt;}
.y8_c00015{bottom:978.696108pt;}
.y7_c00015{bottom:1000.388100pt;}
.y6_c00015{bottom:1018.912492pt;}
.y5_c00015{bottom:1037.122485pt;}
.y4_c00015{bottom:1055.329411pt;}
.hc_c00015{height:14.091200pt;}
.hf_c00015{height:14.883200pt;}
.h10_c00015{height:14.888000pt;}
.hb_c00015{height:17.050388pt;}
.h1_c00015{height:17.893120pt;}
.h12_c00015{height:23.545784pt;}
.h14_c00015{height:25.575650pt;}
.h7_c00015{height:33.694912pt;}
.h5_c00015{height:37.349260pt;}
.h9_c00015{height:40.596650pt;}
.he_c00015{height:47.099284pt;}
.ha_c00015{height:47.498252pt;}
.h6_c00015{height:52.265657pt;}
.h11_c00015{height:52.382192pt;}
.h2_c00015{height:56.683311pt;}
.h13_c00015{height:56.746644pt;}
.h8_c00015{height:56.809977pt;}
.h4_c00015{height:56.936644pt;}
.hd_c00015{height:1110.960672pt;}
.h3_c00015{height:1122.559167pt;}
.h0_c00015{height:1122.666667pt;}
.wb_c00015{width:4.588800pt;}
.w5_c00015{width:4.750400pt;}
.w2_c00015{width:6.966400pt;}
.w9_c00015{width:6.968000pt;}
.wd_c00015{width:7.758400pt;}
.w4_c00015{width:7.913600pt;}
.w6_c00015{width:7.920000pt;}
.w8_c00015{width:15.043200pt;}
.w3_c00015{width:19.318400pt;}
.w7_c00015{width:24.704000pt;}
.wa_c00015{width:25.651200pt;}
.w1_c00015{width:35.148800pt;}
.wf_c00015{width:136.803200pt;}
.we_c00015{width:785.062974pt;}
.wc_c00015{width:793.257550pt;}
.w0_c00015{width:793.333333pt;}
.x0_c00015{left:0.000000pt;}
.x17_c00015{left:1.370626pt;}
.x2d_c00015{left:100.224934pt;}
.x12_c00015{left:101.584309pt;}
.x14_c00015{left:112.825638pt;}
.x15_c00015{left:119.633769pt;}
.x2c_c00015{left:158.966644pt;}
.xf_c00015{left:224.448440pt;}
.xe_c00015{left:240.124654pt;}
.x18_c00015{left:242.407944pt;}
.x16_c00015{left:243.777600pt;}
.x1e_c00015{left:249.689045pt;}
.x21_c00015{left:259.507113pt;}
.x22_c00015{left:260.932899pt;}
.x1c_c00015{left:262.671692pt;}
.x1f_c00015{left:265.843066pt;}
.x20_c00015{left:278.663945pt;}
.x19_c00015{left:303.363486pt;}
.x13_c00015{left:315.648624pt;}
.x11_c00015{left:331.956469pt;}
.x1a_c00015{left:354.505359pt;}
.x23_c00015{left:358.621882pt;}
.x10_c00015{left:373.596470pt;}
.x1d_c00015{left:383.163920pt;}
.x1b_c00015{left:453.463859pt;}
.x1_c00015{left:502.019200pt;}
.x2_c00015{left:537.168000pt;}
.x3_c00015{left:544.134400pt;}
.x4_c00015{left:563.452800pt;}
.x5_c00015{left:570.419200pt;}
.x27_c00015{left:572.214249pt;}
.x25_c00015{left:574.271098pt;}
.x6_c00015{left:578.332800pt;}
.x24_c00015{left:579.970470pt;}
.x7_c00015{left:582.764800pt;}
.x26_c00015{left:586.144843pt;}
.x2a_c00015{left:587.502168pt;}
.x8_c00015{left:593.849600pt;}
.x28_c00015{left:602.137936pt;}
.x2b_c00015{left:608.944613pt;}
.x29_c00015{left:610.303988pt;}
.x9_c00015{left:622.192000pt;}
.xa_c00015{left:635.648000pt;}
.xb_c00015{left:642.616000pt;}
.xc_c00015{left:668.267200pt;}
.xd_c00015{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.115000;font-style:normal;font-weight:normal;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_5125eb1945c3cd8e8e8a6d41.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.112000;font-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_c00016{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls0_c00016{letter-spacing:0.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00016{word-spacing:-33.234141px;}
.ws0_c00016{word-spacing:-17.812493px;}
.ws2_c00016{word-spacing:0.000000px;}
._10_c00016{margin-left:-4.464889px;}
._11_c00016{margin-left:-2.685166px;}
._3_c00016{margin-left:-1.535494px;}
._0_c00016{width:1.056287px;}
._1_c00016{width:3.003006px;}
._2_c00016{width:4.550017px;}
._6_c00016{width:6.018848px;}
._8_c00016{width:7.374595px;}
._7_c00016{width:8.511817px;}
._9_c00016{width:9.591118px;}
._15_c00016{width:10.666928px;}
._d_c00016{width:11.775920px;}
._e_c00016{width:12.813098px;}
._f_c00016{width:13.818285px;}
._13_c00016{width:14.987843px;}
._5_c00016{width:15.999017px;}
._4_c00016{width:19.008870px;}
._c_c00016{width:20.436646px;}
._a_c00016{width:21.775461px;}
._b_c00016{width:23.309059px;}
._12_c00016{width:58.979415px;}
._14_c00016{width:82.709104px;}
.fc1_c00016{color:rgb(105,148,45);}
.fc0_c00016{color:rgb(35,31,32);}
.fs2_c00016{font-size:59.136936px;}
.fs1_c00016{font-size:65.550574px;}
.fs0_c00016{font-size:71.249972px;}
.y0_c00016{bottom:0.000000px;}
.y3_c00016{bottom:0.120938px;}
.y2_c00016{bottom:4.276426px;}
.y8_c00016{bottom:6.826644px;}
.ya_c00016{bottom:99.329814px;}
.y1_c00016{bottom:105.446880px;}
.y2a_c00016{bottom:139.412498px;}
.y29_c00016{bottom:170.051185px;}
.y28_c00016{bottom:200.864173px;}
.y27_c00016{bottom:231.500761px;}
.y26_c00016{bottom:250.736753px;}
.y25_c00016{bottom:277.096692px;}
.y24_c00016{bottom:307.912530px;}
.y23_c00016{bottom:338.550468px;}
.y22_c00016{bottom:386.464949px;}
.y21_c00016{bottom:417.099436px;}
.y20_c00016{bottom:473.388864px;}
.y1f_c00016{bottom:504.204702px;}
.y1e_c00016{bottom:534.842639px;}
.y1d_c00016{bottom:565.657127px;}
.y1c_c00016{bottom:598.610614px;}
.y1b_c00016{bottom:628.358002px;}
.y1a_c00016{bottom:659.173090px;}
.y19_c00016{bottom:678.232082px;}
.y18_c00016{bottom:704.595171px;}
.y17_c00016{bottom:735.409659px;}
.y16_c00016{bottom:766.047597px;}
.y15_c00016{bottom:796.862085px;}
.y14_c00016{bottom:827.501522px;}
.y13_c00016{bottom:847.093014px;}
.y12_c00016{bottom:874.524103px;}
.y11_c00016{bottom:905.162791px;}
.y10_c00016{bottom:935.799979px;}
.yf_c00016{bottom:954.858971px;}
.ye_c00016{bottom:981.399961px;}
.yd_c00016{bottom:1012.038648px;}
.yc_c00016{bottom:1042.853736px;}
.yb_c00016{bottom:1073.490924px;}
.y9_c00016{bottom:1094.327416px;}
.y7_c00016{bottom:1125.436612px;}
.y6_c00016{bottom:1146.276554px;}
.y5_c00016{bottom:1166.762796px;}
.y4_c00016{bottom:1187.245588px;}
.h1_c00016{height:20.129760px;}
.h8_c00016{height:37.906776px;}
.h6_c00016{height:42.017918px;}
.h2_c00016{height:63.768724px;}
.h7_c00016{height:63.839974px;}
.h4_c00016{height:64.053724px;}
.h5_c00016{height:1249.830756px;}
.h3_c00016{height:1262.879062px;}
.h0_c00016{height:1263.000000px;}
.wb_c00016{width:5.162400px;}
.w5_c00016{width:5.344200px;}
.w2_c00016{width:7.837200px;}
.w9_c00016{width:7.839000px;}
.w4_c00016{width:8.902800px;}
.w6_c00016{width:8.910000px;}
.w8_c00016{width:16.923600px;}
.w3_c00016{width:21.733200px;}
.w7_c00016{width:27.792000px;}
.wa_c00016{width:28.857600px;}
.w1_c00016{width:39.542400px;}
.wd_c00016{width:883.195846px;}
.wc_c00016{width:892.414744px;}
.w0_c00016{width:892.500000px;}
.x0_c00016{left:0.000000px;}
.x12_c00016{left:1.541954px;}
.x13_c00016{left:112.753050px;}
.x14_c00016{left:126.289645px;}
.x16_c00016{left:153.008984px;}
.x15_c00016{left:178.837474px;}
.xf_c00016{left:252.504495px;}
.xe_c00016{left:270.140236px;}
.x11_c00016{left:373.451028px;}
.x10_c00016{left:420.296029px;}
.x1_c00016{left:564.771600px;}
.x2_c00016{left:604.314000px;}
.x3_c00016{left:612.151200px;}
.x4_c00016{left:633.884400px;}
.x5_c00016{left:641.721600px;}
.x6_c00016{left:650.624400px;}
.x7_c00016{left:655.610400px;}
.x8_c00016{left:668.080800px;}
.x9_c00016{left:699.966000px;}
.xa_c00016{left:715.104000px;}
.xb_c00016{left:722.943000px;}
.xc_c00016{left:751.800600px;}
.xd_c00016{left:756.963000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws1_c00016{word-spacing:-29.541459pt;}
.ws0_c00016{word-spacing:-15.833327pt;}
.ws2_c00016{word-spacing:0.000000pt;}
._10_c00016{margin-left:-3.968790pt;}
._11_c00016{margin-left:-2.386815pt;}
._3_c00016{margin-left:-1.364883pt;}
._0_c00016{width:0.938922pt;}
._1_c00016{width:2.669338pt;}
._2_c00016{width:4.044459pt;}
._6_c00016{width:5.350087pt;}
._8_c00016{width:6.555195pt;}
._7_c00016{width:7.566059pt;}
._9_c00016{width:8.525438pt;}
._15_c00016{width:9.481714pt;}
._d_c00016{width:10.467484pt;}
._e_c00016{width:11.389421pt;}
._f_c00016{width:12.282920pt;}
._13_c00016{width:13.322527pt;}
._5_c00016{width:14.221349pt;}
._4_c00016{width:16.896773pt;}
._c_c00016{width:18.165908pt;}
._a_c00016{width:19.355965pt;}
._b_c00016{width:20.719164pt;}
._12_c00016{width:52.426146pt;}
._14_c00016{width:73.519204pt;}
.fs2_c00016{font-size:52.566166pt;}
.fs1_c00016{font-size:58.267177pt;}
.fs0_c00016{font-size:63.333308pt;}
.y0_c00016{bottom:0.000000pt;}
.y3_c00016{bottom:0.107500pt;}
.y2_c00016{bottom:3.801268pt;}
.y8_c00016{bottom:6.068128pt;}
.ya_c00016{bottom:88.293168pt;}
.y1_c00016{bottom:93.730560pt;}
.y2a_c00016{bottom:123.922220pt;}
.y29_c00016{bottom:151.156609pt;}
.y28_c00016{bottom:178.545931pt;}
.y27_c00016{bottom:205.778454pt;}
.y26_c00016{bottom:222.877114pt;}
.y25_c00016{bottom:246.308171pt;}
.y24_c00016{bottom:273.700027pt;}
.y23_c00016{bottom:300.933749pt;}
.y22_c00016{bottom:343.524399pt;}
.y21_c00016{bottom:370.755055pt;}
.y20_c00016{bottom:420.790101pt;}
.y1f_c00016{bottom:448.181957pt;}
.y1e_c00016{bottom:475.415679pt;}
.y1d_c00016{bottom:502.806335pt;}
.y1c_c00016{bottom:532.098323pt;}
.y1b_c00016{bottom:558.540446pt;}
.y1a_c00016{bottom:585.931635pt;}
.y19_c00016{bottom:602.872962pt;}
.y18_c00016{bottom:626.306819pt;}
.y17_c00016{bottom:653.697475pt;}
.y16_c00016{bottom:680.931197pt;}
.y15_c00016{bottom:708.321853pt;}
.y14_c00016{bottom:735.556909pt;}
.y13_c00016{bottom:752.971568pt;}
.y12_c00016{bottom:777.354759pt;}
.y11_c00016{bottom:804.589148pt;}
.y10_c00016{bottom:831.822204pt;}
.yf_c00016{bottom:848.763530pt;}
.ye_c00016{bottom:872.355521pt;}
.yd_c00016{bottom:899.589910pt;}
.yc_c00016{bottom:926.981099pt;}
.yb_c00016{bottom:954.214155pt;}
.y9_c00016{bottom:972.735480pt;}
.y7_c00016{bottom:1000.388100pt;}
.y6_c00016{bottom:1018.912492pt;}
.y5_c00016{bottom:1037.122485pt;}
.y4_c00016{bottom:1055.329411pt;}
.h1_c00016{height:17.893120pt;}
.h8_c00016{height:33.694912pt;}
.h6_c00016{height:37.349260pt;}
.h2_c00016{height:56.683311pt;}
.h7_c00016{height:56.746644pt;}
.h4_c00016{height:56.936644pt;}
.h5_c00016{height:1110.960672pt;}
.h3_c00016{height:1122.559167pt;}
.h0_c00016{height:1122.666667pt;}
.wb_c00016{width:4.588800pt;}
.w5_c00016{width:4.750400pt;}
.w2_c00016{width:6.966400pt;}
.w9_c00016{width:6.968000pt;}
.w4_c00016{width:7.913600pt;}
.w6_c00016{width:7.920000pt;}
.w8_c00016{width:15.043200pt;}
.w3_c00016{width:19.318400pt;}
.w7_c00016{width:24.704000pt;}
.wa_c00016{width:25.651200pt;}
.w1_c00016{width:35.148800pt;}
.wd_c00016{width:785.062974pt;}
.wc_c00016{width:793.257550pt;}
.w0_c00016{width:793.333333pt;}
.x0_c00016{left:0.000000pt;}
.x12_c00016{left:1.370626pt;}
.x13_c00016{left:100.224934pt;}
.x14_c00016{left:112.257462pt;}
.x16_c00016{left:136.007986pt;}
.x15_c00016{left:158.966644pt;}
.xf_c00016{left:224.448440pt;}
.xe_c00016{left:240.124654pt;}
.x11_c00016{left:331.956469pt;}
.x10_c00016{left:373.596470pt;}
.x1_c00016{left:502.019200pt;}
.x2_c00016{left:537.168000pt;}
.x3_c00016{left:544.134400pt;}
.x4_c00016{left:563.452800pt;}
.x5_c00016{left:570.419200pt;}
.x6_c00016{left:578.332800pt;}
.x7_c00016{left:582.764800pt;}
.x8_c00016{left:593.849600pt;}
.x9_c00016{left:622.192000pt;}
.xa_c00016{left:635.648000pt;}
.xb_c00016{left:642.616000pt;}
.xc_c00016{left:668.267200pt;}
.xd_c00016{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.115000;font-style:normal;font-weight:normal;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_80d2acf3d5e0b5ae10db2d64.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.112000;font-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_c00017{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00017{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00017{word-spacing:-33.234141px;}
.ws0_c00017{word-spacing:-17.812493px;}
.ws2_c00017{word-spacing:0.000000px;}
._15_c00017{margin-left:-4.702059px;}
._12_c00017{margin-left:-3.384626px;}
._b_c00017{margin-left:-2.104952px;}
._4_c00017{margin-left:-1.068992px;}
._0_c00017{width:1.056287px;}
._5_c00017{width:2.299143px;}
._8_c00017{width:3.434289px;}
._9_c00017{width:4.489406px;}
._e_c00017{width:5.723428px;}
._13_c00017{width:6.782768px;}
._a_c00017{width:7.845487px;}
._6_c00017{width:9.804135px;}
._7_c00017{width:10.832694px;}
._11_c00017{width:12.048844px;}
._d_c00017{width:14.079894px;}
._2_c00017{width:15.188022px;}
._3_c00017{width:16.563914px;}
._c_c00017{width:20.141814px;}
._f_c00017{width:22.083134px;}
._10_c00017{width:23.557341px;}
._14_c00017{width:24.731686px;}
._1_c00017{width:82.709104px;}
.fc1_c00017{color:rgb(105,148,45);}
.fc0_c00017{color:rgb(35,31,32);}
.fs3_c00017{font-size:41.324503px;}
.fs2_c00017{font-size:59.136936px;}
.fs1_c00017{font-size:65.550574px;}
.fs0_c00017{font-size:71.249972px;}
.y0_c00017{bottom:0.000000px;}
.y3_c00017{bottom:0.120938px;}
.y2_c00017{bottom:4.276426px;}
.y8_c00017{bottom:6.826644px;}
.ya_c00017{bottom:99.329814px;}
.y1_c00017{bottom:105.446880px;}
.y2b_c00017{bottom:120.709455px;}
.y29_c00017{bottom:147.066244px;}
.y2a_c00017{bottom:147.070294px;}
.y28_c00017{bottom:177.704182px;}
.y27_c00017{bottom:238.977358px;}
.y26_c00017{bottom:269.618145px;}
.y25_c00017{bottom:300.253983px;}
.y24_c00017{bottom:330.890571px;}
.y23_c00017{bottom:361.527759px;}
.y22_c00017{bottom:392.165696px;}
.y21_c00017{bottom:411.225574px;}
.y20_c00017{bottom:426.010183px;}
.y1f_c00017{bottom:440.080177px;}
.y1e_c00017{bottom:456.469171px;}
.y1d_c00017{bottom:492.275956px;}
.y1c_c00017{bottom:508.661650px;}
.y1b_c00017{bottom:535.020989px;}
.y1a_c00017{bottom:565.662527px;}
.y19_c00017{bottom:596.297615px;}
.y18_c00017{bottom:626.934802px;}
.y17_c00017{bottom:657.571990px;}
.y16_c00017{bottom:688.209928px;}
.y15_c00017{bottom:718.845766px;}
.y14_c00017{bottom:749.485203px;}
.y13_c00017{bottom:780.121041px;}
.y12_c00017{bottom:809.333530px;}
.y11_c00017{bottom:838.009318px;}
.y10_c00017{bottom:868.647256px;}
.yf_c00017{bottom:899.460243px;}
.ye_c00017{bottom:955.746821px;}
.yd_c00017{bottom:986.562659px;}
.yc_c00017{bottom:1017.197146px;}
.yb_c00017{bottom:1048.017934px;}
.y9_c00017{bottom:1094.327416px;}
.y7_c00017{bottom:1125.436612px;}
.y6_c00017{bottom:1146.276554px;}
.y5_c00017{bottom:1166.762796px;}
.y4_c00017{bottom:1187.245588px;}
.h1_c00017{height:20.129760px;}
.ha_c00017{height:26.489007px;}
.h8_c00017{height:37.906776px;}
.h6_c00017{height:42.017918px;}
.h9_c00017{height:58.929966px;}
.h2_c00017{height:63.768724px;}
.h7_c00017{height:63.839974px;}
.h4_c00017{height:64.053724px;}
.h5_c00017{height:1249.830756px;}
.h3_c00017{height:1262.879062px;}
.h0_c00017{height:1263.000000px;}
.wb_c00017{width:5.162400px;}
.w5_c00017{width:5.344200px;}
.w2_c00017{width:7.837200px;}
.w9_c00017{width:7.839000px;}
.w4_c00017{width:8.902800px;}
.w6_c00017{width:8.910000px;}
.w8_c00017{width:16.923600px;}
.w3_c00017{width:21.733200px;}
.w7_c00017{width:27.792000px;}
.wa_c00017{width:28.857600px;}
.w1_c00017{width:39.542400px;}
.wd_c00017{width:883.195846px;}
.wc_c00017{width:892.414744px;}
.w0_c00017{width:892.500000px;}
.x0_c00017{left:0.000000px;}
.x12_c00017{left:1.541954px;}
.x13_c00017{left:112.753050px;}
.x16_c00017{left:126.289438px;}
.x14_c00017{left:153.008984px;}
.x15_c00017{left:179.722989px;}
.xf_c00017{left:252.504495px;}
.xe_c00017{left:270.140236px;}
.x11_c00017{left:373.451028px;}
.x10_c00017{left:420.296029px;}
.x1_c00017{left:564.771600px;}
.x2_c00017{left:604.314000px;}
.x3_c00017{left:612.151200px;}
.x4_c00017{left:633.884400px;}
.x5_c00017{left:641.721600px;}
.x6_c00017{left:650.624400px;}
.x7_c00017{left:655.610400px;}
.x8_c00017{left:668.080800px;}
.x9_c00017{left:699.966000px;}
.xa_c00017{left:715.104000px;}
.xb_c00017{left:722.943000px;}
.xc_c00017{left:751.800600px;}
.xd_c00017{left:756.963000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws1_c00017{word-spacing:-29.541459pt;}
.ws0_c00017{word-spacing:-15.833327pt;}
.ws2_c00017{word-spacing:0.000000pt;}
._15_c00017{margin-left:-4.179608pt;}
._12_c00017{margin-left:-3.008557pt;}
._b_c00017{margin-left:-1.871069pt;}
._4_c00017{margin-left:-0.950215pt;}
._0_c00017{width:0.938922pt;}
._5_c00017{width:2.043683pt;}
._8_c00017{width:3.052701pt;}
._9_c00017{width:3.990583pt;}
._e_c00017{width:5.087491pt;}
._13_c00017{width:6.029127pt;}
._a_c00017{width:6.973766pt;}
._6_c00017{width:8.714787pt;}
._7_c00017{width:9.629062pt;}
._11_c00017{width:10.710084pt;}
._d_c00017{width:12.515462pt;}
._2_c00017{width:13.500464pt;}
._3_c00017{width:14.723479pt;}
._c_c00017{width:17.903834pt;}
._f_c00017{width:19.629452pt;}
._10_c00017{width:20.939858pt;}
._14_c00017{width:21.983721pt;}
._1_c00017{width:73.519204pt;}
.fs3_c00017{font-size:36.732892pt;}
.fs2_c00017{font-size:52.566166pt;}
.fs1_c00017{font-size:58.267177pt;}
.fs0_c00017{font-size:63.333308pt;}
.y0_c00017{bottom:0.000000pt;}
.y3_c00017{bottom:0.107500pt;}
.y2_c00017{bottom:3.801268pt;}
.y8_c00017{bottom:6.068128pt;}
.ya_c00017{bottom:88.293168pt;}
.y1_c00017{bottom:93.730560pt;}
.y2b_c00017{bottom:107.297293pt;}
.y29_c00017{bottom:130.725551pt;}
.y2a_c00017{bottom:130.729151pt;}
.y28_c00017{bottom:157.959273pt;}
.y27_c00017{bottom:212.424318pt;}
.y26_c00017{bottom:239.660574pt;}
.y25_c00017{bottom:266.892429pt;}
.y24_c00017{bottom:294.124952pt;}
.y23_c00017{bottom:321.358008pt;}
.y22_c00017{bottom:348.591730pt;}
.y21_c00017{bottom:365.533843pt;}
.y20_c00017{bottom:378.675718pt;}
.y1f_c00017{bottom:391.182380pt;}
.y1e_c00017{bottom:405.750374pt;}
.y1d_c00017{bottom:437.578628pt;}
.y1c_c00017{bottom:452.143689pt;}
.y1b_c00017{bottom:475.574213pt;}
.y1a_c00017{bottom:502.811135pt;}
.y19_c00017{bottom:530.042324pt;}
.y18_c00017{bottom:557.275380pt;}
.y17_c00017{bottom:584.508436pt;}
.y16_c00017{bottom:611.742158pt;}
.y15_c00017{bottom:638.974014pt;}
.y14_c00017{bottom:666.209070pt;}
.y13_c00017{bottom:693.440926pt;}
.y12_c00017{bottom:719.407582pt;}
.y11_c00017{bottom:744.897172pt;}
.y10_c00017{bottom:772.130894pt;}
.yf_c00017{bottom:799.520216pt;}
.ye_c00017{bottom:849.552730pt;}
.yd_c00017{bottom:876.944585pt;}
.yc_c00017{bottom:904.175241pt;}
.yb_c00017{bottom:931.571497pt;}
.y9_c00017{bottom:972.735480pt;}
.y7_c00017{bottom:1000.388100pt;}
.y6_c00017{bottom:1018.912492pt;}
.y5_c00017{bottom:1037.122485pt;}
.y4_c00017{bottom:1055.329411pt;}
.h1_c00017{height:17.893120pt;}
.ha_c00017{height:23.545784pt;}
.h8_c00017{height:33.694912pt;}
.h6_c00017{height:37.349260pt;}
.h9_c00017{height:52.382192pt;}
.h2_c00017{height:56.683311pt;}
.h7_c00017{height:56.746644pt;}
.h4_c00017{height:56.936644pt;}
.h5_c00017{height:1110.960672pt;}
.h3_c00017{height:1122.559167pt;}
.h0_c00017{height:1122.666667pt;}
.wb_c00017{width:4.588800pt;}
.w5_c00017{width:4.750400pt;}
.w2_c00017{width:6.966400pt;}
.w9_c00017{width:6.968000pt;}
.w4_c00017{width:7.913600pt;}
.w6_c00017{width:7.920000pt;}
.w8_c00017{width:15.043200pt;}
.w3_c00017{width:19.318400pt;}
.w7_c00017{width:24.704000pt;}
.wa_c00017{width:25.651200pt;}
.w1_c00017{width:35.148800pt;}
.wd_c00017{width:785.062974pt;}
.wc_c00017{width:793.257550pt;}
.w0_c00017{width:793.333333pt;}
.x0_c00017{left:0.000000pt;}
.x12_c00017{left:1.370626pt;}
.x13_c00017{left:100.224934pt;}
.x16_c00017{left:112.257278pt;}
.x14_c00017{left:136.007986pt;}
.x15_c00017{left:159.753768pt;}
.xf_c00017{left:224.448440pt;}
.xe_c00017{left:240.124654pt;}
.x11_c00017{left:331.956469pt;}
.x10_c00017{left:373.596470pt;}
.x1_c00017{left:502.019200pt;}
.x2_c00017{left:537.168000pt;}
.x3_c00017{left:544.134400pt;}
.x4_c00017{left:563.452800pt;}
.x5_c00017{left:570.419200pt;}
.x6_c00017{left:578.332800pt;}
.x7_c00017{left:582.764800pt;}
.x8_c00017{left:593.849600pt;}
.x9_c00017{left:622.192000pt;}
.xa_c00017{left:635.648000pt;}
.xb_c00017{left:642.616000pt;}
.xc_c00017{left:668.267200pt;}
.xd_c00017{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.115000;font-style:normal;font-weight:normal;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_c099456a985eb051546dc0dc.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00018;src:url('chunks/assets/font_819c66cf55a80f37e3448684.woff2')format("woff");}.ff6_c00018{font-family:ff6_c00018;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00018{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls1_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:0.286609px;}
.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;}
}
.ws1_c00018{word-spacing:-33.520750px;}
.ws0_c00018{word-spacing:-17.812493px;}
.ws2_c00018{word-spacing:0.000000px;}
._1_c00018{margin-left:-1.336837px;}
._0_c00018{width:1.056287px;}
._7_c00018{width:2.247523px;}
._8_c00018{width:3.358312px;}
._5_c00018{width:4.506180px;}
._6_c00018{width:5.631139px;}
._3_c00018{width:6.964600px;}
._2_c00018{width:8.155645px;}
._b_c00018{width:10.049674px;}
._4_c00018{width:11.114608px;}
._9_c00018{width:12.137057px;}
._a_c00018{width:15.086757px;}
.fc1_c00018{color:rgb(105,148,45);}
.fc0_c00018{color:rgb(35,31,32);}
.fs3_c00018{font-size:41.324503px;}
.fs2_c00018{font-size:59.136936px;}
.fs1_c00018{font-size:65.550574px;}
.fs0_c00018{font-size:71.249972px;}
.y0_c00018{bottom:0.000000px;}
.y3_c00018{bottom:0.120938px;}
.y2_c00018{bottom:4.276426px;}
.y8_c00018{bottom:6.826644px;}
.ya_c00018{bottom:99.329814px;}
.y1_c00018{bottom:105.446880px;}
.y24_c00018{bottom:131.215451px;}
.y23_c00018{bottom:159.893039px;}
.y22_c00018{bottom:188.571378px;}
.y21_c00018{bottom:217.070466px;}
.y20_c00018{bottom:274.249244px;}
.y1f_c00018{bottom:302.927132px;}
.y1e_c00018{bottom:331.427121px;}
.y1d_c00018{bottom:360.104709px;}
.y1c_c00018{bottom:388.609198px;}
.y1b_c00018{bottom:417.286186px;}
.y1a_c00018{bottom:474.459863px;}
.y19_c00018{bottom:531.282241px;}
.y18_c00018{bottom:588.815468px;}
.y17_c00018{bottom:645.634095px;}
.y16_c00018{bottom:674.489583px;}
.y15_c00018{bottom:704.949021px;}
.y14_c00018{bottom:735.586209px;}
.y13_c00018{bottom:794.721135px;}
.y12_c00018{bottom:854.038912px;}
.y11_c00018{bottom:884.676849px;}
.y10_c00018{bottom:915.312687px;}
.yf_c00018{bottom:945.948525px;}
.ye_c00018{bottom:976.587963px;}
.yd_c00018{bottom:1025.573443px;}
.yc_c00018{bottom:1042.317936px;}
.yb_c00018{bottom:1077.764422px;}
.y9_c00018{bottom:1094.327416px;}
.y7_c00018{bottom:1125.436612px;}
.y6_c00018{bottom:1146.276554px;}
.y5_c00018{bottom:1166.762796px;}
.y4_c00018{bottom:1187.245588px;}
.h1_c00018{height:20.129760px;}
.h9_c00018{height:26.489007px;}
.h7_c00018{height:37.906776px;}
.h6_c00018{height:42.017918px;}
.hc_c00018{height:42.756005px;}
.h8_c00018{height:58.733314px;}
.h2_c00018{height:63.768724px;}
.ha_c00018{height:63.839974px;}
.hb_c00018{height:63.911224px;}
.h4_c00018{height:64.053724px;}
.h5_c00018{height:1249.830756px;}
.h3_c00018{height:1262.879062px;}
.h0_c00018{height:1263.000000px;}
.wb_c00018{width:5.162400px;}
.w5_c00018{width:5.344200px;}
.w2_c00018{width:7.837200px;}
.w9_c00018{width:7.839000px;}
.w4_c00018{width:8.902800px;}
.w6_c00018{width:8.910000px;}
.w8_c00018{width:16.923600px;}
.w3_c00018{width:21.733200px;}
.w7_c00018{width:27.792000px;}
.wa_c00018{width:28.857600px;}
.w1_c00018{width:39.542400px;}
.wd_c00018{width:883.195846px;}
.wc_c00018{width:892.414744px;}
.w0_c00018{width:892.500000px;}
.x0_c00018{left:0.000000px;}
.x12_c00018{left:1.541954px;}
.x13_c00018{left:112.753050px;}
.x15_c00018{left:126.289990px;}
.x16_c00018{left:139.826885px;}
.x14_c00018{left:165.296979px;}
.xf_c00018{left:252.504495px;}
.xe_c00018{left:270.140236px;}
.x11_c00018{left:373.451028px;}
.x10_c00018{left:420.296029px;}
.x1_c00018{left:564.771600px;}
.x2_c00018{left:604.314000px;}
.x3_c00018{left:612.151200px;}
.x4_c00018{left:633.884400px;}
.x5_c00018{left:641.721600px;}
.x6_c00018{left:650.624400px;}
.x7_c00018{left:655.610400px;}
.x8_c00018{left:668.080800px;}
.x9_c00018{left:699.966000px;}
.xa_c00018{left:715.104000px;}
.xb_c00018{left:722.943000px;}
.xc_c00018{left:751.800600px;}
.xd_c00018{left:756.963000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls1_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:0.254764pt;}
.ws1_c00018{word-spacing:-29.796222pt;}
.ws0_c00018{word-spacing:-15.833327pt;}
.ws2_c00018{word-spacing:0.000000pt;}
._1_c00018{margin-left:-1.188300pt;}
._0_c00018{width:0.938922pt;}
._7_c00018{width:1.997798pt;}
._8_c00018{width:2.985166pt;}
._5_c00018{width:4.005493pt;}
._6_c00018{width:5.005456pt;}
._3_c00018{width:6.190755pt;}
._2_c00018{width:7.249462pt;}
._b_c00018{width:8.933044pt;}
._4_c00018{width:9.879652pt;}
._9_c00018{width:10.788495pt;}
._a_c00018{width:13.410451pt;}
.fs3_c00018{font-size:36.732892pt;}
.fs2_c00018{font-size:52.566166pt;}
.fs1_c00018{font-size:58.267177pt;}
.fs0_c00018{font-size:63.333308pt;}
.y0_c00018{bottom:0.000000pt;}
.y3_c00018{bottom:0.107500pt;}
.y2_c00018{bottom:3.801268pt;}
.y8_c00018{bottom:6.068128pt;}
.ya_c00018{bottom:88.293168pt;}
.y1_c00018{bottom:93.730560pt;}
.y24_c00018{bottom:116.635956pt;}
.y23_c00018{bottom:142.127146pt;}
.y22_c00018{bottom:167.619003pt;}
.y21_c00018{bottom:192.951526pt;}
.y20_c00018{bottom:243.777105pt;}
.y1f_c00018{bottom:269.268562pt;}
.y1e_c00018{bottom:294.601885pt;}
.y1d_c00018{bottom:320.093075pt;}
.y1c_c00018{bottom:345.430398pt;}
.y1b_c00018{bottom:370.921055pt;}
.y1a_c00018{bottom:421.742101pt;}
.y19_c00018{bottom:472.250881pt;}
.y18_c00018{bottom:523.391527pt;}
.y17_c00018{bottom:573.896973pt;}
.y16_c00018{bottom:599.546296pt;}
.y15_c00018{bottom:626.621352pt;}
.y14_c00018{bottom:653.854408pt;}
.y13_c00018{bottom:706.418787pt;}
.y12_c00018{bottom:759.145699pt;}
.y11_c00018{bottom:786.379422pt;}
.y10_c00018{bottom:813.611277pt;}
.yf_c00018{bottom:840.843133pt;}
.ye_c00018{bottom:868.078189pt;}
.yd_c00018{bottom:911.620838pt;}
.yc_c00018{bottom:926.504832pt;}
.yb_c00018{bottom:958.012820pt;}
.y9_c00018{bottom:972.735480pt;}
.y7_c00018{bottom:1000.388100pt;}
.y6_c00018{bottom:1018.912492pt;}
.y5_c00018{bottom:1037.122485pt;}
.y4_c00018{bottom:1055.329411pt;}
.h1_c00018{height:17.893120pt;}
.h9_c00018{height:23.545784pt;}
.h7_c00018{height:33.694912pt;}
.h6_c00018{height:37.349260pt;}
.hc_c00018{height:38.005338pt;}
.h8_c00018{height:52.207390pt;}
.h2_c00018{height:56.683311pt;}
.ha_c00018{height:56.746644pt;}
.hb_c00018{height:56.809977pt;}
.h4_c00018{height:56.936644pt;}
.h5_c00018{height:1110.960672pt;}
.h3_c00018{height:1122.559167pt;}
.h0_c00018{height:1122.666667pt;}
.wb_c00018{width:4.588800pt;}
.w5_c00018{width:4.750400pt;}
.w2_c00018{width:6.966400pt;}
.w9_c00018{width:6.968000pt;}
.w4_c00018{width:7.913600pt;}
.w6_c00018{width:7.920000pt;}
.w8_c00018{width:15.043200pt;}
.w3_c00018{width:19.318400pt;}
.w7_c00018{width:24.704000pt;}
.wa_c00018{width:25.651200pt;}
.w1_c00018{width:35.148800pt;}
.wd_c00018{width:785.062974pt;}
.wc_c00018{width:793.257550pt;}
.w0_c00018{width:793.333333pt;}
.x0_c00018{left:0.000000pt;}
.x12_c00018{left:1.370626pt;}
.x13_c00018{left:100.224934pt;}
.x15_c00018{left:112.257769pt;}
.x16_c00018{left:124.290564pt;}
.x14_c00018{left:146.930648pt;}
.xf_c00018{left:224.448440pt;}
.xe_c00018{left:240.124654pt;}
.x11_c00018{left:331.956469pt;}
.x10_c00018{left:373.596470pt;}
.x1_c00018{left:502.019200pt;}
.x2_c00018{left:537.168000pt;}
.x3_c00018{left:544.134400pt;}
.x4_c00018{left:563.452800pt;}
.x5_c00018{left:570.419200pt;}
.x6_c00018{left:578.332800pt;}
.x7_c00018{left:582.764800pt;}
.x8_c00018{left:593.849600pt;}
.x9_c00018{left:622.192000pt;}
.xa_c00018{left:635.648000pt;}
.xb_c00018{left:642.616000pt;}
.xc_c00018{left:668.267200pt;}
.xd_c00018{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.115000;font-style:normal;font-weight:normal;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_b79d060df7006064640edbc7.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00019;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00019;src:url('chunks/assets/font_819c66cf55a80f37e3448684.woff2')format("woff");}.ff6_c00019{font-family:ff6_c00019;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00019{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls1_c00019{letter-spacing:0.000000px;}
.ls0_c00019{letter-spacing:0.286609px;}
.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:-33.520750px;}
.ws0_c00019{word-spacing:-17.812493px;}
.ws2_c00019{word-spacing:0.000000px;}
._3_c00019{margin-left:-1.057258px;}
._0_c00019{width:1.056287px;}
._5_c00019{width:2.254075px;}
._a_c00019{width:3.812697px;}
._1_c00019{width:5.105819px;}
._8_c00019{width:7.024558px;}
._6_c00019{width:8.706423px;}
._7_c00019{width:9.960885px;}
._4_c00019{width:11.172690px;}
._2_c00019{width:12.256050px;}
._9_c00019{width:13.765715px;}
._b_c00019{width:19.848842px;}
._c_c00019{width:20.939022px;}
.fc1_c00019{color:rgb(105,148,45);}
.fc0_c00019{color:rgb(35,31,32);}
.fs2_c00019{font-size:59.136936px;}
.fs1_c00019{font-size:65.550574px;}
.fs0_c00019{font-size:71.249972px;}
.y0_c00019{bottom:0.000000px;}
.y3_c00019{bottom:0.120938px;}
.y2_c00019{bottom:4.276426px;}
.y8_c00019{bottom:6.826644px;}
.ya_c00019{bottom:99.329814px;}
.y1_c00019{bottom:105.446880px;}
.y25_c00019{bottom:196.946924px;}
.y24_c00019{bottom:225.622413px;}
.y23_c00019{bottom:254.122402px;}
.y22_c00019{bottom:282.800740px;}
.y21_c00019{bottom:311.300729px;}
.y20_c00019{bottom:339.978017px;}
.y1f_c00019{bottom:368.477106px;}
.y1e_c00019{bottom:397.156194px;}
.y1d_c00019{bottom:453.975272px;}
.y1c_c00019{bottom:511.508499px;}
.y1b_c00019{bottom:540.009687px;}
.y1a_c00019{bottom:568.687276px;}
.y19_c00019{bottom:597.186364px;}
.y18_c00019{bottom:625.864703px;}
.y17_c00019{bottom:654.362292px;}
.y16_c00019{bottom:683.043480px;}
.y15_c00019{bottom:711.542569px;}
.y14_c00019{bottom:740.222257px;}
.y13_c00019{bottom:768.723446px;}
.y12_c00019{bottom:797.401034px;}
.y11_c00019{bottom:825.898923px;}
.y10_c00019{bottom:854.576511px;}
.yf_c00019{bottom:883.076500px;}
.ye_c00019{bottom:939.895577px;}
.yd_c00019{bottom:997.430154px;}
.yc_c00019{bottom:1026.104293px;}
.yb_c00019{bottom:1054.608931px;}
.y9_c00019{bottom:1094.327416px;}
.y7_c00019{bottom:1125.436612px;}
.y6_c00019{bottom:1146.276554px;}
.y5_c00019{bottom:1166.762796px;}
.y4_c00019{bottom:1187.245588px;}
.h1_c00019{height:20.129760px;}
.h6_c00019{height:42.017918px;}
.h9_c00019{height:42.756005px;}
.h2_c00019{height:63.768724px;}
.h7_c00019{height:63.839974px;}
.h8_c00019{height:63.911224px;}
.h4_c00019{height:64.053724px;}
.h5_c00019{height:1249.830756px;}
.h3_c00019{height:1262.879062px;}
.h0_c00019{height:1263.000000px;}
.wb_c00019{width:5.162400px;}
.w5_c00019{width:5.344200px;}
.w2_c00019{width:7.837200px;}
.w9_c00019{width:7.839000px;}
.w4_c00019{width:8.902800px;}
.w6_c00019{width:8.910000px;}
.w8_c00019{width:16.923600px;}
.w3_c00019{width:21.733200px;}
.w7_c00019{width:27.792000px;}
.wa_c00019{width:28.857600px;}
.w1_c00019{width:39.542400px;}
.wd_c00019{width:883.195846px;}
.wc_c00019{width:892.414744px;}
.w0_c00019{width:892.500000px;}
.x0_c00019{left:0.000000px;}
.x12_c00019{left:1.541954px;}
.x13_c00019{left:112.753050px;}
.x15_c00019{left:139.470443px;}
.x14_c00019{left:165.296979px;}
.xf_c00019{left:252.504495px;}
.xe_c00019{left:270.140236px;}
.x11_c00019{left:373.451028px;}
.x10_c00019{left:420.296029px;}
.x1_c00019{left:564.771600px;}
.x2_c00019{left:604.314000px;}
.x3_c00019{left:612.151200px;}
.x4_c00019{left:633.884400px;}
.x5_c00019{left:641.721600px;}
.x6_c00019{left:650.624400px;}
.x7_c00019{left:655.610400px;}
.x8_c00019{left:668.080800px;}
.x9_c00019{left:699.966000px;}
.xa_c00019{left:715.104000px;}
.xb_c00019{left:722.943000px;}
.xc_c00019{left:751.800600px;}
.xd_c00019{left:756.963000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls1_c00019{letter-spacing:0.000000pt;}
.ls0_c00019{letter-spacing:0.254764pt;}
.ws1_c00019{word-spacing:-29.796222pt;}
.ws0_c00019{word-spacing:-15.833327pt;}
.ws2_c00019{word-spacing:0.000000pt;}
._3_c00019{margin-left:-0.939785pt;}
._0_c00019{width:0.938922pt;}
._5_c00019{width:2.003622pt;}
._a_c00019{width:3.389064pt;}
._1_c00019{width:4.538506pt;}
._8_c00019{width:6.244051pt;}
._6_c00019{width:7.739043pt;}
._7_c00019{width:8.854120pt;}
._4_c00019{width:9.931280pt;}
._2_c00019{width:10.894267pt;}
._9_c00019{width:12.236191pt;}
._b_c00019{width:17.643415pt;}
._c_c00019{width:18.612464pt;}
.fs2_c00019{font-size:52.566166pt;}
.fs1_c00019{font-size:58.267177pt;}
.fs0_c00019{font-size:63.333308pt;}
.y0_c00019{bottom:0.000000pt;}
.y3_c00019{bottom:0.107500pt;}
.y2_c00019{bottom:3.801268pt;}
.y8_c00019{bottom:6.068128pt;}
.ya_c00019{bottom:88.293168pt;}
.y1_c00019{bottom:93.730560pt;}
.y25_c00019{bottom:175.063933pt;}
.y24_c00019{bottom:200.553256pt;}
.y23_c00019{bottom:225.886579pt;}
.y22_c00019{bottom:251.378436pt;}
.y21_c00019{bottom:276.711759pt;}
.y20_c00019{bottom:302.202682pt;}
.y1f_c00019{bottom:327.535205pt;}
.y1e_c00019{bottom:353.027728pt;}
.y1d_c00019{bottom:403.533575pt;}
.y1c_c00019{bottom:454.674221pt;}
.y1b_c00019{bottom:480.008611pt;}
.y1a_c00019{bottom:505.499801pt;}
.y19_c00019{bottom:530.832324pt;}
.y18_c00019{bottom:556.324180pt;}
.y17_c00019{bottom:581.655370pt;}
.y16_c00019{bottom:607.149760pt;}
.y15_c00019{bottom:632.482283pt;}
.y14_c00019{bottom:657.975340pt;}
.y13_c00019{bottom:683.309730pt;}
.y12_c00019{bottom:708.800919pt;}
.y11_c00019{bottom:734.132376pt;}
.y10_c00019{bottom:759.623566pt;}
.yf_c00019{bottom:784.956889pt;}
.ye_c00019{bottom:835.462735pt;}
.yd_c00019{bottom:886.604582pt;}
.yc_c00019{bottom:912.092705pt;}
.yb_c00019{bottom:937.430161pt;}
.y9_c00019{bottom:972.735480pt;}
.y7_c00019{bottom:1000.388100pt;}
.y6_c00019{bottom:1018.912492pt;}
.y5_c00019{bottom:1037.122485pt;}
.y4_c00019{bottom:1055.329411pt;}
.h1_c00019{height:17.893120pt;}
.h6_c00019{height:37.349260pt;}
.h9_c00019{height:38.005338pt;}
.h2_c00019{height:56.683311pt;}
.h7_c00019{height:56.746644pt;}
.h8_c00019{height:56.809977pt;}
.h4_c00019{height:56.936644pt;}
.h5_c00019{height:1110.960672pt;}
.h3_c00019{height:1122.559167pt;}
.h0_c00019{height:1122.666667pt;}
.wb_c00019{width:4.588800pt;}
.w5_c00019{width:4.750400pt;}
.w2_c00019{width:6.966400pt;}
.w9_c00019{width:6.968000pt;}
.w4_c00019{width:7.913600pt;}
.w6_c00019{width:7.920000pt;}
.w8_c00019{width:15.043200pt;}
.w3_c00019{width:19.318400pt;}
.w7_c00019{width:24.704000pt;}
.wa_c00019{width:25.651200pt;}
.w1_c00019{width:35.148800pt;}
.wd_c00019{width:785.062974pt;}
.wc_c00019{width:793.257550pt;}
.w0_c00019{width:793.333333pt;}
.x0_c00019{left:0.000000pt;}
.x12_c00019{left:1.370626pt;}
.x13_c00019{left:100.224934pt;}
.x15_c00019{left:123.973727pt;}
.x14_c00019{left:146.930648pt;}
.xf_c00019{left:224.448440pt;}
.xe_c00019{left:240.124654pt;}
.x11_c00019{left:331.956469pt;}
.x10_c00019{left:373.596470pt;}
.x1_c00019{left:502.019200pt;}
.x2_c00019{left:537.168000pt;}
.x3_c00019{left:544.134400pt;}
.x4_c00019{left:563.452800pt;}
.x5_c00019{left:570.419200pt;}
.x6_c00019{left:578.332800pt;}
.x7_c00019{left:582.764800pt;}
.x8_c00019{left:593.849600pt;}
.x9_c00019{left:622.192000pt;}
.xa_c00019{left:635.648000pt;}
.xb_c00019{left:642.616000pt;}
.xc_c00019{left:668.267200pt;}
.xd_c00019{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_2c40022bc4d2b33e0aff12dc.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00020;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:1.112000;font-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_c00020{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:0.286609px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00020{word-spacing:-33.520750px;}
.ws0_c00020{word-spacing:-17.812493px;}
.ws2_c00020{word-spacing:0.000000px;}
._4_c00020{margin-left:-1.405156px;}
._0_c00020{width:1.056287px;}
._c_c00020{width:2.620012px;}
._5_c00020{width:4.126350px;}
._2_c00020{width:5.712273px;}
._3_c00020{width:6.980582px;}
._7_c00020{width:9.137218px;}
._8_c00020{width:10.151509px;}
._9_c00020{width:11.180426px;}
._b_c00020{width:13.074042px;}
._e_c00020{width:14.413164px;}
._f_c00020{width:18.943948px;}
._1_c00020{width:20.030726px;}
._d_c00020{width:23.055665px;}
._6_c00020{width:24.354570px;}
._a_c00020{width:32.690789px;}
.fc1_c00020{color:rgb(105,148,45);}
.fc0_c00020{color:rgb(35,31,32);}
.fs1_c00020{font-size:65.550574px;}
.fs0_c00020{font-size:71.249972px;}
.y0_c00020{bottom:0.000000px;}
.y3_c00020{bottom:0.120938px;}
.y2_c00020{bottom:4.276426px;}
.y8_c00020{bottom:6.826644px;}
.ya_c00020{bottom:99.329814px;}
.y1_c00020{bottom:105.446880px;}
.y26_c00020{bottom:130.326851px;}
.y25_c00020{bottom:158.826840px;}
.y24_c00020{bottom:187.502328px;}
.y23_c00020{bottom:216.004267px;}
.y22_c00020{bottom:244.680505px;}
.y21_c00020{bottom:273.180494px;}
.y20_c00020{bottom:330.361371px;}
.y1f_c00020{bottom:359.038360px;}
.y1e_c00020{bottom:387.537448px;}
.y1d_c00020{bottom:416.214437px;}
.y1c_c00020{bottom:473.391864px;}
.y1b_c00020{bottom:501.891853px;}
.y1a_c00020{bottom:530.569441px;}
.y19_c00020{bottom:559.069430px;}
.y18_c00020{bottom:587.747018px;}
.y17_c00020{bottom:616.244007px;}
.y16_c00020{bottom:644.924445px;}
.y15_c00020{bottom:701.745623px;}
.y14_c00020{bottom:759.277350px;}
.y13_c00020{bottom:787.777338px;}
.y12_c00020{bottom:816.452827px;}
.y11_c00020{bottom:844.954765px;}
.y10_c00020{bottom:873.631754px;}
.yf_c00020{bottom:930.811281px;}
.ye_c00020{bottom:959.309620px;}
.yd_c00020{bottom:987.987208px;}
.yc_c00020{bottom:1016.487197px;}
.yb_c00020{bottom:1073.310924px;}
.y9_c00020{bottom:1094.327416px;}
.y7_c00020{bottom:1125.436612px;}
.y6_c00020{bottom:1146.276554px;}
.y5_c00020{bottom:1166.762796px;}
.y4_c00020{bottom:1187.245588px;}
.h1_c00020{height:20.129760px;}
.h6_c00020{height:42.017918px;}
.h2_c00020{height:63.768724px;}
.h8_c00020{height:63.839974px;}
.h7_c00020{height:63.911224px;}
.h4_c00020{height:64.053724px;}
.h5_c00020{height:1249.830756px;}
.h3_c00020{height:1262.879062px;}
.h0_c00020{height:1263.000000px;}
.wb_c00020{width:5.162400px;}
.w5_c00020{width:5.344200px;}
.w2_c00020{width:7.837200px;}
.w9_c00020{width:7.839000px;}
.w4_c00020{width:8.902800px;}
.w6_c00020{width:8.910000px;}
.w8_c00020{width:16.923600px;}
.w3_c00020{width:21.733200px;}
.w7_c00020{width:27.792000px;}
.wa_c00020{width:28.857600px;}
.w1_c00020{width:39.542400px;}
.wd_c00020{width:883.195846px;}
.wc_c00020{width:892.414744px;}
.w0_c00020{width:892.500000px;}
.x0_c00020{left:0.000000px;}
.x12_c00020{left:1.541954px;}
.x13_c00020{left:112.753050px;}
.x16_c00020{left:126.294380px;}
.x14_c00020{left:139.472540px;}
.x15_c00020{left:165.297577px;}
.x17_c00020{left:178.833055px;}
.xf_c00020{left:252.504495px;}
.xe_c00020{left:270.140236px;}
.x11_c00020{left:373.451028px;}
.x10_c00020{left:420.296029px;}
.x1_c00020{left:564.771600px;}
.x2_c00020{left:604.314000px;}
.x3_c00020{left:612.151200px;}
.x4_c00020{left:633.884400px;}
.x5_c00020{left:641.721600px;}
.x6_c00020{left:650.624400px;}
.x7_c00020{left:655.610400px;}
.x8_c00020{left:668.080800px;}
.x9_c00020{left:699.966000px;}
.xa_c00020{left:715.104000px;}
.xb_c00020{left:722.943000px;}
.xc_c00020{left:751.800600px;}
.xd_c00020{left:756.963000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:0.254764pt;}
.ws1_c00020{word-spacing:-29.796222pt;}
.ws0_c00020{word-spacing:-15.833327pt;}
.ws2_c00020{word-spacing:0.000000pt;}
._4_c00020{margin-left:-1.249028pt;}
._0_c00020{width:0.938922pt;}
._c_c00020{width:2.328900pt;}
._5_c00020{width:3.667866pt;}
._2_c00020{width:5.077576pt;}
._3_c00020{width:6.204961pt;}
._7_c00020{width:8.121971pt;}
._8_c00020{width:9.023564pt;}
._9_c00020{width:9.938156pt;}
._b_c00020{width:11.621371pt;}
._e_c00020{width:12.811701pt;}
._f_c00020{width:16.839065pt;}
._1_c00020{width:17.805090pt;}
._d_c00020{width:20.493924pt;}
._6_c00020{width:21.648507pt;}
._a_c00020{width:29.058479pt;}
.fs1_c00020{font-size:58.267177pt;}
.fs0_c00020{font-size:63.333308pt;}
.y0_c00020{bottom:0.000000pt;}
.y3_c00020{bottom:0.107500pt;}
.y2_c00020{bottom:3.801268pt;}
.y8_c00020{bottom:6.068128pt;}
.ya_c00020{bottom:88.293168pt;}
.y1_c00020{bottom:93.730560pt;}
.y26_c00020{bottom:115.846090pt;}
.y25_c00020{bottom:141.179413pt;}
.y24_c00020{bottom:166.668736pt;}
.y23_c00020{bottom:192.003793pt;}
.y22_c00020{bottom:217.493783pt;}
.y21_c00020{bottom:242.827106pt;}
.y20_c00020{bottom:293.654552pt;}
.y1f_c00020{bottom:319.145209pt;}
.y1e_c00020{bottom:344.477732pt;}
.y1d_c00020{bottom:369.968388pt;}
.y1c_c00020{bottom:420.792768pt;}
.y1b_c00020{bottom:446.126091pt;}
.y1a_c00020{bottom:471.617281pt;}
.y19_c00020{bottom:496.950604pt;}
.y18_c00020{bottom:522.441794pt;}
.y17_c00020{bottom:547.772450pt;}
.y16_c00020{bottom:573.266174pt;}
.y15_c00020{bottom:623.773887pt;}
.y14_c00020{bottom:674.913200pt;}
.y13_c00020{bottom:700.246523pt;}
.y12_c00020{bottom:725.735846pt;}
.y11_c00020{bottom:751.070902pt;}
.y10_c00020{bottom:776.561559pt;}
.yf_c00020{bottom:827.387805pt;}
.ye_c00020{bottom:852.719662pt;}
.yd_c00020{bottom:878.210852pt;}
.yc_c00020{bottom:903.544175pt;}
.yb_c00020{bottom:954.054155pt;}
.y9_c00020{bottom:972.735480pt;}
.y7_c00020{bottom:1000.388100pt;}
.y6_c00020{bottom:1018.912492pt;}
.y5_c00020{bottom:1037.122485pt;}
.y4_c00020{bottom:1055.329411pt;}
.h1_c00020{height:17.893120pt;}
.h6_c00020{height:37.349260pt;}
.h2_c00020{height:56.683311pt;}
.h8_c00020{height:56.746644pt;}
.h7_c00020{height:56.809977pt;}
.h4_c00020{height:56.936644pt;}
.h5_c00020{height:1110.960672pt;}
.h3_c00020{height:1122.559167pt;}
.h0_c00020{height:1122.666667pt;}
.wb_c00020{width:4.588800pt;}
.w5_c00020{width:4.750400pt;}
.w2_c00020{width:6.966400pt;}
.w9_c00020{width:6.968000pt;}
.w4_c00020{width:7.913600pt;}
.w6_c00020{width:7.920000pt;}
.w8_c00020{width:15.043200pt;}
.w3_c00020{width:19.318400pt;}
.w7_c00020{width:24.704000pt;}
.wa_c00020{width:25.651200pt;}
.w1_c00020{width:35.148800pt;}
.wd_c00020{width:785.062974pt;}
.wc_c00020{width:793.257550pt;}
.w0_c00020{width:793.333333pt;}
.x0_c00020{left:0.000000pt;}
.x12_c00020{left:1.370626pt;}
.x13_c00020{left:100.224934pt;}
.x16_c00020{left:112.261671pt;}
.x14_c00020{left:123.975591pt;}
.x15_c00020{left:146.931179pt;}
.x17_c00020{left:158.962716pt;}
.xf_c00020{left:224.448440pt;}
.xe_c00020{left:240.124654pt;}
.x11_c00020{left:331.956469pt;}
.x10_c00020{left:373.596470pt;}
.x1_c00020{left:502.019200pt;}
.x2_c00020{left:537.168000pt;}
.x3_c00020{left:544.134400pt;}
.x4_c00020{left:563.452800pt;}
.x5_c00020{left:570.419200pt;}
.x6_c00020{left:578.332800pt;}
.x7_c00020{left:582.764800pt;}
.x8_c00020{left:593.849600pt;}
.x9_c00020{left:622.192000pt;}
.xa_c00020{left:635.648000pt;}
.xb_c00020{left:642.616000pt;}
.xc_c00020{left:668.267200pt;}
.xd_c00020{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.115000;font-style:normal;font-weight:normal;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_43f615b5cca16201b3ac3684.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.112000;font-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_c00021{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls1_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:0.286609px;}
.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;}
}
.ws1_c00021{word-spacing:-33.520750px;}
.ws0_c00021{word-spacing:-17.812493px;}
.ws2_c00021{word-spacing:0.000000px;}
._3_c00021{margin-left:-1.515317px;}
._0_c00021{width:1.056287px;}
._5_c00021{width:3.461408px;}
._4_c00021{width:4.585019px;}
._8_c00021{width:6.176308px;}
._9_c00021{width:7.669332px;}
._6_c00021{width:10.195702px;}
._7_c00021{width:11.256219px;}
._1_c00021{width:12.809973px;}
._2_c00021{width:14.226122px;}
._c_c00021{width:27.206168px;}
._a_c00021{width:96.177452px;}
._b_c00021{width:193.929406px;}
.fc1_c00021{color:rgb(105,148,45);}
.fc0_c00021{color:rgb(35,31,32);}
.fs4_c00021{font-size:41.324503px;}
.fs2_c00021{font-size:47.737061px;}
.fs3_c00021{font-size:59.136936px;}
.fs1_c00021{font-size:65.550574px;}
.fs0_c00021{font-size:71.249972px;}
.y0_c00021{bottom:0.000000px;}
.y3_c00021{bottom:0.120938px;}
.y2_c00021{bottom:4.276426px;}
.y8_c00021{bottom:6.826644px;}
.ya_c00021{bottom:99.329814px;}
.y1_c00021{bottom:105.446880px;}
.y1d_c00021{bottom:149.922243px;}
.y1c_c00021{bottom:180.559431px;}
.y1b_c00021{bottom:211.195269px;}
.y1a_c00021{bottom:230.255761px;}
.y19_c00021{bottom:245.218255px;}
.y18_c00021{bottom:259.106750px;}
.y17_c00021{bottom:275.848543px;}
.y16_c00021{bottom:311.830229px;}
.y15_c00021{bottom:329.110222px;}
.y14_c00021{bottom:344.072716px;}
.y13_c00021{bottom:368.475906px;}
.y12_c00021{bottom:397.156344px;}
.y11_c00021{bottom:425.654683px;}
.y10_c00021{bottom:478.559662px;}
.y1e_c00021{bottom:834.741229px;}
.yf_c00021{bottom:959.311120px;}
.ye_c00021{bottom:987.988708px;}
.yd_c00021{bottom:1016.487047px;}
.yc_c00021{bottom:1045.164635px;}
.yb_c00021{bottom:1073.667924px;}
.y9_c00021{bottom:1094.327416px;}
.y7_c00021{bottom:1125.436612px;}
.y6_c00021{bottom:1146.276554px;}
.y5_c00021{bottom:1166.762796px;}
.y4_c00021{bottom:1187.245588px;}
.h1_c00021{height:20.129760px;}
.hb_c00021{height:26.489007px;}
.h9_c00021{height:37.906776px;}
.h6_c00021{height:42.017918px;}
.h8_c00021{height:42.724670px;}
.ha_c00021{height:58.733314px;}
.h2_c00021{height:63.768724px;}
.h7_c00021{height:63.839974px;}
.h4_c00021{height:64.053724px;}
.h5_c00021{height:1249.830756px;}
.h3_c00021{height:1262.879062px;}
.h0_c00021{height:1263.000000px;}
.wb_c00021{width:5.162400px;}
.w5_c00021{width:5.344200px;}
.w2_c00021{width:7.837200px;}
.w9_c00021{width:7.839000px;}
.w4_c00021{width:8.902800px;}
.w6_c00021{width:8.910000px;}
.w8_c00021{width:16.923600px;}
.w3_c00021{width:21.733200px;}
.w7_c00021{width:27.792000px;}
.wa_c00021{width:28.857600px;}
.w1_c00021{width:39.542400px;}
.wd_c00021{width:883.195846px;}
.wc_c00021{width:892.414744px;}
.w0_c00021{width:892.500000px;}
.x0_c00021{left:0.000000px;}
.x12_c00021{left:1.541954px;}
.x13_c00021{left:112.753050px;}
.x14_c00021{left:126.289645px;}
.x15_c00021{left:178.837474px;}
.xf_c00021{left:252.504495px;}
.xe_c00021{left:270.140236px;}
.x16_c00021{left:294.186726px;}
.x11_c00021{left:373.451028px;}
.x10_c00021{left:420.296029px;}
.x1_c00021{left:564.771600px;}
.x2_c00021{left:604.314000px;}
.x3_c00021{left:612.151200px;}
.x4_c00021{left:633.884400px;}
.x5_c00021{left:641.721600px;}
.x6_c00021{left:650.624400px;}
.x7_c00021{left:655.610400px;}
.x8_c00021{left:668.080800px;}
.x9_c00021{left:699.966000px;}
.xa_c00021{left:715.104000px;}
.xb_c00021{left:722.943000px;}
.xc_c00021{left:751.800600px;}
.xd_c00021{left:756.963000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls1_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:0.254764pt;}
.ws1_c00021{word-spacing:-29.796222pt;}
.ws0_c00021{word-spacing:-15.833327pt;}
.ws2_c00021{word-spacing:0.000000pt;}
._3_c00021{margin-left:-1.346949pt;}
._0_c00021{width:0.938922pt;}
._5_c00021{width:3.076807pt;}
._4_c00021{width:4.075573pt;}
._8_c00021{width:5.490052pt;}
._9_c00021{width:6.817184pt;}
._6_c00021{width:9.062846pt;}
._7_c00021{width:10.005528pt;}
._1_c00021{width:11.386643pt;}
._2_c00021{width:12.645442pt;}
._c_c00021{width:24.183260pt;}
._a_c00021{width:85.491069pt;}
._b_c00021{width:172.381694pt;}
.fs4_c00021{font-size:36.732892pt;}
.fs2_c00021{font-size:42.432943pt;}
.fs3_c00021{font-size:52.566166pt;}
.fs1_c00021{font-size:58.267177pt;}
.fs0_c00021{font-size:63.333308pt;}
.y0_c00021{bottom:0.000000pt;}
.y3_c00021{bottom:0.107500pt;}
.y2_c00021{bottom:3.801268pt;}
.y8_c00021{bottom:6.068128pt;}
.ya_c00021{bottom:88.293168pt;}
.y1_c00021{bottom:93.730560pt;}
.y1d_c00021{bottom:133.264216pt;}
.y1c_c00021{bottom:160.497272pt;}
.y1b_c00021{bottom:187.729128pt;}
.y1a_c00021{bottom:204.671788pt;}
.y19_c00021{bottom:217.971782pt;}
.y18_c00021{bottom:230.317111pt;}
.y17_c00021{bottom:245.198705pt;}
.y16_c00021{bottom:277.182425pt;}
.y15_c00021{bottom:292.542419pt;}
.y14_c00021{bottom:305.842414pt;}
.y13_c00021{bottom:327.534139pt;}
.y12_c00021{bottom:353.027862pt;}
.y11_c00021{bottom:378.359718pt;}
.y10_c00021{bottom:425.386366pt;}
.y1e_c00021{bottom:741.992203pt;}
.yf_c00021{bottom:852.720995pt;}
.ye_c00021{bottom:878.212185pt;}
.yd_c00021{bottom:903.544041pt;}
.yc_c00021{bottom:929.035231pt;}
.yb_c00021{bottom:954.371488pt;}
.y9_c00021{bottom:972.735480pt;}
.y7_c00021{bottom:1000.388100pt;}
.y6_c00021{bottom:1018.912492pt;}
.y5_c00021{bottom:1037.122485pt;}
.y4_c00021{bottom:1055.329411pt;}
.h1_c00021{height:17.893120pt;}
.hb_c00021{height:23.545784pt;}
.h9_c00021{height:33.694912pt;}
.h6_c00021{height:37.349260pt;}
.h8_c00021{height:37.977484pt;}
.ha_c00021{height:52.207390pt;}
.h2_c00021{height:56.683311pt;}
.h7_c00021{height:56.746644pt;}
.h4_c00021{height:56.936644pt;}
.h5_c00021{height:1110.960672pt;}
.h3_c00021{height:1122.559167pt;}
.h0_c00021{height:1122.666667pt;}
.wb_c00021{width:4.588800pt;}
.w5_c00021{width:4.750400pt;}
.w2_c00021{width:6.966400pt;}
.w9_c00021{width:6.968000pt;}
.w4_c00021{width:7.913600pt;}
.w6_c00021{width:7.920000pt;}
.w8_c00021{width:15.043200pt;}
.w3_c00021{width:19.318400pt;}
.w7_c00021{width:24.704000pt;}
.wa_c00021{width:25.651200pt;}
.w1_c00021{width:35.148800pt;}
.wd_c00021{width:785.062974pt;}
.wc_c00021{width:793.257550pt;}
.w0_c00021{width:793.333333pt;}
.x0_c00021{left:0.000000pt;}
.x12_c00021{left:1.370626pt;}
.x13_c00021{left:100.224934pt;}
.x14_c00021{left:112.257462pt;}
.x15_c00021{left:158.966644pt;}
.xf_c00021{left:224.448440pt;}
.xe_c00021{left:240.124654pt;}
.x16_c00021{left:261.499312pt;}
.x11_c00021{left:331.956469pt;}
.x10_c00021{left:373.596470pt;}
.x1_c00021{left:502.019200pt;}
.x2_c00021{left:537.168000pt;}
.x3_c00021{left:544.134400pt;}
.x4_c00021{left:563.452800pt;}
.x5_c00021{left:570.419200pt;}
.x6_c00021{left:578.332800pt;}
.x7_c00021{left:582.764800pt;}
.x8_c00021{left:593.849600pt;}
.x9_c00021{left:622.192000pt;}
.xa_c00021{left:635.648000pt;}
.xb_c00021{left:642.616000pt;}
.xc_c00021{left:668.267200pt;}
.xd_c00021{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_9d04600c9b662305909fa7bf.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00022;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:1.113000;font-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_c00022{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00022{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls1_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:0.286609px;}
.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;}
}
.ws1_c00022{word-spacing:-33.520750px;}
.ws0_c00022{word-spacing:-17.812493px;}
.ws3_c00022{word-spacing:-13.359250px;}
.ws4_c00022{word-spacing:0.000000px;}
.ws2_c00022{word-spacing:335.459618px;}
._11_c00022{margin-left:-2.967739px;}
._4_c00022{margin-left:-1.380492px;}
._0_c00022{width:1.056287px;}
._8_c00022{width:2.822061px;}
._a_c00022{width:4.972406px;}
._1_c00022{width:7.111202px;}
._d_c00022{width:10.550069px;}
._e_c00022{width:11.926271px;}
._7_c00022{width:13.772494px;}
._5_c00022{width:15.732088px;}
._6_c00022{width:16.751838px;}
._9_c00022{width:21.126671px;}
._2_c00022{width:22.636781px;}
._3_c00022{width:24.440500px;}
._f_c00022{width:34.451182px;}
._10_c00022{width:35.560214px;}
._b_c00022{width:80.671228px;}
._c_c00022{width:81.865330px;}
._13_c00022{width:124.100362px;}
._15_c00022{width:167.871135px;}
._16_c00022{width:184.630079px;}
._14_c00022{width:284.167999px;}
._12_c00022{width:613.174311px;}
.fc1_c00022{color:rgb(105,148,45);}
.fc0_c00022{color:rgb(35,31,32);}
.fs3_c00022{font-size:44.887062px;}
.fs4_c00022{font-size:53.436999px;}
.fs2_c00022{font-size:59.136936px;}
.fs1_c00022{font-size:65.550574px;}
.fs0_c00022{font-size:71.249972px;}
.y0_c00022{bottom:0.000000px;}
.y3_c00022{bottom:0.120938px;}
.y2c_c00022{bottom:3.202721px;}
.y2_c00022{bottom:4.276426px;}
.y8_c00022{bottom:6.826644px;}
.ya_c00022{bottom:99.329814px;}
.y1_c00022{bottom:105.446880px;}
.y2e_c00022{bottom:158.824290px;}
.y2d_c00022{bottom:189.640277px;}
.y2b_c00022{bottom:193.264200px;}
.y2a_c00022{bottom:196.345984px;}
.y29_c00022{bottom:238.918967px;}
.y28_c00022{bottom:254.770961px;}
.y26_c00022{bottom:263.563248px;}
.y27_c00022{bottom:274.008453px;}
.y25_c00022{bottom:283.688830px;}
.y24_c00022{bottom:298.472734px;}
.y23_c00022{bottom:380.229751px;}
.y22_c00022{bottom:408.731690px;}
.y21_c00022{bottom:437.407178px;}
.y20_c00022{bottom:465.909117px;}
.y1f_c00022{bottom:494.586705px;}
.y1e_c00022{bottom:523.083694px;}
.y1d_c00022{bottom:551.764133px;}
.y1c_c00022{bottom:569.933625px;}
.y1b_c00022{bottom:581.868836px;}
.y1a_c00022{bottom:593.622966px;}
.y19_c00022{bottom:611.080109px;}
.y18_c00022{bottom:647.239094px;}
.y17_c00022{bottom:665.587087px;}
.y16_c00022{bottom:691.947326px;}
.y15_c00022{bottom:722.586014px;}
.y14_c00022{bottom:753.223952px;}
.y13_c00022{bottom:813.607628px;}
.y12_c00022{bottom:844.244216px;}
.y11_c00022{bottom:874.880053px;}
.y10_c00022{bottom:905.515891px;}
.yf_c00022{bottom:936.153829px;}
.ye_c00022{bottom:966.792517px;}
.yd_c00022{bottom:997.430454px;}
.yc_c00022{bottom:1047.125434px;}
.yb_c00022{bottom:1073.490924px;}
.y9_c00022{bottom:1094.327416px;}
.y7_c00022{bottom:1125.436612px;}
.y6_c00022{bottom:1146.276554px;}
.y5_c00022{bottom:1166.762796px;}
.y4_c00022{bottom:1187.245588px;}
.he_c00022{height:15.139800px;}
.h1_c00022{height:20.129760px;}
.hb_c00022{height:28.772607px;}
.h8_c00022{height:37.906776px;}
.h6_c00022{height:42.017918px;}
.h9_c00022{height:45.671232px;}
.hf_c00022{height:47.826114px;}
.hd_c00022{height:47.879551px;}
.ha_c00022{height:58.733314px;}
.h2_c00022{height:63.768724px;}
.h7_c00022{height:63.839974px;}
.hc_c00022{height:63.911224px;}
.h4_c00022{height:64.053724px;}
.h5_c00022{height:1249.830756px;}
.h3_c00022{height:1262.879062px;}
.h0_c00022{height:1263.000000px;}
.wb_c00022{width:5.162400px;}
.w5_c00022{width:5.344200px;}
.w2_c00022{width:7.837200px;}
.w9_c00022{width:7.839000px;}
.w4_c00022{width:8.902800px;}
.w6_c00022{width:8.910000px;}
.w8_c00022{width:16.923600px;}
.w3_c00022{width:21.733200px;}
.w7_c00022{width:27.792000px;}
.wa_c00022{width:28.857600px;}
.w1_c00022{width:39.542400px;}
.we_c00022{width:59.673600px;}
.wd_c00022{width:883.195846px;}
.wc_c00022{width:892.414744px;}
.w0_c00022{width:892.500000px;}
.x0_c00022{left:0.000000px;}
.x12_c00022{left:1.541954px;}
.x13_c00022{left:112.753050px;}
.x17_c00022{left:121.763595px;}
.x14_c00022{left:126.289645px;}
.x1f_c00022{left:129.319344px;}
.x18_c00022{left:171.635275px;}
.x15_c00022{left:178.837474px;}
.x1c_c00022{left:187.133269px;}
.xf_c00022{left:252.504495px;}
.xe_c00022{left:270.140236px;}
.x19_c00022{left:277.977733px;}
.x1d_c00022{left:370.436400px;}
.x11_c00022{left:373.451028px;}
.x1a_c00022{left:380.933191px;}
.x16_c00022{left:390.623889px;}
.x10_c00022{left:420.296029px;}
.x1e_c00022{left:463.477360px;}
.x1b_c00022{left:551.396123px;}
.x1_c00022{left:564.771600px;}
.x2_c00022{left:604.314000px;}
.x3_c00022{left:612.151200px;}
.x4_c00022{left:633.884400px;}
.x5_c00022{left:641.721600px;}
.x6_c00022{left:650.624400px;}
.x7_c00022{left:655.610400px;}
.x8_c00022{left:668.080800px;}
.x9_c00022{left:699.966000px;}
.xa_c00022{left:715.104000px;}
.xb_c00022{left:722.943000px;}
.xc_c00022{left:751.800600px;}
.xd_c00022{left:756.963000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:0.254764pt;}
.ws1_c00022{word-spacing:-29.796222pt;}
.ws0_c00022{word-spacing:-15.833327pt;}
.ws3_c00022{word-spacing:-11.874889pt;}
.ws4_c00022{word-spacing:0.000000pt;}
.ws2_c00022{word-spacing:298.186327pt;}
._11_c00022{margin-left:-2.637990pt;}
._4_c00022{margin-left:-1.227104pt;}
._0_c00022{width:0.938922pt;}
._8_c00022{width:2.508499pt;}
._a_c00022{width:4.419917pt;}
._1_c00022{width:6.321069pt;}
._d_c00022{width:9.377839pt;}
._e_c00022{width:10.601130pt;}
._7_c00022{width:12.242217pt;}
._5_c00022{width:13.984078pt;}
._6_c00022{width:14.890522pt;}
._9_c00022{width:18.779263pt;}
._2_c00022{width:20.121583pt;}
._3_c00022{width:21.724889pt;}
._f_c00022{width:30.623273pt;}
._10_c00022{width:31.609079pt;}
._b_c00022{width:71.707758pt;}
._c_c00022{width:72.769183pt;}
._13_c00022{width:110.311433pt;}
._15_c00022{width:149.218786pt;}
._16_c00022{width:164.115626pt;}
._14_c00022{width:252.593777pt;}
._12_c00022{width:545.043832pt;}
.fs3_c00022{font-size:39.899611pt;}
.fs4_c00022{font-size:47.499554pt;}
.fs2_c00022{font-size:52.566166pt;}
.fs1_c00022{font-size:58.267177pt;}
.fs0_c00022{font-size:63.333308pt;}
.y0_c00022{bottom:0.000000pt;}
.y3_c00022{bottom:0.107500pt;}
.y2c_c00022{bottom:2.846863pt;}
.y2_c00022{bottom:3.801268pt;}
.y8_c00022{bottom:6.068128pt;}
.ya_c00022{bottom:88.293168pt;}
.y1_c00022{bottom:93.730560pt;}
.y2e_c00022{bottom:141.177146pt;}
.y2d_c00022{bottom:168.569135pt;}
.y2b_c00022{bottom:171.790400pt;}
.y2a_c00022{bottom:174.529763pt;}
.y29_c00022{bottom:212.372415pt;}
.y28_c00022{bottom:226.463076pt;}
.y26_c00022{bottom:234.278443pt;}
.y27_c00022{bottom:243.563069pt;}
.y25_c00022{bottom:252.167849pt;}
.y24_c00022{bottom:265.309097pt;}
.y23_c00022{bottom:337.982001pt;}
.y22_c00022{bottom:363.317058pt;}
.y21_c00022{bottom:388.806381pt;}
.y20_c00022{bottom:414.141437pt;}
.y1f_c00022{bottom:439.632627pt;}
.y1e_c00022{bottom:464.963284pt;}
.y1d_c00022{bottom:490.457007pt;}
.y1c_c00022{bottom:506.607667pt;}
.y1b_c00022{bottom:517.216743pt;}
.y1a_c00022{bottom:527.664859pt;}
.y19_c00022{bottom:543.182319pt;}
.y18_c00022{bottom:575.323639pt;}
.y17_c00022{bottom:591.632966pt;}
.y16_c00022{bottom:615.064290pt;}
.y15_c00022{bottom:642.298679pt;}
.y14_c00022{bottom:669.532402pt;}
.y13_c00022{bottom:723.206780pt;}
.y12_c00022{bottom:750.439303pt;}
.y11_c00022{bottom:777.671159pt;}
.y10_c00022{bottom:804.903014pt;}
.yf_c00022{bottom:832.136737pt;}
.ye_c00022{bottom:859.371126pt;}
.yd_c00022{bottom:886.604848pt;}
.yc_c00022{bottom:930.778164pt;}
.yb_c00022{bottom:954.214155pt;}
.y9_c00022{bottom:972.735480pt;}
.y7_c00022{bottom:1000.388100pt;}
.y6_c00022{bottom:1018.912492pt;}
.y5_c00022{bottom:1037.122485pt;}
.y4_c00022{bottom:1055.329411pt;}
.he_c00022{height:13.457600pt;}
.h1_c00022{height:17.893120pt;}
.hb_c00022{height:25.575650pt;}
.h8_c00022{height:33.694912pt;}
.h6_c00022{height:37.349260pt;}
.h9_c00022{height:40.596650pt;}
.hf_c00022{height:42.512101pt;}
.hd_c00022{height:42.559601pt;}
.ha_c00022{height:52.207390pt;}
.h2_c00022{height:56.683311pt;}
.h7_c00022{height:56.746644pt;}
.hc_c00022{height:56.809977pt;}
.h4_c00022{height:56.936644pt;}
.h5_c00022{height:1110.960672pt;}
.h3_c00022{height:1122.559167pt;}
.h0_c00022{height:1122.666667pt;}
.wb_c00022{width:4.588800pt;}
.w5_c00022{width:4.750400pt;}
.w2_c00022{width:6.966400pt;}
.w9_c00022{width:6.968000pt;}
.w4_c00022{width:7.913600pt;}
.w6_c00022{width:7.920000pt;}
.w8_c00022{width:15.043200pt;}
.w3_c00022{width:19.318400pt;}
.w7_c00022{width:24.704000pt;}
.wa_c00022{width:25.651200pt;}
.w1_c00022{width:35.148800pt;}
.we_c00022{width:53.043200pt;}
.wd_c00022{width:785.062974pt;}
.wc_c00022{width:793.257550pt;}
.w0_c00022{width:793.333333pt;}
.x0_c00022{left:0.000000pt;}
.x12_c00022{left:1.370626pt;}
.x13_c00022{left:100.224934pt;}
.x17_c00022{left:108.234307pt;}
.x14_c00022{left:112.257462pt;}
.x1f_c00022{left:114.950528pt;}
.x18_c00022{left:152.564689pt;}
.x15_c00022{left:158.966644pt;}
.x1c_c00022{left:166.340683pt;}
.xf_c00022{left:224.448440pt;}
.xe_c00022{left:240.124654pt;}
.x19_c00022{left:247.091318pt;}
.x1d_c00022{left:329.276800pt;}
.x11_c00022{left:331.956469pt;}
.x1a_c00022{left:338.607281pt;}
.x16_c00022{left:347.221235pt;}
.x10_c00022{left:373.596470pt;}
.x1e_c00022{left:411.979876pt;}
.x1b_c00022{left:490.129887pt;}
.x1_c00022{left:502.019200pt;}
.x2_c00022{left:537.168000pt;}
.x3_c00022{left:544.134400pt;}
.x4_c00022{left:563.452800pt;}
.x5_c00022{left:570.419200pt;}
.x6_c00022{left:578.332800pt;}
.x7_c00022{left:582.764800pt;}
.x8_c00022{left:593.849600pt;}
.x9_c00022{left:622.192000pt;}
.xa_c00022{left:635.648000pt;}
.xb_c00022{left:642.616000pt;}
.xc_c00022{left:668.267200pt;}
.xd_c00022{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.115000;font-style:normal;font-weight:normal;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_60a703096d8a2899b6bfa28e.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.112000;font-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_c00023{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.286609px;}
.ls1_c00023{letter-spacing:76.081320px;}
.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;}
}
.ws1_c00023{word-spacing:-33.520750px;}
.ws0_c00023{word-spacing:-17.812493px;}
.ws2_c00023{word-spacing:0.000000px;}
._e_c00023{margin-left:-2.214765px;}
._2_c00023{margin-left:-1.140272px;}
._0_c00023{width:1.056287px;}
._1_c00023{width:2.120754px;}
._10_c00023{width:4.917802px;}
._3_c00023{width:6.079614px;}
._4_c00023{width:7.362277px;}
._b_c00023{width:8.725544px;}
._5_c00023{width:9.762021px;}
._6_c00023{width:11.205973px;}
._f_c00023{width:13.661251px;}
._d_c00023{width:14.885670px;}
._c_c00023{width:16.107315px;}
._7_c00023{width:24.800995px;}
._9_c00023{width:26.046133px;}
._8_c00023{width:27.343790px;}
._a_c00023{width:36.832050px;}
.fc1_c00023{color:rgb(105,148,45);}
.fc0_c00023{color:rgb(35,31,32);}
.fs2_c00023{font-size:41.324503px;}
.fs3_c00023{font-size:59.136936px;}
.fs1_c00023{font-size:65.550574px;}
.fs0_c00023{font-size:71.249972px;}
.y0_c00023{bottom:0.000000px;}
.y3_c00023{bottom:0.120938px;}
.y2_c00023{bottom:4.276426px;}
.y8_c00023{bottom:6.826644px;}
.ya_c00023{bottom:99.329814px;}
.y1_c00023{bottom:105.446880px;}
.y29_c00023{bottom:140.303347px;}
.y28_c00023{bottom:171.117835px;}
.y27_c00023{bottom:201.753673px;}
.y26_c00023{bottom:232.570260px;}
.y25_c00023{bottom:263.208948px;}
.y24_c00023{bottom:324.659873px;}
.y23_c00023{bottom:355.474361px;}
.y22_c00023{bottom:386.111549px;}
.y21_c00023{bottom:416.927386px;}
.y20_c00023{bottom:447.566824px;}
.y1f_c00023{bottom:478.202662px;}
.y1e_c00023{bottom:497.440244px;}
.y1d_c00023{bottom:512.224148px;}
.y1c_c00023{bottom:526.118643px;}
.y1b_c00023{bottom:543.038636px;}
.y1a_c00023{bottom:616.777257px;}
.y19_c00023{bottom:645.277245px;}
.y18_c00023{bottom:673.959184px;}
.y17_c00023{bottom:702.454672px;}
.y16_c00023{bottom:731.135111px;}
.y15_c00023{bottom:759.632699px;}
.y14_c00023{bottom:788.311038px;}
.y13_c00023{bottom:848.161764px;}
.y12_c00023{bottom:868.110856px;}
.y11_c00023{bottom:888.059198px;}
.y10_c00023{bottom:908.008890px;}
.yf_c00023{bottom:928.139332px;}
.ye_c00023{bottom:948.086324px;}
.yd_c00023{bottom:968.037516px;}
.yc_c00023{bottom:1025.214943px;}
.yb_c00023{bottom:1053.714932px;}
.y9_c00023{bottom:1094.327416px;}
.y7_c00023{bottom:1125.436612px;}
.y6_c00023{bottom:1146.276554px;}
.y5_c00023{bottom:1166.762796px;}
.y4_c00023{bottom:1187.245588px;}
.h1_c00023{height:20.129760px;}
.h9_c00023{height:26.489007px;}
.ha_c00023{height:37.906776px;}
.h6_c00023{height:42.017918px;}
.h8_c00023{height:58.733314px;}
.h2_c00023{height:63.768724px;}
.h7_c00023{height:63.839974px;}
.h4_c00023{height:64.053724px;}
.h5_c00023{height:1249.830756px;}
.h3_c00023{height:1262.879062px;}
.h0_c00023{height:1263.000000px;}
.wb_c00023{width:5.162400px;}
.w5_c00023{width:5.344200px;}
.w2_c00023{width:7.837200px;}
.w9_c00023{width:7.839000px;}
.w4_c00023{width:8.902800px;}
.w6_c00023{width:8.910000px;}
.w8_c00023{width:16.923600px;}
.w3_c00023{width:21.733200px;}
.w7_c00023{width:27.792000px;}
.wa_c00023{width:28.857600px;}
.w1_c00023{width:39.542400px;}
.wd_c00023{width:883.195846px;}
.wc_c00023{width:892.414744px;}
.w0_c00023{width:892.500000px;}
.x0_c00023{left:0.000000px;}
.x12_c00023{left:1.541954px;}
.x13_c00023{left:112.753050px;}
.x15_c00023{left:126.292436px;}
.x18_c00023{left:129.313438px;}
.x14_c00023{left:178.837474px;}
.x17_c00023{left:181.864473px;}
.x16_c00023{left:192.911347px;}
.xf_c00023{left:252.504495px;}
.xe_c00023{left:270.140236px;}
.x11_c00023{left:373.451028px;}
.x10_c00023{left:420.296029px;}
.x1_c00023{left:564.771600px;}
.x2_c00023{left:604.314000px;}
.x3_c00023{left:612.151200px;}
.x4_c00023{left:633.884400px;}
.x5_c00023{left:641.721600px;}
.x6_c00023{left:650.624400px;}
.x7_c00023{left:655.610400px;}
.x8_c00023{left:668.080800px;}
.x9_c00023{left:699.966000px;}
.xa_c00023{left:715.104000px;}
.xb_c00023{left:722.943000px;}
.xc_c00023{left:751.800600px;}
.xd_c00023{left:756.963000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.254764pt;}
.ls1_c00023{letter-spacing:67.627840pt;}
.ws1_c00023{word-spacing:-29.796222pt;}
.ws0_c00023{word-spacing:-15.833327pt;}
.ws2_c00023{word-spacing:0.000000pt;}
._e_c00023{margin-left:-1.968680pt;}
._2_c00023{margin-left:-1.013575pt;}
._0_c00023{width:0.938922pt;}
._1_c00023{width:1.885115pt;}
._10_c00023{width:4.371380pt;}
._3_c00023{width:5.404101pt;}
._4_c00023{width:6.544246pt;}
._b_c00023{width:7.756039pt;}
._5_c00023{width:8.677352pt;}
._6_c00023{width:9.960865pt;}
._f_c00023{width:12.143334pt;}
._d_c00023{width:13.231706pt;}
._c_c00023{width:14.317613pt;}
._7_c00023{width:22.045329pt;}
._9_c00023{width:23.152118pt;}
._8_c00023{width:24.305591pt;}
._a_c00023{width:32.739600pt;}
.fs2_c00023{font-size:36.732892pt;}
.fs3_c00023{font-size:52.566166pt;}
.fs1_c00023{font-size:58.267177pt;}
.fs0_c00023{font-size:63.333308pt;}
.y0_c00023{bottom:0.000000pt;}
.y3_c00023{bottom:0.107500pt;}
.y2_c00023{bottom:3.801268pt;}
.y8_c00023{bottom:6.068128pt;}
.ya_c00023{bottom:88.293168pt;}
.y1_c00023{bottom:93.730560pt;}
.y29_c00023{bottom:124.714086pt;}
.y28_c00023{bottom:152.104742pt;}
.y27_c00023{bottom:179.336598pt;}
.y26_c00023{bottom:206.729120pt;}
.y25_c00023{bottom:233.963509pt;}
.y24_c00023{bottom:288.586554pt;}
.y23_c00023{bottom:315.977210pt;}
.y22_c00023{bottom:343.210266pt;}
.y21_c00023{bottom:370.602121pt;}
.y20_c00023{bottom:397.837177pt;}
.y1f_c00023{bottom:425.069033pt;}
.y1e_c00023{bottom:442.169106pt;}
.y1d_c00023{bottom:455.310354pt;}
.y1c_c00023{bottom:467.661016pt;}
.y1b_c00023{bottom:482.701010pt;}
.y1a_c00023{bottom:548.246450pt;}
.y19_c00023{bottom:573.579773pt;}
.y18_c00023{bottom:599.074830pt;}
.y17_c00023{bottom:624.404153pt;}
.y16_c00023{bottom:649.897876pt;}
.y15_c00023{bottom:675.229066pt;}
.y14_c00023{bottom:700.720923pt;}
.y13_c00023{bottom:753.921568pt;}
.y12_c00023{bottom:771.654094pt;}
.y11_c00023{bottom:789.385954pt;}
.y10_c00023{bottom:807.119013pt;}
.yf_c00023{bottom:825.012740pt;}
.ye_c00023{bottom:842.743399pt;}
.yd_c00023{bottom:860.477792pt;}
.yc_c00023{bottom:911.302172pt;}
.yb_c00023{bottom:936.635495pt;}
.y9_c00023{bottom:972.735480pt;}
.y7_c00023{bottom:1000.388100pt;}
.y6_c00023{bottom:1018.912492pt;}
.y5_c00023{bottom:1037.122485pt;}
.y4_c00023{bottom:1055.329411pt;}
.h1_c00023{height:17.893120pt;}
.h9_c00023{height:23.545784pt;}
.ha_c00023{height:33.694912pt;}
.h6_c00023{height:37.349260pt;}
.h8_c00023{height:52.207390pt;}
.h2_c00023{height:56.683311pt;}
.h7_c00023{height:56.746644pt;}
.h4_c00023{height:56.936644pt;}
.h5_c00023{height:1110.960672pt;}
.h3_c00023{height:1122.559167pt;}
.h0_c00023{height:1122.666667pt;}
.wb_c00023{width:4.588800pt;}
.w5_c00023{width:4.750400pt;}
.w2_c00023{width:6.966400pt;}
.w9_c00023{width:6.968000pt;}
.w4_c00023{width:7.913600pt;}
.w6_c00023{width:7.920000pt;}
.w8_c00023{width:15.043200pt;}
.w3_c00023{width:19.318400pt;}
.w7_c00023{width:24.704000pt;}
.wa_c00023{width:25.651200pt;}
.w1_c00023{width:35.148800pt;}
.wd_c00023{width:785.062974pt;}
.wc_c00023{width:793.257550pt;}
.w0_c00023{width:793.333333pt;}
.x0_c00023{left:0.000000pt;}
.x12_c00023{left:1.370626pt;}
.x13_c00023{left:100.224934pt;}
.x15_c00023{left:112.259943pt;}
.x18_c00023{left:114.945278pt;}
.x14_c00023{left:158.966644pt;}
.x17_c00023{left:161.657309pt;}
.x16_c00023{left:171.476753pt;}
.xf_c00023{left:224.448440pt;}
.xe_c00023{left:240.124654pt;}
.x11_c00023{left:331.956469pt;}
.x10_c00023{left:373.596470pt;}
.x1_c00023{left:502.019200pt;}
.x2_c00023{left:537.168000pt;}
.x3_c00023{left:544.134400pt;}
.x4_c00023{left:563.452800pt;}
.x5_c00023{left:570.419200pt;}
.x6_c00023{left:578.332800pt;}
.x7_c00023{left:582.764800pt;}
.x8_c00023{left:593.849600pt;}
.x9_c00023{left:622.192000pt;}
.xa_c00023{left:635.648000pt;}
.xb_c00023{left:642.616000pt;}
.xc_c00023{left:668.267200pt;}
.xd_c00023{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_a4bf9d6414d94a82b2fb5adb.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00024{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls1_c00024{letter-spacing:0.000000px;}
.ls0_c00024{letter-spacing:0.286609px;}
.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;}
}
.ws1_c00024{word-spacing:-33.520750px;}
.ws0_c00024{word-spacing:-17.812493px;}
.ws2_c00024{word-spacing:0.000000px;}
._9_c00024{margin-left:-4.237003px;}
._8_c00024{margin-left:-2.822537px;}
._1_c00024{margin-left:-1.336749px;}
._0_c00024{width:1.056287px;}
._2_c00024{width:2.831348px;}
._7_c00024{width:4.160257px;}
._6_c00024{width:5.619292px;}
._4_c00024{width:7.049358px;}
._3_c00024{width:8.225985px;}
._5_c00024{width:9.701194px;}
._a_c00024{width:11.465713px;}
.fc1_c00024{color:rgb(105,148,45);}
.fc0_c00024{color:rgb(35,31,32);}
.fs3_c00024{font-size:44.887062px;}
.fs5_c00024{font-size:47.737061px;}
.fs2_c00024{font-size:59.136936px;}
.fs1_c00024{font-size:65.550574px;}
.fs0_c00024{font-size:71.249972px;}
.fs4_c00024{font-size:83.362767px;}
.y0_c00024{bottom:0.000000px;}
.y3_c00024{bottom:0.120938px;}
.y2_c00024{bottom:4.276426px;}
.y8_c00024{bottom:6.826644px;}
.ya_c00024{bottom:99.329814px;}
.y1_c00024{bottom:105.446880px;}
.y2f_c00024{bottom:136.206999px;}
.y2e_c00024{bottom:166.841487px;}
.y2d_c00024{bottom:197.660924px;}
.y2c_c00024{bottom:228.296762px;}
.y2b_c00024{bottom:247.531524px;}
.y2a_c00024{bottom:262.316838px;}
.y29_c00024{bottom:277.100742px;}
.y28_c00024{bottom:291.350737px;}
.y27_c00024{bottom:304.531231px;}
.y26_c00024{bottom:323.771724px;}
.y25_c00024{bottom:351.557263px;}
.y24_c00024{bottom:382.195200px;}
.y23_c00024{bottom:413.008188px;}
.y22_c00024{bottom:432.068680px;}
.y21_c00024{bottom:446.495675px;}
.y20_c00024{bottom:463.952668px;}
.y1f_c00024{bottom:499.928653px;}
.y1e_c00024{bottom:520.771145px;}
.y1d_c00024{bottom:560.848129px;}
.y1c_c00024{bottom:574.921123px;}
.y1b_c00024{bottom:588.458618px;}
.y1a_c00024{bottom:607.519710px;}
.y19_c00024{bottom:623.728104px;}
.y18_c00024{bottom:650.086393px;}
.y17_c00024{bottom:680.725831px;}
.y16_c00024{bottom:742.177506px;}
.y15_c00024{bottom:772.811994px;}
.y14_c00024{bottom:803.631432px;}
.y13_c00024{bottom:834.267270px;}
.y12_c00024{bottom:895.719695px;}
.y11_c00024{bottom:926.535533px;}
.y10_c00024{bottom:957.171370px;}
.yf_c00024{bottom:987.987958px;}
.ye_c00024{bottom:1007.043440px;}
.yd_c00024{bottom:1022.009444px;}
.yc_c00024{bottom:1042.317936px;}
.yb_c00024{bottom:1077.764422px;}
.y9_c00024{bottom:1094.327416px;}
.y7_c00024{bottom:1125.436612px;}
.y6_c00024{bottom:1146.276554px;}
.y5_c00024{bottom:1166.762796px;}
.y4_c00024{bottom:1187.245588px;}
.h1_c00024{height:20.129760px;}
.ha_c00024{height:28.772607px;}
.hd_c00024{height:30.599456px;}
.h7_c00024{height:37.906776px;}
.h6_c00024{height:42.017918px;}
.h8_c00024{height:58.733314px;}
.hc_c00024{height:58.929966px;}
.h2_c00024{height:63.768724px;}
.h9_c00024{height:63.839974px;}
.h4_c00024{height:64.053724px;}
.hb_c00024{height:74.943127px;}
.h5_c00024{height:1249.830756px;}
.h3_c00024{height:1262.879062px;}
.h0_c00024{height:1263.000000px;}
.wb_c00024{width:5.162400px;}
.w5_c00024{width:5.344200px;}
.w2_c00024{width:7.837200px;}
.w9_c00024{width:7.839000px;}
.w4_c00024{width:8.902800px;}
.w6_c00024{width:8.910000px;}
.w8_c00024{width:16.923600px;}
.w3_c00024{width:21.733200px;}
.w7_c00024{width:27.792000px;}
.wa_c00024{width:28.857600px;}
.w1_c00024{width:39.542400px;}
.wd_c00024{width:883.195846px;}
.wc_c00024{width:892.414744px;}
.w0_c00024{width:892.500000px;}
.x0_c00024{left:0.000000px;}
.x12_c00024{left:1.541954px;}
.x13_c00024{left:112.753050px;}
.x17_c00024{left:126.294246px;}
.x15_c00024{left:129.319435px;}
.x1b_c00024{left:166.192479px;}
.x16_c00024{left:178.839284px;}
.x19_c00024{left:180.440973px;}
.x14_c00024{left:181.864473px;}
.xf_c00024{left:252.504495px;}
.xe_c00024{left:270.140236px;}
.x18_c00024{left:284.285932px;}
.x1a_c00024{left:367.112899px;}
.x11_c00024{left:373.451028px;}
.x10_c00024{left:420.296029px;}
.x1_c00024{left:564.771600px;}
.x2_c00024{left:604.314000px;}
.x3_c00024{left:612.151200px;}
.x4_c00024{left:633.884400px;}
.x5_c00024{left:641.721600px;}
.x6_c00024{left:650.624400px;}
.x7_c00024{left:655.610400px;}
.x8_c00024{left:668.080800px;}
.x9_c00024{left:699.966000px;}
.xa_c00024{left:715.104000px;}
.xb_c00024{left:722.943000px;}
.xc_c00024{left:751.800600px;}
.xd_c00024{left:756.963000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls1_c00024{letter-spacing:0.000000pt;}
.ls0_c00024{letter-spacing:0.254764pt;}
.ws1_c00024{word-spacing:-29.796222pt;}
.ws0_c00024{word-spacing:-15.833327pt;}
.ws2_c00024{word-spacing:0.000000pt;}
._9_c00024{margin-left:-3.766225pt;}
._8_c00024{margin-left:-2.508922pt;}
._1_c00024{margin-left:-1.188221pt;}
._0_c00024{width:0.938922pt;}
._2_c00024{width:2.516754pt;}
._7_c00024{width:3.698006pt;}
._6_c00024{width:4.994926pt;}
._4_c00024{width:6.266096pt;}
._3_c00024{width:7.311986pt;}
._5_c00024{width:8.623283pt;}
._a_c00024{width:10.191745pt;}
.fs3_c00024{font-size:39.899611pt;}
.fs5_c00024{font-size:42.432943pt;}
.fs2_c00024{font-size:52.566166pt;}
.fs1_c00024{font-size:58.267177pt;}
.fs0_c00024{font-size:63.333308pt;}
.fs4_c00024{font-size:74.100237pt;}
.y0_c00024{bottom:0.000000pt;}
.y3_c00024{bottom:0.107500pt;}
.y2_c00024{bottom:3.801268pt;}
.y8_c00024{bottom:6.068128pt;}
.ya_c00024{bottom:88.293168pt;}
.y1_c00024{bottom:93.730560pt;}
.y2f_c00024{bottom:121.072888pt;}
.y2e_c00024{bottom:148.303544pt;}
.y2d_c00024{bottom:175.698599pt;}
.y2c_c00024{bottom:202.930455pt;}
.y2b_c00024{bottom:220.028022pt;}
.y2a_c00024{bottom:233.170523pt;}
.y29_c00024{bottom:246.311771pt;}
.y28_c00024{bottom:258.978433pt;}
.y27_c00024{bottom:270.694428pt;}
.y26_c00024{bottom:287.797088pt;}
.y25_c00024{bottom:312.495345pt;}
.y24_c00024{bottom:339.729067pt;}
.y23_c00024{bottom:367.118389pt;}
.y22_c00024{bottom:384.061049pt;}
.y21_c00024{bottom:396.885044pt;}
.y20_c00024{bottom:412.402371pt;}
.y1f_c00024{bottom:444.381025pt;}
.y1e_c00024{bottom:462.907684pt;}
.y1d_c00024{bottom:498.531670pt;}
.y1c_c00024{bottom:511.040998pt;}
.y1b_c00024{bottom:523.074327pt;}
.y1a_c00024{bottom:540.017520pt;}
.y19_c00024{bottom:554.424981pt;}
.y18_c00024{bottom:577.854572pt;}
.y17_c00024{bottom:605.089628pt;}
.y16_c00024{bottom:659.713339pt;}
.y15_c00024{bottom:686.943995pt;}
.y14_c00024{bottom:714.339051pt;}
.y13_c00024{bottom:741.570906pt;}
.y12_c00024{bottom:796.195284pt;}
.y11_c00024{bottom:823.587140pt;}
.y10_c00024{bottom:850.818996pt;}
.yf_c00024{bottom:878.211518pt;}
.ye_c00024{bottom:895.149725pt;}
.yd_c00024{bottom:908.452840pt;}
.yc_c00024{bottom:926.504832pt;}
.yb_c00024{bottom:958.012820pt;}
.y9_c00024{bottom:972.735480pt;}
.y7_c00024{bottom:1000.388100pt;}
.y6_c00024{bottom:1018.912492pt;}
.y5_c00024{bottom:1037.122485pt;}
.y4_c00024{bottom:1055.329411pt;}
.h1_c00024{height:17.893120pt;}
.ha_c00024{height:25.575650pt;}
.hd_c00024{height:27.199516pt;}
.h7_c00024{height:33.694912pt;}
.h6_c00024{height:37.349260pt;}
.h8_c00024{height:52.207390pt;}
.hc_c00024{height:52.382192pt;}
.h2_c00024{height:56.683311pt;}
.h9_c00024{height:56.746644pt;}
.h4_c00024{height:56.936644pt;}
.hb_c00024{height:66.616113pt;}
.h5_c00024{height:1110.960672pt;}
.h3_c00024{height:1122.559167pt;}
.h0_c00024{height:1122.666667pt;}
.wb_c00024{width:4.588800pt;}
.w5_c00024{width:4.750400pt;}
.w2_c00024{width:6.966400pt;}
.w9_c00024{width:6.968000pt;}
.w4_c00024{width:7.913600pt;}
.w6_c00024{width:7.920000pt;}
.w8_c00024{width:15.043200pt;}
.w3_c00024{width:19.318400pt;}
.w7_c00024{width:24.704000pt;}
.wa_c00024{width:25.651200pt;}
.w1_c00024{width:35.148800pt;}
.wd_c00024{width:785.062974pt;}
.wc_c00024{width:793.257550pt;}
.w0_c00024{width:793.333333pt;}
.x0_c00024{left:0.000000pt;}
.x12_c00024{left:1.370626pt;}
.x13_c00024{left:100.224934pt;}
.x17_c00024{left:112.261552pt;}
.x15_c00024{left:114.950609pt;}
.x1b_c00024{left:147.726648pt;}
.x16_c00024{left:158.968253pt;}
.x19_c00024{left:160.391976pt;}
.x14_c00024{left:161.657309pt;}
.xf_c00024{left:224.448440pt;}
.xe_c00024{left:240.124654pt;}
.x18_c00024{left:252.698606pt;}
.x1a_c00024{left:326.322577pt;}
.x11_c00024{left:331.956469pt;}
.x10_c00024{left:373.596470pt;}
.x1_c00024{left:502.019200pt;}
.x2_c00024{left:537.168000pt;}
.x3_c00024{left:544.134400pt;}
.x4_c00024{left:563.452800pt;}
.x5_c00024{left:570.419200pt;}
.x6_c00024{left:578.332800pt;}
.x7_c00024{left:582.764800pt;}
.x8_c00024{left:593.849600pt;}
.x9_c00024{left:622.192000pt;}
.xa_c00024{left:635.648000pt;}
.xb_c00024{left:642.616000pt;}
.xc_c00024{left:668.267200pt;}
.xd_c00024{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.115000;font-style:normal;font-weight:normal;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_90bb07ac5f65176b1504ad53.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.112000;font-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_c00025{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls1_c00025{letter-spacing:0.000000px;}
.ls0_c00025{letter-spacing:0.286609px;}
.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:-33.520750px;}
.ws0_c00025{word-spacing:-17.812493px;}
.ws2_c00025{word-spacing:0.000000px;}
._c_c00025{margin-left:-2.180804px;}
._2_c00025{margin-left:-1.047451px;}
._0_c00025{width:1.056287px;}
._1_c00025{width:2.925788px;}
._4_c00025{width:4.091215px;}
._a_c00025{width:6.047738px;}
._b_c00025{width:7.256210px;}
._3_c00025{width:9.161364px;}
._5_c00025{width:10.587164px;}
._8_c00025{width:11.608686px;}
._6_c00025{width:14.850927px;}
._7_c00025{width:15.895165px;}
._9_c00025{width:20.568392px;}
.fc1_c00025{color:rgb(105,148,45);}
.fc0_c00025{color:rgb(35,31,32);}
.fs1_c00025{font-size:65.550574px;}
.fs0_c00025{font-size:71.249972px;}
.y0_c00025{bottom:0.000000px;}
.y3_c00025{bottom:0.120938px;}
.y2_c00025{bottom:4.276426px;}
.y8_c00025{bottom:6.826644px;}
.ya_c00025{bottom:99.329814px;}
.y1_c00025{bottom:105.446880px;}
.y26_c00025{bottom:169.872385px;}
.y25_c00025{bottom:200.508973px;}
.y24_c00025{bottom:231.326161px;}
.y23_c00025{bottom:261.960648px;}
.y22_c00025{bottom:307.561080px;}
.y21_c00025{bottom:338.199768px;}
.y20_c00025{bottom:369.014856px;}
.y1f_c00025{bottom:399.650693px;}
.y1e_c00025{bottom:430.465181px;}
.y1d_c00025{bottom:461.104619px;}
.y1c_c00025{bottom:491.919107px;}
.y1b_c00025{bottom:537.518788px;}
.y1a_c00025{bottom:568.155376px;}
.y19_c00025{bottom:598.969864px;}
.y18_c00025{bottom:629.605701px;}
.y17_c00025{bottom:660.247839px;}
.y16_c00025{bottom:705.488271px;}
.y15_c00025{bottom:751.443753px;}
.y14_c00025{bottom:782.259590px;}
.y13_c00025{bottom:812.894078px;}
.y12_c00025{bottom:843.714866px;}
.y11_c00025{bottom:889.134548px;}
.y10_c00025{bottom:919.951135px;}
.yf_c00025{bottom:950.584123px;}
.ye_c00025{bottom:981.399961px;}
.yd_c00025{bottom:1012.038648px;}
.yc_c00025{bottom:1042.853736px;}
.yb_c00025{bottom:1073.490924px;}
.y9_c00025{bottom:1094.327416px;}
.y7_c00025{bottom:1125.436612px;}
.y6_c00025{bottom:1146.276554px;}
.y5_c00025{bottom:1166.762796px;}
.y4_c00025{bottom:1187.245588px;}
.h1_c00025{height:20.129760px;}
.h6_c00025{height:42.017918px;}
.h2_c00025{height:63.768724px;}
.h7_c00025{height:63.839974px;}
.h4_c00025{height:64.053724px;}
.h5_c00025{height:1249.830756px;}
.h3_c00025{height:1262.879062px;}
.h0_c00025{height:1263.000000px;}
.wb_c00025{width:5.162400px;}
.w5_c00025{width:5.344200px;}
.w2_c00025{width:7.837200px;}
.w9_c00025{width:7.839000px;}
.w4_c00025{width:8.902800px;}
.w6_c00025{width:8.910000px;}
.w8_c00025{width:16.923600px;}
.w3_c00025{width:21.733200px;}
.w7_c00025{width:27.792000px;}
.wa_c00025{width:28.857600px;}
.w1_c00025{width:39.542400px;}
.wd_c00025{width:883.195846px;}
.wc_c00025{width:892.414744px;}
.w0_c00025{width:892.500000px;}
.x0_c00025{left:0.000000px;}
.x12_c00025{left:1.541954px;}
.x13_c00025{left:112.753050px;}
.x14_c00025{left:166.190055px;}
.xf_c00025{left:252.504495px;}
.xe_c00025{left:270.140236px;}
.x11_c00025{left:373.451028px;}
.x10_c00025{left:420.296029px;}
.x1_c00025{left:564.771600px;}
.x2_c00025{left:604.314000px;}
.x3_c00025{left:612.151200px;}
.x4_c00025{left:633.884400px;}
.x5_c00025{left:641.721600px;}
.x6_c00025{left:650.624400px;}
.x7_c00025{left:655.610400px;}
.x8_c00025{left:668.080800px;}
.x9_c00025{left:699.966000px;}
.xa_c00025{left:715.104000px;}
.xb_c00025{left:722.943000px;}
.xc_c00025{left:751.800600px;}
.xd_c00025{left:756.963000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls1_c00025{letter-spacing:0.000000pt;}
.ls0_c00025{letter-spacing:0.254764pt;}
.ws1_c00025{word-spacing:-29.796222pt;}
.ws0_c00025{word-spacing:-15.833327pt;}
.ws2_c00025{word-spacing:0.000000pt;}
._c_c00025{margin-left:-1.938492pt;}
._2_c00025{margin-left:-0.931068pt;}
._0_c00025{width:0.938922pt;}
._1_c00025{width:2.600701pt;}
._4_c00025{width:3.636635pt;}
._a_c00025{width:5.375768pt;}
._b_c00025{width:6.449964pt;}
._3_c00025{width:8.143435pt;}
._5_c00025{width:9.410813pt;}
._8_c00025{width:10.318832pt;}
._6_c00025{width:13.200824pt;}
._7_c00025{width:14.129035pt;}
._9_c00025{width:18.283015pt;}
.fs1_c00025{font-size:58.267177pt;}
.fs0_c00025{font-size:63.333308pt;}
.y0_c00025{bottom:0.000000pt;}
.y3_c00025{bottom:0.107500pt;}
.y2_c00025{bottom:3.801268pt;}
.y8_c00025{bottom:6.068128pt;}
.ya_c00025{bottom:88.293168pt;}
.y1_c00025{bottom:93.730560pt;}
.y26_c00025{bottom:150.997676pt;}
.y25_c00025{bottom:178.230198pt;}
.y24_c00025{bottom:205.623254pt;}
.y23_c00025{bottom:232.853910pt;}
.y22_c00025{bottom:273.387627pt;}
.y21_c00025{bottom:300.622016pt;}
.y20_c00025{bottom:328.013205pt;}
.y1f_c00025{bottom:355.245061pt;}
.y1e_c00025{bottom:382.635717pt;}
.y1d_c00025{bottom:409.870772pt;}
.y1c_c00025{bottom:437.261428pt;}
.y1b_c00025{bottom:477.794478pt;}
.y1a_c00025{bottom:505.027001pt;}
.y19_c00025{bottom:532.417657pt;}
.y18_c00025{bottom:559.649512pt;}
.y17_c00025{bottom:586.886968pt;}
.y16_c00025{bottom:627.100685pt;}
.y15_c00025{bottom:667.950002pt;}
.y14_c00025{bottom:695.341858pt;}
.y13_c00025{bottom:722.572514pt;}
.y12_c00025{bottom:749.968770pt;}
.y11_c00025{bottom:790.341820pt;}
.y10_c00025{bottom:817.734342pt;}
.yf_c00025{bottom:844.963665pt;}
.ye_c00025{bottom:872.355521pt;}
.yd_c00025{bottom:899.589910pt;}
.yc_c00025{bottom:926.981099pt;}
.yb_c00025{bottom:954.214155pt;}
.y9_c00025{bottom:972.735480pt;}
.y7_c00025{bottom:1000.388100pt;}
.y6_c00025{bottom:1018.912492pt;}
.y5_c00025{bottom:1037.122485pt;}
.y4_c00025{bottom:1055.329411pt;}
.h1_c00025{height:17.893120pt;}
.h6_c00025{height:37.349260pt;}
.h2_c00025{height:56.683311pt;}
.h7_c00025{height:56.746644pt;}
.h4_c00025{height:56.936644pt;}
.h5_c00025{height:1110.960672pt;}
.h3_c00025{height:1122.559167pt;}
.h0_c00025{height:1122.666667pt;}
.wb_c00025{width:4.588800pt;}
.w5_c00025{width:4.750400pt;}
.w2_c00025{width:6.966400pt;}
.w9_c00025{width:6.968000pt;}
.w4_c00025{width:7.913600pt;}
.w6_c00025{width:7.920000pt;}
.w8_c00025{width:15.043200pt;}
.w3_c00025{width:19.318400pt;}
.w7_c00025{width:24.704000pt;}
.wa_c00025{width:25.651200pt;}
.w1_c00025{width:35.148800pt;}
.wd_c00025{width:785.062974pt;}
.wc_c00025{width:793.257550pt;}
.w0_c00025{width:793.333333pt;}
.x0_c00025{left:0.000000pt;}
.x12_c00025{left:1.370626pt;}
.x13_c00025{left:100.224934pt;}
.x14_c00025{left:147.724493pt;}
.xf_c00025{left:224.448440pt;}
.xe_c00025{left:240.124654pt;}
.x11_c00025{left:331.956469pt;}
.x10_c00025{left:373.596470pt;}
.x1_c00025{left:502.019200pt;}
.x2_c00025{left:537.168000pt;}
.x3_c00025{left:544.134400pt;}
.x4_c00025{left:563.452800pt;}
.x5_c00025{left:570.419200pt;}
.x6_c00025{left:578.332800pt;}
.x7_c00025{left:582.764800pt;}
.x8_c00025{left:593.849600pt;}
.x9_c00025{left:622.192000pt;}
.xa_c00025{left:635.648000pt;}
.xb_c00025{left:642.616000pt;}
.xc_c00025{left:668.267200pt;}
.xd_c00025{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.115000;font-style:normal;font-weight:normal;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_4ba1c84d12d4c331cf7d735e.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00026;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:1.113000;font-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_c00026{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls1_c00026{letter-spacing:0.000000px;}
.ls0_c00026{letter-spacing:0.286609px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00026{word-spacing:-33.520750px;}
.ws0_c00026{word-spacing:-17.812493px;}
.ws2_c00026{word-spacing:0.000000px;}
._10_c00026{margin-left:-4.005470px;}
._a_c00026{margin-left:-2.394035px;}
._8_c00026{margin-left:-1.099828px;}
._0_c00026{width:1.056287px;}
._5_c00026{width:2.133425px;}
._3_c00026{width:3.160858px;}
._4_c00026{width:4.352803px;}
._f_c00026{width:5.820758px;}
._12_c00026{width:7.082197px;}
._d_c00026{width:12.597833px;}
._c_c00026{width:13.884648px;}
._e_c00026{width:15.036834px;}
._b_c00026{width:16.508480px;}
._16_c00026{width:20.523240px;}
._17_c00026{width:22.161406px;}
._18_c00026{width:23.585585px;}
._9_c00026{width:28.421481px;}
._14_c00026{width:29.466865px;}
._15_c00026{width:31.642154px;}
._7_c00026{width:39.519657px;}
._13_c00026{width:53.500639px;}
._11_c00026{width:55.895289px;}
._1_c00026{width:76.079295px;}
._6_c00026{width:102.519524px;}
._2_c00026{width:144.062552px;}
.fc1_c00026{color:rgb(105,148,45);}
.fc0_c00026{color:rgb(35,31,32);}
.fs2_c00026{font-size:59.136936px;}
.fs1_c00026{font-size:65.550574px;}
.fs0_c00026{font-size:71.249972px;}
.y0_c00026{bottom:0.000000px;}
.y3_c00026{bottom:0.120938px;}
.y2_c00026{bottom:4.276426px;}
.y8_c00026{bottom:6.826644px;}
.ya_c00026{bottom:99.329814px;}
.y1_c00026{bottom:105.446880px;}
.y29_c00026{bottom:137.986898px;}
.y28_c00026{bottom:168.801386px;}
.y27_c00026{bottom:199.439323px;}
.y26_c00026{bottom:230.255161px;}
.y25_c00026{bottom:306.487231px;}
.y24_c00026{bottom:337.127268px;}
.y23_c00026{bottom:367.943856px;}
.y22_c00026{bottom:398.581044px;}
.y21_c00026{bottom:429.395532px;}
.y20_c00026{bottom:460.033469px;}
.y1f_c00026{bottom:521.485145px;}
.y1e_c00026{bottom:552.299632px;}
.y1d_c00026{bottom:571.361625px;}
.y1c_c00026{bottom:587.385668px;}
.y1b_c00026{bottom:609.475109px;}
.y1a_c00026{bottom:639.401598px;}
.y19_c00026{bottom:639.403098px;}
.y18_c00026{bottom:670.040285px;}
.y17_c00026{bottom:700.858223px;}
.y16_c00026{bottom:731.494061px;}
.y15_c00026{bottom:751.085553px;}
.y14_c00026{bottom:768.541046px;}
.y13_c00026{bottom:787.421538px;}
.y12_c00026{bottom:828.747272px;}
.y11_c00026{bottom:859.563859px;}
.y10_c00026{bottom:905.162191px;}
.yf_c00026{bottom:935.800879px;}
.ye_c00026{bottom:966.617467px;}
.yd_c00026{bottom:1012.038648px;}
.yc_c00026{bottom:1042.853736px;}
.yb_c00026{bottom:1073.490924px;}
.y9_c00026{bottom:1094.327416px;}
.y7_c00026{bottom:1125.436612px;}
.y6_c00026{bottom:1146.276554px;}
.y5_c00026{bottom:1166.762796px;}
.y4_c00026{bottom:1187.245588px;}
.h1_c00026{height:20.129760px;}
.h8_c00026{height:37.906776px;}
.h6_c00026{height:42.017918px;}
.h9_c00026{height:45.671232px;}
.h2_c00026{height:63.768724px;}
.h7_c00026{height:63.839974px;}
.ha_c00026{height:63.911224px;}
.h4_c00026{height:64.053724px;}
.h5_c00026{height:1249.830756px;}
.h3_c00026{height:1262.879062px;}
.h0_c00026{height:1263.000000px;}
.wb_c00026{width:5.162400px;}
.w5_c00026{width:5.344200px;}
.w2_c00026{width:7.837200px;}
.w9_c00026{width:7.839000px;}
.w4_c00026{width:8.902800px;}
.w6_c00026{width:8.910000px;}
.w8_c00026{width:16.923600px;}
.w3_c00026{width:21.733200px;}
.w7_c00026{width:27.792000px;}
.wa_c00026{width:28.857600px;}
.w1_c00026{width:39.542400px;}
.wd_c00026{width:883.195846px;}
.wc_c00026{width:892.414744px;}
.w0_c00026{width:892.500000px;}
.x0_c00026{left:0.000000px;}
.x12_c00026{left:1.541954px;}
.x13_c00026{left:112.753050px;}
.x1a_c00026{left:126.290937px;}
.x16_c00026{left:139.472540px;}
.x17_c00026{left:172.957476px;}
.x19_c00026{left:178.837474px;}
.x14_c00026{left:192.908968px;}
.x1c_c00026{left:205.551479px;}
.x15_c00026{left:219.621474px;}
.xf_c00026{left:252.504495px;}
.xe_c00026{left:270.140236px;}
.x11_c00026{left:373.451028px;}
.x18_c00026{left:418.057378px;}
.x10_c00026{left:420.296029px;}
.x1_c00026{left:564.771600px;}
.x2_c00026{left:604.314000px;}
.x3_c00026{left:612.151200px;}
.x4_c00026{left:633.884400px;}
.x5_c00026{left:641.721600px;}
.x6_c00026{left:650.624400px;}
.x7_c00026{left:655.610400px;}
.x8_c00026{left:668.080800px;}
.x9_c00026{left:699.966000px;}
.xa_c00026{left:715.104000px;}
.xb_c00026{left:722.943000px;}
.x1b_c00026{left:726.032755px;}
.xc_c00026{left:751.800600px;}
.xd_c00026{left:756.963000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls1_c00026{letter-spacing:0.000000pt;}
.ls0_c00026{letter-spacing:0.254764pt;}
.ws1_c00026{word-spacing:-29.796222pt;}
.ws0_c00026{word-spacing:-15.833327pt;}
.ws2_c00026{word-spacing:0.000000pt;}
._10_c00026{margin-left:-3.560418pt;}
._a_c00026{margin-left:-2.128031pt;}
._8_c00026{margin-left:-0.977625pt;}
._0_c00026{width:0.938922pt;}
._5_c00026{width:1.896378pt;}
._3_c00026{width:2.809652pt;}
._4_c00026{width:3.869158pt;}
._f_c00026{width:5.174007pt;}
._12_c00026{width:6.295286pt;}
._d_c00026{width:11.198074pt;}
._c_c00026{width:12.341910pt;}
._e_c00026{width:13.366074pt;}
._b_c00026{width:14.674205pt;}
._16_c00026{width:18.242880pt;}
._17_c00026{width:19.699028pt;}
._18_c00026{width:20.964964pt;}
._9_c00026{width:25.263539pt;}
._14_c00026{width:26.192769pt;}
._15_c00026{width:28.126359pt;}
._7_c00026{width:35.128584pt;}
._13_c00026{width:47.556124pt;}
._11_c00026{width:49.684702pt;}
._1_c00026{width:67.626040pt;}
._6_c00026{width:91.128466pt;}
._2_c00026{width:128.055601pt;}
.fs2_c00026{font-size:52.566166pt;}
.fs1_c00026{font-size:58.267177pt;}
.fs0_c00026{font-size:63.333308pt;}
.y0_c00026{bottom:0.000000pt;}
.y3_c00026{bottom:0.107500pt;}
.y2_c00026{bottom:3.801268pt;}
.y8_c00026{bottom:6.068128pt;}
.ya_c00026{bottom:88.293168pt;}
.y1_c00026{bottom:93.730560pt;}
.y29_c00026{bottom:122.655021pt;}
.y28_c00026{bottom:150.045676pt;}
.y27_c00026{bottom:177.279399pt;}
.y26_c00026{bottom:204.671254pt;}
.y25_c00026{bottom:272.433094pt;}
.y24_c00026{bottom:299.668683pt;}
.y23_c00026{bottom:327.061205pt;}
.y22_c00026{bottom:354.294261pt;}
.y21_c00026{bottom:381.684917pt;}
.y20_c00026{bottom:408.918639pt;}
.y1f_c00026{bottom:463.542351pt;}
.y1e_c00026{bottom:490.933007pt;}
.y1d_c00026{bottom:507.877000pt;}
.y1c_c00026{bottom:522.120594pt;}
.y1b_c00026{bottom:541.755653pt;}
.y1a_c00026{bottom:568.356976pt;}
.y19_c00026{bottom:568.358309pt;}
.y18_c00026{bottom:595.591365pt;}
.y17_c00026{bottom:622.985087pt;}
.y16_c00026{bottom:650.216943pt;}
.y15_c00026{bottom:667.631603pt;}
.y14_c00026{bottom:683.147596pt;}
.y13_c00026{bottom:699.930256pt;}
.y12_c00026{bottom:736.664242pt;}
.y11_c00026{bottom:764.056764pt;}
.y10_c00026{bottom:804.588614pt;}
.yf_c00026{bottom:831.823004pt;}
.ye_c00026{bottom:859.215526pt;}
.yd_c00026{bottom:899.589910pt;}
.yc_c00026{bottom:926.981099pt;}
.yb_c00026{bottom:954.214155pt;}
.y9_c00026{bottom:972.735480pt;}
.y7_c00026{bottom:1000.388100pt;}
.y6_c00026{bottom:1018.912492pt;}
.y5_c00026{bottom:1037.122485pt;}
.y4_c00026{bottom:1055.329411pt;}
.h1_c00026{height:17.893120pt;}
.h8_c00026{height:33.694912pt;}
.h6_c00026{height:37.349260pt;}
.h9_c00026{height:40.596650pt;}
.h2_c00026{height:56.683311pt;}
.h7_c00026{height:56.746644pt;}
.ha_c00026{height:56.809977pt;}
.h4_c00026{height:56.936644pt;}
.h5_c00026{height:1110.960672pt;}
.h3_c00026{height:1122.559167pt;}
.h0_c00026{height:1122.666667pt;}
.wb_c00026{width:4.588800pt;}
.w5_c00026{width:4.750400pt;}
.w2_c00026{width:6.966400pt;}
.w9_c00026{width:6.968000pt;}
.w4_c00026{width:7.913600pt;}
.w6_c00026{width:7.920000pt;}
.w8_c00026{width:15.043200pt;}
.w3_c00026{width:19.318400pt;}
.w7_c00026{width:24.704000pt;}
.wa_c00026{width:25.651200pt;}
.w1_c00026{width:35.148800pt;}
.wd_c00026{width:785.062974pt;}
.wc_c00026{width:793.257550pt;}
.w0_c00026{width:793.333333pt;}
.x0_c00026{left:0.000000pt;}
.x12_c00026{left:1.370626pt;}
.x13_c00026{left:100.224934pt;}
.x1a_c00026{left:112.258610pt;}
.x16_c00026{left:123.975591pt;}
.x17_c00026{left:153.739979pt;}
.x19_c00026{left:158.966644pt;}
.x14_c00026{left:171.474639pt;}
.x1c_c00026{left:182.712426pt;}
.x15_c00026{left:195.219088pt;}
.xf_c00026{left:224.448440pt;}
.xe_c00026{left:240.124654pt;}
.x11_c00026{left:331.956469pt;}
.x18_c00026{left:371.606559pt;}
.x10_c00026{left:373.596470pt;}
.x1_c00026{left:502.019200pt;}
.x2_c00026{left:537.168000pt;}
.x3_c00026{left:544.134400pt;}
.x4_c00026{left:563.452800pt;}
.x5_c00026{left:570.419200pt;}
.x6_c00026{left:578.332800pt;}
.x7_c00026{left:582.764800pt;}
.x8_c00026{left:593.849600pt;}
.x9_c00026{left:622.192000pt;}
.xa_c00026{left:635.648000pt;}
.xb_c00026{left:642.616000pt;}
.x1b_c00026{left:645.362449pt;}
.xc_c00026{left:668.267200pt;}
.xd_c00026{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.115000;font-style:normal;font-weight:normal;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_e947e8abb5178bd9f2bb6a8b.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00027;src:url('chunks/assets/font_cea00cad088ae0172acf5904.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.113000;font-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_c00027{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls1_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:0.286609px;}
.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;}
}
.ws1_c00027{word-spacing:-33.520750px;}
.ws0_c00027{word-spacing:-17.812493px;}
.ws3_c00027{word-spacing:0.000000px;}
.ws2_c00027{word-spacing:35.673391px;}
._3_c00027{margin-left:-3.278183px;}
._1_c00027{margin-left:-1.697573px;}
._0_c00027{width:1.056287px;}
._4_c00027{width:2.780027px;}
._2_c00027{width:4.117970px;}
._c_c00027{width:5.997392px;}
._a_c00027{width:7.218774px;}
._b_c00027{width:8.741313px;}
._8_c00027{width:10.675696px;}
._6_c00027{width:12.012816px;}
._5_c00027{width:13.119514px;}
._9_c00027{width:19.205796px;}
._7_c00027{width:53.500639px;}
.fc1_c00027{color:rgb(105,148,45);}
.fc0_c00027{color:rgb(35,31,32);}
.fs1_c00027{font-size:65.550574px;}
.fs0_c00027{font-size:71.249972px;}
.y0_c00027{bottom:0.000000px;}
.y3_c00027{bottom:0.120938px;}
.y2_c00027{bottom:4.276426px;}
.y8_c00027{bottom:6.826644px;}
.ya_c00027{bottom:99.329814px;}
.y1_c00027{bottom:105.446880px;}
.y25_c00027{bottom:137.988698px;}
.y24_c00027{bottom:168.803786px;}
.y23_c00027{bottom:199.440973px;}
.y22_c00027{bottom:230.256811px;}
.y21_c00027{bottom:260.889799px;}
.y20_c00027{bottom:291.706387px;}
.y1f_c00027{bottom:322.342224px;}
.y1e_c00027{bottom:353.159412px;}
.y1d_c00027{bottom:383.797350px;}
.y1c_c00027{bottom:414.611837px;}
.y1b_c00027{bottom:445.247675px;}
.y1a_c00027{bottom:476.065613px;}
.y19_c00027{bottom:506.704301px;}
.y18_c00027{bottom:537.518788px;}
.y17_c00027{bottom:613.397908px;}
.y16_c00027{bottom:644.389546px;}
.y15_c00027{bottom:675.207483px;}
.y14_c00027{bottom:705.843321px;}
.y13_c00027{bottom:782.259590px;}
.y12_c00027{bottom:812.895428px;}
.y11_c00027{bottom:843.713366px;}
.y10_c00027{bottom:874.349204px;}
.yf_c00027{bottom:905.162191px;}
.ye_c00027{bottom:935.800879px;}
.yd_c00027{bottom:1012.038648px;}
.yc_c00027{bottom:1042.853736px;}
.yb_c00027{bottom:1073.490924px;}
.y9_c00027{bottom:1094.327416px;}
.y7_c00027{bottom:1125.436612px;}
.y6_c00027{bottom:1146.276554px;}
.y5_c00027{bottom:1166.762796px;}
.y4_c00027{bottom:1187.245588px;}
.h1_c00027{height:20.129760px;}
.h6_c00027{height:42.017918px;}
.h2_c00027{height:63.768724px;}
.h7_c00027{height:63.839974px;}
.h8_c00027{height:63.911224px;}
.h4_c00027{height:64.053724px;}
.h5_c00027{height:1249.830756px;}
.h3_c00027{height:1262.879062px;}
.h0_c00027{height:1263.000000px;}
.wb_c00027{width:5.162400px;}
.w5_c00027{width:5.344200px;}
.w2_c00027{width:7.837200px;}
.w9_c00027{width:7.839000px;}
.w4_c00027{width:8.902800px;}
.w6_c00027{width:8.910000px;}
.w8_c00027{width:16.923600px;}
.w3_c00027{width:21.733200px;}
.w7_c00027{width:27.792000px;}
.wa_c00027{width:28.857600px;}
.w1_c00027{width:39.542400px;}
.wd_c00027{width:883.195846px;}
.wc_c00027{width:892.414744px;}
.w0_c00027{width:892.500000px;}
.x0_c00027{left:0.000000px;}
.x12_c00027{left:1.541954px;}
.x13_c00027{left:112.753050px;}
.x15_c00027{left:178.833812px;}
.x14_c00027{left:205.553963px;}
.xf_c00027{left:252.504495px;}
.xe_c00027{left:270.140236px;}
.x11_c00027{left:373.451028px;}
.x10_c00027{left:420.296029px;}
.x1_c00027{left:564.771600px;}
.x2_c00027{left:604.314000px;}
.x3_c00027{left:612.151200px;}
.x4_c00027{left:633.884400px;}
.x5_c00027{left:641.721600px;}
.x6_c00027{left:650.624400px;}
.x7_c00027{left:655.610400px;}
.x8_c00027{left:668.080800px;}
.x9_c00027{left:699.966000px;}
.xa_c00027{left:715.104000px;}
.xb_c00027{left:722.943000px;}
.xc_c00027{left:751.800600px;}
.xd_c00027{left:756.963000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls1_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:0.254764pt;}
.ws1_c00027{word-spacing:-29.796222pt;}
.ws0_c00027{word-spacing:-15.833327pt;}
.ws3_c00027{word-spacing:0.000000pt;}
.ws2_c00027{word-spacing:31.709681pt;}
._3_c00027{margin-left:-2.913940pt;}
._1_c00027{margin-left:-1.508954pt;}
._0_c00027{width:0.938922pt;}
._4_c00027{width:2.471135pt;}
._2_c00027{width:3.660418pt;}
._c_c00027{width:5.331015pt;}
._a_c00027{width:6.416688pt;}
._b_c00027{width:7.770056pt;}
._8_c00027{width:9.489507pt;}
._6_c00027{width:10.678059pt;}
._5_c00027{width:11.661790pt;}
._9_c00027{width:17.071818pt;}
._7_c00027{width:47.556124pt;}
.fs1_c00027{font-size:58.267177pt;}
.fs0_c00027{font-size:63.333308pt;}
.y0_c00027{bottom:0.000000pt;}
.y3_c00027{bottom:0.107500pt;}
.y2_c00027{bottom:3.801268pt;}
.y8_c00027{bottom:6.068128pt;}
.ya_c00027{bottom:88.293168pt;}
.y1_c00027{bottom:93.730560pt;}
.y25_c00027{bottom:122.656621pt;}
.y24_c00027{bottom:150.047810pt;}
.y23_c00027{bottom:177.280865pt;}
.y22_c00027{bottom:204.672721pt;}
.y21_c00027{bottom:231.902043pt;}
.y20_c00027{bottom:259.294566pt;}
.y1f_c00027{bottom:286.526422pt;}
.y1e_c00027{bottom:313.919477pt;}
.y1d_c00027{bottom:341.153200pt;}
.y1c_c00027{bottom:368.543855pt;}
.y1b_c00027{bottom:395.775711pt;}
.y1a_c00027{bottom:423.169434pt;}
.y19_c00027{bottom:450.403823pt;}
.y18_c00027{bottom:477.794478pt;}
.y17_c00027{bottom:545.242585pt;}
.y16_c00027{bottom:572.790707pt;}
.y15_c00027{bottom:600.184429pt;}
.y14_c00027{bottom:627.416285pt;}
.y13_c00027{bottom:695.341858pt;}
.y12_c00027{bottom:722.573714pt;}
.y11_c00027{bottom:749.967436pt;}
.y10_c00027{bottom:777.199292pt;}
.yf_c00027{bottom:804.588614pt;}
.ye_c00027{bottom:831.823004pt;}
.yd_c00027{bottom:899.589910pt;}
.yc_c00027{bottom:926.981099pt;}
.yb_c00027{bottom:954.214155pt;}
.y9_c00027{bottom:972.735480pt;}
.y7_c00027{bottom:1000.388100pt;}
.y6_c00027{bottom:1018.912492pt;}
.y5_c00027{bottom:1037.122485pt;}
.y4_c00027{bottom:1055.329411pt;}
.h1_c00027{height:17.893120pt;}
.h6_c00027{height:37.349260pt;}
.h2_c00027{height:56.683311pt;}
.h7_c00027{height:56.746644pt;}
.h8_c00027{height:56.809977pt;}
.h4_c00027{height:56.936644pt;}
.h5_c00027{height:1110.960672pt;}
.h3_c00027{height:1122.559167pt;}
.h0_c00027{height:1122.666667pt;}
.wb_c00027{width:4.588800pt;}
.w5_c00027{width:4.750400pt;}
.w2_c00027{width:6.966400pt;}
.w9_c00027{width:6.968000pt;}
.w4_c00027{width:7.913600pt;}
.w6_c00027{width:7.920000pt;}
.w8_c00027{width:15.043200pt;}
.w3_c00027{width:19.318400pt;}
.w7_c00027{width:24.704000pt;}
.wa_c00027{width:25.651200pt;}
.w1_c00027{width:35.148800pt;}
.wd_c00027{width:785.062974pt;}
.wc_c00027{width:793.257550pt;}
.w0_c00027{width:793.333333pt;}
.x0_c00027{left:0.000000pt;}
.x12_c00027{left:1.370626pt;}
.x13_c00027{left:100.224934pt;}
.x15_c00027{left:158.963389pt;}
.x14_c00027{left:182.714634pt;}
.xf_c00027{left:224.448440pt;}
.xe_c00027{left:240.124654pt;}
.x11_c00027{left:331.956469pt;}
.x10_c00027{left:373.596470pt;}
.x1_c00027{left:502.019200pt;}
.x2_c00027{left:537.168000pt;}
.x3_c00027{left:544.134400pt;}
.x4_c00027{left:563.452800pt;}
.x5_c00027{left:570.419200pt;}
.x6_c00027{left:578.332800pt;}
.x7_c00027{left:582.764800pt;}
.x8_c00027{left:593.849600pt;}
.x9_c00027{left:622.192000pt;}
.xa_c00027{left:635.648000pt;}
.xb_c00027{left:642.616000pt;}
.xc_c00027{left:668.267200pt;}
.xd_c00027{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.115000;font-style:normal;font-weight:normal;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_ffd060c6e4d318fe52f8efb8.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_cea00cad088ae0172acf5904.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:1.113000;font-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_c00028{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls1_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:0.286609px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00028{word-spacing:-33.520750px;}
.ws0_c00028{word-spacing:-17.812493px;}
.ws3_c00028{word-spacing:0.000000px;}
.ws2_c00028{word-spacing:35.658816px;}
._6_c00028{margin-left:-1.473839px;}
._0_c00028{width:1.056287px;}
._7_c00028{width:2.989996px;}
._4_c00028{width:4.049176px;}
._5_c00028{width:5.488287px;}
._8_c00028{width:6.912519px;}
._9_c00028{width:7.989979px;}
._a_c00028{width:9.035647px;}
._b_c00028{width:10.330439px;}
._e_c00028{width:12.996776px;}
._2_c00028{width:14.144226px;}
._3_c00028{width:15.177684px;}
._11_c00028{width:16.485061px;}
._f_c00028{width:19.260400px;}
._c_c00028{width:20.576104px;}
._d_c00028{width:21.760079px;}
._10_c00028{width:23.119053px;}
._1_c00028{width:53.500639px;}
.fc1_c00028{color:rgb(105,148,45);}
.fc0_c00028{color:rgb(35,31,32);}
.fs1_c00028{font-size:65.550574px;}
.fs0_c00028{font-size:71.249972px;}
.y0_c00028{bottom:0.000000px;}
.y3_c00028{bottom:0.120938px;}
.y2_c00028{bottom:4.276426px;}
.y8_c00028{bottom:6.826644px;}
.ya_c00028{bottom:99.329814px;}
.y1_c00028{bottom:105.446880px;}
.y24_c00028{bottom:151.880193px;}
.y23_c00028{bottom:182.518880px;}
.y22_c00028{bottom:213.331868px;}
.y21_c00028{bottom:274.427143px;}
.y20_c00028{bottom:336.234619px;}
.y1f_c00028{bottom:366.872557px;}
.y1e_c00028{bottom:397.688394px;}
.y1d_c00028{bottom:428.325582px;}
.y1c_c00028{bottom:459.141420px;}
.y1b_c00028{bottom:489.778007px;}
.y1a_c00028{bottom:520.592495px;}
.y19_c00028{bottom:551.228333px;}
.y18_c00028{bottom:612.682108px;}
.y17_c00028{bottom:643.496596px;}
.y16_c00028{bottom:674.136034px;}
.y15_c00028{bottom:704.771871px;}
.y14_c00028{bottom:735.586359px;}
.y13_c00028{bottom:766.222197px;}
.y12_c00028{bottom:797.038784px;}
.y11_c00028{bottom:858.494060px;}
.y10_c00028{bottom:889.129898px;}
.yf_c00028{bottom:919.941535px;}
.ye_c00028{bottom:950.580223px;}
.yd_c00028{bottom:981.396811px;}
.yc_c00028{bottom:1012.033998px;}
.yb_c00028{bottom:1042.851936px;}
.y9_c00028{bottom:1094.327416px;}
.y7_c00028{bottom:1125.436612px;}
.y6_c00028{bottom:1146.276554px;}
.y5_c00028{bottom:1166.762796px;}
.y4_c00028{bottom:1187.245588px;}
.h1_c00028{height:20.129760px;}
.h6_c00028{height:42.017918px;}
.h2_c00028{height:63.768724px;}
.h7_c00028{height:63.839974px;}
.h8_c00028{height:63.911224px;}
.h4_c00028{height:64.053724px;}
.h5_c00028{height:1249.830756px;}
.h3_c00028{height:1262.879062px;}
.h0_c00028{height:1263.000000px;}
.wb_c00028{width:5.162400px;}
.w5_c00028{width:5.344200px;}
.w2_c00028{width:7.837200px;}
.w9_c00028{width:7.839000px;}
.w4_c00028{width:8.902800px;}
.w6_c00028{width:8.910000px;}
.w8_c00028{width:16.923600px;}
.w3_c00028{width:21.733200px;}
.w7_c00028{width:27.792000px;}
.wa_c00028{width:28.857600px;}
.w1_c00028{width:39.542400px;}
.wd_c00028{width:883.195846px;}
.wc_c00028{width:892.414744px;}
.w0_c00028{width:892.500000px;}
.x0_c00028{left:0.000000px;}
.x12_c00028{left:1.541954px;}
.x13_c00028{left:112.753050px;}
.x14_c00028{left:178.837474px;}
.x15_c00028{left:205.552978px;}
.x16_c00028{left:228.537965px;}
.xf_c00028{left:252.504495px;}
.x17_c00028{left:255.254519px;}
.xe_c00028{left:270.140236px;}
.x11_c00028{left:373.451028px;}
.x10_c00028{left:420.296029px;}
.x1_c00028{left:564.771600px;}
.x2_c00028{left:604.314000px;}
.x3_c00028{left:612.151200px;}
.x4_c00028{left:633.884400px;}
.x5_c00028{left:641.721600px;}
.x6_c00028{left:650.624400px;}
.x7_c00028{left:655.610400px;}
.x8_c00028{left:668.080800px;}
.x9_c00028{left:699.966000px;}
.xa_c00028{left:715.104000px;}
.xb_c00028{left:722.943000px;}
.xc_c00028{left:751.800600px;}
.xd_c00028{left:756.963000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls1_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:0.254764pt;}
.ws1_c00028{word-spacing:-29.796222pt;}
.ws0_c00028{word-spacing:-15.833327pt;}
.ws3_c00028{word-spacing:0.000000pt;}
.ws2_c00028{word-spacing:31.696725pt;}
._6_c00028{margin-left:-1.310079pt;}
._0_c00028{width:0.938922pt;}
._7_c00028{width:2.657775pt;}
._4_c00028{width:3.599267pt;}
._5_c00028{width:4.878477pt;}
._8_c00028{width:6.144461pt;}
._9_c00028{width:7.102204pt;}
._a_c00028{width:8.031686pt;}
._b_c00028{width:9.182613pt;}
._e_c00028{width:11.552690pt;}
._2_c00028{width:12.572646pt;}
._3_c00028{width:13.491275pt;}
._11_c00028{width:14.653387pt;}
._f_c00028{width:17.120356pt;}
._c_c00028{width:18.289870pt;}
._d_c00028{width:19.342292pt;}
._10_c00028{width:20.550269pt;}
._1_c00028{width:47.556124pt;}
.fs1_c00028{font-size:58.267177pt;}
.fs0_c00028{font-size:63.333308pt;}
.y0_c00028{bottom:0.000000pt;}
.y3_c00028{bottom:0.107500pt;}
.y2_c00028{bottom:3.801268pt;}
.y8_c00028{bottom:6.068128pt;}
.ya_c00028{bottom:88.293168pt;}
.y1_c00028{bottom:93.730560pt;}
.y24_c00028{bottom:135.004616pt;}
.y23_c00028{bottom:162.239005pt;}
.y22_c00028{bottom:189.628327pt;}
.y21_c00028{bottom:243.935239pt;}
.y20_c00028{bottom:298.875217pt;}
.y1f_c00028{bottom:326.108939pt;}
.y1e_c00028{bottom:353.500795pt;}
.y1d_c00028{bottom:380.733851pt;}
.y1c_c00028{bottom:408.125706pt;}
.y1b_c00028{bottom:435.358229pt;}
.y1a_c00028{bottom:462.748884pt;}
.y19_c00028{bottom:489.980740pt;}
.y18_c00028{bottom:544.606318pt;}
.y17_c00028{bottom:571.996974pt;}
.y16_c00028{bottom:599.232030pt;}
.y15_c00028{bottom:626.463886pt;}
.y14_c00028{bottom:653.854541pt;}
.y13_c00028{bottom:681.086397pt;}
.y12_c00028{bottom:708.478920pt;}
.y11_c00028{bottom:763.105831pt;}
.y10_c00028{bottom:790.337687pt;}
.yf_c00028{bottom:817.725809pt;}
.ye_c00028{bottom:844.960198pt;}
.yd_c00028{bottom:872.352721pt;}
.yc_c00028{bottom:899.585776pt;}
.yb_c00028{bottom:926.979499pt;}
.y9_c00028{bottom:972.735480pt;}
.y7_c00028{bottom:1000.388100pt;}
.y6_c00028{bottom:1018.912492pt;}
.y5_c00028{bottom:1037.122485pt;}
.y4_c00028{bottom:1055.329411pt;}
.h1_c00028{height:17.893120pt;}
.h6_c00028{height:37.349260pt;}
.h2_c00028{height:56.683311pt;}
.h7_c00028{height:56.746644pt;}
.h8_c00028{height:56.809977pt;}
.h4_c00028{height:56.936644pt;}
.h5_c00028{height:1110.960672pt;}
.h3_c00028{height:1122.559167pt;}
.h0_c00028{height:1122.666667pt;}
.wb_c00028{width:4.588800pt;}
.w5_c00028{width:4.750400pt;}
.w2_c00028{width:6.966400pt;}
.w9_c00028{width:6.968000pt;}
.w4_c00028{width:7.913600pt;}
.w6_c00028{width:7.920000pt;}
.w8_c00028{width:15.043200pt;}
.w3_c00028{width:19.318400pt;}
.w7_c00028{width:24.704000pt;}
.wa_c00028{width:25.651200pt;}
.w1_c00028{width:35.148800pt;}
.wd_c00028{width:785.062974pt;}
.wc_c00028{width:793.257550pt;}
.w0_c00028{width:793.333333pt;}
.x0_c00028{left:0.000000pt;}
.x12_c00028{left:1.370626pt;}
.x13_c00028{left:100.224934pt;}
.x14_c00028{left:158.966644pt;}
.x15_c00028{left:182.713758pt;}
.x16_c00028{left:203.144858pt;}
.xf_c00028{left:224.448440pt;}
.x17_c00028{left:226.892906pt;}
.xe_c00028{left:240.124654pt;}
.x11_c00028{left:331.956469pt;}
.x10_c00028{left:373.596470pt;}
.x1_c00028{left:502.019200pt;}
.x2_c00028{left:537.168000pt;}
.x3_c00028{left:544.134400pt;}
.x4_c00028{left:563.452800pt;}
.x5_c00028{left:570.419200pt;}
.x6_c00028{left:578.332800pt;}
.x7_c00028{left:582.764800pt;}
.x8_c00028{left:593.849600pt;}
.x9_c00028{left:622.192000pt;}
.xa_c00028{left:635.648000pt;}
.xb_c00028{left:642.616000pt;}
.xc_c00028{left:668.267200pt;}
.xd_c00028{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_2c40022bc4d2b33e0aff12dc.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00029;src:url('chunks/assets/font_cea00cad088ae0172acf5904.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00029;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff6_c00029{font-family:ff6_c00029;line-height:0.360019;font-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_c00029{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls5_c00029{letter-spacing:0.000000px;}
.ls1_c00029{letter-spacing:0.033480px;}
.ls0_c00029{letter-spacing:0.286609px;}
.ls2_c00029{letter-spacing:62.749775px;}
.ls3_c00029{letter-spacing:62.755175px;}
.ls4_c00029{letter-spacing:62.760575px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00029{word-spacing:-33.520750px;}
.ws0_c00029{word-spacing:-17.812493px;}
.ws2_c00029{word-spacing:0.000000px;}
._7_c00029{margin-left:-1.161474px;}
._0_c00029{width:1.056287px;}
._5_c00029{width:2.625899px;}
._6_c00029{width:4.112800px;}
._a_c00029{width:5.191022px;}
._3_c00029{width:6.403950px;}
._4_c00029{width:8.248887px;}
._b_c00029{width:13.352289px;}
._8_c00029{width:14.820129px;}
._9_c00029{width:15.862928px;}
._c_c00029{width:18.860312px;}
._1_c00029{width:19.991226px;}
._2_c00029{width:21.147861px;}
.fc1_c00029{color:rgb(105,148,45);}
.fc0_c00029{color:rgb(35,31,32);}
.fs1_c00029{font-size:65.550574px;}
.fs0_c00029{font-size:71.249972px;}
.y0_c00029{bottom:0.000000px;}
.y3_c00029{bottom:0.120938px;}
.y2_c00029{bottom:4.276426px;}
.y8_c00029{bottom:6.826644px;}
.ya_c00029{bottom:99.329814px;}
.y1_c00029{bottom:105.446880px;}
.y22_c00029{bottom:304.710931px;}
.y21_c00029{bottom:336.773419px;}
.y20_c00029{bottom:368.658756px;}
.y1f_c00029{bottom:400.719893px;}
.y1e_c00029{bottom:431.357081px;}
.y1d_c00029{bottom:462.171568px;}
.y1c_c00029{bottom:492.811006px;}
.y1b_c00029{bottom:523.622644px;}
.y1a_c00029{bottom:589.707967px;}
.y19_c00029{bottom:620.346655px;}
.y18_c00029{bottom:652.409142px;}
.y17_c00029{bottom:683.044980px;}
.y16_c00029{bottom:735.589509px;}
.y15_c00029{bottom:766.227447px;}
.y14_c00029{bottom:797.041934px;}
.y13_c00029{bottom:827.681372px;}
.y12_c00029{bottom:858.495860px;}
.y11_c00029{bottom:889.134548px;}
.y10_c00029{bottom:919.951135px;}
.yf_c00029{bottom:950.584123px;}
.ye_c00029{bottom:981.399961px;}
.yd_c00029{bottom:1012.038648px;}
.yc_c00029{bottom:1042.853736px;}
.yb_c00029{bottom:1073.490924px;}
.y9_c00029{bottom:1094.327416px;}
.y7_c00029{bottom:1125.436612px;}
.y6_c00029{bottom:1146.276554px;}
.y5_c00029{bottom:1166.762796px;}
.y4_c00029{bottom:1187.245588px;}
.h1_c00029{height:20.129760px;}
.h6_c00029{height:42.017918px;}
.h2_c00029{height:63.768724px;}
.h7_c00029{height:63.839974px;}
.h4_c00029{height:64.053724px;}
.h5_c00029{height:1249.830756px;}
.h3_c00029{height:1262.879062px;}
.h0_c00029{height:1263.000000px;}
.wb_c00029{width:5.162400px;}
.w5_c00029{width:5.344200px;}
.w2_c00029{width:7.837200px;}
.w9_c00029{width:7.839000px;}
.w4_c00029{width:8.902800px;}
.w6_c00029{width:8.910000px;}
.w8_c00029{width:16.923600px;}
.w3_c00029{width:21.733200px;}
.w7_c00029{width:27.792000px;}
.wa_c00029{width:28.857600px;}
.w1_c00029{width:39.542400px;}
.wd_c00029{width:883.195846px;}
.wc_c00029{width:892.414744px;}
.w0_c00029{width:892.500000px;}
.x0_c00029{left:0.000000px;}
.x12_c00029{left:1.541954px;}
.x13_c00029{left:112.753050px;}
.x17_c00029{left:178.841465px;}
.x18_c00029{left:205.556969px;}
.xf_c00029{left:252.504495px;}
.x14_c00029{left:255.251943px;}
.xe_c00029{left:270.140236px;}
.x15_c00029{left:299.072625px;}
.x16_c00029{left:325.792327px;}
.x11_c00029{left:373.451028px;}
.x10_c00029{left:420.296029px;}
.x1_c00029{left:564.771600px;}
.x2_c00029{left:604.314000px;}
.x3_c00029{left:612.151200px;}
.x4_c00029{left:633.884400px;}
.x5_c00029{left:641.721600px;}
.x6_c00029{left:650.624400px;}
.x7_c00029{left:655.610400px;}
.x8_c00029{left:668.080800px;}
.x9_c00029{left:699.966000px;}
.xa_c00029{left:715.104000px;}
.xb_c00029{left:722.943000px;}
.xc_c00029{left:751.800600px;}
.xd_c00029{left:756.963000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls5_c00029{letter-spacing:0.000000pt;}
.ls1_c00029{letter-spacing:0.029760pt;}
.ls0_c00029{letter-spacing:0.254764pt;}
.ls2_c00029{letter-spacing:55.777578pt;}
.ls3_c00029{letter-spacing:55.782378pt;}
.ls4_c00029{letter-spacing:55.787178pt;}
.ws1_c00029{word-spacing:-29.796222pt;}
.ws0_c00029{word-spacing:-15.833327pt;}
.ws2_c00029{word-spacing:0.000000pt;}
._7_c00029{margin-left:-1.032421pt;}
._0_c00029{width:0.938922pt;}
._5_c00029{width:2.334132pt;}
._6_c00029{width:3.655823pt;}
._a_c00029{width:4.614242pt;}
._3_c00029{width:5.692400pt;}
._4_c00029{width:7.332344pt;}
._b_c00029{width:11.868701pt;}
._8_c00029{width:13.173448pt;}
._9_c00029{width:14.100381pt;}
._c_c00029{width:16.764721pt;}
._1_c00029{width:17.769978pt;}
._2_c00029{width:18.798098pt;}
.fs1_c00029{font-size:58.267177pt;}
.fs0_c00029{font-size:63.333308pt;}
.y0_c00029{bottom:0.000000pt;}
.y3_c00029{bottom:0.107500pt;}
.y2_c00029{bottom:3.801268pt;}
.y8_c00029{bottom:6.068128pt;}
.ya_c00029{bottom:88.293168pt;}
.y1_c00029{bottom:93.730560pt;}
.y22_c00029{bottom:270.854161pt;}
.y21_c00029{bottom:299.354150pt;}
.y20_c00029{bottom:327.696672pt;}
.y1f_c00029{bottom:356.195460pt;}
.y1e_c00029{bottom:383.428516pt;}
.y1d_c00029{bottom:410.819172pt;}
.y1c_c00029{bottom:438.054228pt;}
.y1b_c00029{bottom:465.442350pt;}
.y1a_c00029{bottom:524.184860pt;}
.y19_c00029{bottom:551.419249pt;}
.y18_c00029{bottom:579.919238pt;}
.y17_c00029{bottom:607.151093pt;}
.y16_c00029{bottom:653.857341pt;}
.y15_c00029{bottom:681.091064pt;}
.y14_c00029{bottom:708.481720pt;}
.y13_c00029{bottom:735.716775pt;}
.y12_c00029{bottom:763.107431pt;}
.y11_c00029{bottom:790.341820pt;}
.y10_c00029{bottom:817.734342pt;}
.yf_c00029{bottom:844.963665pt;}
.ye_c00029{bottom:872.355521pt;}
.yd_c00029{bottom:899.589910pt;}
.yc_c00029{bottom:926.981099pt;}
.yb_c00029{bottom:954.214155pt;}
.y9_c00029{bottom:972.735480pt;}
.y7_c00029{bottom:1000.388100pt;}
.y6_c00029{bottom:1018.912492pt;}
.y5_c00029{bottom:1037.122485pt;}
.y4_c00029{bottom:1055.329411pt;}
.h1_c00029{height:17.893120pt;}
.h6_c00029{height:37.349260pt;}
.h2_c00029{height:56.683311pt;}
.h7_c00029{height:56.746644pt;}
.h4_c00029{height:56.936644pt;}
.h5_c00029{height:1110.960672pt;}
.h3_c00029{height:1122.559167pt;}
.h0_c00029{height:1122.666667pt;}
.wb_c00029{width:4.588800pt;}
.w5_c00029{width:4.750400pt;}
.w2_c00029{width:6.966400pt;}
.w9_c00029{width:6.968000pt;}
.w4_c00029{width:7.913600pt;}
.w6_c00029{width:7.920000pt;}
.w8_c00029{width:15.043200pt;}
.w3_c00029{width:19.318400pt;}
.w7_c00029{width:24.704000pt;}
.wa_c00029{width:25.651200pt;}
.w1_c00029{width:35.148800pt;}
.wd_c00029{width:785.062974pt;}
.wc_c00029{width:793.257550pt;}
.w0_c00029{width:793.333333pt;}
.x0_c00029{left:0.000000pt;}
.x12_c00029{left:1.370626pt;}
.x13_c00029{left:100.224934pt;}
.x17_c00029{left:158.970191pt;}
.x18_c00029{left:182.717306pt;}
.xf_c00029{left:224.448440pt;}
.x14_c00029{left:226.890616pt;}
.xe_c00029{left:240.124654pt;}
.x15_c00029{left:265.842334pt;}
.x16_c00029{left:289.593179pt;}
.x11_c00029{left:331.956469pt;}
.x10_c00029{left:373.596470pt;}
.x1_c00029{left:502.019200pt;}
.x2_c00029{left:537.168000pt;}
.x3_c00029{left:544.134400pt;}
.x4_c00029{left:563.452800pt;}
.x5_c00029{left:570.419200pt;}
.x6_c00029{left:578.332800pt;}
.x7_c00029{left:582.764800pt;}
.x8_c00029{left:593.849600pt;}
.x9_c00029{left:622.192000pt;}
.xa_c00029{left:635.648000pt;}
.xb_c00029{left:642.616000pt;}
.xc_c00029{left:668.267200pt;}
.xd_c00029{left:672.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00030;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:0.360019;font-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_c00030{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00030{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls1_c00030{letter-spacing:0.000000px;}
.ls0_c00030{letter-spacing:16.419713px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:-17.812493px;}
.ws1_c00030{word-spacing:0.000000px;}
._4_c00030{margin-left:-2.117499px;}
._1_c00030{margin-left:-1.077272px;}
._0_c00030{width:1.056287px;}
._c_c00030{width:2.171374px;}
._3_c00030{width:3.288402px;}
._e_c00030{width:4.557718px;}
._f_c00030{width:6.674732px;}
._7_c00030{width:9.874703px;}
._5_c00030{width:11.166742px;}
._a_c00030{width:12.629509px;}
._d_c00030{width:13.827263px;}
._b_c00030{width:16.145375px;}
._2_c00030{width:19.364111px;}
._11_c00030{width:22.573259px;}
._10_c00030{width:24.043790px;}
._6_c00030{width:25.177554px;}
._9_c00030{width:26.861090px;}
._8_c00030{width:27.918952px;}
.fc1_c00030{color:rgb(105,148,45);}
.fc0_c00030{color:rgb(35,31,32);}
.fs3_c00030{font-size:47.737061px;}
.fs2_c00030{font-size:59.136936px;}
.fs1_c00030{font-size:65.550574px;}
.fs0_c00030{font-size:71.249972px;}
.y0_c00030{bottom:0.000000px;}
.y5_c00030{bottom:0.120938px;}
.y2_c00030{bottom:4.274906px;}
.y4_c00030{bottom:4.276256px;}
.ya_c00030{bottom:6.826644px;}
.yc_c00030{bottom:66.914977px;}
.y3_c00030{bottom:80.507160px;}
.y1_c00030{bottom:80.867160px;}
.y26_c00030{bottom:215.828017px;}
.y25_c00030{bottom:247.887054px;}
.y24_c00030{bottom:279.948191px;}
.y23_c00030{bottom:350.307763px;}
.y22_c00030{bottom:379.877701px;}
.y20_c00030{bottom:409.622689px;}
.y21_c00030{bottom:417.818686px;}
.y1f_c00030{bottom:483.722660px;}
.y1e_c00030{bottom:483.724910px;}
.y1d_c00030{bottom:514.537897px;}
.y1c_c00030{bottom:545.175085px;}
.y1b_c00030{bottom:575.990923px;}
.y1a_c00030{bottom:606.625411px;}
.y19_c00030{bottom:637.443348px;}
.y18_c00030{bottom:706.554921px;}
.y17_c00030{bottom:736.123359px;}
.y16_c00030{bottom:807.726130px;}
.y15_c00030{bottom:838.542718px;}
.y14_c00030{bottom:910.150289px;}
.y13_c00030{bottom:940.964777px;}
.y12_c00030{bottom:971.601965px;}
.y11_c00030{bottom:990.836637px;}
.y10_c00030{bottom:1005.621951px;}
.yf_c00030{bottom:1020.050445px;}
.ye_c00030{bottom:1037.505938px;}
.yd_c00030{bottom:1074.024924px;}
.yb_c00030{bottom:1094.327416px;}
.y9_c00030{bottom:1125.436612px;}
.y8_c00030{bottom:1146.276554px;}
.y7_c00030{bottom:1166.762796px;}
.y6_c00030{bottom:1187.245588px;}
.h1_c00030{height:19.948320px;}
.h3_c00030{height:19.954620px;}
.hb_c00030{height:30.599456px;}
.h8_c00030{height:37.906776px;}
.h7_c00030{height:42.017918px;}
.hd_c00030{height:42.772407px;}
.h9_c00030{height:45.671232px;}
.ha_c00030{height:58.929966px;}
.h2_c00030{height:63.768724px;}
.hc_c00030{height:63.839974px;}
.h5_c00030{height:64.053724px;}
.h6_c00030{height:1249.830756px;}
.h4_c00030{height:1262.879062px;}
.h0_c00030{height:1263.000000px;}
.wc_c00030{width:5.344200px;}
.w7_c00030{width:5.346000px;}
.w5_c00030{width:7.837200px;}
.w3_c00030{width:7.842600px;}
.w8_c00030{width:8.904600px;}
.w6_c00030{width:8.906400px;}
.wa_c00030{width:16.930800px;}
.w1_c00030{width:17.814240px;}
.w4_c00030{width:21.729600px;}
.w2_c00030{width:21.902400px;}
.w9_c00030{width:27.784800px;}
.wb_c00030{width:28.681200px;}
.we_c00030{width:883.195846px;}
.wd_c00030{width:892.414744px;}
.w0_c00030{width:892.500000px;}
.x0_c00030{left:0.000000px;}
.x13_c00030{left:1.541954px;}
.x14_c00030{left:112.753050px;}
.x16_c00030{left:126.293935px;}
.x1_c00030{left:128.544660px;}
.x15_c00030{left:178.837474px;}
.x17_c00030{left:185.782471px;}
.x1c_c00030{left:205.554462px;}
.x10_c00030{left:252.504495px;}
.x18_c00030{left:260.062442px;}
.xf_c00030{left:270.140236px;}
.x19_c00030{left:363.728900px;}
.x12_c00030{left:373.451028px;}
.x11_c00030{left:420.296029px;}
.x1a_c00030{left:544.525328px;}
.x1b_c00030{left:550.579325px;}
.x2_c00030{left:566.197200px;}
.x3_c00030{left:588.099600px;}
.x4_c00030{left:595.942200px;}
.x5_c00030{left:617.671800px;}
.x6_c00030{left:625.509000px;}
.x7_c00030{left:634.415400px;}
.x8_c00030{left:639.403200px;}
.x9_c00030{left:651.873600px;}
.xa_c00030{left:683.751600px;}
.xb_c00030{left:698.895000px;}
.xc_c00030{left:706.732200px;}
.xd_c00030{left:735.413400px;}
.xe_c00030{left:740.757600px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls1_c00030{letter-spacing:0.000000pt;}
.ls0_c00030{letter-spacing:14.595301pt;}
.ws0_c00030{word-spacing:-15.833327pt;}
.ws1_c00030{word-spacing:0.000000pt;}
._4_c00030{margin-left:-1.882222pt;}
._1_c00030{margin-left:-0.957575pt;}
._0_c00030{width:0.938922pt;}
._c_c00030{width:1.930110pt;}
._3_c00030{width:2.923024pt;}
._e_c00030{width:4.051305pt;}
._f_c00030{width:5.933095pt;}
._7_c00030{width:8.777514pt;}
._5_c00030{width:9.925993pt;}
._a_c00030{width:11.226230pt;}
._d_c00030{width:12.290901pt;}
._b_c00030{width:14.351445pt;}
._2_c00030{width:17.212543pt;}
._11_c00030{width:20.065119pt;}
._10_c00030{width:21.372258pt;}
._6_c00030{width:22.380048pt;}
._9_c00030{width:23.876525pt;}
._8_c00030{width:24.816847pt;}
.fs3_c00030{font-size:42.432943pt;}
.fs2_c00030{font-size:52.566166pt;}
.fs1_c00030{font-size:58.267177pt;}
.fs0_c00030{font-size:63.333308pt;}
.y0_c00030{bottom:0.000000pt;}
.y5_c00030{bottom:0.107500pt;}
.y2_c00030{bottom:3.799916pt;}
.y4_c00030{bottom:3.801117pt;}
.ya_c00030{bottom:6.068128pt;}
.yc_c00030{bottom:59.479979pt;}
.y3_c00030{bottom:71.561920pt;}
.y1_c00030{bottom:71.881920pt;}
.y26_c00030{bottom:191.847126pt;}
.y25_c00030{bottom:220.344048pt;}
.y24_c00030{bottom:248.842837pt;}
.y23_c00030{bottom:311.384678pt;}
.y22_c00030{bottom:337.669068pt;}
.y20_c00030{bottom:364.109057pt;}
.y21_c00030{bottom:371.394388pt;}
.y1f_c00030{bottom:429.975698pt;}
.y1e_c00030{bottom:429.977698pt;}
.y1d_c00030{bottom:457.367020pt;}
.y1c_c00030{bottom:484.600076pt;}
.y1b_c00030{bottom:511.991931pt;}
.y1a_c00030{bottom:539.222587pt;}
.y19_c00030{bottom:566.616310pt;}
.y18_c00030{bottom:628.048818pt;}
.y17_c00030{bottom:654.331875pt;}
.y16_c00030{bottom:717.978782pt;}
.y15_c00030{bottom:745.371305pt;}
.y14_c00030{bottom:809.022479pt;}
.y13_c00030{bottom:836.413135pt;}
.y12_c00030{bottom:863.646191pt;}
.y11_c00030{bottom:880.743677pt;}
.y10_c00030{bottom:893.886179pt;}
.yf_c00030{bottom:906.711507pt;}
.ye_c00030{bottom:922.227501pt;}
.yd_c00030{bottom:954.688821pt;}
.yb_c00030{bottom:972.735480pt;}
.y9_c00030{bottom:1000.388100pt;}
.y8_c00030{bottom:1018.912492pt;}
.y7_c00030{bottom:1037.122485pt;}
.y6_c00030{bottom:1055.329411pt;}
.h1_c00030{height:17.731840pt;}
.h3_c00030{height:17.737440pt;}
.hb_c00030{height:27.199516pt;}
.h8_c00030{height:33.694912pt;}
.h7_c00030{height:37.349260pt;}
.hd_c00030{height:38.019917pt;}
.h9_c00030{height:40.596650pt;}
.ha_c00030{height:52.382192pt;}
.h2_c00030{height:56.683311pt;}
.hc_c00030{height:56.746644pt;}
.h5_c00030{height:56.936644pt;}
.h6_c00030{height:1110.960672pt;}
.h4_c00030{height:1122.559167pt;}
.h0_c00030{height:1122.666667pt;}
.wc_c00030{width:4.750400pt;}
.w7_c00030{width:4.752000pt;}
.w5_c00030{width:6.966400pt;}
.w3_c00030{width:6.971200pt;}
.w8_c00030{width:7.915200pt;}
.w6_c00030{width:7.916800pt;}
.wa_c00030{width:15.049600pt;}
.w1_c00030{width:15.834880pt;}
.w4_c00030{width:19.315200pt;}
.w2_c00030{width:19.468800pt;}
.w9_c00030{width:24.697600pt;}
.wb_c00030{width:25.494400pt;}
.we_c00030{width:785.062974pt;}
.wd_c00030{width:793.257550pt;}
.w0_c00030{width:793.333333pt;}
.x0_c00030{left:0.000000pt;}
.x13_c00030{left:1.370626pt;}
.x14_c00030{left:100.224934pt;}
.x16_c00030{left:112.261275pt;}
.x1_c00030{left:114.261920pt;}
.x15_c00030{left:158.966644pt;}
.x17_c00030{left:165.139974pt;}
.x1c_c00030{left:182.715077pt;}
.x10_c00030{left:224.448440pt;}
.x18_c00030{left:231.166615pt;}
.xf_c00030{left:240.124654pt;}
.x19_c00030{left:323.314578pt;}
.x12_c00030{left:331.956469pt;}
.x11_c00030{left:373.596470pt;}
.x1a_c00030{left:484.022514pt;}
.x1b_c00030{left:489.403845pt;}
.x2_c00030{left:503.286400pt;}
.x3_c00030{left:522.755200pt;}
.x4_c00030{left:529.726400pt;}
.x5_c00030{left:549.041600pt;}
.x6_c00030{left:556.008000pt;}
.x7_c00030{left:563.924800pt;}
.x8_c00030{left:568.358400pt;}
.x9_c00030{left:579.443200pt;}
.xa_c00030{left:607.779200pt;}
.xb_c00030{left:621.240000pt;}
.xc_c00030{left:628.206400pt;}
.xd_c00030{left:653.700800pt;}
.xe_c00030{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00031;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:1.113000;font-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_c00031{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls0_c00031{letter-spacing:0.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:-17.812493px;}
.ws1_c00031{word-spacing:0.000000px;}
._a_c00031{margin-left:-2.564635px;}
._3_c00031{margin-left:-1.075281px;}
._0_c00031{width:1.056287px;}
._2_c00031{width:2.582810px;}
._1_c00031{width:3.612013px;}
._b_c00031{width:5.107829px;}
._9_c00031{width:6.157361px;}
._8_c00031{width:7.626830px;}
._4_c00031{width:9.739427px;}
._6_c00031{width:11.947063px;}
._7_c00031{width:13.210015px;}
._5_c00031{width:14.290623px;}
._c_c00031{width:114.586712px;}
.fc1_c00031{color:rgb(105,148,45);}
.fc0_c00031{color:rgb(35,31,32);}
.fs2_c00031{font-size:59.136936px;}
.fs1_c00031{font-size:65.550574px;}
.fs0_c00031{font-size:71.249972px;}
.y0_c00031{bottom:0.000000px;}
.y5_c00031{bottom:0.120938px;}
.y2_c00031{bottom:4.274906px;}
.y4_c00031{bottom:4.276256px;}
.ya_c00031{bottom:6.826644px;}
.yc_c00031{bottom:66.914977px;}
.y3_c00031{bottom:80.507160px;}
.y1_c00031{bottom:80.867160px;}
.y2e_c00031{bottom:85.082324px;}
.y2d_c00031{bottom:99.867638px;}
.y2c_c00031{bottom:114.652952px;}
.y2b_c00031{bottom:129.614036px;}
.y2a_c00031{bottom:144.399351px;}
.y29_c00031{bottom:159.180435px;}
.y28_c00031{bottom:174.145044px;}
.y27_c00031{bottom:188.928948px;}
.y26_c00031{bottom:203.711442px;}
.y25_c00031{bottom:218.675346px;}
.y24_c00031{bottom:233.461350px;}
.y23_c00031{bottom:248.245254px;}
.y22_c00031{bottom:274.782943px;}
.y21_c00031{bottom:305.420131px;}
.y20_c00031{bottom:336.235969px;}
.y1f_c00031{bottom:366.870457px;}
.y1e_c00031{bottom:438.658028px;}
.y1d_c00031{bottom:469.295966px;}
.y1c_c00031{bottom:499.753153px;}
.y1b_c00031{bottom:550.874633px;}
.y1a_c00031{bottom:550.874783px;}
.y19_c00031{bottom:582.046420px;}
.y18_c00031{bottom:612.682258px;}
.y17_c00031{bottom:643.496746px;}
.y16_c00031{bottom:674.136184px;}
.y15_c00031{bottom:704.772021px;}
.y14_c00031{bottom:766.224447px;}
.y13_c00031{bottom:797.040284px;}
.y12_c00031{bottom:858.134060px;}
.y11_c00031{bottom:919.941535px;}
.y10_c00031{bottom:950.580223px;}
.yf_c00031{bottom:981.396811px;}
.ye_c00031{bottom:1012.033998px;}
.yd_c00031{bottom:1042.851936px;}
.yb_c00031{bottom:1094.327416px;}
.y9_c00031{bottom:1125.436612px;}
.y8_c00031{bottom:1146.276554px;}
.y7_c00031{bottom:1166.762796px;}
.y6_c00031{bottom:1187.245588px;}
.h1_c00031{height:19.948320px;}
.h3_c00031{height:19.954620px;}
.h8_c00031{height:37.906776px;}
.h7_c00031{height:42.017918px;}
.h2_c00031{height:63.768724px;}
.h9_c00031{height:63.839974px;}
.h5_c00031{height:64.053724px;}
.h6_c00031{height:1249.830756px;}
.h4_c00031{height:1262.879062px;}
.h0_c00031{height:1263.000000px;}
.wc_c00031{width:5.344200px;}
.w7_c00031{width:5.346000px;}
.w5_c00031{width:7.837200px;}
.w3_c00031{width:7.842600px;}
.w8_c00031{width:8.904600px;}
.w6_c00031{width:8.906400px;}
.wa_c00031{width:16.930800px;}
.w1_c00031{width:17.814240px;}
.w4_c00031{width:21.729600px;}
.w2_c00031{width:21.902400px;}
.w9_c00031{width:27.784800px;}
.wb_c00031{width:28.681200px;}
.we_c00031{width:883.195846px;}
.wd_c00031{width:892.414744px;}
.w0_c00031{width:892.500000px;}
.x0_c00031{left:0.000000px;}
.x13_c00031{left:1.541954px;}
.x14_c00031{left:112.753050px;}
.x16_c00031{left:126.289438px;}
.x1_c00031{left:128.544660px;}
.x15_c00031{left:178.837474px;}
.x17_c00031{left:185.782471px;}
.x18_c00031{left:219.626401px;}
.x10_c00031{left:252.504495px;}
.xf_c00031{left:270.140236px;}
.x12_c00031{left:373.451028px;}
.x11_c00031{left:420.296029px;}
.x2_c00031{left:566.197200px;}
.x3_c00031{left:588.099600px;}
.x4_c00031{left:595.942200px;}
.x5_c00031{left:617.671800px;}
.x6_c00031{left:625.509000px;}
.x7_c00031{left:634.415400px;}
.x8_c00031{left:639.403200px;}
.x9_c00031{left:651.873600px;}
.xa_c00031{left:683.751600px;}
.xb_c00031{left:698.895000px;}
.xc_c00031{left:706.732200px;}
.xd_c00031{left:735.413400px;}
.xe_c00031{left:740.757600px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:-15.833327pt;}
.ws1_c00031{word-spacing:0.000000pt;}
._a_c00031{margin-left:-2.279675pt;}
._3_c00031{margin-left:-0.955805pt;}
._0_c00031{width:0.938922pt;}
._2_c00031{width:2.295831pt;}
._1_c00031{width:3.210678pt;}
._b_c00031{width:4.540292pt;}
._9_c00031{width:5.473209pt;}
._8_c00031{width:6.779405pt;}
._4_c00031{width:8.657268pt;}
._6_c00031{width:10.619612pt;}
._7_c00031{width:11.742235pt;}
._5_c00031{width:12.702776pt;}
._c_c00031{width:101.854855pt;}
.fs2_c00031{font-size:52.566166pt;}
.fs1_c00031{font-size:58.267177pt;}
.fs0_c00031{font-size:63.333308pt;}
.y0_c00031{bottom:0.000000pt;}
.y5_c00031{bottom:0.107500pt;}
.y2_c00031{bottom:3.799916pt;}
.y4_c00031{bottom:3.801117pt;}
.ya_c00031{bottom:6.068128pt;}
.yc_c00031{bottom:59.479979pt;}
.y3_c00031{bottom:71.561920pt;}
.y1_c00031{bottom:71.881920pt;}
.y2e_c00031{bottom:75.628733pt;}
.y2d_c00031{bottom:88.771234pt;}
.y2c_c00031{bottom:101.913735pt;}
.y2b_c00031{bottom:115.212477pt;}
.y2a_c00031{bottom:128.354978pt;}
.y29_c00031{bottom:141.493720pt;}
.y28_c00031{bottom:154.795594pt;}
.y27_c00031{bottom:167.936842pt;}
.y26_c00031{bottom:181.076837pt;}
.y25_c00031{bottom:194.378085pt;}
.y24_c00031{bottom:207.521200pt;}
.y23_c00031{bottom:220.662448pt;}
.y22_c00031{bottom:244.251505pt;}
.y21_c00031{bottom:271.484561pt;}
.y20_c00031{bottom:298.876417pt;}
.y1f_c00031{bottom:326.107072pt;}
.y1e_c00031{bottom:389.918247pt;}
.y1d_c00031{bottom:417.151969pt;}
.y1c_c00031{bottom:444.225025pt;}
.y1b_c00031{bottom:489.666340pt;}
.y1a_c00031{bottom:489.666474pt;}
.y19_c00031{bottom:517.374596pt;}
.y18_c00031{bottom:544.606452pt;}
.y17_c00031{bottom:571.997107pt;}
.y16_c00031{bottom:599.232163pt;}
.y15_c00031{bottom:626.464019pt;}
.y14_c00031{bottom:681.088397pt;}
.y13_c00031{bottom:708.480253pt;}
.y12_c00031{bottom:762.785831pt;}
.y11_c00031{bottom:817.725809pt;}
.y10_c00031{bottom:844.960198pt;}
.yf_c00031{bottom:872.352721pt;}
.ye_c00031{bottom:899.585776pt;}
.yd_c00031{bottom:926.979499pt;}
.yb_c00031{bottom:972.735480pt;}
.y9_c00031{bottom:1000.388100pt;}
.y8_c00031{bottom:1018.912492pt;}
.y7_c00031{bottom:1037.122485pt;}
.y6_c00031{bottom:1055.329411pt;}
.h1_c00031{height:17.731840pt;}
.h3_c00031{height:17.737440pt;}
.h8_c00031{height:33.694912pt;}
.h7_c00031{height:37.349260pt;}
.h2_c00031{height:56.683311pt;}
.h9_c00031{height:56.746644pt;}
.h5_c00031{height:56.936644pt;}
.h6_c00031{height:1110.960672pt;}
.h4_c00031{height:1122.559167pt;}
.h0_c00031{height:1122.666667pt;}
.wc_c00031{width:4.750400pt;}
.w7_c00031{width:4.752000pt;}
.w5_c00031{width:6.966400pt;}
.w3_c00031{width:6.971200pt;}
.w8_c00031{width:7.915200pt;}
.w6_c00031{width:7.916800pt;}
.wa_c00031{width:15.049600pt;}
.w1_c00031{width:15.834880pt;}
.w4_c00031{width:19.315200pt;}
.w2_c00031{width:19.468800pt;}
.w9_c00031{width:24.697600pt;}
.wb_c00031{width:25.494400pt;}
.we_c00031{width:785.062974pt;}
.wd_c00031{width:793.257550pt;}
.w0_c00031{width:793.333333pt;}
.x0_c00031{left:0.000000pt;}
.x13_c00031{left:1.370626pt;}
.x14_c00031{left:100.224934pt;}
.x16_c00031{left:112.257278pt;}
.x1_c00031{left:114.261920pt;}
.x15_c00031{left:158.966644pt;}
.x17_c00031{left:165.139974pt;}
.x18_c00031{left:195.223468pt;}
.x10_c00031{left:224.448440pt;}
.xf_c00031{left:240.124654pt;}
.x12_c00031{left:331.956469pt;}
.x11_c00031{left:373.596470pt;}
.x2_c00031{left:503.286400pt;}
.x3_c00031{left:522.755200pt;}
.x4_c00031{left:529.726400pt;}
.x5_c00031{left:549.041600pt;}
.x6_c00031{left:556.008000pt;}
.x7_c00031{left:563.924800pt;}
.x8_c00031{left:568.358400pt;}
.x9_c00031{left:579.443200pt;}
.xa_c00031{left:607.779200pt;}
.xb_c00031{left:621.240000pt;}
.xc_c00031{left:628.206400pt;}
.xd_c00031{left:653.700800pt;}
.xe_c00031{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.112000;font-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_c00032{transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:-17.812493px;}
.ws1_c00032{word-spacing:0.000000px;}
._3_c00032{margin-left:-2.973801px;}
._1_c00032{margin-left:-1.091826px;}
._0_c00032{width:1.056287px;}
._d_c00032{width:3.472540px;}
._7_c00032{width:6.144868px;}
._5_c00032{width:7.437927px;}
._9_c00032{width:9.529144px;}
._2_c00032{width:13.598392px;}
._c_c00032{width:16.359171px;}
._6_c00032{width:20.104875px;}
._b_c00032{width:21.132964px;}
._a_c00032{width:22.147944px;}
._8_c00032{width:24.343115px;}
._e_c00032{width:57.486382px;}
._4_c00032{width:120.506502px;}
.fc1_c00032{color:rgb(105,148,45);}
.fc0_c00032{color:rgb(35,31,32);}
.fs3_c00032{font-size:41.324503px;}
.fs4_c00032{font-size:44.887062px;}
.fs5_c00032{font-size:47.737061px;}
.fs2_c00032{font-size:59.136936px;}
.fs1_c00032{font-size:65.550574px;}
.fs0_c00032{font-size:71.249972px;}
.y0_c00032{bottom:0.000000px;}
.y5_c00032{bottom:0.120938px;}
.y2_c00032{bottom:4.274906px;}
.y4_c00032{bottom:4.276256px;}
.ya_c00032{bottom:6.826644px;}
.yc_c00032{bottom:66.914977px;}
.y3_c00032{bottom:80.507160px;}
.y1_c00032{bottom:80.867160px;}
.y2e_c00032{bottom:235.595759px;}
.y2d_c00032{bottom:297.227734px;}
.y2b_c00032{bottom:327.865822px;}
.y2c_c00032{bottom:327.868222px;}
.y2a_c00032{bottom:358.503760px;}
.y29_c00032{bottom:389.140948px;}
.y28_c00032{bottom:450.414723px;}
.y27_c00032{bottom:481.053411px;}
.y26_c00032{bottom:511.691349px;}
.y25_c00032{bottom:542.327186px;}
.y24_c00032{bottom:603.600962px;}
.y23_c00032{bottom:634.233950px;}
.y22_c00032{bottom:664.877587px;}
.y21_c00032{bottom:695.512075px;}
.y20_c00032{bottom:714.569567px;}
.y1f_c00032{bottom:729.532061px;}
.y1e_c00032{bottom:743.426556px;}
.y1d_c00032{bottom:760.171049px;}
.y1c_c00032{bottom:795.797535px;}
.y1b_c00032{bottom:810.046029px;}
.y1a_c00032{bottom:824.650023px;}
.y19_c00032{bottom:843.709016px;}
.y18_c00032{bottom:857.780510px;}
.y17_c00032{bottom:871.318005px;}
.y16_c00032{bottom:890.196997px;}
.y15_c00032{bottom:904.449991px;}
.y14_c00032{bottom:917.988986px;}
.y13_c00032{bottom:936.867979px;}
.y12_c00032{bottom:950.763973px;}
.y11_c00032{bottom:967.682466px;}
.y10_c00032{bottom:1003.130452px;}
.yf_c00032{bottom:1023.257744px;}
.ye_c00032{bottom:1041.960936px;}
.yd_c00032{bottom:1077.760072px;}
.yb_c00032{bottom:1094.327416px;}
.y9_c00032{bottom:1125.436612px;}
.y8_c00032{bottom:1146.276554px;}
.y7_c00032{bottom:1166.762796px;}
.y6_c00032{bottom:1187.245588px;}
.h1_c00032{height:19.948320px;}
.h3_c00032{height:19.954620px;}
.hb_c00032{height:26.489007px;}
.hd_c00032{height:28.772607px;}
.he_c00032{height:30.599456px;}
.h8_c00032{height:37.906776px;}
.h7_c00032{height:42.017918px;}
.ha_c00032{height:58.733314px;}
.h9_c00032{height:58.929966px;}
.h2_c00032{height:63.768724px;}
.hc_c00032{height:63.839974px;}
.h5_c00032{height:64.053724px;}
.h6_c00032{height:1249.830756px;}
.h4_c00032{height:1262.879062px;}
.h0_c00032{height:1263.000000px;}
.wc_c00032{width:5.344200px;}
.w7_c00032{width:5.346000px;}
.w5_c00032{width:7.837200px;}
.w3_c00032{width:7.842600px;}
.w8_c00032{width:8.904600px;}
.w6_c00032{width:8.906400px;}
.wa_c00032{width:16.930800px;}
.w1_c00032{width:17.814240px;}
.w4_c00032{width:21.729600px;}
.w2_c00032{width:21.902400px;}
.w9_c00032{width:27.784800px;}
.wb_c00032{width:28.681200px;}
.we_c00032{width:883.195846px;}
.wd_c00032{width:892.414744px;}
.w0_c00032{width:892.500000px;}
.x0_c00032{left:0.000000px;}
.x13_c00032{left:1.541954px;}
.x14_c00032{left:112.753050px;}
.x1_c00032{left:128.544660px;}
.x16_c00032{left:153.008984px;}
.x17_c00032{left:165.296979px;}
.x15_c00032{left:178.837474px;}
.x18_c00032{left:204.305123px;}
.x19_c00032{left:218.735887px;}
.x1c_c00032{left:245.450947px;}
.x10_c00032{left:252.504495px;}
.xf_c00032{left:270.140236px;}
.x1d_c00032{left:312.961420px;}
.x12_c00032{left:373.451028px;}
.x1a_c00032{left:375.662895px;}
.x11_c00032{left:420.296029px;}
.x1b_c00032{left:452.434365px;}
.x1e_c00032{left:473.987856px;}
.x2_c00032{left:566.197200px;}
.x3_c00032{left:588.099600px;}
.x4_c00032{left:595.942200px;}
.x5_c00032{left:617.671800px;}
.x6_c00032{left:625.509000px;}
.x7_c00032{left:634.415400px;}
.x8_c00032{left:639.403200px;}
.x9_c00032{left:651.873600px;}
.xa_c00032{left:683.751600px;}
.xb_c00032{left:698.895000px;}
.xc_c00032{left:706.732200px;}
.x1f_c00032{left:726.388255px;}
.xd_c00032{left:735.413400px;}
.xe_c00032{left:740.757600px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:-15.833327pt;}
.ws1_c00032{word-spacing:0.000000pt;}
._3_c00032{margin-left:-2.643379pt;}
._1_c00032{margin-left:-0.970512pt;}
._0_c00032{width:0.938922pt;}
._d_c00032{width:3.086702pt;}
._7_c00032{width:5.462105pt;}
._5_c00032{width:6.611491pt;}
._9_c00032{width:8.470350pt;}
._2_c00032{width:12.087459pt;}
._c_c00032{width:14.541485pt;}
._6_c00032{width:17.871000pt;}
._b_c00032{width:18.784857pt;}
._a_c00032{width:19.687061pt;}
._8_c00032{width:21.638324pt;}
._e_c00032{width:51.099006pt;}
._4_c00032{width:107.116890pt;}
.fs3_c00032{font-size:36.732892pt;}
.fs4_c00032{font-size:39.899611pt;}
.fs5_c00032{font-size:42.432943pt;}
.fs2_c00032{font-size:52.566166pt;}
.fs1_c00032{font-size:58.267177pt;}
.fs0_c00032{font-size:63.333308pt;}
.y0_c00032{bottom:0.000000pt;}
.y5_c00032{bottom:0.107500pt;}
.y2_c00032{bottom:3.799916pt;}
.y4_c00032{bottom:3.801117pt;}
.ya_c00032{bottom:6.068128pt;}
.yc_c00032{bottom:59.479979pt;}
.y3_c00032{bottom:71.561920pt;}
.y1_c00032{bottom:71.881920pt;}
.y2e_c00032{bottom:209.418452pt;}
.y2d_c00032{bottom:264.202431pt;}
.y2b_c00032{bottom:291.436286pt;}
.y2c_c00032{bottom:291.438420pt;}
.y2a_c00032{bottom:318.670009pt;}
.y29_c00032{bottom:345.903065pt;}
.y28_c00032{bottom:400.368643pt;}
.y27_c00032{bottom:427.603032pt;}
.y26_c00032{bottom:454.836754pt;}
.y25_c00032{bottom:482.068610pt;}
.y24_c00032{bottom:536.534188pt;}
.y23_c00032{bottom:563.763511pt;}
.y22_c00032{bottom:591.002300pt;}
.y21_c00032{bottom:618.232956pt;}
.y20_c00032{bottom:635.172949pt;}
.y1f_c00032{bottom:648.472944pt;}
.y1e_c00032{bottom:660.823605pt;}
.y1d_c00032{bottom:675.707599pt;}
.y1c_c00032{bottom:707.375587pt;}
.y1b_c00032{bottom:720.040915pt;}
.y1a_c00032{bottom:733.022243pt;}
.y19_c00032{bottom:749.963570pt;}
.y18_c00032{bottom:762.471565pt;}
.y17_c00032{bottom:774.504893pt;}
.y16_c00032{bottom:791.286220pt;}
.y15_c00032{bottom:803.955548pt;}
.y14_c00032{bottom:815.990210pt;}
.y13_c00032{bottom:832.771536pt;}
.y12_c00032{bottom:845.123532pt;}
.y11_c00032{bottom:860.162192pt;}
.y10_c00032{bottom:891.671513pt;}
.yf_c00032{bottom:909.562439pt;}
.ye_c00032{bottom:926.187499pt;}
.yd_c00032{bottom:958.008953pt;}
.yb_c00032{bottom:972.735480pt;}
.y9_c00032{bottom:1000.388100pt;}
.y8_c00032{bottom:1018.912492pt;}
.y7_c00032{bottom:1037.122485pt;}
.y6_c00032{bottom:1055.329411pt;}
.h1_c00032{height:17.731840pt;}
.h3_c00032{height:17.737440pt;}
.hb_c00032{height:23.545784pt;}
.hd_c00032{height:25.575650pt;}
.he_c00032{height:27.199516pt;}
.h8_c00032{height:33.694912pt;}
.h7_c00032{height:37.349260pt;}
.ha_c00032{height:52.207390pt;}
.h9_c00032{height:52.382192pt;}
.h2_c00032{height:56.683311pt;}
.hc_c00032{height:56.746644pt;}
.h5_c00032{height:56.936644pt;}
.h6_c00032{height:1110.960672pt;}
.h4_c00032{height:1122.559167pt;}
.h0_c00032{height:1122.666667pt;}
.wc_c00032{width:4.750400pt;}
.w7_c00032{width:4.752000pt;}
.w5_c00032{width:6.966400pt;}
.w3_c00032{width:6.971200pt;}
.w8_c00032{width:7.915200pt;}
.w6_c00032{width:7.916800pt;}
.wa_c00032{width:15.049600pt;}
.w1_c00032{width:15.834880pt;}
.w4_c00032{width:19.315200pt;}
.w2_c00032{width:19.468800pt;}
.w9_c00032{width:24.697600pt;}
.wb_c00032{width:25.494400pt;}
.we_c00032{width:785.062974pt;}
.wd_c00032{width:793.257550pt;}
.w0_c00032{width:793.333333pt;}
.x0_c00032{left:0.000000pt;}
.x13_c00032{left:1.370626pt;}
.x14_c00032{left:100.224934pt;}
.x1_c00032{left:114.261920pt;}
.x16_c00032{left:136.007986pt;}
.x17_c00032{left:146.930648pt;}
.x15_c00032{left:158.966644pt;}
.x18_c00032{left:181.604554pt;}
.x19_c00032{left:194.431900pt;}
.x1c_c00032{left:218.178620pt;}
.x10_c00032{left:224.448440pt;}
.xf_c00032{left:240.124654pt;}
.x1d_c00032{left:278.187929pt;}
.x12_c00032{left:331.956469pt;}
.x1a_c00032{left:333.922574pt;}
.x11_c00032{left:373.596470pt;}
.x1b_c00032{left:402.163880pt;}
.x1e_c00032{left:421.322539pt;}
.x2_c00032{left:503.286400pt;}
.x3_c00032{left:522.755200pt;}
.x4_c00032{left:529.726400pt;}
.x5_c00032{left:549.041600pt;}
.x6_c00032{left:556.008000pt;}
.x7_c00032{left:563.924800pt;}
.x8_c00032{left:568.358400pt;}
.x9_c00032{left:579.443200pt;}
.xa_c00032{left:607.779200pt;}
.xb_c00032{left:621.240000pt;}
.xc_c00032{left:628.206400pt;}
.x1f_c00032{left:645.678449pt;}
.xd_c00032{left:653.700800pt;}
.xe_c00032{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00033;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:1.113000;font-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_c00033{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00033{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-17.812493px;}
.ws1_c00033{word-spacing:0.000000px;}
._7_c00033{margin-left:-4.117602px;}
._3_c00033{margin-left:-2.622206px;}
._1_c00033{margin-left:-1.077272px;}
._0_c00033{width:1.056287px;}
._2_c00033{width:2.760157px;}
._4_c00033{width:4.673493px;}
._5_c00033{width:6.457843px;}
._d_c00033{width:7.821986px;}
._e_c00033{width:9.033398px;}
._f_c00033{width:11.405872px;}
._a_c00033{width:20.857699px;}
._9_c00033{width:23.494883px;}
._8_c00033{width:25.780171px;}
._b_c00033{width:28.320029px;}
._c_c00033{width:31.327162px;}
._6_c00033{width:58.979415px;}
.fc1_c00033{color:rgb(105,148,45);}
.fc0_c00033{color:rgb(35,31,32);}
.fs5_c00033{font-size:29.924628px;}
.fs4_c00033{font-size:38.474625px;}
.fs7_c00033{font-size:41.324503px;}
.fs6_c00033{font-size:44.887062px;}
.fs3_c00033{font-size:47.737061px;}
.fs2_c00033{font-size:59.136936px;}
.fs1_c00033{font-size:65.550574px;}
.fs0_c00033{font-size:71.249972px;}
.y0_c00033{bottom:0.000000px;}
.y5_c00033{bottom:0.120938px;}
.y2_c00033{bottom:4.274906px;}
.y4_c00033{bottom:4.276256px;}
.ya_c00033{bottom:6.826644px;}
.yc_c00033{bottom:66.914977px;}
.y3_c00033{bottom:80.507160px;}
.y1_c00033{bottom:80.867160px;}
.y39_c00033{bottom:117.323806px;}
.y38_c00033{bottom:147.961744px;}
.y37_c00033{bottom:178.598932px;}
.y36_c00033{bottom:209.234770px;}
.y35_c00033{bottom:228.296762px;}
.y34_c00033{bottom:248.423754px;}
.y33_c00033{bottom:284.224240px;}
.y32_c00033{bottom:304.531231px;}
.y31_c00033{bottom:340.511867px;}
.y2f_c00033{bottom:369.189456px;}
.y30_c00033{bottom:369.190206px;}
.y2e_c00033{bottom:400.006043px;}
.y2d_c00033{bottom:430.643231px;}
.y2c_c00033{bottom:461.459069px;}
.y2b_c00033{bottom:492.095656px;}
.y2a_c00033{bottom:511.334739px;}
.y29_c00033{bottom:526.118643px;}
.y28_c00033{bottom:540.008637px;}
.y27_c00033{bottom:556.933130px;}
.y26_c00033{bottom:592.379616px;}
.y25_c00033{bottom:612.505108px;}
.y24_c00033{bottom:649.020344px;}
.y23_c00033{bottom:679.124582px;}
.y22_c00033{bottom:709.939069px;}
.y21_c00033{bottom:728.998062px;}
.y20_c00033{bottom:743.248056px;}
.y1e_c00033{bottom:756.605551px;}
.y1f_c00033{bottom:764.801547px;}
.y1d_c00033{bottom:776.917043px;}
.y1b_c00033{bottom:787.244538px;}
.y1c_c00033{bottom:795.440535px;}
.y1a_c00033{bottom:807.551530px;}
.y19_c00033{bottom:818.237526px;}
.y18_c00033{bottom:836.050019px;}
.y17_c00033{bottom:848.873514px;}
.y16_c00033{bottom:866.866007px;}
.y15_c00033{bottom:879.688001px;}
.y14_c00033{bottom:898.571494px;}
.y13_c00033{bottom:925.111433px;}
.y12_c00033{bottom:955.747271px;}
.y11_c00033{bottom:986.564459px;}
.y10_c00033{bottom:1005.621951px;}
.yf_c00033{bottom:1020.050445px;}
.ye_c00033{bottom:1037.505938px;}
.yd_c00033{bottom:1074.024924px;}
.yb_c00033{bottom:1094.327416px;}
.y9_c00033{bottom:1125.436612px;}
.y8_c00033{bottom:1146.276554px;}
.y7_c00033{bottom:1166.762796px;}
.y6_c00033{bottom:1187.245588px;}
.he_c00033{height:19.181687px;}
.h1_c00033{height:19.948320px;}
.h3_c00033{height:19.954620px;}
.hd_c00033{height:24.662234px;}
.h12_c00033{height:26.489007px;}
.h10_c00033{height:28.772607px;}
.hb_c00033{height:30.599456px;}
.h8_c00033{height:37.906776px;}
.h7_c00033{height:42.017918px;}
.hf_c00033{height:42.772407px;}
.h9_c00033{height:45.671232px;}
.h11_c00033{height:58.733314px;}
.h13_c00033{height:58.798865px;}
.ha_c00033{height:58.929966px;}
.h2_c00033{height:63.768724px;}
.hc_c00033{height:63.839974px;}
.h5_c00033{height:64.053724px;}
.h6_c00033{height:1249.830756px;}
.h4_c00033{height:1262.879062px;}
.h0_c00033{height:1263.000000px;}
.wd_c00033{width:5.344200px;}
.w8_c00033{width:5.346000px;}
.w6_c00033{width:7.837200px;}
.w4_c00033{width:7.842600px;}
.w3_c00033{width:8.901000px;}
.w9_c00033{width:8.904600px;}
.w7_c00033{width:8.906400px;}
.w2_c00033{width:13.001400px;}
.wb_c00033{width:16.930800px;}
.w1_c00033{width:17.814240px;}
.w5_c00033{width:21.729600px;}
.wa_c00033{width:27.784800px;}
.wc_c00033{width:28.681200px;}
.wf_c00033{width:883.195846px;}
.we_c00033{width:892.414744px;}
.w0_c00033{width:892.500000px;}
.x0_c00033{left:0.000000px;}
.x14_c00033{left:1.541954px;}
.x15_c00033{left:112.753050px;}
.x17_c00033{left:126.293935px;}
.x1_c00033{left:128.544660px;}
.x1a_c00033{left:153.008984px;}
.x16_c00033{left:178.837474px;}
.x18_c00033{left:180.974973px;}
.x1f_c00033{left:244.382948px;}
.x11_c00033{left:252.504495px;}
.x10_c00033{left:270.140236px;}
.x1b_c00033{left:354.823404px;}
.x1c_c00033{left:360.878901px;}
.x13_c00033{left:373.451028px;}
.x1d_c00033{left:382.430893px;}
.x1e_c00033{left:388.487890px;}
.x12_c00033{left:420.296029px;}
.x19_c00033{left:432.307373px;}
.x2_c00033{left:566.197200px;}
.x3_c00033{left:579.198600px;}
.x4_c00033{left:588.099600px;}
.x5_c00033{left:595.942200px;}
.x6_c00033{left:617.671800px;}
.x7_c00033{left:625.509000px;}
.x8_c00033{left:634.415400px;}
.x9_c00033{left:639.403200px;}
.xa_c00033{left:651.873600px;}
.xb_c00033{left:683.751600px;}
.xc_c00033{left:698.895000px;}
.xd_c00033{left:706.732200px;}
.xe_c00033{left:735.413400px;}
.xf_c00033{left:740.757600px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:-15.833327pt;}
.ws1_c00033{word-spacing:0.000000pt;}
._7_c00033{margin-left:-3.660091pt;}
._3_c00033{margin-left:-2.330850pt;}
._1_c00033{margin-left:-0.957575pt;}
._0_c00033{width:0.938922pt;}
._2_c00033{width:2.453473pt;}
._4_c00033{width:4.154216pt;}
._5_c00033{width:5.740305pt;}
._d_c00033{width:6.952876pt;}
._e_c00033{width:8.029687pt;}
._f_c00033{width:10.138552pt;}
._a_c00033{width:18.540177pt;}
._9_c00033{width:20.884340pt;}
._8_c00033{width:22.915707pt;}
._b_c00033{width:25.173359pt;}
._c_c00033{width:27.846366pt;}
._6_c00033{width:52.426146pt;}
.fs5_c00033{font-size:26.599669pt;}
.fs4_c00033{font-size:34.199666pt;}
.fs7_c00033{font-size:36.732892pt;}
.fs6_c00033{font-size:39.899611pt;}
.fs3_c00033{font-size:42.432943pt;}
.fs2_c00033{font-size:52.566166pt;}
.fs1_c00033{font-size:58.267177pt;}
.fs0_c00033{font-size:63.333308pt;}
.y0_c00033{bottom:0.000000pt;}
.y5_c00033{bottom:0.107500pt;}
.y2_c00033{bottom:3.799916pt;}
.y4_c00033{bottom:3.801117pt;}
.ya_c00033{bottom:6.068128pt;}
.yc_c00033{bottom:59.479979pt;}
.y3_c00033{bottom:71.561920pt;}
.y1_c00033{bottom:71.881920pt;}
.y39_c00033{bottom:104.287828pt;}
.y38_c00033{bottom:131.521550pt;}
.y37_c00033{bottom:158.754606pt;}
.y36_c00033{bottom:185.986462pt;}
.y35_c00033{bottom:202.930455pt;}
.y34_c00033{bottom:220.821115pt;}
.y33_c00033{bottom:252.643769pt;}
.y32_c00033{bottom:270.694428pt;}
.y31_c00033{bottom:302.677215pt;}
.y2f_c00033{bottom:328.168405pt;}
.y30_c00033{bottom:328.169072pt;}
.y2e_c00033{bottom:355.560927pt;}
.y2d_c00033{bottom:382.793983pt;}
.y2c_c00033{bottom:410.185839pt;}
.y2b_c00033{bottom:437.418361pt;}
.y2a_c00033{bottom:454.519768pt;}
.y29_c00033{bottom:467.661016pt;}
.y28_c00033{bottom:480.007678pt;}
.y27_c00033{bottom:495.051672pt;}
.y26_c00033{bottom:526.559659pt;}
.y25_c00033{bottom:544.448985pt;}
.y24_c00033{bottom:576.906972pt;}
.y23_c00033{bottom:603.666295pt;}
.y22_c00033{bottom:631.056950pt;}
.y21_c00033{bottom:647.998277pt;}
.y20_c00033{bottom:660.664939pt;}
.y1e_c00033{bottom:672.538267pt;}
.y1f_c00033{bottom:679.823598pt;}
.y1d_c00033{bottom:690.592927pt;}
.y1b_c00033{bottom:699.772923pt;}
.y1c_c00033{bottom:707.058253pt;}
.y1a_c00033{bottom:717.823582pt;}
.y19_c00033{bottom:727.322245pt;}
.y18_c00033{bottom:743.155572pt;}
.y17_c00033{bottom:754.554234pt;}
.y16_c00033{bottom:770.547561pt;}
.y15_c00033{bottom:781.944890pt;}
.y14_c00033{bottom:798.730217pt;}
.y13_c00033{bottom:822.321274pt;}
.y12_c00033{bottom:849.553130pt;}
.y11_c00033{bottom:876.946185pt;}
.y10_c00033{bottom:893.886179pt;}
.yf_c00033{bottom:906.711507pt;}
.ye_c00033{bottom:922.227501pt;}
.yd_c00033{bottom:954.688821pt;}
.yb_c00033{bottom:972.735480pt;}
.y9_c00033{bottom:1000.388100pt;}
.y8_c00033{bottom:1018.912492pt;}
.y7_c00033{bottom:1037.122485pt;}
.y6_c00033{bottom:1055.329411pt;}
.he_c00033{height:17.050388pt;}
.h1_c00033{height:17.731840pt;}
.h3_c00033{height:17.737440pt;}
.hd_c00033{height:21.921986pt;}
.h12_c00033{height:23.545784pt;}
.h10_c00033{height:25.575650pt;}
.hb_c00033{height:27.199516pt;}
.h8_c00033{height:33.694912pt;}
.h7_c00033{height:37.349260pt;}
.hf_c00033{height:38.019917pt;}
.h9_c00033{height:40.596650pt;}
.h11_c00033{height:52.207390pt;}
.h13_c00033{height:52.265657pt;}
.ha_c00033{height:52.382192pt;}
.h2_c00033{height:56.683311pt;}
.hc_c00033{height:56.746644pt;}
.h5_c00033{height:56.936644pt;}
.h6_c00033{height:1110.960672pt;}
.h4_c00033{height:1122.559167pt;}
.h0_c00033{height:1122.666667pt;}
.wd_c00033{width:4.750400pt;}
.w8_c00033{width:4.752000pt;}
.w6_c00033{width:6.966400pt;}
.w4_c00033{width:6.971200pt;}
.w3_c00033{width:7.912000pt;}
.w9_c00033{width:7.915200pt;}
.w7_c00033{width:7.916800pt;}
.w2_c00033{width:11.556800pt;}
.wb_c00033{width:15.049600pt;}
.w1_c00033{width:15.834880pt;}
.w5_c00033{width:19.315200pt;}
.wa_c00033{width:24.697600pt;}
.wc_c00033{width:25.494400pt;}
.wf_c00033{width:785.062974pt;}
.we_c00033{width:793.257550pt;}
.w0_c00033{width:793.333333pt;}
.x0_c00033{left:0.000000pt;}
.x14_c00033{left:1.370626pt;}
.x15_c00033{left:100.224934pt;}
.x17_c00033{left:112.261275pt;}
.x1_c00033{left:114.261920pt;}
.x1a_c00033{left:136.007986pt;}
.x16_c00033{left:158.966644pt;}
.x18_c00033{left:160.866643pt;}
.x1f_c00033{left:217.229287pt;}
.x11_c00033{left:224.448440pt;}
.x10_c00033{left:240.124654pt;}
.x1b_c00033{left:315.398581pt;}
.x1c_c00033{left:320.781246pt;}
.x13_c00033{left:331.956469pt;}
.x1d_c00033{left:339.938571pt;}
.x1e_c00033{left:345.322569pt;}
.x12_c00033{left:373.596470pt;}
.x19_c00033{left:384.273220pt;}
.x2_c00033{left:503.286400pt;}
.x3_c00033{left:514.843200pt;}
.x4_c00033{left:522.755200pt;}
.x5_c00033{left:529.726400pt;}
.x6_c00033{left:549.041600pt;}
.x7_c00033{left:556.008000pt;}
.x8_c00033{left:563.924800pt;}
.x9_c00033{left:568.358400pt;}
.xa_c00033{left:579.443200pt;}
.xb_c00033{left:607.779200pt;}
.xc_c00033{left:621.240000pt;}
.xd_c00033{left:628.206400pt;}
.xe_c00033{left:653.700800pt;}
.xf_c00033{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00034;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00034;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff6_c00034{font-family:ff6_c00034;line-height:0.360019;font-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_c00034{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00034{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00034{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls3_c00034{letter-spacing:0.000000px;}
.ls2_c00034{letter-spacing:16.408433px;}
.ls0_c00034{letter-spacing:16.414073px;}
.ls1_c00034{letter-spacing:16.430993px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:-17.812493px;}
.ws1_c00034{word-spacing:0.000000px;}
._5_c00034{margin-left:-2.830191px;}
._7_c00034{margin-left:-1.315843px;}
._0_c00034{width:1.056287px;}
._4_c00034{width:2.480664px;}
._b_c00034{width:3.943412px;}
._c_c00034{width:5.108683px;}
._d_c00034{width:6.614887px;}
._f_c00034{width:8.034573px;}
._3_c00034{width:10.116649px;}
._1_c00034{width:11.218781px;}
._2_c00034{width:12.592860px;}
._6_c00034{width:14.135691px;}
._8_c00034{width:15.647058px;}
._a_c00034{width:16.797734px;}
._9_c00034{width:19.343827px;}
._10_c00034{width:27.846295px;}
._e_c00034{width:41.391610px;}
.fc1_c00034{color:rgb(105,148,45);}
.fc0_c00034{color:rgb(35,31,32);}
.fs3_c00034{font-size:38.474625px;}
.fs4_c00034{font-size:47.737061px;}
.fs2_c00034{font-size:59.136936px;}
.fs1_c00034{font-size:65.550574px;}
.fs0_c00034{font-size:71.249972px;}
.y0_c00034{bottom:0.000000px;}
.y5_c00034{bottom:0.120938px;}
.y2_c00034{bottom:4.274906px;}
.y4_c00034{bottom:4.276256px;}
.ya_c00034{bottom:6.826644px;}
.yc_c00034{bottom:66.914977px;}
.y3_c00034{bottom:80.507160px;}
.y1_c00034{bottom:80.867160px;}
.y31_c00034{bottom:98.267964px;}
.y30_c00034{bottom:117.503356px;}
.y2f_c00034{bottom:136.738749px;}
.y2e_c00034{bottom:166.843887px;}
.y2d_c00034{bottom:197.659724px;}
.y2c_c00034{bottom:229.542211px;}
.y2b_c00034{bottom:260.179399px;}
.y2a_c00034{bottom:292.063236px;}
.y29_c00034{bottom:322.701174px;}
.y28_c00034{bottom:353.338362px;}
.y27_c00034{bottom:385.222199px;}
.y26_c00034{bottom:404.993541px;}
.y25_c00034{bottom:439.550677px;}
.y24_c00034{bottom:458.783670px;}
.y23_c00034{bottom:516.674647px;}
.y22_c00034{bottom:534.485639px;}
.y21_c00034{bottom:547.315134px;}
.y20_c00034{bottom:566.369627px;}
.y1f_c00034{bottom:586.321269px;}
.y1e_c00034{bottom:622.660104px;}
.y1d_c00034{bottom:650.804743px;}
.y1c_c00034{bottom:681.440581px;}
.y1b_c00034{bottom:700.499573px;}
.y1a_c00034{bottom:720.625065px;}
.y19_c00034{bottom:756.430051px;}
.y18_c00034{bottom:782.967890px;}
.y17_c00034{bottom:813.603728px;}
.y16_c00034{bottom:844.243166px;}
.y15_c00034{bottom:866.329757px;}
.y14_c00034{bottom:896.074745px;}
.y13_c00034{bottom:926.714183px;}
.y12_c00034{bottom:957.350020px;}
.y11_c00034{bottom:987.987958px;}
.y10_c00034{bottom:1007.043440px;}
.yf_c00034{bottom:1022.009444px;}
.ye_c00034{bottom:1041.960936px;}
.yd_c00034{bottom:1077.760072px;}
.yb_c00034{bottom:1094.327416px;}
.y9_c00034{bottom:1125.436612px;}
.y8_c00034{bottom:1146.276554px;}
.y7_c00034{bottom:1166.762796px;}
.y6_c00034{bottom:1187.245588px;}
.h1_c00034{height:19.948320px;}
.h3_c00034{height:19.954620px;}
.hc_c00034{height:24.662234px;}
.hd_c00034{height:30.599456px;}
.h8_c00034{height:37.906776px;}
.h7_c00034{height:42.017918px;}
.hb_c00034{height:45.671232px;}
.h9_c00034{height:58.798865px;}
.h2_c00034{height:63.768724px;}
.ha_c00034{height:63.839974px;}
.h5_c00034{height:64.053724px;}
.h6_c00034{height:1249.830756px;}
.h4_c00034{height:1262.879062px;}
.h0_c00034{height:1263.000000px;}
.wd_c00034{width:5.344200px;}
.w8_c00034{width:5.346000px;}
.w6_c00034{width:7.837200px;}
.w4_c00034{width:7.842600px;}
.w3_c00034{width:8.901000px;}
.w9_c00034{width:8.904600px;}
.w7_c00034{width:8.906400px;}
.w2_c00034{width:13.001400px;}
.wb_c00034{width:16.930800px;}
.w1_c00034{width:18.169380px;}
.w5_c00034{width:21.729600px;}
.wa_c00034{width:27.784800px;}
.wc_c00034{width:28.681200px;}
.wf_c00034{width:883.195846px;}
.we_c00034{width:892.414744px;}
.w0_c00034{width:892.500000px;}
.x0_c00034{left:0.000000px;}
.x14_c00034{left:1.541954px;}
.x15_c00034{left:112.753050px;}
.x17_c00034{left:126.290335px;}
.x1_c00034{left:128.544660px;}
.x16_c00034{left:165.296979px;}
.x18_c00034{left:178.838821px;}
.x19_c00034{left:205.556276px;}
.x1a_c00034{left:232.278046px;}
.x11_c00034{left:252.504495px;}
.x10_c00034{left:270.140236px;}
.x13_c00034{left:373.451028px;}
.x12_c00034{left:420.296029px;}
.x2_c00034{left:566.197200px;}
.x3_c00034{left:579.198600px;}
.x4_c00034{left:588.099600px;}
.x5_c00034{left:595.942200px;}
.x6_c00034{left:617.671800px;}
.x7_c00034{left:625.509000px;}
.x8_c00034{left:634.415400px;}
.x9_c00034{left:639.403200px;}
.xa_c00034{left:651.873600px;}
.xb_c00034{left:683.751600px;}
.xc_c00034{left:698.895000px;}
.xd_c00034{left:706.732200px;}
.xe_c00034{left:735.413400px;}
.xf_c00034{left:740.757600px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls3_c00034{letter-spacing:0.000000pt;}
.ls2_c00034{letter-spacing:14.585274pt;}
.ls0_c00034{letter-spacing:14.590287pt;}
.ls1_c00034{letter-spacing:14.605327pt;}
.ws0_c00034{word-spacing:-15.833327pt;}
.ws1_c00034{word-spacing:0.000000pt;}
._5_c00034{margin-left:-2.515726pt;}
._7_c00034{margin-left:-1.169638pt;}
._0_c00034{width:0.938922pt;}
._4_c00034{width:2.205035pt;}
._b_c00034{width:3.505255pt;}
._c_c00034{width:4.541052pt;}
._d_c00034{width:5.879900pt;}
._f_c00034{width:7.141843pt;}
._3_c00034{width:8.992577pt;}
._1_c00034{width:9.972249pt;}
._2_c00034{width:11.193653pt;}
._6_c00034{width:12.565059pt;}
._8_c00034{width:13.908496pt;}
._a_c00034{width:14.931319pt;}
._9_c00034{width:17.194513pt;}
._10_c00034{width:24.752262pt;}
._e_c00034{width:36.792542pt;}
.fs3_c00034{font-size:34.199666pt;}
.fs4_c00034{font-size:42.432943pt;}
.fs2_c00034{font-size:52.566166pt;}
.fs1_c00034{font-size:58.267177pt;}
.fs0_c00034{font-size:63.333308pt;}
.y0_c00034{bottom:0.000000pt;}
.y5_c00034{bottom:0.107500pt;}
.y2_c00034{bottom:3.799916pt;}
.y4_c00034{bottom:3.801117pt;}
.ya_c00034{bottom:6.068128pt;}
.yc_c00034{bottom:59.479979pt;}
.y3_c00034{bottom:71.561920pt;}
.y1_c00034{bottom:71.881920pt;}
.y31_c00034{bottom:87.349301pt;}
.y30_c00034{bottom:104.447428pt;}
.y2f_c00034{bottom:121.545554pt;}
.y2e_c00034{bottom:148.305677pt;}
.y2d_c00034{bottom:175.697533pt;}
.y2c_c00034{bottom:204.037521pt;}
.y2b_c00034{bottom:231.270577pt;}
.y2a_c00034{bottom:259.611766pt;}
.y29_c00034{bottom:286.845488pt;}
.y28_c00034{bottom:314.078544pt;}
.y27_c00034{bottom:342.419733pt;}
.y26_c00034{bottom:359.994259pt;}
.y25_c00034{bottom:390.711713pt;}
.y24_c00034{bottom:407.807706pt;}
.y23_c00034{bottom:459.266353pt;}
.y22_c00034{bottom:475.098346pt;}
.y21_c00034{bottom:486.502342pt;}
.y20_c00034{bottom:503.439668pt;}
.y1f_c00034{bottom:521.174461pt;}
.y1e_c00034{bottom:553.475648pt;}
.y1d_c00034{bottom:578.493105pt;}
.y1c_c00034{bottom:605.724961pt;}
.y1b_c00034{bottom:622.666287pt;}
.y1a_c00034{bottom:640.555613pt;}
.y19_c00034{bottom:672.382267pt;}
.y18_c00034{bottom:695.971458pt;}
.y17_c00034{bottom:723.203314pt;}
.y16_c00034{bottom:750.438369pt;}
.y15_c00034{bottom:770.070895pt;}
.y14_c00034{bottom:796.510884pt;}
.y13_c00034{bottom:823.745940pt;}
.y12_c00034{bottom:850.977796pt;}
.y11_c00034{bottom:878.211518pt;}
.y10_c00034{bottom:895.149725pt;}
.yf_c00034{bottom:908.452840pt;}
.ye_c00034{bottom:926.187499pt;}
.yd_c00034{bottom:958.008953pt;}
.yb_c00034{bottom:972.735480pt;}
.y9_c00034{bottom:1000.388100pt;}
.y8_c00034{bottom:1018.912492pt;}
.y7_c00034{bottom:1037.122485pt;}
.y6_c00034{bottom:1055.329411pt;}
.h1_c00034{height:17.731840pt;}
.h3_c00034{height:17.737440pt;}
.hc_c00034{height:21.921986pt;}
.hd_c00034{height:27.199516pt;}
.h8_c00034{height:33.694912pt;}
.h7_c00034{height:37.349260pt;}
.hb_c00034{height:40.596650pt;}
.h9_c00034{height:52.265657pt;}
.h2_c00034{height:56.683311pt;}
.ha_c00034{height:56.746644pt;}
.h5_c00034{height:56.936644pt;}
.h6_c00034{height:1110.960672pt;}
.h4_c00034{height:1122.559167pt;}
.h0_c00034{height:1122.666667pt;}
.wd_c00034{width:4.750400pt;}
.w8_c00034{width:4.752000pt;}
.w6_c00034{width:6.966400pt;}
.w4_c00034{width:6.971200pt;}
.w3_c00034{width:7.912000pt;}
.w9_c00034{width:7.915200pt;}
.w7_c00034{width:7.916800pt;}
.w2_c00034{width:11.556800pt;}
.wb_c00034{width:15.049600pt;}
.w1_c00034{width:16.150560pt;}
.w5_c00034{width:19.315200pt;}
.wa_c00034{width:24.697600pt;}
.wc_c00034{width:25.494400pt;}
.wf_c00034{width:785.062974pt;}
.we_c00034{width:793.257550pt;}
.w0_c00034{width:793.333333pt;}
.x0_c00034{left:0.000000pt;}
.x14_c00034{left:1.370626pt;}
.x15_c00034{left:100.224934pt;}
.x17_c00034{left:112.258076pt;}
.x1_c00034{left:114.261920pt;}
.x16_c00034{left:146.930648pt;}
.x18_c00034{left:158.967841pt;}
.x19_c00034{left:182.716690pt;}
.x1a_c00034{left:206.469374pt;}
.x11_c00034{left:224.448440pt;}
.x10_c00034{left:240.124654pt;}
.x13_c00034{left:331.956469pt;}
.x12_c00034{left:373.596470pt;}
.x2_c00034{left:503.286400pt;}
.x3_c00034{left:514.843200pt;}
.x4_c00034{left:522.755200pt;}
.x5_c00034{left:529.726400pt;}
.x6_c00034{left:549.041600pt;}
.x7_c00034{left:556.008000pt;}
.x8_c00034{left:563.924800pt;}
.x9_c00034{left:568.358400pt;}
.xa_c00034{left:579.443200pt;}
.xb_c00034{left:607.779200pt;}
.xc_c00034{left:621.240000pt;}
.xd_c00034{left:628.206400pt;}
.xe_c00034{left:653.700800pt;}
.xf_c00034{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00035;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00035;src:url('chunks/assets/font_3247436cd682d4f78be90324.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00035;src:url('chunks/assets/font_bc52b40826f523cb8301d8c1.woff2')format("woff");}.ff6_c00035{font-family:ff6_c00035;line-height:1.137000;font-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_c00035{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00035{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls0_c00035{letter-spacing:0.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:-17.812493px;}
.ws1_c00035{word-spacing:0.000000px;}
._1_c00035{margin-left:-1.191203px;}
._0_c00035{width:1.056287px;}
._4_c00035{width:2.422670px;}
._8_c00035{width:4.281349px;}
._e_c00035{width:7.824272px;}
._2_c00035{width:9.066642px;}
._3_c00035{width:10.485339px;}
._d_c00035{width:12.701262px;}
._9_c00035{width:13.790115px;}
._a_c00035{width:15.538928px;}
._7_c00035{width:21.927648px;}
._6_c00035{width:24.045780px;}
._5_c00035{width:25.226655px;}
._f_c00035{width:26.533334px;}
._b_c00035{width:33.267438px;}
._c_c00035{width:34.333254px;}
.fc1_c00035{color:rgb(105,148,45);}
.fc0_c00035{color:rgb(35,31,32);}
.fs3_c00035{font-size:47.737061px;}
.fs2_c00035{font-size:59.136936px;}
.fs1_c00035{font-size:65.550574px;}
.fs0_c00035{font-size:71.249972px;}
.y0_c00035{bottom:0.000000px;}
.y5_c00035{bottom:0.120938px;}
.y2_c00035{bottom:4.274906px;}
.y4_c00035{bottom:4.276256px;}
.ya_c00035{bottom:6.826644px;}
.yc_c00035{bottom:66.914977px;}
.y3_c00035{bottom:80.507160px;}
.y1_c00035{bottom:80.867160px;}
.y2a_c00035{bottom:116.250857px;}
.y29_c00035{bottom:146.886695px;}
.y28_c00035{bottom:177.704632px;}
.y27_c00035{bottom:208.340470px;}
.y26_c00035{bottom:269.792895px;}
.y25_c00035{bottom:300.608733px;}
.y24_c00035{bottom:331.245921px;}
.y23_c00035{bottom:362.063858px;}
.y22_c00035{bottom:392.698346px;}
.y21_c00035{bottom:423.514184px;}
.y1f_c00035{bottom:483.542960px;}
.y20_c00035{bottom:483.545660px;}
.y1e_c00035{bottom:544.464535px;}
.y1d_c00035{bottom:575.274823px;}
.y1c_c00035{bottom:605.913511px;}
.y1b_c00035{bottom:667.367286px;}
.y1a_c00035{bottom:698.184474px;}
.y19_c00035{bottom:728.821062px;}
.y18_c00035{bottom:759.638249px;}
.y17_c00035{bottom:790.272737px;}
.y16_c00035{bottom:820.910675px;}
.y15_c00035{bottom:872.208554px;}
.y14_c00035{bottom:902.843042px;}
.y13_c00035{bottom:933.660980px;}
.y12_c00035{bottom:964.301018px;}
.y11_c00035{bottom:995.115505px;}
.y10_c00035{bottom:1025.753443px;}
.yf_c00035{bottom:1044.452630px;}
.ye_c00035{bottom:1057.100430px;}
.yd_c00035{bottom:1074.558923px;}
.yb_c00035{bottom:1094.327416px;}
.y9_c00035{bottom:1125.436612px;}
.y8_c00035{bottom:1146.276554px;}
.y7_c00035{bottom:1166.762796px;}
.y6_c00035{bottom:1187.245588px;}
.h1_c00035{height:19.948320px;}
.h3_c00035{height:19.954620px;}
.ha_c00035{height:30.599456px;}
.h8_c00035{height:37.906776px;}
.h7_c00035{height:42.017918px;}
.hc_c00035{height:51.513729px;}
.h9_c00035{height:58.929966px;}
.hd_c00035{height:60.765382px;}
.h2_c00035{height:63.768724px;}
.hb_c00035{height:63.839974px;}
.h5_c00035{height:64.053724px;}
.h6_c00035{height:1249.830756px;}
.h4_c00035{height:1262.879062px;}
.h0_c00035{height:1263.000000px;}
.wd_c00035{width:5.344200px;}
.w8_c00035{width:5.346000px;}
.w6_c00035{width:7.837200px;}
.w4_c00035{width:7.842600px;}
.w3_c00035{width:8.901000px;}
.w9_c00035{width:8.904600px;}
.w7_c00035{width:8.906400px;}
.w2_c00035{width:13.001400px;}
.wb_c00035{width:16.930800px;}
.w1_c00035{width:18.169380px;}
.w5_c00035{width:21.729600px;}
.wa_c00035{width:27.784800px;}
.wc_c00035{width:28.681200px;}
.wf_c00035{width:883.195846px;}
.we_c00035{width:892.414744px;}
.w0_c00035{width:892.500000px;}
.x0_c00035{left:0.000000px;}
.x14_c00035{left:1.541954px;}
.x15_c00035{left:112.753050px;}
.x17_c00035{left:126.293935px;}
.x1_c00035{left:128.544660px;}
.x16_c00035{left:178.837474px;}
.x18_c00035{left:205.555976px;}
.x19_c00035{left:232.271953px;}
.x11_c00035{left:252.504495px;}
.x10_c00035{left:270.140236px;}
.x13_c00035{left:373.451028px;}
.x12_c00035{left:420.296029px;}
.x2_c00035{left:566.197200px;}
.x3_c00035{left:579.198600px;}
.x4_c00035{left:588.099600px;}
.x5_c00035{left:595.942200px;}
.x6_c00035{left:617.671800px;}
.x7_c00035{left:625.509000px;}
.x8_c00035{left:634.415400px;}
.x9_c00035{left:639.403200px;}
.xa_c00035{left:651.873600px;}
.xb_c00035{left:683.751600px;}
.xc_c00035{left:698.895000px;}
.xd_c00035{left:706.732200px;}
.xe_c00035{left:735.413400px;}
.xf_c00035{left:740.757600px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws0_c00035{word-spacing:-15.833327pt;}
.ws1_c00035{word-spacing:0.000000pt;}
._1_c00035{margin-left:-1.058847pt;}
._0_c00035{width:0.938922pt;}
._4_c00035{width:2.153484pt;}
._8_c00035{width:3.805643pt;}
._e_c00035{width:6.954908pt;}
._2_c00035{width:8.059238pt;}
._3_c00035{width:9.320302pt;}
._d_c00035{width:11.290011pt;}
._9_c00035{width:12.257880pt;}
._a_c00035{width:13.812381pt;}
._7_c00035{width:19.491243pt;}
._6_c00035{width:21.374027pt;}
._5_c00035{width:22.423693pt;}
._f_c00035{width:23.585186pt;}
._b_c00035{width:29.571056pt;}
._c_c00035{width:30.518448pt;}
.fs3_c00035{font-size:42.432943pt;}
.fs2_c00035{font-size:52.566166pt;}
.fs1_c00035{font-size:58.267177pt;}
.fs0_c00035{font-size:63.333308pt;}
.y0_c00035{bottom:0.000000pt;}
.y5_c00035{bottom:0.107500pt;}
.y2_c00035{bottom:3.799916pt;}
.y4_c00035{bottom:3.801117pt;}
.ya_c00035{bottom:6.068128pt;}
.yc_c00035{bottom:59.479979pt;}
.y3_c00035{bottom:71.561920pt;}
.y1_c00035{bottom:71.881920pt;}
.y2a_c00035{bottom:103.334095pt;}
.y29_c00035{bottom:130.565951pt;}
.y28_c00035{bottom:157.959673pt;}
.y27_c00035{bottom:185.191529pt;}
.y26_c00035{bottom:239.815907pt;}
.y25_c00035{bottom:267.207763pt;}
.y24_c00035{bottom:294.440818pt;}
.y23_c00035{bottom:321.834541pt;}
.y22_c00035{bottom:349.065197pt;}
.y21_c00035{bottom:376.457052pt;}
.y1f_c00035{bottom:429.815964pt;}
.y20_c00035{bottom:429.818364pt;}
.y1e_c00035{bottom:483.968476pt;}
.y1d_c00035{bottom:511.355398pt;}
.y1c_c00035{bottom:538.589787pt;}
.y1b_c00035{bottom:593.215366pt;}
.y1a_c00035{bottom:620.608421pt;}
.y19_c00035{bottom:647.840944pt;}
.y18_c00035{bottom:675.233999pt;}
.y17_c00035{bottom:702.464655pt;}
.y16_c00035{bottom:729.698378pt;}
.y15_c00035{bottom:775.296493pt;}
.y14_c00035{bottom:802.527149pt;}
.y13_c00035{bottom:829.920871pt;}
.y12_c00035{bottom:857.156460pt;}
.y11_c00035{bottom:884.547116pt;}
.y10_c00035{bottom:911.780838pt;}
.yf_c00035{bottom:928.402338pt;}
.ye_c00035{bottom:939.644827pt;}
.yd_c00035{bottom:955.163488pt;}
.yb_c00035{bottom:972.735480pt;}
.y9_c00035{bottom:1000.388100pt;}
.y8_c00035{bottom:1018.912492pt;}
.y7_c00035{bottom:1037.122485pt;}
.y6_c00035{bottom:1055.329411pt;}
.h1_c00035{height:17.731840pt;}
.h3_c00035{height:17.737440pt;}
.ha_c00035{height:27.199516pt;}
.h8_c00035{height:33.694912pt;}
.h7_c00035{height:37.349260pt;}
.hc_c00035{height:45.789982pt;}
.h9_c00035{height:52.382192pt;}
.hd_c00035{height:54.013673pt;}
.h2_c00035{height:56.683311pt;}
.hb_c00035{height:56.746644pt;}
.h5_c00035{height:56.936644pt;}
.h6_c00035{height:1110.960672pt;}
.h4_c00035{height:1122.559167pt;}
.h0_c00035{height:1122.666667pt;}
.wd_c00035{width:4.750400pt;}
.w8_c00035{width:4.752000pt;}
.w6_c00035{width:6.966400pt;}
.w4_c00035{width:6.971200pt;}
.w3_c00035{width:7.912000pt;}
.w9_c00035{width:7.915200pt;}
.w7_c00035{width:7.916800pt;}
.w2_c00035{width:11.556800pt;}
.wb_c00035{width:15.049600pt;}
.w1_c00035{width:16.150560pt;}
.w5_c00035{width:19.315200pt;}
.wa_c00035{width:24.697600pt;}
.wc_c00035{width:25.494400pt;}
.wf_c00035{width:785.062974pt;}
.we_c00035{width:793.257550pt;}
.w0_c00035{width:793.333333pt;}
.x0_c00035{left:0.000000pt;}
.x14_c00035{left:1.370626pt;}
.x15_c00035{left:100.224934pt;}
.x17_c00035{left:112.261275pt;}
.x1_c00035{left:114.261920pt;}
.x16_c00035{left:158.966644pt;}
.x18_c00035{left:182.716423pt;}
.x19_c00035{left:206.463958pt;}
.x11_c00035{left:224.448440pt;}
.x10_c00035{left:240.124654pt;}
.x13_c00035{left:331.956469pt;}
.x12_c00035{left:373.596470pt;}
.x2_c00035{left:503.286400pt;}
.x3_c00035{left:514.843200pt;}
.x4_c00035{left:522.755200pt;}
.x5_c00035{left:529.726400pt;}
.x6_c00035{left:549.041600pt;}
.x7_c00035{left:556.008000pt;}
.x8_c00035{left:563.924800pt;}
.x9_c00035{left:568.358400pt;}
.xa_c00035{left:579.443200pt;}
.xb_c00035{left:607.779200pt;}
.xc_c00035{left:621.240000pt;}
.xd_c00035{left:628.206400pt;}
.xe_c00035{left:653.700800pt;}
.xf_c00035{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00036;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00036;src:url('chunks/assets/font_3247436cd682d4f78be90324.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00036;src:url('chunks/assets/font_bc52b40826f523cb8301d8c1.woff2')format("woff");}.ff6_c00036{font-family:ff6_c00036;line-height:1.137000;font-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_c00036{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:-17.812493px;}
.ws1_c00036{word-spacing:0.000000px;}
._7_c00036{margin-left:-1.327428px;}
._0_c00036{width:1.056287px;}
._4_c00036{width:2.596680px;}
._3_c00036{width:3.846127px;}
._5_c00036{width:4.904783px;}
._8_c00036{width:7.244348px;}
._9_c00036{width:8.575628px;}
._a_c00036{width:9.953912px;}
._c_c00036{width:11.339717px;}
._b_c00036{width:13.127525px;}
._e_c00036{width:15.577699px;}
._d_c00036{width:16.730010px;}
._f_c00036{width:19.598180px;}
._10_c00036{width:20.766738px;}
._1_c00036{width:33.149633px;}
._2_c00036{width:34.300594px;}
._6_c00036{width:35.711788px;}
.fc1_c00036{color:rgb(105,148,45);}
.fc0_c00036{color:rgb(35,31,32);}
.fs2_c00036{font-size:59.136936px;}
.fs1_c00036{font-size:65.550574px;}
.fs0_c00036{font-size:71.249972px;}
.y0_c00036{bottom:0.000000px;}
.y5_c00036{bottom:0.120938px;}
.y2_c00036{bottom:4.274906px;}
.y4_c00036{bottom:4.276256px;}
.ya_c00036{bottom:6.826644px;}
.yc_c00036{bottom:66.914977px;}
.y3_c00036{bottom:80.507160px;}
.y1_c00036{bottom:80.867160px;}
.y26_c00036{bottom:123.024254px;}
.y25_c00036{bottom:153.660842px;}
.y24_c00036{bottom:184.479529px;}
.y23_c00036{bottom:245.928355px;}
.y22_c00036{bottom:276.564943px;}
.y21_c00036{bottom:338.018118px;}
.y20_c00036{bottom:368.836056px;}
.y1f_c00036{bottom:399.470543px;}
.y1e_c00036{bottom:430.287731px;}
.y1d_c00036{bottom:460.925669px;}
.y1c_c00036{bottom:491.740157px;}
.y1b_c00036{bottom:551.764133px;}
.y1a_c00036{bottom:551.767583px;}
.y19_c00036{bottom:612.687058px;}
.y18_c00036{bottom:643.502146px;}
.y17_c00036{bottom:674.139334px;}
.y16_c00036{bottom:704.773821px;}
.y15_c00036{bottom:766.227597px;}
.y14_c00036{bottom:797.043434px;}
.y13_c00036{bottom:827.677922px;}
.y12_c00036{bottom:889.133198px;}
.y11_c00036{bottom:919.949035px;}
.y10_c00036{bottom:950.584123px;}
.yf_c00036{bottom:1012.038648px;}
.ye_c00036{bottom:1042.853736px;}
.yd_c00036{bottom:1073.490924px;}
.yb_c00036{bottom:1094.327416px;}
.y9_c00036{bottom:1125.436612px;}
.y8_c00036{bottom:1146.276554px;}
.y7_c00036{bottom:1166.762796px;}
.y6_c00036{bottom:1187.245588px;}
.h1_c00036{height:19.948320px;}
.h3_c00036{height:19.954620px;}
.h8_c00036{height:37.906776px;}
.h7_c00036{height:42.017918px;}
.ha_c00036{height:51.513729px;}
.hb_c00036{height:60.765382px;}
.h2_c00036{height:63.768724px;}
.h9_c00036{height:63.839974px;}
.h5_c00036{height:64.053724px;}
.h6_c00036{height:1249.830756px;}
.h4_c00036{height:1262.879062px;}
.h0_c00036{height:1263.000000px;}
.wd_c00036{width:5.344200px;}
.w8_c00036{width:5.346000px;}
.w6_c00036{width:7.837200px;}
.w4_c00036{width:7.842600px;}
.w3_c00036{width:8.901000px;}
.w9_c00036{width:8.904600px;}
.w7_c00036{width:8.906400px;}
.w2_c00036{width:13.001400px;}
.wb_c00036{width:16.930800px;}
.w1_c00036{width:17.814240px;}
.w5_c00036{width:21.729600px;}
.wa_c00036{width:27.784800px;}
.wc_c00036{width:28.681200px;}
.wf_c00036{width:883.195846px;}
.we_c00036{width:892.414744px;}
.w0_c00036{width:892.500000px;}
.x0_c00036{left:0.000000px;}
.x14_c00036{left:1.541954px;}
.x15_c00036{left:112.753050px;}
.x17_c00036{left:126.292436px;}
.x1_c00036{left:128.544660px;}
.x16_c00036{left:178.837474px;}
.x18_c00036{left:205.551929px;}
.x19_c00036{left:232.271953px;}
.x11_c00036{left:252.504495px;}
.x10_c00036{left:270.140236px;}
.x13_c00036{left:373.451028px;}
.x12_c00036{left:420.296029px;}
.x2_c00036{left:566.197200px;}
.x3_c00036{left:579.198600px;}
.x4_c00036{left:588.099600px;}
.x5_c00036{left:595.942200px;}
.x6_c00036{left:617.671800px;}
.x7_c00036{left:625.509000px;}
.x8_c00036{left:634.415400px;}
.x9_c00036{left:639.403200px;}
.xa_c00036{left:651.873600px;}
.xb_c00036{left:683.751600px;}
.xc_c00036{left:698.895000px;}
.xd_c00036{left:706.732200px;}
.xe_c00036{left:735.413400px;}
.xf_c00036{left:740.757600px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:-15.833327pt;}
.ws1_c00036{word-spacing:0.000000pt;}
._7_c00036{margin-left:-1.179936pt;}
._0_c00036{width:0.938922pt;}
._4_c00036{width:2.308160pt;}
._3_c00036{width:3.418779pt;}
._5_c00036{width:4.359807pt;}
._8_c00036{width:6.439421pt;}
._9_c00036{width:7.622781pt;}
._a_c00036{width:8.847922pt;}
._c_c00036{width:10.079748pt;}
._b_c00036{width:11.668911pt;}
._e_c00036{width:13.846844pt;}
._d_c00036{width:14.871120pt;}
._f_c00036{width:17.420605pt;}
._10_c00036{width:18.459323pt;}
._1_c00036{width:29.466340pt;}
._2_c00036{width:30.489417pt;}
._6_c00036{width:31.743812pt;}
.fs2_c00036{font-size:52.566166pt;}
.fs1_c00036{font-size:58.267177pt;}
.fs0_c00036{font-size:63.333308pt;}
.y0_c00036{bottom:0.000000pt;}
.y5_c00036{bottom:0.107500pt;}
.y2_c00036{bottom:3.799916pt;}
.y4_c00036{bottom:3.801117pt;}
.ya_c00036{bottom:6.068128pt;}
.yc_c00036{bottom:59.479979pt;}
.y3_c00036{bottom:71.561920pt;}
.y1_c00036{bottom:71.881920pt;}
.y26_c00036{bottom:109.354892pt;}
.y25_c00036{bottom:136.587415pt;}
.y24_c00036{bottom:163.981804pt;}
.y23_c00036{bottom:218.602982pt;}
.y22_c00036{bottom:245.835505pt;}
.y21_c00036{bottom:300.460549pt;}
.y20_c00036{bottom:327.854272pt;}
.y1f_c00036{bottom:355.084928pt;}
.y1e_c00036{bottom:382.477983pt;}
.y1d_c00036{bottom:409.711706pt;}
.y1c_c00036{bottom:437.102361pt;}
.y1b_c00036{bottom:490.457007pt;}
.y1a_c00036{bottom:490.460073pt;}
.y19_c00036{bottom:544.610718pt;}
.y18_c00036{bottom:572.001907pt;}
.y17_c00036{bottom:599.234963pt;}
.y16_c00036{bottom:626.465619pt;}
.y15_c00036{bottom:681.091197pt;}
.y14_c00036{bottom:708.483053pt;}
.y13_c00036{bottom:735.713709pt;}
.y12_c00036{bottom:790.340620pt;}
.y11_c00036{bottom:817.732476pt;}
.y10_c00036{bottom:844.963665pt;}
.yf_c00036{bottom:899.589910pt;}
.ye_c00036{bottom:926.981099pt;}
.yd_c00036{bottom:954.214155pt;}
.yb_c00036{bottom:972.735480pt;}
.y9_c00036{bottom:1000.388100pt;}
.y8_c00036{bottom:1018.912492pt;}
.y7_c00036{bottom:1037.122485pt;}
.y6_c00036{bottom:1055.329411pt;}
.h1_c00036{height:17.731840pt;}
.h3_c00036{height:17.737440pt;}
.h8_c00036{height:33.694912pt;}
.h7_c00036{height:37.349260pt;}
.ha_c00036{height:45.789982pt;}
.hb_c00036{height:54.013673pt;}
.h2_c00036{height:56.683311pt;}
.h9_c00036{height:56.746644pt;}
.h5_c00036{height:56.936644pt;}
.h6_c00036{height:1110.960672pt;}
.h4_c00036{height:1122.559167pt;}
.h0_c00036{height:1122.666667pt;}
.wd_c00036{width:4.750400pt;}
.w8_c00036{width:4.752000pt;}
.w6_c00036{width:6.966400pt;}
.w4_c00036{width:6.971200pt;}
.w3_c00036{width:7.912000pt;}
.w9_c00036{width:7.915200pt;}
.w7_c00036{width:7.916800pt;}
.w2_c00036{width:11.556800pt;}
.wb_c00036{width:15.049600pt;}
.w1_c00036{width:15.834880pt;}
.w5_c00036{width:19.315200pt;}
.wa_c00036{width:24.697600pt;}
.wc_c00036{width:25.494400pt;}
.wf_c00036{width:785.062974pt;}
.we_c00036{width:793.257550pt;}
.w0_c00036{width:793.333333pt;}
.x0_c00036{left:0.000000pt;}
.x14_c00036{left:1.370626pt;}
.x15_c00036{left:100.224934pt;}
.x17_c00036{left:112.259943pt;}
.x1_c00036{left:114.261920pt;}
.x16_c00036{left:158.966644pt;}
.x18_c00036{left:182.712825pt;}
.x19_c00036{left:206.463958pt;}
.x11_c00036{left:224.448440pt;}
.x10_c00036{left:240.124654pt;}
.x13_c00036{left:331.956469pt;}
.x12_c00036{left:373.596470pt;}
.x2_c00036{left:503.286400pt;}
.x3_c00036{left:514.843200pt;}
.x4_c00036{left:522.755200pt;}
.x5_c00036{left:529.726400pt;}
.x6_c00036{left:549.041600pt;}
.x7_c00036{left:556.008000pt;}
.x8_c00036{left:563.924800pt;}
.x9_c00036{left:568.358400pt;}
.xa_c00036{left:579.443200pt;}
.xb_c00036{left:607.779200pt;}
.xc_c00036{left:621.240000pt;}
.xd_c00036{left:628.206400pt;}
.xe_c00036{left:653.700800pt;}
.xf_c00036{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.112000;font-style:normal;font-weight:normal;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_3247436cd682d4f78be90324.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00037;src:url('chunks/assets/font_bc52b40826f523cb8301d8c1.woff2')format("woff");}.ff6_c00037{font-family:ff6_c00037;line-height:1.137000;font-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_c00037{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00037{word-spacing:-17.812493px;}
.ws1_c00037{word-spacing:0.000000px;}
._6_c00037{margin-left:-2.050815px;}
._7_c00037{margin-left:-1.031192px;}
._0_c00037{width:1.056287px;}
._8_c00037{width:2.093938px;}
._5_c00037{width:3.665269px;}
._9_c00037{width:5.463353px;}
._f_c00037{width:6.589339px;}
._e_c00037{width:8.204599px;}
._d_c00037{width:9.216495px;}
._c_c00037{width:10.748268px;}
._b_c00037{width:11.831437px;}
._10_c00037{width:12.983728px;}
._a_c00037{width:14.005075px;}
._3_c00037{width:15.666257px;}
._4_c00037{width:16.771143px;}
._1_c00037{width:20.263143px;}
._2_c00037{width:21.376937px;}
.fc1_c00037{color:rgb(105,148,45);}
.fc0_c00037{color:rgb(35,31,32);}
.fs2_c00037{font-size:59.136936px;}
.fs1_c00037{font-size:65.550574px;}
.fs0_c00037{font-size:71.249972px;}
.y0_c00037{bottom:0.000000px;}
.y5_c00037{bottom:0.120938px;}
.y2_c00037{bottom:4.274906px;}
.y4_c00037{bottom:4.276256px;}
.yb_c00037{bottom:73.620683px;}
.y3_c00037{bottom:80.507160px;}
.y1_c00037{bottom:80.867160px;}
.y27_c00037{bottom:107.819169px;}
.y26_c00037{bottom:138.457107px;}
.y25_c00037{bottom:169.095795px;}
.y24_c00037{bottom:199.910282px;}
.y23_c00037{bottom:230.546870px;}
.y22_c00037{bottom:261.361358px;}
.y21_c00037{bottom:292.000046px;}
.y20_c00037{bottom:322.816633px;}
.y1f_c00037{bottom:384.268309px;}
.y1e_c00037{bottom:414.906246px;}
.y1d_c00037{bottom:445.722084px;}
.y1c_c00037{bottom:476.360022px;}
.y1b_c00037{bottom:507.173010px;}
.y1a_c00037{bottom:537.808847px;}
.y19_c00037{bottom:568.624685px;}
.y18_c00037{bottom:599.260523px;}
.y17_c00037{bottom:660.715798px;}
.y16_c00037{bottom:696.870284px;}
.y15_c00037{bottom:733.210769px;}
.y14_c00037{bottom:769.369755px;}
.y13_c00037{bottom:805.525740px;}
.y12_c00037{bottom:865.734216px;}
.y11_c00037{bottom:865.736766px;}
.y10_c00037{bottom:926.654742px;}
.yf_c00037{bottom:957.292680px;}
.ye_c00037{bottom:988.105667px;}
.yd_c00037{bottom:1049.559443px;}
.yc_c00037{bottom:1080.196630px;}
.ya_c00037{bottom:1101.033122px;}
.y9_c00037{bottom:1125.436612px;}
.y8_c00037{bottom:1146.276554px;}
.y7_c00037{bottom:1166.762796px;}
.y6_c00037{bottom:1187.245588px;}
.h1_c00037{height:19.948320px;}
.h3_c00037{height:19.954620px;}
.h7_c00037{height:37.906776px;}
.h6_c00037{height:42.017918px;}
.h9_c00037{height:51.513729px;}
.ha_c00037{height:60.765382px;}
.h2_c00037{height:63.768724px;}
.h8_c00037{height:63.839974px;}
.h5_c00037{height:64.053724px;}
.h4_c00037{height:1262.879062px;}
.h0_c00037{height:1263.000000px;}
.wd_c00037{width:5.344200px;}
.w8_c00037{width:5.346000px;}
.w6_c00037{width:7.837200px;}
.w4_c00037{width:7.842600px;}
.w3_c00037{width:8.901000px;}
.w9_c00037{width:8.904600px;}
.w7_c00037{width:8.906400px;}
.w2_c00037{width:13.001400px;}
.wb_c00037{width:16.930800px;}
.w1_c00037{width:17.814240px;}
.w5_c00037{width:21.729600px;}
.wa_c00037{width:27.784800px;}
.wc_c00037{width:28.681200px;}
.we_c00037{width:892.414744px;}
.w0_c00037{width:892.500000px;}
.x0_c00037{left:0.000000px;}
.x14_c00037{left:114.282348px;}
.x1_c00037{left:128.544660px;}
.x15_c00037{left:180.366772px;}
.x16_c00037{left:207.084824px;}
.x17_c00037{left:233.801250px;}
.x11_c00037{left:252.504495px;}
.x18_c00037{left:255.890241px;}
.x10_c00037{left:270.140236px;}
.x13_c00037{left:373.451028px;}
.x12_c00037{left:420.296029px;}
.x2_c00037{left:566.197200px;}
.x3_c00037{left:579.198600px;}
.x4_c00037{left:588.099600px;}
.x5_c00037{left:595.942200px;}
.x6_c00037{left:617.671800px;}
.x7_c00037{left:625.509000px;}
.x8_c00037{left:634.415400px;}
.x9_c00037{left:639.403200px;}
.xa_c00037{left:651.873600px;}
.xb_c00037{left:683.751600px;}
.xc_c00037{left:698.895000px;}
.xd_c00037{left:706.732200px;}
.xe_c00037{left:735.413400px;}
.xf_c00037{left:740.757600px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws0_c00037{word-spacing:-15.833327pt;}
.ws1_c00037{word-spacing:0.000000pt;}
._6_c00037{margin-left:-1.822947pt;}
._7_c00037{margin-left:-0.916615pt;}
._0_c00037{width:0.938922pt;}
._8_c00037{width:1.861278pt;}
._5_c00037{width:3.258016pt;}
._9_c00037{width:4.856314pt;}
._f_c00037{width:5.857190pt;}
._e_c00037{width:7.292977pt;}
._d_c00037{width:8.192440pt;}
._c_c00037{width:9.554016pt;}
._b_c00037{width:10.516833pt;}
._10_c00037{width:11.541092pt;}
._a_c00037{width:12.448955pt;}
._3_c00037{width:13.925562pt;}
._4_c00037{width:14.907683pt;}
._1_c00037{width:18.011682pt;}
._2_c00037{width:19.001722pt;}
.fs2_c00037{font-size:52.566166pt;}
.fs1_c00037{font-size:58.267177pt;}
.fs0_c00037{font-size:63.333308pt;}
.y0_c00037{bottom:0.000000pt;}
.y5_c00037{bottom:0.107500pt;}
.y2_c00037{bottom:3.799916pt;}
.y4_c00037{bottom:3.801117pt;}
.yb_c00037{bottom:65.440607pt;}
.y3_c00037{bottom:71.561920pt;}
.y1_c00037{bottom:71.881920pt;}
.y27_c00037{bottom:95.839262pt;}
.y26_c00037{bottom:123.072984pt;}
.y25_c00037{bottom:150.307373pt;}
.y24_c00037{bottom:177.698029pt;}
.y23_c00037{bottom:204.930551pt;}
.y22_c00037{bottom:232.321207pt;}
.y21_c00037{bottom:259.555596pt;}
.y20_c00037{bottom:286.948119pt;}
.y1f_c00037{bottom:341.571830pt;}
.y1e_c00037{bottom:368.805552pt;}
.y1d_c00037{bottom:396.197408pt;}
.y1c_c00037{bottom:423.431131pt;}
.y1b_c00037{bottom:450.820453pt;}
.y1a_c00037{bottom:478.052309pt;}
.y19_c00037{bottom:505.444164pt;}
.y18_c00037{bottom:532.676020pt;}
.y17_c00037{bottom:587.302932pt;}
.y16_c00037{bottom:619.440252pt;}
.y15_c00037{bottom:651.742906pt;}
.y14_c00037{bottom:683.884226pt;}
.y13_c00037{bottom:716.022880pt;}
.y12_c00037{bottom:769.541525pt;}
.y11_c00037{bottom:769.543792pt;}
.y10_c00037{bottom:823.693104pt;}
.yf_c00037{bottom:850.926826pt;}
.ye_c00037{bottom:878.316149pt;}
.yd_c00037{bottom:932.941727pt;}
.yc_c00037{bottom:960.174783pt;}
.ya_c00037{bottom:978.696108pt;}
.y9_c00037{bottom:1000.388100pt;}
.y8_c00037{bottom:1018.912492pt;}
.y7_c00037{bottom:1037.122485pt;}
.y6_c00037{bottom:1055.329411pt;}
.h1_c00037{height:17.731840pt;}
.h3_c00037{height:17.737440pt;}
.h7_c00037{height:33.694912pt;}
.h6_c00037{height:37.349260pt;}
.h9_c00037{height:45.789982pt;}
.ha_c00037{height:54.013673pt;}
.h2_c00037{height:56.683311pt;}
.h8_c00037{height:56.746644pt;}
.h5_c00037{height:56.936644pt;}
.h4_c00037{height:1122.559167pt;}
.h0_c00037{height:1122.666667pt;}
.wd_c00037{width:4.750400pt;}
.w8_c00037{width:4.752000pt;}
.w6_c00037{width:6.966400pt;}
.w4_c00037{width:6.971200pt;}
.w3_c00037{width:7.912000pt;}
.w9_c00037{width:7.915200pt;}
.w7_c00037{width:7.916800pt;}
.w2_c00037{width:11.556800pt;}
.wb_c00037{width:15.049600pt;}
.w1_c00037{width:15.834880pt;}
.w5_c00037{width:19.315200pt;}
.wa_c00037{width:24.697600pt;}
.wc_c00037{width:25.494400pt;}
.we_c00037{width:793.257550pt;}
.w0_c00037{width:793.333333pt;}
.x0_c00037{left:0.000000pt;}
.x14_c00037{left:101.584309pt;}
.x1_c00037{left:114.261920pt;}
.x15_c00037{left:160.326019pt;}
.x16_c00037{left:184.075399pt;}
.x17_c00037{left:207.823334pt;}
.x11_c00037{left:224.448440pt;}
.x18_c00037{left:227.457992pt;}
.x10_c00037{left:240.124654pt;}
.x13_c00037{left:331.956469pt;}
.x12_c00037{left:373.596470pt;}
.x2_c00037{left:503.286400pt;}
.x3_c00037{left:514.843200pt;}
.x4_c00037{left:522.755200pt;}
.x5_c00037{left:529.726400pt;}
.x6_c00037{left:549.041600pt;}
.x7_c00037{left:556.008000pt;}
.x8_c00037{left:563.924800pt;}
.x9_c00037{left:568.358400pt;}
.xa_c00037{left:579.443200pt;}
.xb_c00037{left:607.779200pt;}
.xc_c00037{left:621.240000pt;}
.xd_c00037{left:628.206400pt;}
.xe_c00037{left:653.700800pt;}
.xf_c00037{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.112000;font-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_c00038{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00038{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls0_c00038{letter-spacing:0.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:-17.812493px;}
.ws1_c00038{word-spacing:0.000000px;}
._9_c00038{margin-left:-2.162334px;}
._3_c00038{margin-left:-1.059929px;}
._0_c00038{width:1.056287px;}
._4_c00038{width:2.371660px;}
._1_c00038{width:4.223350px;}
._2_c00038{width:5.745432px;}
._5_c00038{width:6.910374px;}
._c_c00038{width:7.983165px;}
._b_c00038{width:9.762140px;}
._f_c00038{width:10.820734px;}
._6_c00038{width:12.012816px;}
._7_c00038{width:13.030395px;}
._a_c00038{width:14.240491px;}
._8_c00038{width:16.076091px;}
._d_c00038{width:18.833822px;}
._e_c00038{width:20.075793px;}
.fc1_c00038{color:rgb(105,148,45);}
.fc0_c00038{color:rgb(35,31,32);}
.fs2_c00038{font-size:59.136936px;}
.fs1_c00038{font-size:65.550574px;}
.fs0_c00038{font-size:71.249972px;}
.y0_c00038{bottom:0.000000px;}
.y5_c00038{bottom:0.120938px;}
.y2_c00038{bottom:4.274906px;}
.y4_c00038{bottom:4.276256px;}
.ya_c00038{bottom:6.826644px;}
.yc_c00038{bottom:66.914977px;}
.y3_c00038{bottom:80.507160px;}
.y1_c00038{bottom:80.867160px;}
.y27_c00038{bottom:182.519630px;}
.y26_c00038{bottom:213.336818px;}
.y25_c00038{bottom:243.973406px;}
.y24_c00038{bottom:274.787893px;}
.y23_c00038{bottom:305.423731px;}
.y22_c00038{bottom:336.239569px;}
.y21_c00038{bottom:366.876157px;}
.y20_c00038{bottom:397.693344px;}
.y1f_c00038{bottom:428.329932px;}
.y1e_c00038{bottom:459.144420px;}
.y1d_c00038{bottom:489.780257px;}
.y1c_c00038{bottom:520.596095px;}
.y1b_c00038{bottom:582.045670px;}
.y1a_c00038{bottom:612.685708px;}
.y19_c00038{bottom:643.502296px;}
.y18_c00038{bottom:674.138134px;}
.y17_c00038{bottom:704.776821px;}
.y16_c00038{bottom:735.589809px;}
.y15_c00038{bottom:797.042234px;}
.y14_c00038{bottom:827.679422px;}
.y13_c00038{bottom:858.496010px;}
.y12_c00038{bottom:889.133198px;}
.y11_c00038{bottom:919.949035px;}
.y10_c00038{bottom:981.399961px;}
.yf_c00038{bottom:1012.038648px;}
.ye_c00038{bottom:1042.853736px;}
.yd_c00038{bottom:1073.490924px;}
.yb_c00038{bottom:1094.327416px;}
.y9_c00038{bottom:1125.436612px;}
.y8_c00038{bottom:1146.276554px;}
.y7_c00038{bottom:1166.762796px;}
.y6_c00038{bottom:1187.245588px;}
.h1_c00038{height:19.948320px;}
.h3_c00038{height:19.954620px;}
.h8_c00038{height:37.906776px;}
.h7_c00038{height:42.017918px;}
.h2_c00038{height:63.768724px;}
.h9_c00038{height:63.839974px;}
.h5_c00038{height:64.053724px;}
.h6_c00038{height:1249.830756px;}
.h4_c00038{height:1262.879062px;}
.h0_c00038{height:1263.000000px;}
.wd_c00038{width:5.344200px;}
.w8_c00038{width:5.346000px;}
.w6_c00038{width:7.837200px;}
.w4_c00038{width:7.842600px;}
.w3_c00038{width:8.901000px;}
.w9_c00038{width:8.904600px;}
.w7_c00038{width:8.906400px;}
.w2_c00038{width:13.001400px;}
.wb_c00038{width:16.930800px;}
.w1_c00038{width:17.814240px;}
.w5_c00038{width:21.729600px;}
.wa_c00038{width:27.784800px;}
.wc_c00038{width:28.681200px;}
.wf_c00038{width:883.195846px;}
.we_c00038{width:892.414744px;}
.w0_c00038{width:892.500000px;}
.x0_c00038{left:0.000000px;}
.x14_c00038{left:1.541954px;}
.x15_c00038{left:112.753050px;}
.x16_c00038{left:126.289645px;}
.x1_c00038{left:128.544660px;}
.x17_c00038{left:178.836182px;}
.x11_c00038{left:252.504495px;}
.x10_c00038{left:270.140236px;}
.x13_c00038{left:373.451028px;}
.x12_c00038{left:420.296029px;}
.x2_c00038{left:566.197200px;}
.x3_c00038{left:579.198600px;}
.x4_c00038{left:588.099600px;}
.x5_c00038{left:595.942200px;}
.x6_c00038{left:617.671800px;}
.x7_c00038{left:625.509000px;}
.x8_c00038{left:634.415400px;}
.x9_c00038{left:639.403200px;}
.xa_c00038{left:651.873600px;}
.xb_c00038{left:683.751600px;}
.xc_c00038{left:698.895000px;}
.xd_c00038{left:706.732200px;}
.xe_c00038{left:735.413400px;}
.xf_c00038{left:740.757600px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:-15.833327pt;}
.ws1_c00038{word-spacing:0.000000pt;}
._9_c00038{margin-left:-1.922075pt;}
._3_c00038{margin-left:-0.942159pt;}
._0_c00038{width:0.938922pt;}
._4_c00038{width:2.108142pt;}
._1_c00038{width:3.754089pt;}
._2_c00038{width:5.107051pt;}
._5_c00038{width:6.142555pt;}
._c_c00038{width:7.096146pt;}
._b_c00038{width:8.677458pt;}
._f_c00038{width:9.618430pt;}
._6_c00038{width:10.678058pt;}
._7_c00038{width:11.582573pt;}
._a_c00038{width:12.658214pt;}
._8_c00038{width:14.289858pt;}
._d_c00038{width:16.741175pt;}
._e_c00038{width:17.845149pt;}
.fs2_c00038{font-size:52.566166pt;}
.fs1_c00038{font-size:58.267177pt;}
.fs0_c00038{font-size:63.333308pt;}
.y0_c00038{bottom:0.000000pt;}
.y5_c00038{bottom:0.107500pt;}
.y2_c00038{bottom:3.799916pt;}
.y4_c00038{bottom:3.801117pt;}
.ya_c00038{bottom:6.068128pt;}
.yc_c00038{bottom:59.479979pt;}
.y3_c00038{bottom:71.561920pt;}
.y1_c00038{bottom:71.881920pt;}
.y27_c00038{bottom:162.239671pt;}
.y26_c00038{bottom:189.632727pt;}
.y25_c00038{bottom:216.865249pt;}
.y24_c00038{bottom:244.255905pt;}
.y23_c00038{bottom:271.487761pt;}
.y22_c00038{bottom:298.879617pt;}
.y21_c00038{bottom:326.112139pt;}
.y20_c00038{bottom:353.505195pt;}
.y1f_c00038{bottom:380.737717pt;}
.y1e_c00038{bottom:408.128373pt;}
.y1d_c00038{bottom:435.360229pt;}
.y1c_c00038{bottom:462.752084pt;}
.y1b_c00038{bottom:517.373929pt;}
.y1a_c00038{bottom:544.609518pt;}
.y19_c00038{bottom:572.002041pt;}
.y18_c00038{bottom:599.233897pt;}
.y17_c00038{bottom:626.468286pt;}
.y16_c00038{bottom:653.857608pt;}
.y15_c00038{bottom:708.481986pt;}
.y14_c00038{bottom:735.715042pt;}
.y13_c00038{bottom:763.107564pt;}
.y12_c00038{bottom:790.340620pt;}
.y11_c00038{bottom:817.732476pt;}
.y10_c00038{bottom:872.355521pt;}
.yf_c00038{bottom:899.589910pt;}
.ye_c00038{bottom:926.981099pt;}
.yd_c00038{bottom:954.214155pt;}
.yb_c00038{bottom:972.735480pt;}
.y9_c00038{bottom:1000.388100pt;}
.y8_c00038{bottom:1018.912492pt;}
.y7_c00038{bottom:1037.122485pt;}
.y6_c00038{bottom:1055.329411pt;}
.h1_c00038{height:17.731840pt;}
.h3_c00038{height:17.737440pt;}
.h8_c00038{height:33.694912pt;}
.h7_c00038{height:37.349260pt;}
.h2_c00038{height:56.683311pt;}
.h9_c00038{height:56.746644pt;}
.h5_c00038{height:56.936644pt;}
.h6_c00038{height:1110.960672pt;}
.h4_c00038{height:1122.559167pt;}
.h0_c00038{height:1122.666667pt;}
.wd_c00038{width:4.750400pt;}
.w8_c00038{width:4.752000pt;}
.w6_c00038{width:6.966400pt;}
.w4_c00038{width:6.971200pt;}
.w3_c00038{width:7.912000pt;}
.w9_c00038{width:7.915200pt;}
.w7_c00038{width:7.916800pt;}
.w2_c00038{width:11.556800pt;}
.wb_c00038{width:15.049600pt;}
.w1_c00038{width:15.834880pt;}
.w5_c00038{width:19.315200pt;}
.wa_c00038{width:24.697600pt;}
.wc_c00038{width:25.494400pt;}
.wf_c00038{width:785.062974pt;}
.we_c00038{width:793.257550pt;}
.w0_c00038{width:793.333333pt;}
.x0_c00038{left:0.000000pt;}
.x14_c00038{left:1.370626pt;}
.x15_c00038{left:100.224934pt;}
.x16_c00038{left:112.257462pt;}
.x1_c00038{left:114.261920pt;}
.x17_c00038{left:158.965495pt;}
.x11_c00038{left:224.448440pt;}
.x10_c00038{left:240.124654pt;}
.x13_c00038{left:331.956469pt;}
.x12_c00038{left:373.596470pt;}
.x2_c00038{left:503.286400pt;}
.x3_c00038{left:514.843200pt;}
.x4_c00038{left:522.755200pt;}
.x5_c00038{left:529.726400pt;}
.x6_c00038{left:549.041600pt;}
.x7_c00038{left:556.008000pt;}
.x8_c00038{left:563.924800pt;}
.x9_c00038{left:568.358400pt;}
.xa_c00038{left:579.443200pt;}
.xb_c00038{left:607.779200pt;}
.xc_c00038{left:621.240000pt;}
.xd_c00038{left:628.206400pt;}
.xe_c00038{left:653.700800pt;}
.xf_c00038{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.112000;font-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_c00039{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls0_c00039{letter-spacing:0.000000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:-17.812493px;}
.ws1_c00039{word-spacing:0.000000px;}
._8_c00039{margin-left:-1.404280px;}
._0_c00039{width:1.056287px;}
._1_c00039{width:2.392503px;}
._5_c00039{width:3.897693px;}
._4_c00039{width:4.940051px;}
._6_c00039{width:6.281702px;}
._7_c00039{width:7.540064px;}
._a_c00039{width:8.608449px;}
._2_c00039{width:10.255334px;}
._3_c00039{width:11.280759px;}
._9_c00039{width:12.571269px;}
._e_c00039{width:14.258812px;}
._f_c00039{width:16.174219px;}
._d_c00039{width:18.884720px;}
._b_c00039{width:20.059824px;}
._c_c00039{width:21.993572px;}
.fc1_c00039{color:rgb(105,148,45);}
.fc0_c00039{color:rgb(35,31,32);}
.fs2_c00039{font-size:59.136936px;}
.fs1_c00039{font-size:65.550574px;}
.fs0_c00039{font-size:71.249972px;}
.y0_c00039{bottom:0.000000px;}
.y5_c00039{bottom:0.120938px;}
.y2_c00039{bottom:4.274906px;}
.y4_c00039{bottom:4.276256px;}
.ya_c00039{bottom:6.826644px;}
.yc_c00039{bottom:66.914977px;}
.y3_c00039{bottom:80.507160px;}
.y1_c00039{bottom:80.867160px;}
.y26_c00039{bottom:258.392300px;}
.y25_c00039{bottom:289.210988px;}
.y24_c00039{bottom:319.848925px;}
.y23_c00039{bottom:350.663413px;}
.y22_c00039{bottom:381.299251px;}
.y21_c00039{bottom:411.938688px;}
.y20_c00039{bottom:442.753176px;}
.y1f_c00039{bottom:481.227411px;}
.y1e_c00039{bottom:504.740651px;}
.y1d_c00039{bottom:540.724137px;}
.y1c_c00039{bottom:567.081976px;}
.y1b_c00039{bottom:597.899914px;}
.y1a_c00039{bottom:628.535752px;}
.y19_c00039{bottom:659.351590px;}
.y18_c00039{bottom:678.409082px;}
.y17_c00039{bottom:704.776671px;}
.y16_c00039{bottom:735.589659px;}
.y15_c00039{bottom:766.227597px;}
.y14_c00039{bottom:797.042084px;}
.y13_c00039{bottom:858.495860px;}
.y12_c00039{bottom:889.134548px;}
.y11_c00039{bottom:950.584123px;}
.y10_c00039{bottom:981.399961px;}
.yf_c00039{bottom:1012.038648px;}
.ye_c00039{bottom:1042.853736px;}
.yd_c00039{bottom:1073.490924px;}
.yb_c00039{bottom:1094.327416px;}
.y9_c00039{bottom:1125.436612px;}
.y8_c00039{bottom:1146.276554px;}
.y7_c00039{bottom:1166.762796px;}
.y6_c00039{bottom:1187.245588px;}
.h1_c00039{height:19.948320px;}
.h3_c00039{height:19.954620px;}
.h8_c00039{height:37.906776px;}
.h7_c00039{height:42.017918px;}
.ha_c00039{height:58.929966px;}
.h2_c00039{height:63.768724px;}
.h9_c00039{height:63.839974px;}
.h5_c00039{height:64.053724px;}
.h6_c00039{height:1249.830756px;}
.h4_c00039{height:1262.879062px;}
.h0_c00039{height:1263.000000px;}
.wd_c00039{width:5.344200px;}
.w8_c00039{width:5.346000px;}
.w6_c00039{width:7.837200px;}
.w4_c00039{width:7.842600px;}
.w3_c00039{width:8.901000px;}
.w9_c00039{width:8.904600px;}
.w7_c00039{width:8.906400px;}
.w2_c00039{width:13.001400px;}
.wb_c00039{width:16.930800px;}
.w1_c00039{width:17.814240px;}
.w5_c00039{width:21.729600px;}
.wa_c00039{width:27.784800px;}
.wc_c00039{width:28.681200px;}
.wf_c00039{width:883.195846px;}
.we_c00039{width:892.414744px;}
.w0_c00039{width:892.500000px;}
.x0_c00039{left:0.000000px;}
.x14_c00039{left:1.541954px;}
.x15_c00039{left:112.753050px;}
.x17_c00039{left:126.292436px;}
.x1_c00039{left:128.544660px;}
.x16_c00039{left:178.837474px;}
.x11_c00039{left:252.504495px;}
.x10_c00039{left:270.140236px;}
.x13_c00039{left:373.451028px;}
.x12_c00039{left:420.296029px;}
.x2_c00039{left:566.197200px;}
.x3_c00039{left:579.198600px;}
.x4_c00039{left:588.099600px;}
.x5_c00039{left:595.942200px;}
.x6_c00039{left:617.671800px;}
.x7_c00039{left:625.509000px;}
.x8_c00039{left:634.415400px;}
.x9_c00039{left:639.403200px;}
.xa_c00039{left:651.873600px;}
.xb_c00039{left:683.751600px;}
.xc_c00039{left:698.895000px;}
.xd_c00039{left:706.732200px;}
.xe_c00039{left:735.413400px;}
.xf_c00039{left:740.757600px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws0_c00039{word-spacing:-15.833327pt;}
.ws1_c00039{word-spacing:0.000000pt;}
._8_c00039{margin-left:-1.248249pt;}
._0_c00039{width:0.938922pt;}
._1_c00039{width:2.126669pt;}
._5_c00039{width:3.464616pt;}
._4_c00039{width:4.391156pt;}
._6_c00039{width:5.583735pt;}
._7_c00039{width:6.702279pt;}
._a_c00039{width:7.651954pt;}
._2_c00039{width:9.115852pt;}
._3_c00039{width:10.027341pt;}
._9_c00039{width:11.174462pt;}
._e_c00039{width:12.674499pt;}
._f_c00039{width:14.377083pt;}
._d_c00039{width:16.786418pt;}
._b_c00039{width:17.830955pt;}
._c_c00039{width:19.549842pt;}
.fs2_c00039{font-size:52.566166pt;}
.fs1_c00039{font-size:58.267177pt;}
.fs0_c00039{font-size:63.333308pt;}
.y0_c00039{bottom:0.000000pt;}
.y5_c00039{bottom:0.107500pt;}
.y2_c00039{bottom:3.799916pt;}
.y4_c00039{bottom:3.801117pt;}
.ya_c00039{bottom:6.068128pt;}
.yc_c00039{bottom:59.479979pt;}
.y3_c00039{bottom:71.561920pt;}
.y1_c00039{bottom:71.881920pt;}
.y26_c00039{bottom:229.682044pt;}
.y25_c00039{bottom:257.076433pt;}
.y24_c00039{bottom:284.310156pt;}
.y23_c00039{bottom:311.700812pt;}
.y22_c00039{bottom:338.932667pt;}
.y21_c00039{bottom:366.167723pt;}
.y20_c00039{bottom:393.558379pt;}
.y1f_c00039{bottom:427.757698pt;}
.y1e_c00039{bottom:448.658357pt;}
.y1d_c00039{bottom:480.643677pt;}
.y1c_c00039{bottom:504.072868pt;}
.y1b_c00039{bottom:531.466590pt;}
.y1a_c00039{bottom:558.698446pt;}
.y19_c00039{bottom:586.090302pt;}
.y18_c00039{bottom:603.030295pt;}
.y17_c00039{bottom:626.468152pt;}
.y16_c00039{bottom:653.857475pt;}
.y15_c00039{bottom:681.091197pt;}
.y14_c00039{bottom:708.481853pt;}
.y13_c00039{bottom:763.107431pt;}
.y12_c00039{bottom:790.341820pt;}
.y11_c00039{bottom:844.963665pt;}
.y10_c00039{bottom:872.355521pt;}
.yf_c00039{bottom:899.589910pt;}
.ye_c00039{bottom:926.981099pt;}
.yd_c00039{bottom:954.214155pt;}
.yb_c00039{bottom:972.735480pt;}
.y9_c00039{bottom:1000.388100pt;}
.y8_c00039{bottom:1018.912492pt;}
.y7_c00039{bottom:1037.122485pt;}
.y6_c00039{bottom:1055.329411pt;}
.h1_c00039{height:17.731840pt;}
.h3_c00039{height:17.737440pt;}
.h8_c00039{height:33.694912pt;}
.h7_c00039{height:37.349260pt;}
.ha_c00039{height:52.382192pt;}
.h2_c00039{height:56.683311pt;}
.h9_c00039{height:56.746644pt;}
.h5_c00039{height:56.936644pt;}
.h6_c00039{height:1110.960672pt;}
.h4_c00039{height:1122.559167pt;}
.h0_c00039{height:1122.666667pt;}
.wd_c00039{width:4.750400pt;}
.w8_c00039{width:4.752000pt;}
.w6_c00039{width:6.966400pt;}
.w4_c00039{width:6.971200pt;}
.w3_c00039{width:7.912000pt;}
.w9_c00039{width:7.915200pt;}
.w7_c00039{width:7.916800pt;}
.w2_c00039{width:11.556800pt;}
.wb_c00039{width:15.049600pt;}
.w1_c00039{width:15.834880pt;}
.w5_c00039{width:19.315200pt;}
.wa_c00039{width:24.697600pt;}
.wc_c00039{width:25.494400pt;}
.wf_c00039{width:785.062974pt;}
.we_c00039{width:793.257550pt;}
.w0_c00039{width:793.333333pt;}
.x0_c00039{left:0.000000pt;}
.x14_c00039{left:1.370626pt;}
.x15_c00039{left:100.224934pt;}
.x17_c00039{left:112.259943pt;}
.x1_c00039{left:114.261920pt;}
.x16_c00039{left:158.966644pt;}
.x11_c00039{left:224.448440pt;}
.x10_c00039{left:240.124654pt;}
.x13_c00039{left:331.956469pt;}
.x12_c00039{left:373.596470pt;}
.x2_c00039{left:503.286400pt;}
.x3_c00039{left:514.843200pt;}
.x4_c00039{left:522.755200pt;}
.x5_c00039{left:529.726400pt;}
.x6_c00039{left:549.041600pt;}
.x7_c00039{left:556.008000pt;}
.x8_c00039{left:563.924800pt;}
.x9_c00039{left:568.358400pt;}
.xa_c00039{left:579.443200pt;}
.xb_c00039{left:607.779200pt;}
.xc_c00039{left:621.240000pt;}
.xd_c00039{left:628.206400pt;}
.xe_c00039{left:653.700800pt;}
.xf_c00039{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.112000;font-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_c00040{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls0_c00040{letter-spacing:0.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:-17.812493px;}
.ws1_c00040{word-spacing:0.000000px;}
._2_c00040{margin-left:-4.114348px;}
._4_c00040{margin-left:-2.713402px;}
._1_c00040{margin-left:-1.475516px;}
._0_c00040{width:1.056287px;}
._f_c00040{width:2.393288px;}
._10_c00040{width:3.486871px;}
._5_c00040{width:4.700838px;}
._6_c00040{width:5.920629px;}
._c_c00040{width:7.889735px;}
._9_c00040{width:8.943236px;}
._a_c00040{width:10.112745px;}
._b_c00040{width:15.732006px;}
._e_c00040{width:19.377943px;}
._d_c00040{width:20.807972px;}
._7_c00040{width:31.703049px;}
._8_c00040{width:33.463667px;}
._3_c00040{width:58.979458px;}
.fc1_c00040{color:rgb(105,148,45);}
.fc0_c00040{color:rgb(35,31,32);}
.fs3_c00040{font-size:38.474625px;}
.fs2_c00040{font-size:59.136936px;}
.fs1_c00040{font-size:65.550574px;}
.fs0_c00040{font-size:71.249972px;}
.y0_c00040{bottom:0.000000px;}
.y5_c00040{bottom:0.120938px;}
.y2_c00040{bottom:4.274906px;}
.y4_c00040{bottom:4.276256px;}
.ya_c00040{bottom:6.826644px;}
.yc_c00040{bottom:66.914977px;}
.y3_c00040{bottom:80.507160px;}
.y1_c00040{bottom:80.867160px;}
.y2c_c00040{bottom:89.355268px;}
.y2b_c00040{bottom:108.592010px;}
.y2a_c00040{bottom:128.009502px;}
.y29_c00040{bottom:147.244894px;}
.y28_c00040{bottom:175.211033px;}
.y27_c00040{bottom:232.742760px;}
.y26_c00040{bottom:294.019386px;}
.y25_c00040{bottom:324.656573px;}
.y24_c00040{bottom:355.473161px;}
.y23_c00040{bottom:386.106149px;}
.y22_c00040{bottom:443.463576px;}
.y21_c00040{bottom:472.142664px;}
.y20_c00040{bottom:524.686443px;}
.y1f_c00040{bottom:543.568136px;}
.y1e_c00040{bottom:617.669906px;}
.y1d_c00040{bottom:646.169895px;}
.y1c_c00040{bottom:674.848983px;}
.y1b_c00040{bottom:720.269415px;}
.y1a_c00040{bottom:750.908103px;}
.y19_c00040{bottom:781.722591px;}
.y18_c00040{bottom:812.360528px;}
.y17_c00040{bottom:831.953520px;}
.y16_c00040{bottom:847.804014px;}
.y15_c00040{bottom:874.346054px;}
.y14_c00040{bottom:904.980541px;}
.y13_c00040{bottom:935.796379px;}
.y12_c00040{bottom:966.434317px;}
.y11_c00040{bottom:997.250154px;}
.y10_c00040{bottom:1027.890942px;}
.yf_c00040{bottom:1046.057435px;}
.ye_c00040{bottom:1058.882430px;}
.yd_c00040{bottom:1077.760072px;}
.yb_c00040{bottom:1094.327416px;}
.y9_c00040{bottom:1125.436612px;}
.y8_c00040{bottom:1146.276554px;}
.y7_c00040{bottom:1166.762796px;}
.y6_c00040{bottom:1187.245588px;}
.h1_c00040{height:19.948320px;}
.h3_c00040{height:19.954620px;}
.ha_c00040{height:24.662234px;}
.h8_c00040{height:37.906776px;}
.h7_c00040{height:42.017918px;}
.hc_c00040{height:45.671232px;}
.hb_c00040{height:58.929966px;}
.h2_c00040{height:63.768724px;}
.h9_c00040{height:63.839974px;}
.h5_c00040{height:64.053724px;}
.h6_c00040{height:1249.830756px;}
.h4_c00040{height:1262.879062px;}
.h0_c00040{height:1263.000000px;}
.wd_c00040{width:5.344200px;}
.w8_c00040{width:5.346000px;}
.w6_c00040{width:7.837200px;}
.w4_c00040{width:7.842600px;}
.w3_c00040{width:8.901000px;}
.w9_c00040{width:8.904600px;}
.w7_c00040{width:8.906400px;}
.w2_c00040{width:13.001400px;}
.wb_c00040{width:16.930800px;}
.w1_c00040{width:17.814240px;}
.w5_c00040{width:21.729600px;}
.wa_c00040{width:27.784800px;}
.wc_c00040{width:28.681200px;}
.wf_c00040{width:883.195846px;}
.we_c00040{width:892.414744px;}
.w0_c00040{width:892.500000px;}
.x0_c00040{left:0.000000px;}
.x14_c00040{left:1.541954px;}
.x15_c00040{left:112.753050px;}
.x19_c00040{left:126.289072px;}
.x1_c00040{left:128.544660px;}
.x18_c00040{left:166.192479px;}
.x16_c00040{left:178.837474px;}
.x17_c00040{left:206.444963px;}
.x11_c00040{left:252.504495px;}
.x10_c00040{left:270.140236px;}
.x13_c00040{left:373.451028px;}
.x12_c00040{left:420.296029px;}
.x2_c00040{left:566.197200px;}
.x3_c00040{left:579.198600px;}
.x4_c00040{left:588.099600px;}
.x5_c00040{left:595.942200px;}
.x6_c00040{left:617.671800px;}
.x7_c00040{left:625.509000px;}
.x8_c00040{left:634.415400px;}
.x9_c00040{left:639.403200px;}
.xa_c00040{left:651.873600px;}
.xb_c00040{left:683.751600px;}
.xc_c00040{left:698.895000px;}
.xd_c00040{left:706.732200px;}
.xe_c00040{left:735.413400px;}
.xf_c00040{left:740.757600px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:-15.833327pt;}
.ws1_c00040{word-spacing:0.000000pt;}
._2_c00040{margin-left:-3.657198pt;}
._4_c00040{margin-left:-2.411913pt;}
._1_c00040{margin-left:-1.311569pt;}
._0_c00040{width:0.938922pt;}
._f_c00040{width:2.127367pt;}
._10_c00040{width:3.099441pt;}
._5_c00040{width:4.178523pt;}
._6_c00040{width:5.262781pt;}
._c_c00040{width:7.013098pt;}
._9_c00040{width:7.949543pt;}
._a_c00040{width:8.989107pt;}
._b_c00040{width:13.984005pt;}
._e_c00040{width:17.224838pt;}
._d_c00040{width:18.495975pt;}
._7_c00040{width:28.180488pt;}
._8_c00040{width:29.745482pt;}
._3_c00040{width:52.426185pt;}
.fs3_c00040{font-size:34.199666pt;}
.fs2_c00040{font-size:52.566166pt;}
.fs1_c00040{font-size:58.267177pt;}
.fs0_c00040{font-size:63.333308pt;}
.y0_c00040{bottom:0.000000pt;}
.y5_c00040{bottom:0.107500pt;}
.y2_c00040{bottom:3.799916pt;}
.y4_c00040{bottom:3.801117pt;}
.ya_c00040{bottom:6.068128pt;}
.yc_c00040{bottom:59.479979pt;}
.y3_c00040{bottom:71.561920pt;}
.y1_c00040{bottom:71.881920pt;}
.y2c_c00040{bottom:79.426904pt;}
.y2b_c00040{bottom:96.526231pt;}
.y2a_c00040{bottom:113.786224pt;}
.y29_c00040{bottom:130.884351pt;}
.y28_c00040{bottom:155.743141pt;}
.y27_c00040{bottom:206.882453pt;}
.y26_c00040{bottom:261.350565pt;}
.y25_c00040{bottom:288.583621pt;}
.y24_c00040{bottom:315.976143pt;}
.y23_c00040{bottom:343.205466pt;}
.y22_c00040{bottom:394.189845pt;}
.y21_c00040{bottom:419.682368pt;}
.y20_c00040{bottom:466.387950pt;}
.y1f_c00040{bottom:483.171676pt;}
.y1e_c00040{bottom:549.039917pt;}
.y1d_c00040{bottom:574.373240pt;}
.y1c_c00040{bottom:599.865763pt;}
.y1b_c00040{bottom:640.239480pt;}
.y1a_c00040{bottom:667.473869pt;}
.y19_c00040{bottom:694.864525pt;}
.y18_c00040{bottom:722.098247pt;}
.y17_c00040{bottom:739.514240pt;}
.y16_c00040{bottom:753.603568pt;}
.y15_c00040{bottom:777.196492pt;}
.y14_c00040{bottom:804.427148pt;}
.y13_c00040{bottom:831.819004pt;}
.y12_c00040{bottom:859.052726pt;}
.y11_c00040{bottom:886.444582pt;}
.y10_c00040{bottom:913.680837pt;}
.yf_c00040{bottom:929.828831pt;}
.ye_c00040{bottom:941.228826pt;}
.yd_c00040{bottom:958.008953pt;}
.yb_c00040{bottom:972.735480pt;}
.y9_c00040{bottom:1000.388100pt;}
.y8_c00040{bottom:1018.912492pt;}
.y7_c00040{bottom:1037.122485pt;}
.y6_c00040{bottom:1055.329411pt;}
.h1_c00040{height:17.731840pt;}
.h3_c00040{height:17.737440pt;}
.ha_c00040{height:21.921986pt;}
.h8_c00040{height:33.694912pt;}
.h7_c00040{height:37.349260pt;}
.hc_c00040{height:40.596650pt;}
.hb_c00040{height:52.382192pt;}
.h2_c00040{height:56.683311pt;}
.h9_c00040{height:56.746644pt;}
.h5_c00040{height:56.936644pt;}
.h6_c00040{height:1110.960672pt;}
.h4_c00040{height:1122.559167pt;}
.h0_c00040{height:1122.666667pt;}
.wd_c00040{width:4.750400pt;}
.w8_c00040{width:4.752000pt;}
.w6_c00040{width:6.966400pt;}
.w4_c00040{width:6.971200pt;}
.w3_c00040{width:7.912000pt;}
.w9_c00040{width:7.915200pt;}
.w7_c00040{width:7.916800pt;}
.w2_c00040{width:11.556800pt;}
.wb_c00040{width:15.049600pt;}
.w1_c00040{width:15.834880pt;}
.w5_c00040{width:19.315200pt;}
.wa_c00040{width:24.697600pt;}
.wc_c00040{width:25.494400pt;}
.wf_c00040{width:785.062974pt;}
.we_c00040{width:793.257550pt;}
.w0_c00040{width:793.333333pt;}
.x0_c00040{left:0.000000pt;}
.x14_c00040{left:1.370626pt;}
.x15_c00040{left:100.224934pt;}
.x19_c00040{left:112.256953pt;}
.x1_c00040{left:114.261920pt;}
.x18_c00040{left:147.726648pt;}
.x16_c00040{left:158.966644pt;}
.x17_c00040{left:183.506634pt;}
.x11_c00040{left:224.448440pt;}
.x10_c00040{left:240.124654pt;}
.x13_c00040{left:331.956469pt;}
.x12_c00040{left:373.596470pt;}
.x2_c00040{left:503.286400pt;}
.x3_c00040{left:514.843200pt;}
.x4_c00040{left:522.755200pt;}
.x5_c00040{left:529.726400pt;}
.x6_c00040{left:549.041600pt;}
.x7_c00040{left:556.008000pt;}
.x8_c00040{left:563.924800pt;}
.x9_c00040{left:568.358400pt;}
.xa_c00040{left:579.443200pt;}
.xb_c00040{left:607.779200pt;}
.xc_c00040{left:621.240000pt;}
.xd_c00040{left:628.206400pt;}
.xe_c00040{left:653.700800pt;}
.xf_c00040{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00041;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.113000;font-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_c00041{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:-17.812493px;}
.ws1_c00041{word-spacing:0.000000px;}
._c_c00041{margin-left:-3.330924px;}
._1_c00041{margin-left:-1.129422px;}
._0_c00041{width:1.056287px;}
._e_c00041{width:2.153118px;}
._10_c00041{width:4.750482px;}
._f_c00041{width:5.891326px;}
._8_c00041{width:7.224591px;}
._9_c00041{width:8.398399px;}
._2_c00041{width:10.675981px;}
._3_c00041{width:11.698638px;}
._b_c00041{width:12.859292px;}
._5_c00041{width:14.952649px;}
._4_c00041{width:16.174361px;}
._11_c00041{width:20.456000px;}
._a_c00041{width:22.236800px;}
._7_c00041{width:42.189915px;}
._6_c00041{width:43.195257px;}
._d_c00041{width:58.979458px;}
.fc1_c00041{color:rgb(105,148,45);}
.fc0_c00041{color:rgb(35,31,32);}
.fs3_c00041{font-size:38.474625px;}
.fs2_c00041{font-size:59.136936px;}
.fs1_c00041{font-size:65.550574px;}
.fs0_c00041{font-size:71.249972px;}
.y0_c00041{bottom:0.000000px;}
.y5_c00041{bottom:0.120938px;}
.y2_c00041{bottom:4.274906px;}
.y4_c00041{bottom:4.276256px;}
.ya_c00041{bottom:6.826644px;}
.yc_c00041{bottom:66.914977px;}
.y3_c00041{bottom:80.507160px;}
.y1_c00041{bottom:80.867160px;}
.y2d_c00041{bottom:87.754768px;}
.y2c_c00041{bottom:107.165960px;}
.y2b_c00041{bottom:126.406303px;}
.y2a_c00041{bottom:145.646645px;}
.y29_c00041{bottom:164.880687px;}
.y28_c00041{bottom:208.522270px;}
.y27_c00041{bottom:239.160208px;}
.y26_c00041{bottom:269.976045px;}
.y25_c00041{bottom:300.611883px;}
.y24_c00041{bottom:331.427721px;}
.y23_c00041{bottom:383.261400px;}
.y22_c00041{bottom:428.861832px;}
.y21_c00041{bottom:459.676319px;}
.y20_c00041{bottom:490.312157px;}
.y1f_c00041{bottom:509.908149px;}
.y1e_c00041{bottom:553.724632px;}
.y1d_c00041{bottom:584.537619px;}
.y1c_c00041{bottom:615.178407px;}
.y1b_c00041{bottom:645.991395px;}
.y1a_c00041{bottom:676.628583px;}
.y19_c00041{bottom:707.443070px;}
.y18_c00041{bottom:725.614063px;}
.y17_c00041{bottom:738.440708px;}
.y16_c00041{bottom:768.896546px;}
.y15_c00041{bottom:799.538683px;}
.y14_c00041{bottom:830.350321px;}
.y13_c00041{bottom:860.987509px;}
.y12_c00041{bottom:891.803347px;}
.y11_c00041{bottom:922.439934px;}
.y10_c00041{bottom:953.255772px;}
.yf_c00041{bottom:983.892960px;}
.ye_c00041{bottom:1038.932438px;}
.yd_c00041{bottom:1075.626923px;}
.yb_c00041{bottom:1094.327416px;}
.y9_c00041{bottom:1125.436612px;}
.y8_c00041{bottom:1146.276554px;}
.y7_c00041{bottom:1166.762796px;}
.y6_c00041{bottom:1187.245588px;}
.h1_c00041{height:19.948320px;}
.h3_c00041{height:19.954620px;}
.hc_c00041{height:24.662234px;}
.h8_c00041{height:37.906776px;}
.h7_c00041{height:42.017918px;}
.h9_c00041{height:45.671232px;}
.ha_c00041{height:58.929966px;}
.h2_c00041{height:63.768724px;}
.hb_c00041{height:63.839974px;}
.hd_c00041{height:63.911224px;}
.h5_c00041{height:64.053724px;}
.h6_c00041{height:1249.830756px;}
.h4_c00041{height:1262.879062px;}
.h0_c00041{height:1263.000000px;}
.wd_c00041{width:5.344200px;}
.w8_c00041{width:5.346000px;}
.w6_c00041{width:7.837200px;}
.w4_c00041{width:7.842600px;}
.w3_c00041{width:8.901000px;}
.w9_c00041{width:8.904600px;}
.w7_c00041{width:8.906400px;}
.w2_c00041{width:13.001400px;}
.wb_c00041{width:16.930800px;}
.w1_c00041{width:17.814240px;}
.w5_c00041{width:21.729600px;}
.wa_c00041{width:27.784800px;}
.wc_c00041{width:28.681200px;}
.wf_c00041{width:883.195846px;}
.we_c00041{width:892.414744px;}
.w0_c00041{width:892.500000px;}
.x0_c00041{left:0.000000px;}
.x14_c00041{left:1.541954px;}
.x15_c00041{left:112.753050px;}
.x17_c00041{left:126.290937px;}
.x1_c00041{left:128.544660px;}
.x19_c00041{left:166.192479px;}
.x16_c00041{left:178.837474px;}
.x18_c00041{left:206.444963px;}
.x11_c00041{left:252.504495px;}
.x10_c00041{left:270.140236px;}
.x13_c00041{left:373.451028px;}
.x12_c00041{left:420.296029px;}
.x2_c00041{left:566.197200px;}
.x3_c00041{left:579.198600px;}
.x4_c00041{left:588.099600px;}
.x5_c00041{left:595.942200px;}
.x6_c00041{left:617.671800px;}
.x7_c00041{left:625.509000px;}
.x8_c00041{left:634.415400px;}
.x9_c00041{left:639.403200px;}
.xa_c00041{left:651.873600px;}
.xb_c00041{left:683.751600px;}
.xc_c00041{left:698.895000px;}
.xd_c00041{left:706.732200px;}
.xe_c00041{left:735.413400px;}
.xf_c00041{left:740.757600px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:-15.833327pt;}
.ws1_c00041{word-spacing:0.000000pt;}
._c_c00041{margin-left:-2.960821pt;}
._1_c00041{margin-left:-1.003930pt;}
._0_c00041{width:0.938922pt;}
._e_c00041{width:1.913883pt;}
._10_c00041{width:4.222651pt;}
._f_c00041{width:5.236734pt;}
._8_c00041{width:6.421859pt;}
._9_c00041{width:7.465244pt;}
._2_c00041{width:9.489761pt;}
._3_c00041{width:10.398789pt;}
._b_c00041{width:11.430482pt;}
._5_c00041{width:13.291244pt;}
._4_c00041{width:14.377210pt;}
._11_c00041{width:18.183112pt;}
._a_c00041{width:19.766045pt;}
._7_c00041{width:37.502146pt;}
._6_c00041{width:38.395784pt;}
._d_c00041{width:52.426185pt;}
.fs3_c00041{font-size:34.199666pt;}
.fs2_c00041{font-size:52.566166pt;}
.fs1_c00041{font-size:58.267177pt;}
.fs0_c00041{font-size:63.333308pt;}
.y0_c00041{bottom:0.000000pt;}
.y5_c00041{bottom:0.107500pt;}
.y2_c00041{bottom:3.799916pt;}
.y4_c00041{bottom:3.801117pt;}
.ya_c00041{bottom:6.068128pt;}
.yc_c00041{bottom:59.479979pt;}
.y3_c00041{bottom:71.561920pt;}
.y1_c00041{bottom:71.881920pt;}
.y2d_c00041{bottom:78.004238pt;}
.y2c_c00041{bottom:95.258631pt;}
.y2b_c00041{bottom:112.361158pt;}
.y2a_c00041{bottom:129.463684pt;}
.y29_c00041{bottom:146.560611pt;}
.y28_c00041{bottom:185.353129pt;}
.y27_c00041{bottom:212.586851pt;}
.y26_c00041{bottom:239.978707pt;}
.y25_c00041{bottom:267.210563pt;}
.y24_c00041{bottom:294.602418pt;}
.y23_c00041{bottom:340.676800pt;}
.y22_c00041{bottom:381.210517pt;}
.y21_c00041{bottom:408.601173pt;}
.y20_c00041{bottom:435.833029pt;}
.y1f_c00041{bottom:453.251688pt;}
.y1e_c00041{bottom:492.199673pt;}
.y1d_c00041{bottom:519.588995pt;}
.y1c_c00041{bottom:546.825251pt;}
.y1b_c00041{bottom:574.214573pt;}
.y1a_c00041{bottom:601.447629pt;}
.y19_c00041{bottom:628.838285pt;}
.y18_c00041{bottom:644.990278pt;}
.y17_c00041{bottom:656.391740pt;}
.y16_c00041{bottom:683.463596pt;}
.y15_c00041{bottom:710.701052pt;}
.y14_c00041{bottom:738.089174pt;}
.y13_c00041{bottom:765.322230pt;}
.y12_c00041{bottom:792.714086pt;}
.y11_c00041{bottom:819.946608pt;}
.y10_c00041{bottom:847.338464pt;}
.yf_c00041{bottom:874.571520pt;}
.ye_c00041{bottom:923.495500pt;}
.yd_c00041{bottom:956.112820pt;}
.yb_c00041{bottom:972.735480pt;}
.y9_c00041{bottom:1000.388100pt;}
.y8_c00041{bottom:1018.912492pt;}
.y7_c00041{bottom:1037.122485pt;}
.y6_c00041{bottom:1055.329411pt;}
.h1_c00041{height:17.731840pt;}
.h3_c00041{height:17.737440pt;}
.hc_c00041{height:21.921986pt;}
.h8_c00041{height:33.694912pt;}
.h7_c00041{height:37.349260pt;}
.h9_c00041{height:40.596650pt;}
.ha_c00041{height:52.382192pt;}
.h2_c00041{height:56.683311pt;}
.hb_c00041{height:56.746644pt;}
.hd_c00041{height:56.809977pt;}
.h5_c00041{height:56.936644pt;}
.h6_c00041{height:1110.960672pt;}
.h4_c00041{height:1122.559167pt;}
.h0_c00041{height:1122.666667pt;}
.wd_c00041{width:4.750400pt;}
.w8_c00041{width:4.752000pt;}
.w6_c00041{width:6.966400pt;}
.w4_c00041{width:6.971200pt;}
.w3_c00041{width:7.912000pt;}
.w9_c00041{width:7.915200pt;}
.w7_c00041{width:7.916800pt;}
.w2_c00041{width:11.556800pt;}
.wb_c00041{width:15.049600pt;}
.w1_c00041{width:15.834880pt;}
.w5_c00041{width:19.315200pt;}
.wa_c00041{width:24.697600pt;}
.wc_c00041{width:25.494400pt;}
.wf_c00041{width:785.062974pt;}
.we_c00041{width:793.257550pt;}
.w0_c00041{width:793.333333pt;}
.x0_c00041{left:0.000000pt;}
.x14_c00041{left:1.370626pt;}
.x15_c00041{left:100.224934pt;}
.x17_c00041{left:112.258610pt;}
.x1_c00041{left:114.261920pt;}
.x19_c00041{left:147.726648pt;}
.x16_c00041{left:158.966644pt;}
.x18_c00041{left:183.506634pt;}
.x11_c00041{left:224.448440pt;}
.x10_c00041{left:240.124654pt;}
.x13_c00041{left:331.956469pt;}
.x12_c00041{left:373.596470pt;}
.x2_c00041{left:503.286400pt;}
.x3_c00041{left:514.843200pt;}
.x4_c00041{left:522.755200pt;}
.x5_c00041{left:529.726400pt;}
.x6_c00041{left:549.041600pt;}
.x7_c00041{left:556.008000pt;}
.x8_c00041{left:563.924800pt;}
.x9_c00041{left:568.358400pt;}
.xa_c00041{left:579.443200pt;}
.xb_c00041{left:607.779200pt;}
.xc_c00041{left:621.240000pt;}
.xd_c00041{left:628.206400pt;}
.xe_c00041{left:653.700800pt;}
.xf_c00041{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.112000;font-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_c00042{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00042{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:-17.812493px;}
.ws1_c00042{word-spacing:0.000000px;}
._1_c00042{margin-left:-1.075336px;}
._0_c00042{width:1.056287px;}
._4_c00042{width:2.369241px;}
._5_c00042{width:3.751313px;}
._6_c00042{width:5.023309px;}
._2_c00042{width:6.867984px;}
._3_c00042{width:7.942480px;}
._7_c00042{width:9.261867px;}
._8_c00042{width:11.633078px;}
._9_c00042{width:12.879705px;}
.fc1_c00042{color:rgb(105,148,45);}
.fc0_c00042{color:rgb(35,31,32);}
.fs2_c00042{font-size:59.136936px;}
.fs1_c00042{font-size:65.550574px;}
.fs0_c00042{font-size:71.249972px;}
.y0_c00042{bottom:0.000000px;}
.y5_c00042{bottom:0.120938px;}
.y2_c00042{bottom:4.274906px;}
.y4_c00042{bottom:4.276256px;}
.ya_c00042{bottom:6.826644px;}
.yc_c00042{bottom:66.914977px;}
.y3_c00042{bottom:80.507160px;}
.y1_c00042{bottom:80.867160px;}
.y1f_c00042{bottom:369.189306px;}
.y1e_c00042{bottom:400.182293px;}
.y1d_c00042{bottom:430.998131px;}
.y1c_c00042{bottom:492.449056px;}
.y1b_c00042{bottom:523.086244px;}
.y1a_c00042{bottom:553.902832px;}
.y19_c00042{bottom:615.354507px;}
.y18_c00042{bottom:676.806933px;}
.y17_c00042{bottom:707.442770px;}
.y16_c00042{bottom:738.260708px;}
.y15_c00042{bottom:768.896546px;}
.y14_c00042{bottom:799.538683px;}
.y13_c00042{bottom:860.987509px;}
.y12_c00042{bottom:891.803347px;}
.y11_c00042{bottom:922.439934px;}
.y10_c00042{bottom:953.255772px;}
.yf_c00042{bottom:983.892960px;}
.ye_c00042{bottom:1038.932438px;}
.yd_c00042{bottom:1075.626923px;}
.yb_c00042{bottom:1094.327416px;}
.y9_c00042{bottom:1125.436612px;}
.y8_c00042{bottom:1146.276554px;}
.y7_c00042{bottom:1166.762796px;}
.y6_c00042{bottom:1187.245588px;}
.h1_c00042{height:19.948320px;}
.h3_c00042{height:19.954620px;}
.h8_c00042{height:37.906776px;}
.h7_c00042{height:42.017918px;}
.h9_c00042{height:45.671232px;}
.ha_c00042{height:58.929966px;}
.h2_c00042{height:63.768724px;}
.hb_c00042{height:63.839974px;}
.h5_c00042{height:64.053724px;}
.h6_c00042{height:1249.830756px;}
.h4_c00042{height:1262.879062px;}
.h0_c00042{height:1263.000000px;}
.wd_c00042{width:5.344200px;}
.w8_c00042{width:5.346000px;}
.w6_c00042{width:7.837200px;}
.w4_c00042{width:7.842600px;}
.w3_c00042{width:8.901000px;}
.w9_c00042{width:8.904600px;}
.w7_c00042{width:8.906400px;}
.w2_c00042{width:13.001400px;}
.wb_c00042{width:16.930800px;}
.w1_c00042{width:17.814240px;}
.w5_c00042{width:21.729600px;}
.wa_c00042{width:27.784800px;}
.wc_c00042{width:28.681200px;}
.wf_c00042{width:883.195846px;}
.we_c00042{width:892.414744px;}
.w0_c00042{width:892.500000px;}
.x0_c00042{left:0.000000px;}
.x14_c00042{left:1.541954px;}
.x15_c00042{left:112.753050px;}
.x17_c00042{left:126.290937px;}
.x1_c00042{left:128.544660px;}
.x16_c00042{left:178.837474px;}
.x18_c00042{left:204.134527px;}
.x11_c00042{left:252.504495px;}
.x10_c00042{left:270.140236px;}
.x13_c00042{left:373.451028px;}
.x12_c00042{left:420.296029px;}
.x2_c00042{left:566.197200px;}
.x3_c00042{left:579.198600px;}
.x4_c00042{left:588.099600px;}
.x5_c00042{left:595.942200px;}
.x6_c00042{left:617.671800px;}
.x7_c00042{left:625.509000px;}
.x8_c00042{left:634.415400px;}
.x9_c00042{left:639.403200px;}
.xa_c00042{left:651.873600px;}
.xb_c00042{left:683.751600px;}
.xc_c00042{left:698.895000px;}
.xd_c00042{left:706.732200px;}
.xe_c00042{left:735.413400px;}
.xf_c00042{left:740.757600px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws0_c00042{word-spacing:-15.833327pt;}
.ws1_c00042{word-spacing:0.000000pt;}
._1_c00042{margin-left:-0.955854pt;}
._0_c00042{width:0.938922pt;}
._4_c00042{width:2.105992pt;}
._5_c00042{width:3.334500pt;}
._6_c00042{width:4.465163pt;}
._2_c00042{width:6.104875pt;}
._3_c00042{width:7.059982pt;}
._7_c00042{width:8.232771pt;}
._8_c00042{width:10.340514pt;}
._9_c00042{width:11.448627pt;}
.fs2_c00042{font-size:52.566166pt;}
.fs1_c00042{font-size:58.267177pt;}
.fs0_c00042{font-size:63.333308pt;}
.y0_c00042{bottom:0.000000pt;}
.y5_c00042{bottom:0.107500pt;}
.y2_c00042{bottom:3.799916pt;}
.y4_c00042{bottom:3.801117pt;}
.ya_c00042{bottom:6.068128pt;}
.yc_c00042{bottom:59.479979pt;}
.y3_c00042{bottom:71.561920pt;}
.y1_c00042{bottom:71.881920pt;}
.y1f_c00042{bottom:328.168272pt;}
.y1e_c00042{bottom:355.717594pt;}
.y1d_c00042{bottom:383.109450pt;}
.y1c_c00042{bottom:437.732494pt;}
.y1b_c00042{bottom:464.965550pt;}
.y1a_c00042{bottom:492.358073pt;}
.y19_c00042{bottom:546.981784pt;}
.y18_c00042{bottom:601.606162pt;}
.y17_c00042{bottom:628.838018pt;}
.y16_c00042{bottom:656.231740pt;}
.y15_c00042{bottom:683.463596pt;}
.y14_c00042{bottom:710.701052pt;}
.y13_c00042{bottom:765.322230pt;}
.y12_c00042{bottom:792.714086pt;}
.y11_c00042{bottom:819.946608pt;}
.y10_c00042{bottom:847.338464pt;}
.yf_c00042{bottom:874.571520pt;}
.ye_c00042{bottom:923.495500pt;}
.yd_c00042{bottom:956.112820pt;}
.yb_c00042{bottom:972.735480pt;}
.y9_c00042{bottom:1000.388100pt;}
.y8_c00042{bottom:1018.912492pt;}
.y7_c00042{bottom:1037.122485pt;}
.y6_c00042{bottom:1055.329411pt;}
.h1_c00042{height:17.731840pt;}
.h3_c00042{height:17.737440pt;}
.h8_c00042{height:33.694912pt;}
.h7_c00042{height:37.349260pt;}
.h9_c00042{height:40.596650pt;}
.ha_c00042{height:52.382192pt;}
.h2_c00042{height:56.683311pt;}
.hb_c00042{height:56.746644pt;}
.h5_c00042{height:56.936644pt;}
.h6_c00042{height:1110.960672pt;}
.h4_c00042{height:1122.559167pt;}
.h0_c00042{height:1122.666667pt;}
.wd_c00042{width:4.750400pt;}
.w8_c00042{width:4.752000pt;}
.w6_c00042{width:6.966400pt;}
.w4_c00042{width:6.971200pt;}
.w3_c00042{width:7.912000pt;}
.w9_c00042{width:7.915200pt;}
.w7_c00042{width:7.916800pt;}
.w2_c00042{width:11.556800pt;}
.wb_c00042{width:15.049600pt;}
.w1_c00042{width:15.834880pt;}
.w5_c00042{width:19.315200pt;}
.wa_c00042{width:24.697600pt;}
.wc_c00042{width:25.494400pt;}
.wf_c00042{width:785.062974pt;}
.we_c00042{width:793.257550pt;}
.w0_c00042{width:793.333333pt;}
.x0_c00042{left:0.000000pt;}
.x14_c00042{left:1.370626pt;}
.x15_c00042{left:100.224934pt;}
.x17_c00042{left:112.258610pt;}
.x1_c00042{left:114.261920pt;}
.x16_c00042{left:158.966644pt;}
.x18_c00042{left:181.452913pt;}
.x11_c00042{left:224.448440pt;}
.x10_c00042{left:240.124654pt;}
.x13_c00042{left:331.956469pt;}
.x12_c00042{left:373.596470pt;}
.x2_c00042{left:503.286400pt;}
.x3_c00042{left:514.843200pt;}
.x4_c00042{left:522.755200pt;}
.x5_c00042{left:529.726400pt;}
.x6_c00042{left:549.041600pt;}
.x7_c00042{left:556.008000pt;}
.x8_c00042{left:563.924800pt;}
.x9_c00042{left:568.358400pt;}
.xa_c00042{left:579.443200pt;}
.xb_c00042{left:607.779200pt;}
.xc_c00042{left:621.240000pt;}
.xd_c00042{left:628.206400pt;}
.xe_c00042{left:653.700800pt;}
.xf_c00042{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00043;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:1.112000;font-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_c00043{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v1_c00043{vertical-align:-2.854685px;}
.v0_c00043{vertical-align:0.000000px;}
.v2_c00043{vertical-align:2.854685px;}
.ls0_c00043{letter-spacing:0.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:-17.812493px;}
.ws1_c00043{word-spacing:0.000000px;}
._7_c00043{margin-left:-3.458537px;}
._10_c00043{margin-left:-2.403858px;}
._2_c00043{margin-left:-1.213543px;}
._0_c00043{width:1.056287px;}
._5_c00043{width:2.741740px;}
._f_c00043{width:4.307996px;}
._b_c00043{width:6.326081px;}
._a_c00043{width:7.512723px;}
._8_c00043{width:8.745007px;}
._9_c00043{width:9.993853px;}
._11_c00043{width:11.481179px;}
._12_c00043{width:13.295841px;}
._6_c00043{width:14.412861px;}
._4_c00043{width:15.452305px;}
._1_c00043{width:16.677853px;}
._3_c00043{width:18.907274px;}
._e_c00043{width:20.423989px;}
._d_c00043{width:21.478753px;}
._c_c00043{width:22.681608px;}
._19_c00043{width:24.210971px;}
._17_c00043{width:25.590847px;}
._18_c00043{width:26.642321px;}
._16_c00043{width:27.655996px;}
._15_c00043{width:33.195940px;}
._14_c00043{width:34.862125px;}
._13_c00043{width:36.839777px;}
.fc1_c00043{color:rgb(105,148,45);}
.fc0_c00043{color:rgb(35,31,32);}
.fs3_c00043{font-size:44.887062px;}
.fs2_c00043{font-size:59.136936px;}
.fs1_c00043{font-size:65.550574px;}
.fs0_c00043{font-size:71.249972px;}
.y0_c00043{bottom:0.000000px;}
.y5_c00043{bottom:0.120938px;}
.y2_c00043{bottom:4.274906px;}
.y4_c00043{bottom:4.276256px;}
.ya_c00043{bottom:6.826644px;}
.yc_c00043{bottom:66.914977px;}
.y3_c00043{bottom:80.507160px;}
.y1_c00043{bottom:80.867160px;}
.y30_c00043{bottom:82.946970px;}
.y2f_c00043{bottom:170.939335px;}
.y2e_c00043{bottom:201.578773px;}
.y2d_c00043{bottom:232.391760px;}
.y2c_c00043{bottom:263.030448px;}
.y2b_c00043{bottom:293.843436px;}
.y2a_c00043{bottom:324.482873px;}
.y29_c00043{bottom:355.298711px;}
.y28_c00043{bottom:374.352589px;}
.y27_c00043{bottom:389.137198px;}
.y26_c00043{bottom:409.625989px;}
.y25_c00043{bottom:447.566674px;}
.y24_c00043{bottom:466.090167px;}
.y23_c00043{bottom:492.629835px;}
.y22_c00043{bottom:524.513793px;}
.y21_c00043{bottom:555.149631px;}
.y20_c00043{bottom:574.032974px;}
.y1f_c00043{bottom:590.242117px;}
.y1e_c00043{bottom:616.783107px;}
.y1d_c00043{bottom:647.417594px;}
.y1c_c00043{bottom:678.232082px;}
.y1b_c00043{bottom:697.294074px;}
.y1a_c00043{bottom:717.775666px;}
.y19_c00043{bottom:755.539051px;}
.y18_c00043{bottom:774.241044px;}
.y17_c00043{bottom:800.600233px;}
.y16_c00043{bottom:831.416071px;}
.y15_c00043{bottom:862.055508px;}
.y14_c00043{bottom:881.292491px;}
.y13_c00043{bottom:896.078495px;}
.y12_c00043{bottom:910.149989px;}
.y11_c00043{bottom:923.687334px;}
.y10_c00043{bottom:954.505271px;}
.yf_c00043{bottom:985.142459px;}
.ye_c00043{bottom:1004.373952px;}
.yd_c00043{bottom:1024.860943px;}
.yb_c00043{bottom:1094.327416px;}
.y9_c00043{bottom:1125.436612px;}
.y8_c00043{bottom:1146.276554px;}
.y7_c00043{bottom:1166.762796px;}
.y6_c00043{bottom:1187.245588px;}
.h1_c00043{height:19.948320px;}
.h3_c00043{height:19.954620px;}
.hb_c00043{height:28.772607px;}
.h8_c00043{height:37.906776px;}
.h7_c00043{height:42.017918px;}
.hc_c00043{height:45.671232px;}
.h2_c00043{height:63.768724px;}
.ha_c00043{height:63.839974px;}
.h9_c00043{height:63.911224px;}
.h5_c00043{height:64.053724px;}
.hd_c00043{height:66.908409px;}
.h6_c00043{height:1249.830756px;}
.h4_c00043{height:1262.879062px;}
.h0_c00043{height:1263.000000px;}
.wd_c00043{width:5.344200px;}
.w8_c00043{width:5.346000px;}
.w6_c00043{width:7.837200px;}
.w4_c00043{width:7.842600px;}
.w3_c00043{width:8.901000px;}
.w9_c00043{width:8.904600px;}
.w7_c00043{width:8.906400px;}
.w2_c00043{width:13.001400px;}
.wb_c00043{width:16.930800px;}
.w1_c00043{width:17.814240px;}
.w5_c00043{width:21.729600px;}
.wa_c00043{width:27.784800px;}
.wc_c00043{width:28.681200px;}
.wf_c00043{width:883.195846px;}
.we_c00043{width:892.414744px;}
.w0_c00043{width:892.500000px;}
.x0_c00043{left:0.000000px;}
.x14_c00043{left:1.541954px;}
.x15_c00043{left:112.753050px;}
.x17_c00043{left:126.293935px;}
.x1_c00043{left:128.544660px;}
.x16_c00043{left:178.837474px;}
.x11_c00043{left:252.504495px;}
.x10_c00043{left:270.140236px;}
.x13_c00043{left:373.451028px;}
.x12_c00043{left:420.296029px;}
.x2_c00043{left:566.197200px;}
.x3_c00043{left:579.198600px;}
.x4_c00043{left:588.099600px;}
.x5_c00043{left:595.942200px;}
.x6_c00043{left:617.671800px;}
.x7_c00043{left:625.509000px;}
.x8_c00043{left:634.415400px;}
.x9_c00043{left:639.403200px;}
.xa_c00043{left:651.873600px;}
.xb_c00043{left:683.751600px;}
.xc_c00043{left:698.895000px;}
.xd_c00043{left:706.732200px;}
.xe_c00043{left:735.413400px;}
.xf_c00043{left:740.757600px;}
@media print{
.v1_c00043{vertical-align:-2.537498pt;}
.v0_c00043{vertical-align:0.000000pt;}
.v2_c00043{vertical-align:2.537498pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:-15.833327pt;}
.ws1_c00043{word-spacing:0.000000pt;}
._7_c00043{margin-left:-3.074255pt;}
._10_c00043{margin-left:-2.136762pt;}
._2_c00043{margin-left:-1.078705pt;}
._0_c00043{width:0.938922pt;}
._5_c00043{width:2.437102pt;}
._f_c00043{width:3.829329pt;}
._b_c00043{width:5.623183pt;}
._a_c00043{width:6.677976pt;}
._8_c00043{width:7.773340pt;}
._9_c00043{width:8.883425pt;}
._11_c00043{width:10.205493pt;}
._12_c00043{width:11.818525pt;}
._6_c00043{width:12.811432pt;}
._4_c00043{width:13.735383pt;}
._1_c00043{width:14.824758pt;}
._3_c00043{width:16.806466pt;}
._e_c00043{width:18.154657pt;}
._d_c00043{width:19.092225pt;}
._c_c00043{width:20.161429pt;}
._19_c00043{width:21.520863pt;}
._17_c00043{width:22.747419pt;}
._18_c00043{width:23.682063pt;}
._16_c00043{width:24.583108pt;}
._15_c00043{width:29.507502pt;}
._14_c00043{width:30.988556pt;}
._13_c00043{width:32.746468pt;}
.fs3_c00043{font-size:39.899611pt;}
.fs2_c00043{font-size:52.566166pt;}
.fs1_c00043{font-size:58.267177pt;}
.fs0_c00043{font-size:63.333308pt;}
.y0_c00043{bottom:0.000000pt;}
.y5_c00043{bottom:0.107500pt;}
.y2_c00043{bottom:3.799916pt;}
.y4_c00043{bottom:3.801117pt;}
.ya_c00043{bottom:6.068128pt;}
.yc_c00043{bottom:59.479979pt;}
.y3_c00043{bottom:71.561920pt;}
.y1_c00043{bottom:71.881920pt;}
.y30_c00043{bottom:73.730640pt;}
.y2f_c00043{bottom:151.946075pt;}
.y2e_c00043{bottom:179.181131pt;}
.y2d_c00043{bottom:206.570454pt;}
.y2c_c00043{bottom:233.804843pt;}
.y2b_c00043{bottom:261.194165pt;}
.y2a_c00043{bottom:288.429221pt;}
.y29_c00043{bottom:315.821077pt;}
.y28_c00043{bottom:332.757856pt;}
.y27_c00043{bottom:345.899731pt;}
.y26_c00043{bottom:364.111991pt;}
.y25_c00043{bottom:397.837044pt;}
.y24_c00043{bottom:414.302371pt;}
.y23_c00043{bottom:437.893186pt;}
.y22_c00043{bottom:466.234483pt;}
.y21_c00043{bottom:493.466339pt;}
.y20_c00043{bottom:510.251532pt;}
.y1f_c00043{bottom:524.659660pt;}
.y1e_c00043{bottom:548.251650pt;}
.y1d_c00043{bottom:575.482306pt;}
.y1c_c00043{bottom:602.872962pt;}
.y1b_c00043{bottom:619.816955pt;}
.y1a_c00043{bottom:638.022814pt;}
.y19_c00043{bottom:671.590268pt;}
.y18_c00043{bottom:688.214261pt;}
.y17_c00043{bottom:711.644652pt;}
.y16_c00043{bottom:739.036507pt;}
.y15_c00043{bottom:766.271563pt;}
.y14_c00043{bottom:783.371103pt;}
.y13_c00043{bottom:796.514218pt;}
.y12_c00043{bottom:809.022213pt;}
.y11_c00043{bottom:821.055408pt;}
.y10_c00043{bottom:848.449130pt;}
.yf_c00043{bottom:875.682186pt;}
.ye_c00043{bottom:892.776846pt;}
.yd_c00043{bottom:910.987505pt;}
.yb_c00043{bottom:972.735480pt;}
.y9_c00043{bottom:1000.388100pt;}
.y8_c00043{bottom:1018.912492pt;}
.y7_c00043{bottom:1037.122485pt;}
.y6_c00043{bottom:1055.329411pt;}
.h1_c00043{height:17.731840pt;}
.h3_c00043{height:17.737440pt;}
.hb_c00043{height:25.575650pt;}
.h8_c00043{height:33.694912pt;}
.h7_c00043{height:37.349260pt;}
.hc_c00043{height:40.596650pt;}
.h2_c00043{height:56.683311pt;}
.ha_c00043{height:56.746644pt;}
.h9_c00043{height:56.809977pt;}
.h5_c00043{height:56.936644pt;}
.hd_c00043{height:59.474142pt;}
.h6_c00043{height:1110.960672pt;}
.h4_c00043{height:1122.559167pt;}
.h0_c00043{height:1122.666667pt;}
.wd_c00043{width:4.750400pt;}
.w8_c00043{width:4.752000pt;}
.w6_c00043{width:6.966400pt;}
.w4_c00043{width:6.971200pt;}
.w3_c00043{width:7.912000pt;}
.w9_c00043{width:7.915200pt;}
.w7_c00043{width:7.916800pt;}
.w2_c00043{width:11.556800pt;}
.wb_c00043{width:15.049600pt;}
.w1_c00043{width:15.834880pt;}
.w5_c00043{width:19.315200pt;}
.wa_c00043{width:24.697600pt;}
.wc_c00043{width:25.494400pt;}
.wf_c00043{width:785.062974pt;}
.we_c00043{width:793.257550pt;}
.w0_c00043{width:793.333333pt;}
.x0_c00043{left:0.000000pt;}
.x14_c00043{left:1.370626pt;}
.x15_c00043{left:100.224934pt;}
.x17_c00043{left:112.261275pt;}
.x1_c00043{left:114.261920pt;}
.x16_c00043{left:158.966644pt;}
.x11_c00043{left:224.448440pt;}
.x10_c00043{left:240.124654pt;}
.x13_c00043{left:331.956469pt;}
.x12_c00043{left:373.596470pt;}
.x2_c00043{left:503.286400pt;}
.x3_c00043{left:514.843200pt;}
.x4_c00043{left:522.755200pt;}
.x5_c00043{left:529.726400pt;}
.x6_c00043{left:549.041600pt;}
.x7_c00043{left:556.008000pt;}
.x8_c00043{left:563.924800pt;}
.x9_c00043{left:568.358400pt;}
.xa_c00043{left:579.443200pt;}
.xb_c00043{left:607.779200pt;}
.xc_c00043{left:621.240000pt;}
.xd_c00043{left:628.206400pt;}
.xe_c00043{left:653.700800pt;}
.xf_c00043{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:1.113000;font-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_c00044{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls0_c00044{letter-spacing:0.000000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-17.812493px;}
.ws1_c00044{word-spacing:0.000000px;}
._8_c00044{margin-left:-2.329041px;}
._2_c00044{margin-left:-1.164904px;}
._0_c00044{width:1.056287px;}
._1_c00044{width:2.899145px;}
._3_c00044{width:4.505651px;}
._5_c00044{width:5.646329px;}
._4_c00044{width:7.244277px;}
._6_c00044{width:34.084633px;}
._7_c00044{width:35.408369px;}
._9_c00044{width:87.842254px;}
._a_c00044{width:425.471968px;}
._f_c00044{width:439.352035px;}
._b_c00044{width:493.355465px;}
._d_c00044{width:560.023172px;}
._c_c00044{width:643.979731px;}
._11_c00044{width:955.805695px;}
._12_c00044{width:1003.339762px;}
._e_c00044{width:1026.916303px;}
._10_c00044{width:1217.156191px;}
.fc1_c00044{color:rgb(105,148,45);}
.fc0_c00044{color:rgb(35,31,32);}
.fs3_c00044{font-size:50.586940px;}
.fs2_c00044{font-size:59.136936px;}
.fs1_c00044{font-size:65.550574px;}
.fs0_c00044{font-size:71.249972px;}
.y0_c00044{bottom:0.000000px;}
.y5_c00044{bottom:0.120938px;}
.y2_c00044{bottom:4.274906px;}
.y4_c00044{bottom:4.276256px;}
.ya_c00044{bottom:6.826644px;}
.yc_c00044{bottom:66.914977px;}
.y3_c00044{bottom:80.507160px;}
.y1_c00044{bottom:80.867160px;}
.y2c_c00044{bottom:262.138248px;}
.y2d_c00044{bottom:262.670748px;}
.y2b_c00044{bottom:286.360089px;}
.y2a_c00044{bottom:309.693329px;}
.y29_c00044{bottom:333.030020px;}
.y28_c00044{bottom:353.516262px;}
.y27_c00044{bottom:376.850853px;}
.y26_c00044{bottom:397.512894px;}
.y25_c00044{bottom:420.846135px;}
.y24_c00044{bottom:441.331627px;}
.y23_c00044{bottom:464.663367px;}
.y22_c00044{bottom:485.148259px;}
.y21_c00044{bottom:508.482850px;}
.y20_c00044{bottom:528.967742px;}
.y1f_c00044{bottom:552.299482px;}
.y1e_c00044{bottom:572.786474px;}
.y1d_c00044{bottom:596.118215px;}
.y1c_c00044{bottom:616.781607px;}
.y1b_c00044{bottom:680.192581px;}
.y1a_c00044{bottom:715.819067px;}
.y19_c00044{bottom:734.165410px;}
.y18_c00044{bottom:796.510035px;}
.y17_c00044{bottom:815.387377px;}
.y16_c00044{bottom:831.596521px;}
.y15_c00044{bottom:858.138860px;}
.y14_c00044{bottom:888.774698px;}
.y13_c00044{bottom:919.591285px;}
.y12_c00044{bottom:950.228473px;}
.y11_c00044{bottom:969.461465px;}
.y10_c00044{bottom:985.673459px;}
.yf_c00044{bottom:1012.038648px;}
.ye_c00044{bottom:1042.853736px;}
.yd_c00044{bottom:1073.490924px;}
.yb_c00044{bottom:1094.327416px;}
.y9_c00044{bottom:1125.436612px;}
.y8_c00044{bottom:1146.276554px;}
.y7_c00044{bottom:1166.762796px;}
.y6_c00044{bottom:1187.245588px;}
.h1_c00044{height:19.948320px;}
.h3_c00044{height:19.954620px;}
.hb_c00044{height:32.426228px;}
.h8_c00044{height:37.906776px;}
.h7_c00044{height:42.017918px;}
.hd_c00044{height:58.798865px;}
.hc_c00044{height:58.929966px;}
.h2_c00044{height:63.768724px;}
.h9_c00044{height:63.839974px;}
.ha_c00044{height:63.911224px;}
.h5_c00044{height:64.053724px;}
.h6_c00044{height:1249.830756px;}
.h4_c00044{height:1262.879062px;}
.h0_c00044{height:1263.000000px;}
.wd_c00044{width:5.344200px;}
.w8_c00044{width:5.346000px;}
.w6_c00044{width:7.837200px;}
.w4_c00044{width:7.842600px;}
.w3_c00044{width:8.901000px;}
.w9_c00044{width:8.904600px;}
.w7_c00044{width:8.906400px;}
.w2_c00044{width:13.001400px;}
.wb_c00044{width:16.930800px;}
.w1_c00044{width:18.169380px;}
.w5_c00044{width:21.729600px;}
.wa_c00044{width:27.784800px;}
.wc_c00044{width:28.681200px;}
.wf_c00044{width:883.195846px;}
.we_c00044{width:892.414744px;}
.w0_c00044{width:892.500000px;}
.x0_c00044{left:0.000000px;}
.x14_c00044{left:1.541954px;}
.x15_c00044{left:112.753050px;}
.x18_c00044{left:116.672249px;}
.x17_c00044{left:126.292436px;}
.x1_c00044{left:128.544660px;}
.x16_c00044{left:178.837474px;}
.x19_c00044{left:244.382948px;}
.x11_c00044{left:252.504495px;}
.x10_c00044{left:270.140236px;}
.x13_c00044{left:373.451028px;}
.x12_c00044{left:420.296029px;}
.x2_c00044{left:566.197200px;}
.x3_c00044{left:579.198600px;}
.x4_c00044{left:588.099600px;}
.x5_c00044{left:595.942200px;}
.x6_c00044{left:617.671800px;}
.x7_c00044{left:625.509000px;}
.x8_c00044{left:634.415400px;}
.x9_c00044{left:639.403200px;}
.xa_c00044{left:651.873600px;}
.x1a_c00044{left:665.648779px;}
.xb_c00044{left:683.751600px;}
.xc_c00044{left:698.895000px;}
.xd_c00044{left:706.732200px;}
.xe_c00044{left:735.413400px;}
.xf_c00044{left:740.757600px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:-15.833327pt;}
.ws1_c00044{word-spacing:0.000000pt;}
._8_c00044{margin-left:-2.070259pt;}
._2_c00044{margin-left:-1.035471pt;}
._0_c00044{width:0.938922pt;}
._1_c00044{width:2.577018pt;}
._3_c00044{width:4.005023pt;}
._5_c00044{width:5.018960pt;}
._4_c00044{width:6.439357pt;}
._6_c00044{width:30.297451pt;}
._7_c00044{width:31.474106pt;}
._9_c00044{width:78.082004pt;}
._a_c00044{width:378.197305pt;}
._f_c00044{width:390.535142pt;}
._b_c00044{width:438.538191pt;}
._d_c00044{width:497.798375pt;}
._c_c00044{width:572.426428pt;}
._11_c00044{width:849.605062pt;}
._12_c00044{width:891.857566pt;}
._e_c00044{width:912.814492pt;}
._10_c00044{width:1081.916614pt;}
.fs3_c00044{font-size:44.966169pt;}
.fs2_c00044{font-size:52.566166pt;}
.fs1_c00044{font-size:58.267177pt;}
.fs0_c00044{font-size:63.333308pt;}
.y0_c00044{bottom:0.000000pt;}
.y5_c00044{bottom:0.107500pt;}
.y2_c00044{bottom:3.799916pt;}
.y4_c00044{bottom:3.801117pt;}
.ya_c00044{bottom:6.068128pt;}
.yc_c00044{bottom:59.479979pt;}
.y3_c00044{bottom:71.561920pt;}
.y1_c00044{bottom:71.881920pt;}
.y2c_c00044{bottom:233.011776pt;}
.y2d_c00044{bottom:233.485110pt;}
.y2b_c00044{bottom:254.542301pt;}
.y2a_c00044{bottom:275.282959pt;}
.y29_c00044{bottom:296.026684pt;}
.y28_c00044{bottom:314.236677pt;}
.y27_c00044{bottom:334.978536pt;}
.y26_c00044{bottom:353.344795pt;}
.y25_c00044{bottom:374.085453pt;}
.y24_c00044{bottom:392.294779pt;}
.y23_c00044{bottom:413.034104pt;}
.y22_c00044{bottom:431.242897pt;}
.y21_c00044{bottom:451.984755pt;}
.y20_c00044{bottom:470.193548pt;}
.y1f_c00044{bottom:490.932873pt;}
.y1e_c00044{bottom:509.143533pt;}
.y1d_c00044{bottom:529.882858pt;}
.y1c_c00044{bottom:548.250317pt;}
.y1b_c00044{bottom:604.615628pt;}
.y1a_c00044{bottom:636.283615pt;}
.y19_c00044{bottom:652.591475pt;}
.y18_c00044{bottom:708.008920pt;}
.y17_c00044{bottom:724.788780pt;}
.y16_c00044{bottom:739.196907pt;}
.y15_c00044{bottom:762.790098pt;}
.y14_c00044{bottom:790.021954pt;}
.y13_c00044{bottom:817.414476pt;}
.y12_c00044{bottom:844.647532pt;}
.y11_c00044{bottom:861.743525pt;}
.y10_c00044{bottom:876.154186pt;}
.yf_c00044{bottom:899.589910pt;}
.ye_c00044{bottom:926.981099pt;}
.yd_c00044{bottom:954.214155pt;}
.yb_c00044{bottom:972.735480pt;}
.y9_c00044{bottom:1000.388100pt;}
.y8_c00044{bottom:1018.912492pt;}
.y7_c00044{bottom:1037.122485pt;}
.y6_c00044{bottom:1055.329411pt;}
.h1_c00044{height:17.731840pt;}
.h3_c00044{height:17.737440pt;}
.hb_c00044{height:28.823314pt;}
.h8_c00044{height:33.694912pt;}
.h7_c00044{height:37.349260pt;}
.hd_c00044{height:52.265657pt;}
.hc_c00044{height:52.382192pt;}
.h2_c00044{height:56.683311pt;}
.h9_c00044{height:56.746644pt;}
.ha_c00044{height:56.809977pt;}
.h5_c00044{height:56.936644pt;}
.h6_c00044{height:1110.960672pt;}
.h4_c00044{height:1122.559167pt;}
.h0_c00044{height:1122.666667pt;}
.wd_c00044{width:4.750400pt;}
.w8_c00044{width:4.752000pt;}
.w6_c00044{width:6.966400pt;}
.w4_c00044{width:6.971200pt;}
.w3_c00044{width:7.912000pt;}
.w9_c00044{width:7.915200pt;}
.w7_c00044{width:7.916800pt;}
.w2_c00044{width:11.556800pt;}
.wb_c00044{width:15.049600pt;}
.w1_c00044{width:16.150560pt;}
.w5_c00044{width:19.315200pt;}
.wa_c00044{width:24.697600pt;}
.wc_c00044{width:25.494400pt;}
.wf_c00044{width:785.062974pt;}
.we_c00044{width:793.257550pt;}
.w0_c00044{width:793.333333pt;}
.x0_c00044{left:0.000000pt;}
.x14_c00044{left:1.370626pt;}
.x15_c00044{left:100.224934pt;}
.x18_c00044{left:103.708666pt;}
.x17_c00044{left:112.259943pt;}
.x1_c00044{left:114.261920pt;}
.x16_c00044{left:158.966644pt;}
.x19_c00044{left:217.229287pt;}
.x11_c00044{left:224.448440pt;}
.x10_c00044{left:240.124654pt;}
.x13_c00044{left:331.956469pt;}
.x12_c00044{left:373.596470pt;}
.x2_c00044{left:503.286400pt;}
.x3_c00044{left:514.843200pt;}
.x4_c00044{left:522.755200pt;}
.x5_c00044{left:529.726400pt;}
.x6_c00044{left:549.041600pt;}
.x7_c00044{left:556.008000pt;}
.x8_c00044{left:563.924800pt;}
.x9_c00044{left:568.358400pt;}
.xa_c00044{left:579.443200pt;}
.x1a_c00044{left:591.687804pt;}
.xb_c00044{left:607.779200pt;}
.xc_c00044{left:621.240000pt;}
.xd_c00044{left:628.206400pt;}
.xe_c00044{left:653.700800pt;}
.xf_c00044{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00045;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;line-height:1.112000;font-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_c00045{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls0_c00045{letter-spacing:0.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:-17.812493px;}
.ws1_c00045{word-spacing:0.000000px;}
._14_c00045{margin-left:-3.331398px;}
._15_c00045{margin-left:-2.233112px;}
._1_c00045{margin-left:-1.026284px;}
._0_c00045{width:1.056287px;}
._16_c00045{width:2.862425px;}
._d_c00045{width:4.949379px;}
._17_c00045{width:5.999195px;}
._18_c00045{width:7.735312px;}
._19_c00045{width:8.799488px;}
._b_c00045{width:11.914585px;}
._c_c00045{width:13.305767px;}
._a_c00045{width:16.093314px;}
._9_c00045{width:19.363985px;}
._f_c00045{width:23.986834px;}
._e_c00045{width:25.377370px;}
._11_c00045{width:37.721022px;}
._10_c00045{width:38.815895px;}
._12_c00045{width:40.074852px;}
._13_c00045{width:41.174901px;}
._3_c00045{width:486.937980px;}
._8_c00045{width:574.674827px;}
._2_c00045{width:671.534780px;}
._6_c00045{width:1373.412051px;}
._5_c00045{width:1510.088396px;}
._4_c00045{width:1545.784632px;}
._7_c00045{width:1915.791734px;}
.fc1_c00045{color:rgb(105,148,45);}
.fc0_c00045{color:rgb(35,31,32);}
.fs4_c00045{font-size:44.887062px;}
.fs5_c00045{font-size:53.436999px;}
.fs2_c00045{font-size:59.136936px;}
.fs1_c00045{font-size:65.550574px;}
.fs0_c00045{font-size:71.249972px;}
.fs3_c00045{font-size:83.362767px;}
.y0_c00045{bottom:0.000000px;}
.y5_c00045{bottom:0.120938px;}
.y2_c00045{bottom:4.274906px;}
.y4_c00045{bottom:4.276256px;}
.ya_c00045{bottom:6.826644px;}
.yc_c00045{bottom:66.914977px;}
.y3_c00045{bottom:80.507160px;}
.y1_c00045{bottom:80.867160px;}
.y31_c00045{bottom:107.172410px;}
.y30_c00045{bottom:127.654452px;}
.y2f_c00045{bottom:146.712065px;}
.y2e_c00045{bottom:161.497379px;}
.y2d_c00045{bottom:176.281283px;}
.y2c_c00045{bottom:190.886777px;}
.y2b_c00045{bottom:206.026271px;}
.y2a_c00045{bottom:225.088263px;}
.y29_c00045{bottom:239.158258px;}
.y28_c00045{bottom:252.695752px;}
.y27_c00045{bottom:271.577745px;}
.y26_c00045{bottom:286.540239px;}
.y25_c00045{bottom:312.898378px;}
.y24_c00045{bottom:343.714216px;}
.y23_c00045{bottom:374.351404px;}
.y22_c00045{bottom:405.169341px;}
.y21_c00045{bottom:435.805179px;}
.y20_c00045{bottom:481.229661px;}
.y1f_c00045{bottom:505.276151px;}
.y1e_c00045{bottom:542.506136px;}
.y1d_c00045{bottom:568.508626px;}
.y1c_c00045{bottom:599.324464px;}
.y1b_c00045{bottom:630.317451px;}
.y1a_c00045{bottom:661.134039px;}
.y19_c00045{bottom:691.768527px;}
.y18_c00045{bottom:711.542569px;}
.y17_c00045{bottom:770.857045px;}
.y16_c00045{bottom:794.549385px;}
.y15_c00045{bottom:817.879776px;}
.y14_c00045{bottom:838.366018px;}
.y13_c00045{bottom:861.521509px;}
.y12_c00045{bottom:883.962550px;}
.y11_c00045{bottom:907.477890px;}
.y10_c00045{bottom:930.811131px;}
.yf_c00045{bottom:951.293173px;}
.ye_c00045{bottom:974.273464px;}
.yd_c00045{bottom:1035.192939px;}
.yb_c00045{bottom:1094.327416px;}
.y9_c00045{bottom:1125.436612px;}
.y8_c00045{bottom:1146.276554px;}
.y7_c00045{bottom:1166.762796px;}
.y6_c00045{bottom:1187.245588px;}
.h1_c00045{height:19.948320px;}
.h3_c00045{height:19.954620px;}
.hf_c00045{height:28.772607px;}
.h10_c00045{height:34.253116px;}
.h8_c00045{height:37.906776px;}
.h7_c00045{height:42.017918px;}
.he_c00045{height:45.671232px;}
.hc_c00045{height:58.798865px;}
.h9_c00045{height:58.929966px;}
.h2_c00045{height:63.768724px;}
.hb_c00045{height:63.839974px;}
.ha_c00045{height:63.911224px;}
.h5_c00045{height:64.053724px;}
.hd_c00045{height:74.776402px;}
.h6_c00045{height:1249.830756px;}
.h4_c00045{height:1262.879062px;}
.h0_c00045{height:1263.000000px;}
.wd_c00045{width:5.344200px;}
.w8_c00045{width:5.346000px;}
.w6_c00045{width:7.837200px;}
.w4_c00045{width:7.842600px;}
.w3_c00045{width:8.901000px;}
.w9_c00045{width:8.904600px;}
.w7_c00045{width:8.906400px;}
.w2_c00045{width:13.001400px;}
.wb_c00045{width:16.930800px;}
.w1_c00045{width:18.169380px;}
.w5_c00045{width:21.729600px;}
.wa_c00045{width:27.784800px;}
.wc_c00045{width:28.681200px;}
.wf_c00045{width:883.195846px;}
.we_c00045{width:892.414744px;}
.w0_c00045{width:892.500000px;}
.x0_c00045{left:0.000000px;}
.x14_c00045{left:1.541954px;}
.x15_c00045{left:112.753050px;}
.x18_c00045{left:126.289600px;}
.x1_c00045{left:128.544660px;}
.x16_c00045{left:131.278343px;}
.x11_c00045{left:252.504495px;}
.x10_c00045{left:270.140236px;}
.x19_c00045{left:360.164902px;}
.x13_c00045{left:373.451028px;}
.x1b_c00045{left:376.016895px;}
.x1a_c00045{left:404.339884px;}
.x12_c00045{left:420.296029px;}
.x2_c00045{left:566.197200px;}
.x3_c00045{left:579.198600px;}
.x4_c00045{left:588.099600px;}
.x5_c00045{left:595.942200px;}
.x6_c00045{left:617.671800px;}
.x7_c00045{left:625.509000px;}
.x8_c00045{left:634.415400px;}
.x9_c00045{left:639.403200px;}
.xa_c00045{left:651.873600px;}
.x17_c00045{left:657.454291px;}
.xb_c00045{left:683.751600px;}
.xc_c00045{left:698.895000px;}
.xd_c00045{left:706.732200px;}
.xe_c00045{left:735.413400px;}
.xf_c00045{left:740.757600px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws0_c00045{word-spacing:-15.833327pt;}
.ws1_c00045{word-spacing:0.000000pt;}
._14_c00045{margin-left:-2.961243pt;}
._15_c00045{margin-left:-1.984988pt;}
._1_c00045{margin-left:-0.912252pt;}
._0_c00045{width:0.938922pt;}
._16_c00045{width:2.544378pt;}
._d_c00045{width:4.399448pt;}
._17_c00045{width:5.332618pt;}
._18_c00045{width:6.875833pt;}
._19_c00045{width:7.821767pt;}
._b_c00045{width:10.590742pt;}
._c_c00045{width:11.827349pt;}
._a_c00045{width:14.305168pt;}
._9_c00045{width:17.212431pt;}
._f_c00045{width:21.321630pt;}
._e_c00045{width:22.557662pt;}
._11_c00045{width:33.529798pt;}
._10_c00045{width:34.503018pt;}
._12_c00045{width:35.622090pt;}
._13_c00045{width:36.599912pt;}
._3_c00045{width:432.833760pt;}
._8_c00045{width:510.822069pt;}
._2_c00045{width:596.919804pt;}
._6_c00045{width:1220.810712pt;}
._5_c00045{width:1342.300796pt;}
._4_c00045{width:1374.030784pt;}
._7_c00045{width:1702.925985pt;}
.fs4_c00045{font-size:39.899611pt;}
.fs5_c00045{font-size:47.499554pt;}
.fs2_c00045{font-size:52.566166pt;}
.fs1_c00045{font-size:58.267177pt;}
.fs0_c00045{font-size:63.333308pt;}
.fs3_c00045{font-size:74.100237pt;}
.y0_c00045{bottom:0.000000pt;}
.y5_c00045{bottom:0.107500pt;}
.y2_c00045{bottom:3.799916pt;}
.y4_c00045{bottom:3.801117pt;}
.ya_c00045{bottom:6.068128pt;}
.yc_c00045{bottom:59.479979pt;}
.y3_c00045{bottom:71.561920pt;}
.y1_c00045{bottom:71.881920pt;}
.y31_c00045{bottom:95.264365pt;}
.y30_c00045{bottom:113.470624pt;}
.y2f_c00045{bottom:130.410724pt;}
.y2e_c00045{bottom:143.553225pt;}
.y2d_c00045{bottom:156.694474pt;}
.y2c_c00045{bottom:169.677135pt;}
.y2b_c00045{bottom:183.134463pt;}
.y2a_c00045{bottom:200.078456pt;}
.y29_c00045{bottom:212.585118pt;}
.y28_c00045{bottom:224.618446pt;}
.y27_c00045{bottom:241.402440pt;}
.y26_c00045{bottom:254.702434pt;}
.y25_c00045{bottom:278.131892pt;}
.y24_c00045{bottom:305.523747pt;}
.y23_c00045{bottom:332.756803pt;}
.y22_c00045{bottom:360.150526pt;}
.y21_c00045{bottom:387.382381pt;}
.y20_c00045{bottom:427.759698pt;}
.y1f_c00045{bottom:449.134357pt;}
.y1e_c00045{bottom:482.227677pt;}
.y1d_c00045{bottom:505.341001pt;}
.y1c_c00045{bottom:532.732856pt;}
.y1b_c00045{bottom:560.282179pt;}
.y1a_c00045{bottom:587.674701pt;}
.y19_c00045{bottom:614.905357pt;}
.y18_c00045{bottom:632.482283pt;}
.y17_c00045{bottom:685.206262pt;}
.y16_c00045{bottom:706.266120pt;}
.y15_c00045{bottom:727.004245pt;}
.y14_c00045{bottom:745.214238pt;}
.y13_c00045{bottom:765.796897pt;}
.y12_c00045{bottom:785.744489pt;}
.y11_c00045{bottom:806.647014pt;}
.y10_c00045{bottom:827.387672pt;}
.yf_c00045{bottom:845.593931pt;}
.ye_c00045{bottom:866.020856pt;}
.yd_c00045{bottom:920.171502pt;}
.yb_c00045{bottom:972.735480pt;}
.y9_c00045{bottom:1000.388100pt;}
.y8_c00045{bottom:1018.912492pt;}
.y7_c00045{bottom:1037.122485pt;}
.y6_c00045{bottom:1055.329411pt;}
.h1_c00045{height:17.731840pt;}
.h3_c00045{height:17.737440pt;}
.hf_c00045{height:25.575650pt;}
.h10_c00045{height:30.447214pt;}
.h8_c00045{height:33.694912pt;}
.h7_c00045{height:37.349260pt;}
.he_c00045{height:40.596650pt;}
.hc_c00045{height:52.265657pt;}
.h9_c00045{height:52.382192pt;}
.h2_c00045{height:56.683311pt;}
.hb_c00045{height:56.746644pt;}
.ha_c00045{height:56.809977pt;}
.h5_c00045{height:56.936644pt;}
.hd_c00045{height:66.467913pt;}
.h6_c00045{height:1110.960672pt;}
.h4_c00045{height:1122.559167pt;}
.h0_c00045{height:1122.666667pt;}
.wd_c00045{width:4.750400pt;}
.w8_c00045{width:4.752000pt;}
.w6_c00045{width:6.966400pt;}
.w4_c00045{width:6.971200pt;}
.w3_c00045{width:7.912000pt;}
.w9_c00045{width:7.915200pt;}
.w7_c00045{width:7.916800pt;}
.w2_c00045{width:11.556800pt;}
.wb_c00045{width:15.049600pt;}
.w1_c00045{width:16.150560pt;}
.w5_c00045{width:19.315200pt;}
.wa_c00045{width:24.697600pt;}
.wc_c00045{width:25.494400pt;}
.wf_c00045{width:785.062974pt;}
.we_c00045{width:793.257550pt;}
.w0_c00045{width:793.333333pt;}
.x0_c00045{left:0.000000pt;}
.x14_c00045{left:1.370626pt;}
.x15_c00045{left:100.224934pt;}
.x18_c00045{left:112.257423pt;}
.x1_c00045{left:114.261920pt;}
.x16_c00045{left:116.691861pt;}
.x11_c00045{left:224.448440pt;}
.x10_c00045{left:240.124654pt;}
.x19_c00045{left:320.146579pt;}
.x13_c00045{left:331.956469pt;}
.x1b_c00045{left:334.237240pt;}
.x1a_c00045{left:359.413230pt;}
.x12_c00045{left:373.596470pt;}
.x2_c00045{left:503.286400pt;}
.x3_c00045{left:514.843200pt;}
.x4_c00045{left:522.755200pt;}
.x5_c00045{left:529.726400pt;}
.x6_c00045{left:549.041600pt;}
.x7_c00045{left:556.008000pt;}
.x8_c00045{left:563.924800pt;}
.x9_c00045{left:568.358400pt;}
.xa_c00045{left:579.443200pt;}
.x17_c00045{left:584.403814pt;}
.xb_c00045{left:607.779200pt;}
.xc_c00045{left:621.240000pt;}
.xd_c00045{left:628.206400pt;}
.xe_c00045{left:653.700800pt;}
.xf_c00045{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:1.112000;font-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_c00046{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00046{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00046{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls0_c00046{letter-spacing:0.000000px;}
.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:-17.812493px;}
.ws1_c00046{word-spacing:0.000000px;}
._3_c00046{margin-left:-3.753823px;}
._5_c00046{margin-left:-2.293744px;}
._4_c00046{margin-left:-1.203156px;}
._0_c00046{width:1.056287px;}
._2_c00046{width:3.295770px;}
._1_c00046{width:4.392597px;}
._9_c00046{width:7.017196px;}
._7_c00046{width:8.844457px;}
._8_c00046{width:10.922409px;}
._6_c00046{width:58.979415px;}
.fc1_c00046{color:rgb(105,148,45);}
.fc0_c00046{color:rgb(35,31,32);}
.fs4_c00046{font-size:35.624626px;}
.fs5_c00046{font-size:38.474625px;}
.fs3_c00046{font-size:47.737061px;}
.fs2_c00046{font-size:59.136936px;}
.fs1_c00046{font-size:65.550574px;}
.fs0_c00046{font-size:71.249972px;}
.y0_c00046{bottom:0.000000px;}
.y5_c00046{bottom:0.120938px;}
.y2_c00046{bottom:4.274906px;}
.y4_c00046{bottom:4.276256px;}
.ya_c00046{bottom:6.826644px;}
.yc_c00046{bottom:66.914977px;}
.y3_c00046{bottom:80.507160px;}
.y1_c00046{bottom:80.867160px;}
.y41_c00046{bottom:199.439923px;}
.y40_c00046{bottom:230.075761px;}
.y3f_c00046{bottom:248.245254px;}
.y3e_c00046{bottom:261.070249px;}
.y3d_c00046{bottom:278.881242px;}
.y3c_c00046{bottom:291.706237px;}
.y3b_c00046{bottom:309.692729px;}
.y3a_c00046{bottom:322.522224px;}
.y39_c00046{bottom:340.334717px;}
.y38_c00046{bottom:353.158212px;}
.y37_c00046{bottom:371.150705px;}
.y36_c00046{bottom:383.974200px;}
.y35_c00046{bottom:401.788193px;}
.y34_c00046{bottom:414.610187px;}
.y33_c00046{bottom:432.602680px;}
.y32_c00046{bottom:445.426175px;}
.y31_c00046{bottom:463.238668px;}
.y30_c00046{bottom:476.063663px;}
.y2f_c00046{bottom:494.056156px;}
.y2e_c00046{bottom:506.701151px;}
.y2d_c00046{bottom:524.692143px;}
.y2c_c00046{bottom:537.515638px;}
.y2b_c00046{bottom:558.535130px;}
.y2a_c00046{bottom:573.497624px;}
.y29_c00046{bottom:587.389118px;}
.y28_c00046{bottom:598.789114px;}
.y27_c00046{bottom:617.669876px;}
.y26_c00046{bottom:632.455190px;}
.y25_c00046{bottom:647.239094px;}
.y24_c00046{bottom:661.667589px;}
.y23_c00046{bottom:676.276683px;}
.y22_c00046{bottom:696.760075px;}
.y21_c00046{bottom:714.571067px;}
.y20_c00046{bottom:727.394562px;}
.y1f_c00046{bottom:745.385555px;}
.y1e_c00046{bottom:758.209050px;}
.y1d_c00046{bottom:776.023043px;}
.y1c_c00046{bottom:788.848038px;}
.y1b_c00046{bottom:806.837531px;}
.y1a_c00046{bottom:819.664025px;}
.y19_c00046{bottom:840.682107px;}
.y18_c00046{bottom:855.466011px;}
.y17_c00046{bottom:869.360506px;}
.y16_c00046{bottom:880.936001px;}
.y15_c00046{bottom:899.996493px;}
.y14_c00046{bottom:917.273666px;}
.y13_c00046{bottom:932.058980px;}
.y12_c00046{bottom:958.420870px;}
.y11_c00046{bottom:989.237458px;}
.y10_c00046{bottom:1008.294950px;}
.yf_c00046{bottom:1023.257444px;}
.ye_c00046{bottom:1037.505938px;}
.yd_c00046{bottom:1055.496931px;}
.yb_c00046{bottom:1094.327416px;}
.y9_c00046{bottom:1125.436612px;}
.y8_c00046{bottom:1146.276554px;}
.y7_c00046{bottom:1166.762796px;}
.y6_c00046{bottom:1187.245588px;}
.h1_c00046{height:19.948320px;}
.h3_c00046{height:19.954620px;}
.hc_c00046{height:22.835385px;}
.hd_c00046{height:24.662234px;}
.ha_c00046{height:30.599456px;}
.h8_c00046{height:37.906776px;}
.h7_c00046{height:42.017918px;}
.h2_c00046{height:63.768724px;}
.hb_c00046{height:63.839974px;}
.h9_c00046{height:63.911224px;}
.h5_c00046{height:64.053724px;}
.h6_c00046{height:1249.830756px;}
.h4_c00046{height:1262.879062px;}
.h0_c00046{height:1263.000000px;}
.wd_c00046{width:5.344200px;}
.w8_c00046{width:5.346000px;}
.w6_c00046{width:7.837200px;}
.w4_c00046{width:7.842600px;}
.w3_c00046{width:8.901000px;}
.w9_c00046{width:8.904600px;}
.w7_c00046{width:8.906400px;}
.w2_c00046{width:13.001400px;}
.wb_c00046{width:16.930800px;}
.w1_c00046{width:17.814240px;}
.w5_c00046{width:21.729600px;}
.wa_c00046{width:27.784800px;}
.wc_c00046{width:28.681200px;}
.wf_c00046{width:883.195846px;}
.we_c00046{width:892.414744px;}
.w0_c00046{width:892.500000px;}
.x0_c00046{left:0.000000px;}
.x14_c00046{left:1.541954px;}
.x15_c00046{left:112.753050px;}
.x17_c00046{left:126.292436px;}
.x1_c00046{left:128.544660px;}
.x18_c00046{left:153.008984px;}
.x16_c00046{left:178.837474px;}
.x11_c00046{left:252.504495px;}
.x10_c00046{left:270.140236px;}
.x13_c00046{left:373.451028px;}
.x12_c00046{left:420.296029px;}
.x2_c00046{left:566.197200px;}
.x3_c00046{left:579.198600px;}
.x4_c00046{left:588.099600px;}
.x5_c00046{left:595.942200px;}
.x6_c00046{left:617.671800px;}
.x7_c00046{left:625.509000px;}
.x8_c00046{left:634.415400px;}
.x9_c00046{left:639.403200px;}
.xa_c00046{left:651.873600px;}
.xb_c00046{left:683.751600px;}
.xc_c00046{left:698.895000px;}
.xd_c00046{left:706.732200px;}
.xe_c00046{left:735.413400px;}
.xf_c00046{left:740.757600px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:-15.833327pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._3_c00046{margin-left:-3.336732pt;}
._5_c00046{margin-left:-2.038884pt;}
._4_c00046{margin-left:-1.069472pt;}
._0_c00046{width:0.938922pt;}
._2_c00046{width:2.929574pt;}
._1_c00046{width:3.904530pt;}
._9_c00046{width:6.237507pt;}
._7_c00046{width:7.861739pt;}
._8_c00046{width:9.708808pt;}
._6_c00046{width:52.426146pt;}
.fs4_c00046{font-size:31.666334pt;}
.fs5_c00046{font-size:34.199666pt;}
.fs3_c00046{font-size:42.432943pt;}
.fs2_c00046{font-size:52.566166pt;}
.fs1_c00046{font-size:58.267177pt;}
.fs0_c00046{font-size:63.333308pt;}
.y0_c00046{bottom:0.000000pt;}
.y5_c00046{bottom:0.107500pt;}
.y2_c00046{bottom:3.799916pt;}
.y4_c00046{bottom:3.801117pt;}
.ya_c00046{bottom:6.068128pt;}
.yc_c00046{bottom:59.479979pt;}
.y3_c00046{bottom:71.561920pt;}
.y1_c00046{bottom:71.881920pt;}
.y41_c00046{bottom:177.279932pt;}
.y40_c00046{bottom:204.511788pt;}
.y3f_c00046{bottom:220.662448pt;}
.y3e_c00046{bottom:232.062443pt;}
.y3d_c00046{bottom:247.894437pt;}
.y3c_c00046{bottom:259.294433pt;}
.y3b_c00046{bottom:275.282426pt;}
.y3a_c00046{bottom:286.686422pt;}
.y39_c00046{bottom:302.519749pt;}
.y38_c00046{bottom:313.918411pt;}
.y37_c00046{bottom:329.911738pt;}
.y36_c00046{bottom:341.310400pt;}
.y35_c00046{bottom:357.145060pt;}
.y34_c00046{bottom:368.542389pt;}
.y33_c00046{bottom:384.535716pt;}
.y32_c00046{bottom:395.934378pt;}
.y31_c00046{bottom:411.767705pt;}
.y30_c00046{bottom:423.167700pt;}
.y2f_c00046{bottom:439.161027pt;}
.y2e_c00046{bottom:450.401023pt;}
.y2d_c00046{bottom:466.393016pt;}
.y2c_c00046{bottom:477.791678pt;}
.y2b_c00046{bottom:496.475671pt;}
.y2a_c00046{bottom:509.775666pt;}
.y29_c00046{bottom:522.123661pt;}
.y28_c00046{bottom:532.256990pt;}
.y27_c00046{bottom:549.039890pt;}
.y26_c00046{bottom:562.182391pt;}
.y25_c00046{bottom:575.323639pt;}
.y24_c00046{bottom:588.148968pt;}
.y23_c00046{bottom:601.134829pt;}
.y22_c00046{bottom:619.342289pt;}
.y21_c00046{bottom:635.174282pt;}
.y20_c00046{bottom:646.572944pt;}
.y1f_c00046{bottom:662.564938pt;}
.y1e_c00046{bottom:673.963600pt;}
.y1d_c00046{bottom:689.798260pt;}
.y1c_c00046{bottom:701.198256pt;}
.y1b_c00046{bottom:717.188916pt;}
.y1a_c00046{bottom:728.590245pt;}
.y19_c00046{bottom:747.272984pt;}
.y18_c00046{bottom:760.414232pt;}
.y17_c00046{bottom:772.764894pt;}
.y16_c00046{bottom:783.054223pt;}
.y15_c00046{bottom:799.996883pt;}
.y14_c00046{bottom:815.354370pt;}
.y13_c00046{bottom:828.496872pt;}
.y12_c00046{bottom:851.929662pt;}
.y11_c00046{bottom:879.322185pt;}
.y10_c00046{bottom:896.262178pt;}
.yf_c00046{bottom:909.562172pt;}
.ye_c00046{bottom:922.227501pt;}
.yd_c00046{bottom:938.219494pt;}
.yb_c00046{bottom:972.735480pt;}
.y9_c00046{bottom:1000.388100pt;}
.y8_c00046{bottom:1018.912492pt;}
.y7_c00046{bottom:1037.122485pt;}
.y6_c00046{bottom:1055.329411pt;}
.h1_c00046{height:17.731840pt;}
.h3_c00046{height:17.737440pt;}
.hc_c00046{height:20.298120pt;}
.hd_c00046{height:21.921986pt;}
.ha_c00046{height:27.199516pt;}
.h8_c00046{height:33.694912pt;}
.h7_c00046{height:37.349260pt;}
.h2_c00046{height:56.683311pt;}
.hb_c00046{height:56.746644pt;}
.h9_c00046{height:56.809977pt;}
.h5_c00046{height:56.936644pt;}
.h6_c00046{height:1110.960672pt;}
.h4_c00046{height:1122.559167pt;}
.h0_c00046{height:1122.666667pt;}
.wd_c00046{width:4.750400pt;}
.w8_c00046{width:4.752000pt;}
.w6_c00046{width:6.966400pt;}
.w4_c00046{width:6.971200pt;}
.w3_c00046{width:7.912000pt;}
.w9_c00046{width:7.915200pt;}
.w7_c00046{width:7.916800pt;}
.w2_c00046{width:11.556800pt;}
.wb_c00046{width:15.049600pt;}
.w1_c00046{width:15.834880pt;}
.w5_c00046{width:19.315200pt;}
.wa_c00046{width:24.697600pt;}
.wc_c00046{width:25.494400pt;}
.wf_c00046{width:785.062974pt;}
.we_c00046{width:793.257550pt;}
.w0_c00046{width:793.333333pt;}
.x0_c00046{left:0.000000pt;}
.x14_c00046{left:1.370626pt;}
.x15_c00046{left:100.224934pt;}
.x17_c00046{left:112.259943pt;}
.x1_c00046{left:114.261920pt;}
.x18_c00046{left:136.007986pt;}
.x16_c00046{left:158.966644pt;}
.x11_c00046{left:224.448440pt;}
.x10_c00046{left:240.124654pt;}
.x13_c00046{left:331.956469pt;}
.x12_c00046{left:373.596470pt;}
.x2_c00046{left:503.286400pt;}
.x3_c00046{left:514.843200pt;}
.x4_c00046{left:522.755200pt;}
.x5_c00046{left:529.726400pt;}
.x6_c00046{left:549.041600pt;}
.x7_c00046{left:556.008000pt;}
.x8_c00046{left:563.924800pt;}
.x9_c00046{left:568.358400pt;}
.xa_c00046{left:579.443200pt;}
.xb_c00046{left:607.779200pt;}
.xc_c00046{left:621.240000pt;}
.xd_c00046{left:628.206400pt;}
.xe_c00046{left:653.700800pt;}
.xf_c00046{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.115000;font-style:normal;font-weight:normal;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_146aa72089b387754902940f.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.113000;font-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_c00047{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls0_c00047{letter-spacing:0.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:-17.812493px;}
.ws1_c00047{word-spacing:0.000000px;}
._a_c00047{margin-left:-4.096757px;}
._c_c00047{margin-left:-2.511611px;}
._5_c00047{margin-left:-1.039917px;}
._0_c00047{width:1.056287px;}
._b_c00047{width:2.059609px;}
._9_c00047{width:3.174845px;}
._8_c00047{width:4.432875px;}
._2_c00047{width:6.181798px;}
._d_c00047{width:8.074509px;}
._7_c00047{width:9.527185px;}
._11_c00047{width:10.633819px;}
._6_c00047{width:11.679222px;}
._4_c00047{width:13.841931px;}
._3_c00047{width:15.825645px;}
._f_c00047{width:31.983852px;}
._10_c00047{width:34.046337px;}
._e_c00047{width:35.048510px;}
._1_c00047{width:58.979415px;}
.fc1_c00047{color:rgb(105,148,45);}
.fc0_c00047{color:rgb(35,31,32);}
.fs4_c00047{font-size:35.624626px;}
.fs3_c00047{font-size:38.474625px;}
.fs5_c00047{font-size:47.737061px;}
.fs2_c00047{font-size:59.136936px;}
.fs1_c00047{font-size:65.550574px;}
.fs0_c00047{font-size:71.249972px;}
.y0_c00047{bottom:0.000000px;}
.y5_c00047{bottom:0.120938px;}
.y2_c00047{bottom:4.274906px;}
.y4_c00047{bottom:4.276256px;}
.ya_c00047{bottom:6.826644px;}
.yc_c00047{bottom:66.914977px;}
.y3_c00047{bottom:80.507160px;}
.y1_c00047{bottom:80.867160px;}
.y35_c00047{bottom:252.338302px;}
.y34_c00047{bottom:283.154890px;}
.y33_c00047{bottom:313.790728px;}
.y32_c00047{bottom:333.385220px;}
.y31_c00047{bottom:349.240214px;}
.y30_c00047{bottom:375.602103px;}
.y2f_c00047{bottom:406.238691px;}
.y2e_c00047{bottom:424.405184px;}
.y2d_c00047{bottom:437.233178px;}
.y2c_c00047{bottom:458.250555px;}
.y2b_c00047{bottom:473.035164px;}
.y2a_c00047{bottom:486.926658px;}
.y29_c00047{bottom:498.506654px;}
.y28_c00047{bottom:517.208736px;}
.y27_c00047{bottom:532.171230px;}
.y26_c00047{bottom:546.955134px;}
.y25_c00047{bottom:561.386629px;}
.y24_c00047{bottom:575.813473px;}
.y23_c00047{bottom:606.808561px;}
.y22_c00047{bottom:637.445748px;}
.y21_c00047{bottom:668.438736px;}
.y20_c00047{bottom:699.074574px;}
.y1f_c00047{bottom:717.064066px;}
.y1e_c00047{bottom:729.890561px;}
.y1d_c00047{bottom:750.905643px;}
.y1c_c00047{bottom:765.869547px;}
.y1b_c00047{bottom:779.762541px;}
.y1a_c00047{bottom:791.164037px;}
.y19_c00047{bottom:810.403029px;}
.y18_c00047{bottom:827.679407px;}
.y17_c00047{bottom:842.644016px;}
.y16_c00047{bottom:869.001556px;}
.y15_c00047{bottom:899.816043px;}
.y14_c00047{bottom:930.455481px;}
.y13_c00047{bottom:948.444974px;}
.y12_c00047{bottom:961.269969px;}
.y11_c00047{bottom:979.262462px;}
.y10_c00047{bottom:991.908207px;}
.yf_c00047{bottom:1022.901194px;}
.ye_c00047{bottom:1053.537032px;}
.yd_c00047{bottom:1075.449923px;}
.yb_c00047{bottom:1094.327416px;}
.y9_c00047{bottom:1125.436612px;}
.y8_c00047{bottom:1146.276554px;}
.y7_c00047{bottom:1166.762796px;}
.y6_c00047{bottom:1187.245588px;}
.h1_c00047{height:19.948320px;}
.h3_c00047{height:19.954620px;}
.hd_c00047{height:22.835385px;}
.hb_c00047{height:24.662234px;}
.he_c00047{height:30.599456px;}
.h8_c00047{height:37.906776px;}
.h7_c00047{height:42.017918px;}
.h9_c00047{height:45.671232px;}
.h2_c00047{height:63.768724px;}
.ha_c00047{height:63.839974px;}
.hc_c00047{height:63.911224px;}
.h5_c00047{height:64.053724px;}
.h6_c00047{height:1249.830756px;}
.h4_c00047{height:1262.879062px;}
.h0_c00047{height:1263.000000px;}
.wd_c00047{width:5.344200px;}
.w8_c00047{width:5.346000px;}
.w6_c00047{width:7.837200px;}
.w4_c00047{width:7.842600px;}
.w3_c00047{width:8.901000px;}
.w9_c00047{width:8.904600px;}
.w7_c00047{width:8.906400px;}
.w2_c00047{width:13.001400px;}
.wb_c00047{width:16.930800px;}
.w1_c00047{width:17.814240px;}
.w5_c00047{width:21.729600px;}
.wa_c00047{width:27.784800px;}
.wc_c00047{width:28.681200px;}
.wf_c00047{width:883.195846px;}
.we_c00047{width:892.414744px;}
.w0_c00047{width:892.500000px;}
.x0_c00047{left:0.000000px;}
.x14_c00047{left:1.541954px;}
.x15_c00047{left:112.753050px;}
.x18_c00047{left:126.289645px;}
.x1_c00047{left:128.544660px;}
.x16_c00047{left:153.008297px;}
.x17_c00047{left:179.728299px;}
.x11_c00047{left:252.504495px;}
.x10_c00047{left:270.140236px;}
.x13_c00047{left:373.451028px;}
.x12_c00047{left:420.296029px;}
.x2_c00047{left:566.197200px;}
.x3_c00047{left:579.198600px;}
.x4_c00047{left:588.099600px;}
.x5_c00047{left:595.942200px;}
.x6_c00047{left:617.671800px;}
.x7_c00047{left:625.509000px;}
.x8_c00047{left:634.415400px;}
.x9_c00047{left:639.403200px;}
.xa_c00047{left:651.873600px;}
.xb_c00047{left:683.751600px;}
.xc_c00047{left:698.895000px;}
.xd_c00047{left:706.732200px;}
.xe_c00047{left:735.413400px;}
.xf_c00047{left:740.757600px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:-15.833327pt;}
.ws1_c00047{word-spacing:0.000000pt;}
._a_c00047{margin-left:-3.641562pt;}
._c_c00047{margin-left:-2.232543pt;}
._5_c00047{margin-left:-0.924371pt;}
._0_c00047{width:0.938922pt;}
._b_c00047{width:1.830763pt;}
._9_c00047{width:2.822084pt;}
._8_c00047{width:3.940334pt;}
._2_c00047{width:5.494932pt;}
._d_c00047{width:7.177341pt;}
._7_c00047{width:8.468609pt;}
._11_c00047{width:9.452283pt;}
._6_c00047{width:10.381530pt;}
._4_c00047{width:12.303939pt;}
._3_c00047{width:14.067240pt;}
._f_c00047{width:28.430091pt;}
._10_c00047{width:30.263411pt;}
._e_c00047{width:31.154231pt;}
._1_c00047{width:52.426146pt;}
.fs4_c00047{font-size:31.666334pt;}
.fs3_c00047{font-size:34.199666pt;}
.fs5_c00047{font-size:42.432943pt;}
.fs2_c00047{font-size:52.566166pt;}
.fs1_c00047{font-size:58.267177pt;}
.fs0_c00047{font-size:63.333308pt;}
.y0_c00047{bottom:0.000000pt;}
.y5_c00047{bottom:0.107500pt;}
.y2_c00047{bottom:3.799916pt;}
.y4_c00047{bottom:3.801117pt;}
.ya_c00047{bottom:6.068128pt;}
.yc_c00047{bottom:59.479979pt;}
.y3_c00047{bottom:71.561920pt;}
.y1_c00047{bottom:71.881920pt;}
.y35_c00047{bottom:224.300713pt;}
.y34_c00047{bottom:251.693236pt;}
.y33_c00047{bottom:278.925091pt;}
.y32_c00047{bottom:296.342418pt;}
.y31_c00047{bottom:310.435745pt;}
.y30_c00047{bottom:333.868536pt;}
.y2f_c00047{bottom:361.101058pt;}
.y2e_c00047{bottom:377.249052pt;}
.y2d_c00047{bottom:388.651714pt;}
.y2c_c00047{bottom:407.333827pt;}
.y2b_c00047{bottom:420.475701pt;}
.y2a_c00047{bottom:432.823696pt;}
.y29_c00047{bottom:443.117026pt;}
.y28_c00047{bottom:459.741099pt;}
.y27_c00047{bottom:473.041094pt;}
.y26_c00047{bottom:486.182342pt;}
.y25_c00047{bottom:499.010337pt;}
.y24_c00047{bottom:511.834198pt;}
.y23_c00047{bottom:539.385387pt;}
.y22_c00047{bottom:566.618443pt;}
.y21_c00047{bottom:594.167765pt;}
.y20_c00047{bottom:621.399621pt;}
.y1f_c00047{bottom:637.390281pt;}
.y1e_c00047{bottom:648.791610pt;}
.y1d_c00047{bottom:667.471683pt;}
.y1c_c00047{bottom:680.772931pt;}
.y1b_c00047{bottom:693.122259pt;}
.y1a_c00047{bottom:703.256922pt;}
.y19_c00047{bottom:720.358248pt;}
.y18_c00047{bottom:735.715029pt;}
.y17_c00047{bottom:749.016903pt;}
.y16_c00047{bottom:772.445827pt;}
.y15_c00047{bottom:799.836483pt;}
.y14_c00047{bottom:827.071539pt;}
.y13_c00047{bottom:843.062199pt;}
.y12_c00047{bottom:854.462194pt;}
.y11_c00047{bottom:870.455521pt;}
.y10_c00047{bottom:881.696184pt;}
.yf_c00047{bottom:909.245506pt;}
.ye_c00047{bottom:936.477362pt;}
.yd_c00047{bottom:955.955487pt;}
.yb_c00047{bottom:972.735480pt;}
.y9_c00047{bottom:1000.388100pt;}
.y8_c00047{bottom:1018.912492pt;}
.y7_c00047{bottom:1037.122485pt;}
.y6_c00047{bottom:1055.329411pt;}
.h1_c00047{height:17.731840pt;}
.h3_c00047{height:17.737440pt;}
.hd_c00047{height:20.298120pt;}
.hb_c00047{height:21.921986pt;}
.he_c00047{height:27.199516pt;}
.h8_c00047{height:33.694912pt;}
.h7_c00047{height:37.349260pt;}
.h9_c00047{height:40.596650pt;}
.h2_c00047{height:56.683311pt;}
.ha_c00047{height:56.746644pt;}
.hc_c00047{height:56.809977pt;}
.h5_c00047{height:56.936644pt;}
.h6_c00047{height:1110.960672pt;}
.h4_c00047{height:1122.559167pt;}
.h0_c00047{height:1122.666667pt;}
.wd_c00047{width:4.750400pt;}
.w8_c00047{width:4.752000pt;}
.w6_c00047{width:6.966400pt;}
.w4_c00047{width:6.971200pt;}
.w3_c00047{width:7.912000pt;}
.w9_c00047{width:7.915200pt;}
.w7_c00047{width:7.916800pt;}
.w2_c00047{width:11.556800pt;}
.wb_c00047{width:15.049600pt;}
.w1_c00047{width:15.834880pt;}
.w5_c00047{width:19.315200pt;}
.wa_c00047{width:24.697600pt;}
.wc_c00047{width:25.494400pt;}
.wf_c00047{width:785.062974pt;}
.we_c00047{width:793.257550pt;}
.w0_c00047{width:793.333333pt;}
.x0_c00047{left:0.000000pt;}
.x14_c00047{left:1.370626pt;}
.x15_c00047{left:100.224934pt;}
.x18_c00047{left:112.257462pt;}
.x1_c00047{left:114.261920pt;}
.x16_c00047{left:136.007375pt;}
.x17_c00047{left:159.758488pt;}
.x11_c00047{left:224.448440pt;}
.x10_c00047{left:240.124654pt;}
.x13_c00047{left:331.956469pt;}
.x12_c00047{left:373.596470pt;}
.x2_c00047{left:503.286400pt;}
.x3_c00047{left:514.843200pt;}
.x4_c00047{left:522.755200pt;}
.x5_c00047{left:529.726400pt;}
.x6_c00047{left:549.041600pt;}
.x7_c00047{left:556.008000pt;}
.x8_c00047{left:563.924800pt;}
.x9_c00047{left:568.358400pt;}
.xa_c00047{left:579.443200pt;}
.xb_c00047{left:607.779200pt;}
.xc_c00047{left:621.240000pt;}
.xd_c00047{left:628.206400pt;}
.xe_c00047{left:653.700800pt;}
.xf_c00047{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc2da18164633488f097dd11.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:0.000000px;}
.fc0_c00048{color:rgb(35,31,32);}
.fs0_c00048{font-size:106.873757px;}
.y0_c00048{bottom:0.000000px;}
.y1_c00048{bottom:0.120938px;}
.y2_c00048{bottom:561.678338px;}
.h2_c00048{height:95.865760px;}
.h1_c00048{height:1262.879062px;}
.h0_c00048{height:1263.000000px;}
.w1_c00048{width:892.414744px;}
.w0_c00048{width:892.500000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:108.404900px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:0.000000pt;}
.fs0_c00048{font-size:94.998895pt;}
.y0_c00048{bottom:0.000000pt;}
.y1_c00048{bottom:0.107500pt;}
.y2_c00048{bottom:499.269634pt;}
.h2_c00048{height:85.214009pt;}
.h1_c00048{height:1122.559167pt;}
.h0_c00048{height:1122.666667pt;}
.w1_c00048{width:793.257550pt;}
.w0_c00048{width:793.333333pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.111000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.115000;font-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_c00049{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:-17.812493px;}
.ws1_c00049{word-spacing:0.000000px;}
._2_c00049{margin-left:-4.458020px;}
._1_c00049{margin-left:-1.859390px;}
._0_c00049{width:1.056292px;}
._3_c00049{width:2.635472px;}
.fc1_c00049{color:rgb(35,31,32);}
.fc0_c00049{color:rgb(105,148,45);}
.fs3_c00049{font-size:35.624626px;}
.fs2_c00049{font-size:59.136936px;}
.fs1_c00049{font-size:65.550574px;}
.fs0_c00049{font-size:71.249972px;}
.y0_c00049{bottom:0.000000px;}
.y1_c00049{bottom:0.120938px;}
.y5_c00049{bottom:6.826644px;}
.y2e_c00049{bottom:140.121547px;}
.y2d_c00049{bottom:158.647125px;}
.y2c_c00049{bottom:173.435949px;}
.y2b_c00049{bottom:188.394933px;}
.y2a_c00049{bottom:203.180247px;}
.y29_c00049{bottom:217.965561px;}
.y28_c00049{bottom:232.923840px;}
.y27_c00049{bottom:247.711254px;}
.y26_c00049{bottom:262.493748px;}
.y25_c00049{bottom:277.456242px;}
.y24_c00049{bottom:313.967728px;}
.y23_c00049{bottom:354.936761px;}
.y22_c00049{bottom:395.905795px;}
.y21_c00049{bottom:436.872729px;}
.y20_c00049{bottom:477.841012px;}
.y1f_c00049{bottom:518.807196px;}
.y1e_c00049{bottom:559.777579px;}
.y1d_c00049{bottom:600.747963px;}
.y1c_c00049{bottom:641.714897px;}
.y1b_c00049{bottom:682.503180px;}
.y1a_c00049{bottom:723.474914px;}
.y19_c00049{bottom:764.441847px;}
.y18_c00049{bottom:805.410881px;}
.y17_c00049{bottom:825.360573px;}
.y16_c00049{bottom:844.598815px;}
.y15_c00049{bottom:864.550007px;}
.y14_c00049{bottom:883.787500px;}
.y13_c00049{bottom:883.789900px;}
.y12_c00049{bottom:903.917492px;}
.y10_c00049{bottom:923.151384px;}
.y11_c00049{bottom:923.153484px;}
.yf_c00049{bottom:943.100476px;}
.yd_c00049{bottom:962.339918px;}
.ye_c00049{bottom:962.340968px;}
.yc_c00049{bottom:982.292460px;}
.yb_c00049{bottom:1000.458953px;}
.ya_c00049{bottom:1014.174948px;}
.y9_c00049{bottom:1043.030436px;}
.y8_c00049{bottom:1062.624028px;}
.y7_c00049{bottom:1077.764422px;}
.y6_c00049{bottom:1094.327416px;}
.y4_c00049{bottom:1146.276554px;}
.y3_c00049{bottom:1166.762796px;}
.y2_c00049{bottom:1187.245588px;}
.h7_c00049{height:22.514763px;}
.h5_c00049{height:37.374544px;}
.h4_c00049{height:41.427963px;}
.h8_c00049{height:45.029982px;}
.h2_c00049{height:63.768724px;}
.h6_c00049{height:63.911224px;}
.h9_c00049{height:64.053724px;}
.h3_c00049{height:1249.830756px;}
.h1_c00049{height:1262.879062px;}
.h0_c00049{height:1263.000000px;}
.w2_c00049{width:883.195846px;}
.w1_c00049{width:892.414744px;}
.w0_c00049{width:892.500000px;}
.x0_c00049{left:0.000000px;}
.x4_c00049{left:1.541954px;}
.x5_c00049{left:112.753050px;}
.x7_c00049{left:123.439837px;}
.x2_c00049{left:252.502959px;}
.x1_c00049{left:267.821237px;}
.x6_c00049{left:332.734412px;}
.xa_c00049{left:397.750386px;}
.x3_c00049{left:420.295991px;}
.x8_c00049{left:440.320369px;}
.x9_c00049{left:467.215359px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:-15.833327pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._2_c00049{margin-left:-3.962684pt;}
._1_c00049{margin-left:-1.652791pt;}
._0_c00049{width:0.938926pt;}
._3_c00049{width:2.342641pt;}
.fs3_c00049{font-size:31.666334pt;}
.fs2_c00049{font-size:52.566166pt;}
.fs1_c00049{font-size:58.267177pt;}
.fs0_c00049{font-size:63.333308pt;}
.y0_c00049{bottom:0.000000pt;}
.y1_c00049{bottom:0.107500pt;}
.y5_c00049{bottom:6.068128pt;}
.y2e_c00049{bottom:124.552486pt;}
.y2d_c00049{bottom:141.019666pt;}
.y2c_c00049{bottom:154.165288pt;}
.y2b_c00049{bottom:167.462163pt;}
.y2a_c00049{bottom:180.604664pt;}
.y29_c00049{bottom:193.747165pt;}
.y28_c00049{bottom:207.043413pt;}
.y27_c00049{bottom:220.187781pt;}
.y26_c00049{bottom:233.327776pt;}
.y25_c00049{bottom:246.627771pt;}
.y24_c00049{bottom:279.082425pt;}
.y23_c00049{bottom:315.499343pt;}
.y22_c00049{bottom:351.916262pt;}
.y21_c00049{bottom:388.331314pt;}
.y20_c00049{bottom:424.747566pt;}
.y1f_c00049{bottom:461.161952pt;}
.y1e_c00049{bottom:497.580071pt;}
.y1d_c00049{bottom:533.998189pt;}
.y1c_c00049{bottom:570.413241pt;}
.y1b_c00049{bottom:606.669494pt;}
.y1a_c00049{bottom:643.088812pt;}
.y19_c00049{bottom:679.503864pt;}
.y18_c00049{bottom:715.920783pt;}
.y17_c00049{bottom:733.653843pt;}
.y16_c00049{bottom:750.754503pt;}
.y15_c00049{bottom:768.488896pt;}
.y14_c00049{bottom:785.588889pt;}
.y13_c00049{bottom:785.591022pt;}
.y12_c00049{bottom:803.482215pt;}
.y10_c00049{bottom:820.579008pt;}
.y11_c00049{bottom:820.580875pt;}
.yf_c00049{bottom:838.311534pt;}
.yd_c00049{bottom:855.413261pt;}
.ye_c00049{bottom:855.414194pt;}
.yc_c00049{bottom:873.148854pt;}
.yb_c00049{bottom:889.296847pt;}
.ya_c00049{bottom:901.488842pt;}
.y9_c00049{bottom:927.138165pt;}
.y8_c00049{bottom:944.554692pt;}
.y7_c00049{bottom:958.012820pt;}
.y6_c00049{bottom:972.735480pt;}
.y4_c00049{bottom:1018.912492pt;}
.y3_c00049{bottom:1037.122485pt;}
.y2_c00049{bottom:1055.329411pt;}
.h7_c00049{height:20.013123pt;}
.h5_c00049{height:33.221817pt;}
.h4_c00049{height:36.824856pt;}
.h8_c00049{height:40.026651pt;}
.h2_c00049{height:56.683311pt;}
.h6_c00049{height:56.809977pt;}
.h9_c00049{height:56.936644pt;}
.h3_c00049{height:1110.960672pt;}
.h1_c00049{height:1122.559167pt;}
.h0_c00049{height:1122.666667pt;}
.w2_c00049{width:785.062974pt;}
.w1_c00049{width:793.257550pt;}
.w0_c00049{width:793.333333pt;}
.x0_c00049{left:0.000000pt;}
.x4_c00049{left:1.370626pt;}
.x5_c00049{left:100.224934pt;}
.x7_c00049{left:109.724299pt;}
.x2_c00049{left:224.447074pt;}
.x1_c00049{left:238.063321pt;}
.x6_c00049{left:295.763922pt;}
.xa_c00049{left:353.555899pt;}
.x3_c00049{left:373.596437pt;}
.x8_c00049{left:391.395884pt;}
.x9_c00049{left:415.302541pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc2da18164633488f097dd11.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:0.000000px;}
._0_c00050{width:1.059036px;}
.fc0_c00050{color:rgb(35,31,32);}
.fs0_c00050{font-size:106.873757px;}
.y0_c00050{bottom:0.000000px;}
.y1_c00050{bottom:0.120938px;}
.y2_c00050{bottom:459.259879px;}
.h2_c00050{height:95.865760px;}
.h1_c00050{height:1262.879062px;}
.h0_c00050{height:1263.000000px;}
.w1_c00050{width:892.414744px;}
.w0_c00050{width:892.500000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:108.404900px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
._0_c00050{width:0.941366pt;}
.fs0_c00050{font-size:94.998895pt;}
.y0_c00050{bottom:0.000000pt;}
.y1_c00050{bottom:0.107500pt;}
.y2_c00050{bottom:408.231003pt;}
.h2_c00050{height:85.214009pt;}
.h1_c00050{height:1122.559167pt;}
.h0_c00050{height:1122.666667pt;}
.w1_c00050{width:793.257550pt;}
.w0_c00050{width:793.333333pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.113000;font-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_c00051{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00051{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00051{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00051{word-spacing:0.000000px;}
.ws0_c00051{word-spacing:2255.857706px;}
._4_c00051{margin-left:-15.008463px;}
._3_c00051{margin-left:-12.008123px;}
._5_c00051{margin-left:-10.066730px;}
._6_c00051{margin-left:-4.440667px;}
._2_c00051{margin-left:-3.358298px;}
._0_c00051{margin-left:-1.339390px;}
._1_c00051{width:1.056287px;}
.fc1_c00051{color:rgb(105,148,45);}
.fc0_c00051{color:rgb(35,31,32);}
.fs2_c00051{font-size:17.812373px;}
.fs3_c00051{font-size:59.136936px;}
.fs0_c00051{font-size:65.550574px;}
.fs1_c00051{font-size:71.249972px;}
.fs5_c00051{font-size:76.949969px;}
.fs4_c00051{font-size:83.362767px;}
.y0_c00051{bottom:0.000000px;}
.y1_c00051{bottom:0.120938px;}
.y8_c00051{bottom:6.826644px;}
.ya_c00051{bottom:65.133277px;}
.y3_c00051{bottom:83.062176px;}
.y2_c00051{bottom:84.131629px;}
.y2c_c00051{bottom:90.069807px;}
.y2b_c00051{bottom:104.853711px;}
.y2a_c00051{bottom:138.162848px;}
.y29_c00051{bottom:173.966034px;}
.y28_c00051{bottom:209.590569px;}
.y27_c00051{bottom:245.215105px;}
.y26_c00051{bottom:281.016791px;}
.y25_c00051{bottom:316.642677px;}
.y24_c00051{bottom:352.267212px;}
.y23_c00051{bottom:388.073098px;}
.y22_c00051{bottom:423.694784px;}
.y21_c00051{bottom:459.319320px;}
.y20_c00051{bottom:495.121005px;}
.y1f_c00051{bottom:530.746891px;}
.y1e_c00051{bottom:566.370077px;}
.y1d_c00051{bottom:602.174612px;}
.y1c_c00051{bottom:619.274606px;}
.y1b_c00051{bottom:635.129599px;}
.y1a_c00051{bottom:654.362592px;}
.y19_c00051{bottom:692.482076px;}
.y18_c00051{bottom:721.692165px;}
.y17_c00051{bottom:749.303104px;}
.y16_c00051{bottom:777.093442px;}
.y15_c00051{bottom:804.700181px;}
.y14_c00051{bottom:832.307670px;}
.y13_c00051{bottom:860.095909px;}
.y12_c00051{bottom:887.703398px;}
.y11_c00051{bottom:915.492987px;}
.y10_c00051{bottom:953.613672px;}
.yf_c00051{bottom:993.333956px;}
.ye_c00051{bottom:1023.257444px;}
.yd_c00051{bottom:1047.480784px;}
.yc_c00051{bottom:1062.441868px;}
.yb_c00051{bottom:1077.227872px;}
.y9_c00051{bottom:1106.088911px;}
.y7_c00051{bottom:1125.436612px;}
.y6_c00051{bottom:1146.276554px;}
.y5_c00051{bottom:1166.762796px;}
.y4_c00051{bottom:1187.245588px;}
.h6_c00051{height:11.257420px;}
.h7_c00051{height:37.374544px;}
.ha_c00051{height:48.632381px;}
.h2_c00051{height:58.667764px;}
.h9_c00051{height:58.929966px;}
.h3_c00051{height:63.768724px;}
.h4_c00051{height:64.053724px;}
.h8_c00051{height:74.943127px;}
.h5_c00051{height:1249.830756px;}
.h1_c00051{height:1262.879062px;}
.h0_c00051{height:1263.000000px;}
.w2_c00051{width:883.195846px;}
.w1_c00051{width:892.414744px;}
.w0_c00051{width:892.500000px;}
.x0_c00051{left:0.000000px;}
.x7_c00051{left:1.541954px;}
.x8_c00051{left:112.753050px;}
.x2_c00051{left:126.216284px;}
.xa_c00051{left:127.537645px;}
.x4_c00051{left:252.504495px;}
.x3_c00051{left:270.140236px;}
.x6_c00051{left:326.959815px;}
.x9_c00051{left:405.407883px;}
.x5_c00051{left:420.296029px;}
.x1_c00051{left:510.074140px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws1_c00051{word-spacing:0.000000pt;}
.ws0_c00051{word-spacing:2005.206850pt;}
._4_c00051{margin-left:-13.340856pt;}
._3_c00051{margin-left:-10.673887pt;}
._5_c00051{margin-left:-8.948204pt;}
._6_c00051{margin-left:-3.947260pt;}
._2_c00051{margin-left:-2.985154pt;}
._0_c00051{margin-left:-1.190569pt;}
._1_c00051{width:0.938922pt;}
.fs2_c00051{font-size:15.833220pt;}
.fs3_c00051{font-size:52.566166pt;}
.fs0_c00051{font-size:58.267177pt;}
.fs1_c00051{font-size:63.333308pt;}
.fs5_c00051{font-size:68.399973pt;}
.fs4_c00051{font-size:74.100237pt;}
.y0_c00051{bottom:0.000000pt;}
.y1_c00051{bottom:0.107500pt;}
.y8_c00051{bottom:6.068128pt;}
.ya_c00051{bottom:57.896246pt;}
.y3_c00051{bottom:73.833045pt;}
.y2_c00051{bottom:74.783670pt;}
.y2c_c00051{bottom:80.062051pt;}
.y2b_c00051{bottom:93.203299pt;}
.y2a_c00051{bottom:122.811420pt;}
.y29_c00051{bottom:154.636474pt;}
.y28_c00051{bottom:186.302728pt;}
.y27_c00051{bottom:217.968982pt;}
.y26_c00051{bottom:249.792703pt;}
.y25_c00051{bottom:281.460157pt;}
.y24_c00051{bottom:313.126411pt;}
.y23_c00051{bottom:344.953865pt;}
.y22_c00051{bottom:376.617586pt;}
.y21_c00051{bottom:408.283840pt;}
.y20_c00051{bottom:440.107560pt;}
.y1f_c00051{bottom:471.775014pt;}
.y1e_c00051{bottom:503.440068pt;}
.y1d_c00051{bottom:535.266322pt;}
.y1c_c00051{bottom:550.466316pt;}
.y1b_c00051{bottom:564.559644pt;}
.y1a_c00051{bottom:581.655637pt;}
.y19_c00051{bottom:615.539623pt;}
.y18_c00051{bottom:641.504146pt;}
.y17_c00051{bottom:666.047203pt;}
.y16_c00051{bottom:690.749727pt;}
.y15_c00051{bottom:715.289050pt;}
.y14_c00051{bottom:739.829040pt;}
.y13_c00051{bottom:764.529697pt;}
.y12_c00051{bottom:789.069687pt;}
.y11_c00051{bottom:813.771544pt;}
.y10_c00051{bottom:847.656597pt;}
.yf_c00051{bottom:882.963516pt;}
.ye_c00051{bottom:909.562172pt;}
.yd_c00051{bottom:931.094030pt;}
.yc_c00051{bottom:944.392772pt;}
.yb_c00051{bottom:957.535887pt;}
.y9_c00051{bottom:983.190143pt;}
.y7_c00051{bottom:1000.388100pt;}
.y6_c00051{bottom:1018.912492pt;}
.y5_c00051{bottom:1037.122485pt;}
.y4_c00051{bottom:1055.329411pt;}
.h6_c00051{height:10.006595pt;}
.h7_c00051{height:33.221817pt;}
.ha_c00051{height:43.228783pt;}
.h2_c00051{height:52.149123pt;}
.h9_c00051{height:52.382192pt;}
.h3_c00051{height:56.683311pt;}
.h4_c00051{height:56.936644pt;}
.h8_c00051{height:66.616113pt;}
.h5_c00051{height:1110.960672pt;}
.h1_c00051{height:1122.559167pt;}
.h0_c00051{height:1122.666667pt;}
.w2_c00051{width:785.062974pt;}
.w1_c00051{width:793.257550pt;}
.w0_c00051{width:793.333333pt;}
.x0_c00051{left:0.000000pt;}
.x7_c00051{left:1.370626pt;}
.x8_c00051{left:100.224934pt;}
.x2_c00051{left:112.192252pt;}
.xa_c00051{left:113.366795pt;}
.x4_c00051{left:224.448440pt;}
.x3_c00051{left:240.124654pt;}
.x6_c00051{left:290.630946pt;}
.x9_c00051{left:360.362563pt;}
.x5_c00051{left:373.596470pt;}
.x1_c00051{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00052;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00052{font-family:ff5_c00052;line-height:1.112000;font-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_c00052{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls0_c00052{letter-spacing:0.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:0.000000px;}
._4_c00052{margin-left:-3.766176px;}
._14_c00052{margin-left:-2.736095px;}
._0_c00052{margin-left:-1.339390px;}
._1_c00052{width:1.056287px;}
._6_c00052{width:2.426889px;}
._5_c00052{width:4.111885px;}
._b_c00052{width:5.810037px;}
._c_c00052{width:7.074422px;}
._8_c00052{width:8.564178px;}
._9_c00052{width:10.409591px;}
._15_c00052{width:11.444498px;}
._a_c00052{width:12.733274px;}
._2_c00052{width:14.998246px;}
._3_c00052{width:16.021207px;}
._7_c00052{width:18.917951px;}
._13_c00052{width:20.515564px;}
._d_c00052{width:21.881712px;}
._e_c00052{width:23.581928px;}
._12_c00052{width:29.132656px;}
._10_c00052{width:31.144194px;}
._f_c00052{width:32.776582px;}
._11_c00052{width:34.113412px;}
.fc1_c00052{color:rgb(105,148,45);}
.fc0_c00052{color:rgb(35,31,32);}
.fs2_c00052{font-size:17.812373px;}
.fs4_c00052{font-size:47.737061px;}
.fs3_c00052{font-size:59.136936px;}
.fs0_c00052{font-size:65.550574px;}
.fs1_c00052{font-size:71.249972px;}
.y0_c00052{bottom:0.000000px;}
.y1_c00052{bottom:0.120938px;}
.y8_c00052{bottom:6.826644px;}
.ya_c00052{bottom:65.133277px;}
.y3_c00052{bottom:83.062176px;}
.y2_c00052{bottom:84.131629px;}
.y29_c00052{bottom:358.500610px;}
.y28_c00052{bottom:389.137198px;}
.y27_c00052{bottom:408.194390px;}
.y26_c00052{bottom:424.582183px;}
.y25_c00052{bottom:450.947223px;}
.y24_c00052{bottom:481.763061px;}
.y23_c00052{bottom:512.399648px;}
.y22_c00052{bottom:531.455491px;}
.y21_c00052{bottom:547.844634px;}
.y20_c00052{bottom:574.212524px;}
.y1f_c00052{bottom:605.027011px;}
.y1e_c00052{bottom:635.663599px;}
.y1d_c00052{bottom:654.719441px;}
.y1c_c00052{bottom:671.108585px;}
.y1b_c00052{bottom:697.467924px;}
.y1a_c00052{bottom:728.105112px;}
.y19_c00052{bottom:758.743050px;}
.y18_c00052{bottom:789.380238px;}
.y17_c00052{bottom:820.016075px;}
.y16_c00052{bottom:850.654013px;}
.y15_c00052{bottom:869.894505px;}
.y14_c00052{bottom:885.926499px;}
.y13_c00052{bottom:912.283288px;}
.y12_c00052{bottom:943.100476px;}
.y11_c00052{bottom:962.161058px;}
.y10_c00052{bottom:977.124962px;}
.yf_c00052{bottom:991.371957px;}
.ye_c00052{bottom:1009.365950px;}
.yd_c00052{bottom:1046.411975px;}
.yc_c00052{bottom:1062.441868px;}
.yb_c00052{bottom:1077.227872px;}
.y9_c00052{bottom:1106.088911px;}
.y7_c00052{bottom:1125.436612px;}
.y6_c00052{bottom:1146.276554px;}
.y5_c00052{bottom:1166.762796px;}
.y4_c00052{bottom:1187.245588px;}
.h6_c00052{height:11.257420px;}
.h9_c00052{height:30.169822px;}
.h7_c00052{height:37.374544px;}
.h2_c00052{height:58.667764px;}
.h3_c00052{height:63.768724px;}
.ha_c00052{height:63.839974px;}
.h8_c00052{height:63.911224px;}
.h4_c00052{height:64.053724px;}
.h5_c00052{height:1249.830756px;}
.h1_c00052{height:1262.879062px;}
.h0_c00052{height:1263.000000px;}
.w2_c00052{width:883.195846px;}
.w1_c00052{width:892.414744px;}
.w0_c00052{width:892.500000px;}
.x0_c00052{left:0.000000px;}
.x7_c00052{left:1.541954px;}
.x8_c00052{left:112.753050px;}
.x2_c00052{left:126.216284px;}
.x9_c00052{left:178.837474px;}
.x4_c00052{left:252.504495px;}
.x3_c00052{left:270.140236px;}
.x6_c00052{left:326.959815px;}
.x5_c00052{left:420.296029px;}
.x1_c00052{left:510.074140px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws0_c00052{word-spacing:0.000000pt;}
._4_c00052{margin-left:-3.347712pt;}
._14_c00052{margin-left:-2.432085pt;}
._0_c00052{margin-left:-1.190569pt;}
._1_c00052{width:0.938922pt;}
._6_c00052{width:2.157235pt;}
._5_c00052{width:3.655009pt;}
._b_c00052{width:5.164477pt;}
._c_c00052{width:6.288375pt;}
._8_c00052{width:7.612603pt;}
._9_c00052{width:9.252970pt;}
._15_c00052{width:10.172887pt;}
._a_c00052{width:11.318465pt;}
._2_c00052{width:13.331775pt;}
._3_c00052{width:14.241073pt;}
._7_c00052{width:16.815956pt;}
._13_c00052{width:18.236057pt;}
._d_c00052{width:19.450411pt;}
._e_c00052{width:20.961714pt;}
._12_c00052{width:25.895694pt;}
._10_c00052{width:27.683728pt;}
._f_c00052{width:29.134739pt;}
._11_c00052{width:30.323033pt;}
.fs2_c00052{font-size:15.833220pt;}
.fs4_c00052{font-size:42.432943pt;}
.fs3_c00052{font-size:52.566166pt;}
.fs0_c00052{font-size:58.267177pt;}
.fs1_c00052{font-size:63.333308pt;}
.y0_c00052{bottom:0.000000pt;}
.y1_c00052{bottom:0.107500pt;}
.y8_c00052{bottom:6.068128pt;}
.ya_c00052{bottom:57.896246pt;}
.y3_c00052{bottom:73.833045pt;}
.y2_c00052{bottom:74.783670pt;}
.y29_c00052{bottom:318.667209pt;}
.y28_c00052{bottom:345.899731pt;}
.y27_c00052{bottom:362.839458pt;}
.y26_c00052{bottom:377.406385pt;}
.y25_c00052{bottom:400.841976pt;}
.y24_c00052{bottom:428.233832pt;}
.y23_c00052{bottom:455.466354pt;}
.y22_c00052{bottom:472.404881pt;}
.y21_c00052{bottom:486.973008pt;}
.y20_c00052{bottom:510.411132pt;}
.y1f_c00052{bottom:537.801788pt;}
.y1e_c00052{bottom:565.034310pt;}
.y1d_c00052{bottom:581.972837pt;}
.y1c_c00052{bottom:596.540964pt;}
.y1b_c00052{bottom:619.971488pt;}
.y1a_c00052{bottom:647.204544pt;}
.y19_c00052{bottom:674.438266pt;}
.y18_c00052{bottom:701.671322pt;}
.y17_c00052{bottom:728.903178pt;}
.y16_c00052{bottom:756.136900pt;}
.y15_c00052{bottom:773.239560pt;}
.y14_c00052{bottom:787.490221pt;}
.y13_c00052{bottom:810.918479pt;}
.y12_c00052{bottom:838.311534pt;}
.y11_c00052{bottom:855.254274pt;}
.y10_c00052{bottom:868.555522pt;}
.yf_c00052{bottom:881.219517pt;}
.ye_c00052{bottom:897.214177pt;}
.yd_c00052{bottom:930.143978pt;}
.yc_c00052{bottom:944.392772pt;}
.yb_c00052{bottom:957.535887pt;}
.y9_c00052{bottom:983.190143pt;}
.y7_c00052{bottom:1000.388100pt;}
.y6_c00052{bottom:1018.912492pt;}
.y5_c00052{bottom:1037.122485pt;}
.y4_c00052{bottom:1055.329411pt;}
.h6_c00052{height:10.006595pt;}
.h9_c00052{height:26.817620pt;}
.h7_c00052{height:33.221817pt;}
.h2_c00052{height:52.149123pt;}
.h3_c00052{height:56.683311pt;}
.ha_c00052{height:56.746644pt;}
.h8_c00052{height:56.809977pt;}
.h4_c00052{height:56.936644pt;}
.h5_c00052{height:1110.960672pt;}
.h1_c00052{height:1122.559167pt;}
.h0_c00052{height:1122.666667pt;}
.w2_c00052{width:785.062974pt;}
.w1_c00052{width:793.257550pt;}
.w0_c00052{width:793.333333pt;}
.x0_c00052{left:0.000000pt;}
.x7_c00052{left:1.370626pt;}
.x8_c00052{left:100.224934pt;}
.x2_c00052{left:112.192252pt;}
.x9_c00052{left:158.966644pt;}
.x4_c00052{left:224.448440pt;}
.x3_c00052{left:240.124654pt;}
.x6_c00052{left:290.630946pt;}
.x5_c00052{left:373.596470pt;}
.x1_c00052{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00053;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;line-height:1.112000;font-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_c00053{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:0.000000px;}
._13_c00053{margin-left:-4.460840px;}
._f_c00053{margin-left:-3.005824px;}
._0_c00053{margin-left:-1.339390px;}
._1_c00053{width:1.056812px;}
._8_c00053{width:2.254453px;}
._2_c00053{width:3.679729px;}
._3_c00053{width:5.003983px;}
._6_c00053{width:6.221643px;}
._7_c00053{width:7.730142px;}
._a_c00053{width:8.783620px;}
._b_c00053{width:9.833164px;}
._9_c00053{width:11.020563px;}
._4_c00053{width:12.533547px;}
._5_c00053{width:13.575247px;}
._d_c00053{width:14.594522px;}
._c_c00053{width:16.263267px;}
._e_c00053{width:24.866758px;}
._12_c00053{width:26.289971px;}
._10_c00053{width:28.170390px;}
._11_c00053{width:29.872761px;}
.fc1_c00053{color:rgb(105,148,45);}
.fc0_c00053{color:rgb(35,31,32);}
.fs2_c00053{font-size:17.812373px;}
.fs4_c00053{font-size:41.324503px;}
.fs3_c00053{font-size:59.136936px;}
.fs0_c00053{font-size:65.550574px;}
.fs1_c00053{font-size:71.249972px;}
.y0_c00053{bottom:0.000000px;}
.y1_c00053{bottom:0.120938px;}
.y8_c00053{bottom:6.826644px;}
.ya_c00053{bottom:65.133277px;}
.y3_c00053{bottom:83.062176px;}
.y2_c00053{bottom:84.131629px;}
.y26_c00053{bottom:273.361094px;}
.y25_c00053{bottom:303.997682px;}
.y24_c00053{bottom:334.633519px;}
.y23_c00053{bottom:365.272207px;}
.y22_c00053{bottom:395.908795px;}
.y21_c00053{bottom:426.544633px;}
.y20_c00053{bottom:457.180470px;}
.y1f_c00053{bottom:487.821258px;}
.y1e_c00053{bottom:518.457096px;}
.y1d_c00053{bottom:549.095034px;}
.y1c_c00053{bottom:579.730871px;}
.y1b_c00053{bottom:610.368809px;}
.y1a_c00053{bottom:641.004647px;}
.y19_c00053{bottom:671.646785px;}
.y18_c00053{bottom:702.279772px;}
.y17_c00053{bottom:732.918460px;}
.y16_c00053{bottom:763.556398px;}
.y15_c00053{bottom:794.192236px;}
.y14_c00053{bottom:824.828073px;}
.y13_c00053{bottom:855.467511px;}
.y12_c00053{bottom:886.103349px;}
.y11_c00053{bottom:916.741287px;}
.y10_c00053{bottom:947.378474px;}
.yf_c00053{bottom:966.437467px;}
.ye_c00053{bottom:980.508961px;}
.yd_c00053{bottom:997.430454px;}
.yc_c00053{bottom:1034.483439px;}
.yb_c00053{bottom:1054.962931px;}
.y9_c00053{bottom:1106.088911px;}
.y7_c00053{bottom:1125.436612px;}
.y6_c00053{bottom:1146.276554px;}
.y5_c00053{bottom:1166.762796px;}
.y4_c00053{bottom:1187.245588px;}
.h6_c00053{height:11.257420px;}
.h9_c00053{height:26.117086px;}
.h7_c00053{height:37.374544px;}
.h2_c00053{height:58.667764px;}
.h3_c00053{height:63.768724px;}
.ha_c00053{height:63.839974px;}
.h8_c00053{height:63.911224px;}
.h4_c00053{height:64.053724px;}
.h5_c00053{height:1249.830756px;}
.h1_c00053{height:1262.879062px;}
.h0_c00053{height:1263.000000px;}
.w2_c00053{width:883.195846px;}
.w1_c00053{width:892.414744px;}
.w0_c00053{width:892.500000px;}
.x0_c00053{left:0.000000px;}
.x7_c00053{left:1.541954px;}
.x8_c00053{left:109.903352px;}
.xa_c00053{left:123.442437px;}
.x2_c00053{left:126.216284px;}
.x9_c00053{left:175.987475px;}
.x4_c00053{left:249.654346px;}
.x3_c00053{left:267.288737px;}
.x6_c00053{left:324.108016px;}
.x5_c00053{left:417.442881px;}
.x1_c00053{left:510.074140px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
._13_c00053{margin-left:-3.965191pt;}
._f_c00053{margin-left:-2.671843pt;}
._0_c00053{margin-left:-1.190569pt;}
._1_c00053{width:0.939388pt;}
._8_c00053{width:2.003958pt;}
._2_c00053{width:3.270870pt;}
._3_c00053{width:4.447985pt;}
._6_c00053{width:5.530349pt;}
._7_c00053{width:6.871237pt;}
._a_c00053{width:7.807662pt;}
._b_c00053{width:8.740590pt;}
._9_c00053{width:9.796056pt;}
._4_c00053{width:11.140931pt;}
._5_c00053{width:12.066886pt;}
._d_c00053{width:12.972909pt;}
._c_c00053{width:14.456237pt;}
._e_c00053{width:22.103785pt;}
._12_c00053{width:23.368863pt;}
._10_c00053{width:25.040347pt;}
._11_c00053{width:26.553566pt;}
.fs2_c00053{font-size:15.833220pt;}
.fs4_c00053{font-size:36.732892pt;}
.fs3_c00053{font-size:52.566166pt;}
.fs0_c00053{font-size:58.267177pt;}
.fs1_c00053{font-size:63.333308pt;}
.y0_c00053{bottom:0.000000pt;}
.y1_c00053{bottom:0.107500pt;}
.y8_c00053{bottom:6.068128pt;}
.ya_c00053{bottom:57.896246pt;}
.y3_c00053{bottom:73.833045pt;}
.y2_c00053{bottom:74.783670pt;}
.y26_c00053{bottom:242.987639pt;}
.y25_c00053{bottom:270.220161pt;}
.y24_c00053{bottom:297.452017pt;}
.y23_c00053{bottom:324.686406pt;}
.y22_c00053{bottom:351.918929pt;}
.y21_c00053{bottom:379.150785pt;}
.y20_c00053{bottom:406.382640pt;}
.y1f_c00053{bottom:433.618896pt;}
.y1e_c00053{bottom:460.850752pt;}
.y1d_c00053{bottom:488.084474pt;}
.y1c_c00053{bottom:515.316330pt;}
.y1b_c00053{bottom:542.550053pt;}
.y1a_c00053{bottom:569.781908pt;}
.y19_c00053{bottom:597.019364pt;}
.y18_c00053{bottom:624.248687pt;}
.y17_c00053{bottom:651.483076pt;}
.y16_c00053{bottom:678.716798pt;}
.y15_c00053{bottom:705.948654pt;}
.y14_c00053{bottom:733.180510pt;}
.y13_c00053{bottom:760.415565pt;}
.y12_c00053{bottom:787.647421pt;}
.y11_c00053{bottom:814.881144pt;}
.y10_c00053{bottom:842.114199pt;}
.yf_c00053{bottom:859.055526pt;}
.ye_c00053{bottom:871.563521pt;}
.yd_c00053{bottom:886.604848pt;}
.yc_c00053{bottom:919.540835pt;}
.yb_c00053{bottom:937.744828pt;}
.y9_c00053{bottom:983.190143pt;}
.y7_c00053{bottom:1000.388100pt;}
.y6_c00053{bottom:1018.912492pt;}
.y5_c00053{bottom:1037.122485pt;}
.y4_c00053{bottom:1055.329411pt;}
.h6_c00053{height:10.006595pt;}
.h9_c00053{height:23.215188pt;}
.h7_c00053{height:33.221817pt;}
.h2_c00053{height:52.149123pt;}
.h3_c00053{height:56.683311pt;}
.ha_c00053{height:56.746644pt;}
.h8_c00053{height:56.809977pt;}
.h4_c00053{height:56.936644pt;}
.h5_c00053{height:1110.960672pt;}
.h1_c00053{height:1122.559167pt;}
.h0_c00053{height:1122.666667pt;}
.w2_c00053{width:785.062974pt;}
.w1_c00053{width:793.257550pt;}
.w0_c00053{width:793.333333pt;}
.x0_c00053{left:0.000000pt;}
.x7_c00053{left:1.370626pt;}
.x8_c00053{left:97.691868pt;}
.xa_c00053{left:109.726611pt;}
.x2_c00053{left:112.192252pt;}
.x9_c00053{left:156.433311pt;}
.x4_c00053{left:221.914974pt;}
.x3_c00053{left:237.589988pt;}
.x6_c00053{left:288.096014pt;}
.x5_c00053{left:371.060339pt;}
.x1_c00053{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.112000;font-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_c00054{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls0_c00054{letter-spacing:0.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:0.000000px;}
._b_c00054{margin-left:-2.583425px;}
._0_c00054{margin-left:-1.339390px;}
._1_c00054{width:1.056812px;}
._9_c00054{width:2.123015px;}
._a_c00054{width:3.670818px;}
._4_c00054{width:6.179418px;}
._3_c00054{width:7.660545px;}
._2_c00054{width:8.670169px;}
._8_c00054{width:13.314078px;}
._7_c00054{width:14.482440px;}
._5_c00054{width:22.573723px;}
._6_c00054{width:23.599093px;}
.fc1_c00054{color:rgb(105,148,45);}
.fc0_c00054{color:rgb(35,31,32);}
.fs2_c00054{font-size:17.812373px;}
.fs5_c00054{font-size:41.324503px;}
.fs4_c00054{font-size:53.436999px;}
.fs3_c00054{font-size:59.136936px;}
.fs0_c00054{font-size:65.550574px;}
.fs1_c00054{font-size:71.249972px;}
.y0_c00054{bottom:0.000000px;}
.y1_c00054{bottom:0.120938px;}
.y8_c00054{bottom:6.826644px;}
.ya_c00054{bottom:65.133277px;}
.y3_c00054{bottom:83.062176px;}
.y2_c00054{bottom:84.131629px;}
.y18_c00054{bottom:88.646383px;}
.y17_c00054{bottom:103.430287px;}
.y16_c00054{bottom:118.215601px;}
.y15_c00054{bottom:133.176685px;}
.y14_c00054{bottom:147.961294px;}
.y13_c00054{bottom:174.323784px;}
.y12_c00054{bottom:204.959621px;}
.y11_c00054{bottom:235.595459px;}
.y10_c00054{bottom:266.234897px;}
.yf_c00054{bottom:296.870735px;}
.ye_c00054{bottom:315.929727px;}
.yd_c00054{bottom:329.999721px;}
.yc_c00054{bottom:346.388715px;}
.yb_c00054{bottom:443.824176px;}
.y9_c00054{bottom:1106.088911px;}
.y7_c00054{bottom:1125.436612px;}
.y6_c00054{bottom:1146.276554px;}
.y5_c00054{bottom:1166.762796px;}
.y4_c00054{bottom:1187.245588px;}
.h6_c00054{height:11.257420px;}
.ha_c00054{height:26.117086px;}
.h7_c00054{height:37.374544px;}
.h8_c00054{height:47.879551px;}
.h2_c00054{height:58.667764px;}
.h9_c00054{height:58.929966px;}
.h3_c00054{height:63.768724px;}
.hb_c00054{height:63.839974px;}
.h4_c00054{height:64.053724px;}
.h5_c00054{height:1249.830756px;}
.h1_c00054{height:1262.879062px;}
.h0_c00054{height:1263.000000px;}
.w2_c00054{width:883.195846px;}
.w1_c00054{width:892.414744px;}
.w0_c00054{width:892.500000px;}
.x0_c00054{left:0.000000px;}
.x7_c00054{left:1.541954px;}
.x8_c00054{left:109.903352px;}
.xb_c00054{left:123.442437px;}
.x2_c00054{left:126.216284px;}
.x9_c00054{left:169.217978px;}
.xa_c00054{left:175.987475px;}
.x4_c00054{left:249.654346px;}
.x3_c00054{left:267.288737px;}
.x6_c00054{left:324.108016px;}
.x5_c00054{left:417.442881px;}
.x1_c00054{left:510.074140px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
._b_c00054{margin-left:-2.296378pt;}
._0_c00054{margin-left:-1.190569pt;}
._1_c00054{width:0.939388pt;}
._9_c00054{width:1.887124pt;}
._a_c00054{width:3.262949pt;}
._4_c00054{width:5.492816pt;}
._3_c00054{width:6.809374pt;}
._2_c00054{width:7.706817pt;}
._8_c00054{width:11.834736pt;}
._7_c00054{width:12.873280pt;}
._5_c00054{width:20.065531pt;}
._6_c00054{width:20.976972pt;}
.fs2_c00054{font-size:15.833220pt;}
.fs5_c00054{font-size:36.732892pt;}
.fs4_c00054{font-size:47.499554pt;}
.fs3_c00054{font-size:52.566166pt;}
.fs0_c00054{font-size:58.267177pt;}
.fs1_c00054{font-size:63.333308pt;}
.y0_c00054{bottom:0.000000pt;}
.y1_c00054{bottom:0.107500pt;}
.y8_c00054{bottom:6.068128pt;}
.ya_c00054{bottom:57.896246pt;}
.y3_c00054{bottom:73.833045pt;}
.y2_c00054{bottom:74.783670pt;}
.y18_c00054{bottom:78.796785pt;}
.y17_c00054{bottom:91.938033pt;}
.y16_c00054{bottom:105.080534pt;}
.y15_c00054{bottom:118.379276pt;}
.y14_c00054{bottom:131.521150pt;}
.y13_c00054{bottom:154.954474pt;}
.y12_c00054{bottom:182.186330pt;}
.y11_c00054{bottom:209.418186pt;}
.y10_c00054{bottom:236.653242pt;}
.yf_c00054{bottom:263.885097pt;}
.ye_c00054{bottom:280.826424pt;}
.yd_c00054{bottom:293.333086pt;}
.yc_c00054{bottom:307.901080pt;}
.yb_c00054{bottom:394.510378pt;}
.y9_c00054{bottom:983.190143pt;}
.y7_c00054{bottom:1000.388100pt;}
.y6_c00054{bottom:1018.912492pt;}
.y5_c00054{bottom:1037.122485pt;}
.y4_c00054{bottom:1055.329411pt;}
.h6_c00054{height:10.006595pt;}
.ha_c00054{height:23.215188pt;}
.h7_c00054{height:33.221817pt;}
.h8_c00054{height:42.559601pt;}
.h2_c00054{height:52.149123pt;}
.h9_c00054{height:52.382192pt;}
.h3_c00054{height:56.683311pt;}
.hb_c00054{height:56.746644pt;}
.h4_c00054{height:56.936644pt;}
.h5_c00054{height:1110.960672pt;}
.h1_c00054{height:1122.559167pt;}
.h0_c00054{height:1122.666667pt;}
.w2_c00054{width:785.062974pt;}
.w1_c00054{width:793.257550pt;}
.w0_c00054{width:793.333333pt;}
.x0_c00054{left:0.000000pt;}
.x7_c00054{left:1.370626pt;}
.x8_c00054{left:97.691868pt;}
.xb_c00054{left:109.726611pt;}
.x2_c00054{left:112.192252pt;}
.x9_c00054{left:150.415980pt;}
.xa_c00054{left:156.433311pt;}
.x4_c00054{left:221.914974pt;}
.x3_c00054{left:237.589988pt;}
.x6_c00054{left:288.096014pt;}
.x5_c00054{left:371.060339pt;}
.x1_c00054{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00055;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:1.113000;font-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_c00055{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00055{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:0.000000px;}
._d_c00055{margin-left:-2.511466px;}
._0_c00055{margin-left:-1.339390px;}
._1_c00055{width:1.056812px;}
._4_c00055{width:2.767778px;}
._5_c00055{width:3.862823px;}
._7_c00055{width:4.877821px;}
._6_c00055{width:6.019034px;}
._b_c00055{width:7.206186px;}
._8_c00055{width:11.095890px;}
._9_c00055{width:12.552610px;}
._c_c00055{width:14.039716px;}
._a_c00055{width:15.731935px;}
._2_c00055{width:26.780448px;}
._3_c00055{width:27.887295px;}
.fc1_c00055{color:rgb(105,148,45);}
.fc0_c00055{color:rgb(35,31,32);}
.fs2_c00055{font-size:17.812373px;}
.fs4_c00055{font-size:41.324503px;}
.fs5_c00055{font-size:47.737061px;}
.fs3_c00055{font-size:59.136936px;}
.fs0_c00055{font-size:65.550574px;}
.fs1_c00055{font-size:71.249972px;}
.y0_c00055{bottom:0.000000px;}
.y1_c00055{bottom:0.120938px;}
.y8_c00055{bottom:6.826644px;}
.ya_c00055{bottom:65.133277px;}
.y3_c00055{bottom:83.062176px;}
.y2_c00055{bottom:84.131629px;}
.y2c_c00055{bottom:178.241032px;}
.y2b_c00055{bottom:239.514807px;}
.y2a_c00055{bottom:270.154245px;}
.y29_c00055{bottom:300.790083px;}
.y28_c00055{bottom:331.425921px;}
.y27_c00055{bottom:362.063858px;}
.y26_c00055{bottom:392.699696px;}
.y25_c00055{bottom:423.337634px;}
.y24_c00055{bottom:453.977672px;}
.y23_c00055{bottom:484.614259px;}
.y22_c00055{bottom:515.248747px;}
.y21_c00055{bottom:545.885935px;}
.y20_c00055{bottom:576.526723px;}
.y1f_c00055{bottom:607.159710px;}
.y1e_c00055{bottom:637.798398px;}
.y1d_c00055{bottom:668.439186px;}
.y1c_c00055{bottom:699.075024px;}
.y1b_c00055{bottom:729.712961px;}
.y1a_c00055{bottom:760.348799px;}
.y19_c00055{bottom:790.986737px;}
.y18_c00055{bottom:852.259912px;}
.y16_c00055{bottom:883.074490px;}
.y17_c00055{bottom:883.076500px;}
.y15_c00055{bottom:902.131982px;}
.y14_c00055{bottom:917.097986px;}
.y12_c00055{bottom:941.142977px;}
.y11_c00055{bottom:943.456276px;}
.y13_c00055{bottom:943.458976px;}
.y10_c00055{bottom:974.273464px;}
.yf_c00055{bottom:994.575445px;}
.ye_c00055{bottom:1009.541449px;}
.yd_c00055{bottom:1023.434444px;}
.yc_c00055{bottom:1039.824187px;}
.yb_c00055{bottom:1076.160923px;}
.y9_c00055{bottom:1106.088911px;}
.y7_c00055{bottom:1125.436612px;}
.y6_c00055{bottom:1146.276554px;}
.y5_c00055{bottom:1166.762796px;}
.y4_c00055{bottom:1187.245588px;}
.h6_c00055{height:11.257420px;}
.ha_c00055{height:26.117086px;}
.h7_c00055{height:37.374544px;}
.h8_c00055{height:41.427963px;}
.hc_c00055{height:42.772407px;}
.hd_c00055{height:53.045832px;}
.h2_c00055{height:58.667764px;}
.h9_c00055{height:58.929966px;}
.h3_c00055{height:63.768724px;}
.hb_c00055{height:63.839974px;}
.h4_c00055{height:64.053724px;}
.h5_c00055{height:1249.830756px;}
.h1_c00055{height:1262.879062px;}
.h0_c00055{height:1263.000000px;}
.w2_c00055{width:883.195846px;}
.w1_c00055{width:892.414744px;}
.w0_c00055{width:892.500000px;}
.x0_c00055{left:0.000000px;}
.x7_c00055{left:1.541954px;}
.x8_c00055{left:109.903352px;}
.xa_c00055{left:123.439439px;}
.x2_c00055{left:126.216284px;}
.x9_c00055{left:175.987475px;}
.x4_c00055{left:249.654346px;}
.x3_c00055{left:267.288737px;}
.x6_c00055{left:324.108016px;}
.x5_c00055{left:417.442881px;}
.xb_c00055{left:467.753858px;}
.xc_c00055{left:506.228843px;}
.x1_c00055{left:510.074140px;}
.xd_c00055{left:513.352340px;}
.xe_c00055{left:548.084826px;}
.xf_c00055{left:573.736316px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
._d_c00055{margin-left:-2.232414pt;}
._0_c00055{margin-left:-1.190569pt;}
._1_c00055{width:0.939388pt;}
._4_c00055{width:2.460247pt;}
._5_c00055{width:3.433621pt;}
._7_c00055{width:4.335841pt;}
._6_c00055{width:5.350252pt;}
._b_c00055{width:6.405499pt;}
._8_c00055{width:9.863013pt;}
._9_c00055{width:11.157876pt;}
._c_c00055{width:12.479748pt;}
._a_c00055{width:13.983942pt;}
._2_c00055{width:23.804843pt;}
._3_c00055{width:24.788707pt;}
.fs2_c00055{font-size:15.833220pt;}
.fs4_c00055{font-size:36.732892pt;}
.fs5_c00055{font-size:42.432943pt;}
.fs3_c00055{font-size:52.566166pt;}
.fs0_c00055{font-size:58.267177pt;}
.fs1_c00055{font-size:63.333308pt;}
.y0_c00055{bottom:0.000000pt;}
.y1_c00055{bottom:0.107500pt;}
.y8_c00055{bottom:6.068128pt;}
.ya_c00055{bottom:57.896246pt;}
.y3_c00055{bottom:73.833045pt;}
.y2_c00055{bottom:74.783670pt;}
.y2c_c00055{bottom:158.436473pt;}
.y2b_c00055{bottom:212.902051pt;}
.y2a_c00055{bottom:240.137107pt;}
.y29_c00055{bottom:267.368963pt;}
.y28_c00055{bottom:294.600818pt;}
.y27_c00055{bottom:321.834541pt;}
.y26_c00055{bottom:349.066397pt;}
.y25_c00055{bottom:376.300119pt;}
.y24_c00055{bottom:403.535708pt;}
.y23_c00055{bottom:430.768231pt;}
.y22_c00055{bottom:457.998886pt;}
.y21_c00055{bottom:485.231942pt;}
.y20_c00055{bottom:512.468198pt;}
.y1f_c00055{bottom:539.697520pt;}
.y1e_c00055{bottom:566.931909pt;}
.y1d_c00055{bottom:594.168165pt;}
.y1c_c00055{bottom:621.400021pt;}
.y1b_c00055{bottom:648.633743pt;}
.y1a_c00055{bottom:675.865599pt;}
.y19_c00055{bottom:703.099322pt;}
.y18_c00055{bottom:757.564367pt;}
.y16_c00055{bottom:784.955102pt;}
.y17_c00055{bottom:784.956889pt;}
.y15_c00055{bottom:801.895095pt;}
.y14_c00055{bottom:815.198210pt;}
.y12_c00055{bottom:836.571535pt;}
.y11_c00055{bottom:838.627801pt;}
.y13_c00055{bottom:838.630201pt;}
.y10_c00055{bottom:866.020856pt;}
.yf_c00055{bottom:884.067063pt;}
.ye_c00055{bottom:897.370177pt;}
.yd_c00055{bottom:909.719506pt;}
.yc_c00055{bottom:924.288167pt;}
.yb_c00055{bottom:956.587487pt;}
.y9_c00055{bottom:983.190143pt;}
.y7_c00055{bottom:1000.388100pt;}
.y6_c00055{bottom:1018.912492pt;}
.y5_c00055{bottom:1037.122485pt;}
.y4_c00055{bottom:1055.329411pt;}
.h6_c00055{height:10.006595pt;}
.ha_c00055{height:23.215188pt;}
.h7_c00055{height:33.221817pt;}
.h8_c00055{height:36.824856pt;}
.hc_c00055{height:38.019917pt;}
.hd_c00055{height:47.151851pt;}
.h2_c00055{height:52.149123pt;}
.h9_c00055{height:52.382192pt;}
.h3_c00055{height:56.683311pt;}
.hb_c00055{height:56.746644pt;}
.h4_c00055{height:56.936644pt;}
.h5_c00055{height:1110.960672pt;}
.h1_c00055{height:1122.559167pt;}
.h0_c00055{height:1122.666667pt;}
.w2_c00055{width:785.062974pt;}
.w1_c00055{width:793.257550pt;}
.w0_c00055{width:793.333333pt;}
.x0_c00055{left:0.000000pt;}
.x7_c00055{left:1.370626pt;}
.x8_c00055{left:97.691868pt;}
.xa_c00055{left:109.723946pt;}
.x2_c00055{left:112.192252pt;}
.x9_c00055{left:156.433311pt;}
.x4_c00055{left:221.914974pt;}
.x3_c00055{left:237.589988pt;}
.x6_c00055{left:288.096014pt;}
.x5_c00055{left:371.060339pt;}
.xb_c00055{left:415.781208pt;}
.xc_c00055{left:449.981194pt;}
.x1_c00055{left:453.399235pt;}
.xd_c00055{left:456.313191pt;}
.xe_c00055{left:487.186512pt;}
.xf_c00055{left:509.987837pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:1.112000;font-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_c00056{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:0.000000px;}
._0_c00056{margin-left:-1.339390px;}
._1_c00056{width:1.056812px;}
._f_c00056{width:2.355562px;}
._6_c00056{width:3.382717px;}
._5_c00056{width:4.635541px;}
._e_c00056{width:6.388537px;}
._b_c00056{width:7.750307px;}
._7_c00056{width:8.779824px;}
._2_c00056{width:9.866290px;}
._a_c00056{width:10.974082px;}
._c_c00056{width:14.778873px;}
._10_c00056{width:21.723642px;}
._8_c00056{width:22.824380px;}
._9_c00056{width:24.511697px;}
._3_c00056{width:25.733989px;}
._4_c00056{width:26.995306px;}
._d_c00056{width:52.632304px;}
.fc1_c00056{color:rgb(105,148,45);}
.fc0_c00056{color:rgb(35,31,32);}
.fs2_c00056{font-size:17.812373px;}
.fs3_c00056{font-size:59.136936px;}
.fs0_c00056{font-size:65.550574px;}
.fs1_c00056{font-size:71.249972px;}
.y0_c00056{bottom:0.000000px;}
.y1_c00056{bottom:0.120938px;}
.y8_c00056{bottom:6.826644px;}
.ya_c00056{bottom:65.133277px;}
.y3_c00056{bottom:83.062176px;}
.y2_c00056{bottom:84.131629px;}
.y29_c00056{bottom:108.239510px;}
.y28_c00056{bottom:139.055348px;}
.y27_c00056{bottom:169.691185px;}
.y26_c00056{bottom:200.331973px;}
.y25_c00056{bottom:230.967811px;}
.y24_c00056{bottom:261.605749px;}
.y23_c00056{bottom:292.241586px;}
.y22_c00056{bottom:322.879524px;}
.y21_c00056{bottom:353.515362px;}
.y20_c00056{bottom:384.151200px;}
.y1f_c00056{bottom:414.790637px;}
.y1e_c00056{bottom:445.426475px;}
.y1d_c00056{bottom:476.062313px;}
.y1c_c00056{bottom:506.700251px;}
.y1b_c00056{bottom:537.338938px;}
.y1a_c00056{bottom:567.976876px;}
.y19_c00056{bottom:598.609864px;}
.y18_c00056{bottom:629.250652px;}
.y17_c00056{bottom:659.886489px;}
.y16_c00056{bottom:690.527277px;}
.y15_c00056{bottom:721.161765px;}
.y14_c00056{bottom:751.797603px;}
.y13_c00056{bottom:782.433440px;}
.y12_c00056{bottom:813.074228px;}
.y11_c00056{bottom:843.710066px;}
.y10_c00056{bottom:874.346654px;}
.yf_c00056{bottom:904.985341px;}
.ye_c00056{bottom:935.621929px;}
.yd_c00056{bottom:966.257767px;}
.yc_c00056{bottom:996.896455px;}
.yb_c00056{bottom:1046.590385px;}
.y9_c00056{bottom:1106.088911px;}
.y7_c00056{bottom:1125.436612px;}
.y6_c00056{bottom:1146.276554px;}
.y5_c00056{bottom:1166.762796px;}
.y4_c00056{bottom:1187.245588px;}
.h6_c00056{height:11.257420px;}
.h7_c00056{height:37.374544px;}
.h8_c00056{height:53.045832px;}
.h2_c00056{height:58.667764px;}
.h3_c00056{height:63.768724px;}
.h9_c00056{height:63.839974px;}
.h4_c00056{height:64.053724px;}
.h5_c00056{height:1249.830756px;}
.h1_c00056{height:1262.879062px;}
.h0_c00056{height:1263.000000px;}
.w2_c00056{width:883.195846px;}
.w1_c00056{width:892.414744px;}
.w0_c00056{width:892.500000px;}
.x0_c00056{left:0.000000px;}
.x7_c00056{left:1.541954px;}
.x8_c00056{left:109.903352px;}
.xa_c00056{left:123.440938px;}
.x2_c00056{left:126.216284px;}
.x9_c00056{left:175.987475px;}
.x4_c00056{left:249.654346px;}
.x3_c00056{left:267.288737px;}
.x6_c00056{left:324.108016px;}
.x5_c00056{left:417.442881px;}
.x1_c00056{left:510.074140px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
._0_c00056{margin-left:-1.190569pt;}
._1_c00056{width:0.939388pt;}
._f_c00056{width:2.093833pt;}
._6_c00056{width:3.006859pt;}
._5_c00056{width:4.120481pt;}
._e_c00056{width:5.678699pt;}
._b_c00056{width:6.889162pt;}
._7_c00056{width:7.804288pt;}
._2_c00056{width:8.770036pt;}
._a_c00056{width:9.754739pt;}
._c_c00056{width:13.136776pt;}
._10_c00056{width:19.309904pt;}
._8_c00056{width:20.288338pt;}
._9_c00056{width:21.788175pt;}
._3_c00056{width:22.874657pt;}
._4_c00056{width:23.995828pt;}
._d_c00056{width:46.784271pt;}
.fs2_c00056{font-size:15.833220pt;}
.fs3_c00056{font-size:52.566166pt;}
.fs0_c00056{font-size:58.267177pt;}
.fs1_c00056{font-size:63.333308pt;}
.y0_c00056{bottom:0.000000pt;}
.y1_c00056{bottom:0.107500pt;}
.y8_c00056{bottom:6.068128pt;}
.ya_c00056{bottom:57.896246pt;}
.y3_c00056{bottom:73.833045pt;}
.y2_c00056{bottom:74.783670pt;}
.y29_c00056{bottom:96.212898pt;}
.y28_c00056{bottom:123.604753pt;}
.y27_c00056{bottom:150.836609pt;}
.y26_c00056{bottom:178.072865pt;}
.y25_c00056{bottom:205.304721pt;}
.y24_c00056{bottom:232.538443pt;}
.y23_c00056{bottom:259.770299pt;}
.y22_c00056{bottom:287.004021pt;}
.y21_c00056{bottom:314.235877pt;}
.y20_c00056{bottom:341.467733pt;}
.y1f_c00056{bottom:368.702789pt;}
.y1e_c00056{bottom:395.934645pt;}
.y1d_c00056{bottom:423.166500pt;}
.y1c_c00056{bottom:450.400223pt;}
.y1b_c00056{bottom:477.634612pt;}
.y1a_c00056{bottom:504.868334pt;}
.y19_c00056{bottom:532.097657pt;}
.y18_c00056{bottom:559.333913pt;}
.y17_c00056{bottom:586.565768pt;}
.y16_c00056{bottom:613.802024pt;}
.y15_c00056{bottom:641.032680pt;}
.y14_c00056{bottom:668.264536pt;}
.y13_c00056{bottom:695.496391pt;}
.y12_c00056{bottom:722.732647pt;}
.y11_c00056{bottom:749.964503pt;}
.y10_c00056{bottom:777.197025pt;}
.yf_c00056{bottom:804.431414pt;}
.ye_c00056{bottom:831.663937pt;}
.yd_c00056{bottom:858.895793pt;}
.yc_c00056{bottom:886.130182pt;}
.yb_c00056{bottom:930.302564pt;}
.y9_c00056{bottom:983.190143pt;}
.y7_c00056{bottom:1000.388100pt;}
.y6_c00056{bottom:1018.912492pt;}
.y5_c00056{bottom:1037.122485pt;}
.y4_c00056{bottom:1055.329411pt;}
.h6_c00056{height:10.006595pt;}
.h7_c00056{height:33.221817pt;}
.h8_c00056{height:47.151851pt;}
.h2_c00056{height:52.149123pt;}
.h3_c00056{height:56.683311pt;}
.h9_c00056{height:56.746644pt;}
.h4_c00056{height:56.936644pt;}
.h5_c00056{height:1110.960672pt;}
.h1_c00056{height:1122.559167pt;}
.h0_c00056{height:1122.666667pt;}
.w2_c00056{width:785.062974pt;}
.w1_c00056{width:793.257550pt;}
.w0_c00056{width:793.333333pt;}
.x0_c00056{left:0.000000pt;}
.x7_c00056{left:1.370626pt;}
.x8_c00056{left:97.691868pt;}
.xa_c00056{left:109.725278pt;}
.x2_c00056{left:112.192252pt;}
.x9_c00056{left:156.433311pt;}
.x4_c00056{left:221.914974pt;}
.x3_c00056{left:237.589988pt;}
.x6_c00056{left:288.096014pt;}
.x5_c00056{left:371.060339pt;}
.x1_c00056{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00057;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00057{font-family:ff5_c00057;line-height:1.113000;font-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_c00057{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:0.000000px;}
._d_c00057{margin-left:-3.219344px;}
._0_c00057{margin-left:-1.339390px;}
._1_c00057{width:1.056812px;}
._2_c00057{width:2.920333px;}
._3_c00057{width:4.123849px;}
._7_c00057{width:5.950548px;}
._8_c00057{width:7.198404px;}
._4_c00057{width:8.315033px;}
._5_c00057{width:9.462673px;}
._6_c00057{width:10.586090px;}
._b_c00057{width:11.865019px;}
._c_c00057{width:13.233280px;}
._9_c00057{width:24.469845px;}
._a_c00057{width:25.745546px;}
.fc1_c00057{color:rgb(105,148,45);}
.fc0_c00057{color:rgb(35,31,32);}
.fs2_c00057{font-size:17.812373px;}
.fs4_c00057{font-size:44.887062px;}
.fs3_c00057{font-size:59.136936px;}
.fs0_c00057{font-size:65.550574px;}
.fs1_c00057{font-size:71.249972px;}
.y0_c00057{bottom:0.000000px;}
.y1_c00057{bottom:0.120938px;}
.y8_c00057{bottom:6.826644px;}
.ya_c00057{bottom:65.133277px;}
.y3_c00057{bottom:83.062176px;}
.y2_c00057{bottom:84.131629px;}
.y26_c00057{bottom:103.009856px;}
.y25_c00057{bottom:117.794465px;}
.y24_c00057{bottom:449.167174px;}
.y23_c00057{bottom:463.061218px;}
.y22_c00057{bottom:493.519156px;}
.y21_c00057{bottom:522.553444px;}
.y20_c00057{bottom:538.228138px;}
.y1f_c00057{bottom:558.358130px;}
.y1e_c00057{bottom:594.156006px;}
.y1d_c00057{bottom:608.939910px;}
.y1c_c00057{bottom:632.986850px;}
.y1b_c00057{bottom:658.458940px;}
.y1a_c00057{bottom:674.668083px;}
.y19_c00057{bottom:688.918078px;}
.y18_c00057{bottom:702.280072px;}
.y17_c00057{bottom:721.696065px;}
.y16_c00057{bottom:750.197403px;}
.y15_c00057{bottom:780.831891px;}
.y14_c00057{bottom:811.469829px;}
.y13_c00057{bottom:842.108516px;}
.y12_c00057{bottom:861.521509px;}
.y11_c00057{bottom:878.620002px;}
.y10_c00057{bottom:919.770685px;}
.yf_c00057{bottom:950.405173px;}
.ye_c00057{bottom:981.042361px;}
.yd_c00057{bottom:1011.680299px;}
.yc_c00057{bottom:1042.317486px;}
.yb_c00057{bottom:1072.955424px;}
.y9_c00057{bottom:1106.088911px;}
.y7_c00057{bottom:1125.436612px;}
.y6_c00057{bottom:1146.276554px;}
.y5_c00057{bottom:1166.762796px;}
.y4_c00057{bottom:1187.245588px;}
.h6_c00057{height:11.257420px;}
.hb_c00057{height:28.368623px;}
.h7_c00057{height:37.374544px;}
.ha_c00057{height:41.427963px;}
.hc_c00057{height:52.927558px;}
.h9_c00057{height:53.045832px;}
.h2_c00057{height:58.667764px;}
.hd_c00057{height:58.929966px;}
.h3_c00057{height:63.768724px;}
.h8_c00057{height:63.839974px;}
.h4_c00057{height:64.053724px;}
.h5_c00057{height:1249.830756px;}
.h1_c00057{height:1262.879062px;}
.h0_c00057{height:1263.000000px;}
.w2_c00057{width:883.195846px;}
.w1_c00057{width:892.414744px;}
.w0_c00057{width:892.500000px;}
.x0_c00057{left:0.000000px;}
.x7_c00057{left:1.541954px;}
.x8_c00057{left:109.903352px;}
.xc_c00057{left:111.432649px;}
.x9_c00057{left:123.441296px;}
.x2_c00057{left:126.216284px;}
.xa_c00057{left:175.986334px;}
.xb_c00057{left:179.015974px;}
.x4_c00057{left:249.654346px;}
.x3_c00057{left:267.288737px;}
.x6_c00057{left:324.108016px;}
.x5_c00057{left:417.442881px;}
.x1_c00057{left:510.074140px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
._d_c00057{margin-left:-2.861639pt;}
._0_c00057{margin-left:-1.190569pt;}
._1_c00057{width:0.939388pt;}
._2_c00057{width:2.595851pt;}
._3_c00057{width:3.665643pt;}
._7_c00057{width:5.289376pt;}
._8_c00057{width:6.398582pt;}
._4_c00057{width:7.391140pt;}
._5_c00057{width:8.411265pt;}
._6_c00057{width:9.409858pt;}
._b_c00057{width:10.546683pt;}
._c_c00057{width:11.762916pt;}
._9_c00057{width:21.750973pt;}
._a_c00057{width:22.884930pt;}
.fs2_c00057{font-size:15.833220pt;}
.fs4_c00057{font-size:39.899611pt;}
.fs3_c00057{font-size:52.566166pt;}
.fs0_c00057{font-size:58.267177pt;}
.fs1_c00057{font-size:63.333308pt;}
.y0_c00057{bottom:0.000000pt;}
.y1_c00057{bottom:0.107500pt;}
.y8_c00057{bottom:6.068128pt;}
.ya_c00057{bottom:57.896246pt;}
.y3_c00057{bottom:73.833045pt;}
.y2_c00057{bottom:74.783670pt;}
.y26_c00057{bottom:91.564317pt;}
.y25_c00057{bottom:104.706191pt;}
.y24_c00057{bottom:399.259710pt;}
.y23_c00057{bottom:411.609972pt;}
.y22_c00057{bottom:438.683694pt;}
.y21_c00057{bottom:464.491950pt;}
.y20_c00057{bottom:478.425012pt;}
.y1f_c00057{bottom:496.318338pt;}
.y1e_c00057{bottom:528.138672pt;}
.y1d_c00057{bottom:541.279920pt;}
.y1c_c00057{bottom:562.654978pt;}
.y1b_c00057{bottom:585.296835pt;}
.y1a_c00057{bottom:599.704963pt;}
.y19_c00057{bottom:612.371625pt;}
.y18_c00057{bottom:624.248953pt;}
.y17_c00057{bottom:641.507613pt;}
.y16_c00057{bottom:666.842136pt;}
.y15_c00057{bottom:694.072792pt;}
.y14_c00057{bottom:721.306514pt;}
.y13_c00057{bottom:748.540903pt;}
.y12_c00057{bottom:765.796897pt;}
.y11_c00057{bottom:780.995557pt;}
.y10_c00057{bottom:817.573943pt;}
.yf_c00057{bottom:844.804598pt;}
.ye_c00057{bottom:872.037654pt;}
.yd_c00057{bottom:899.271377pt;}
.yc_c00057{bottom:926.504432pt;}
.yb_c00057{bottom:953.738155pt;}
.y9_c00057{bottom:983.190143pt;}
.y7_c00057{bottom:1000.388100pt;}
.y6_c00057{bottom:1018.912492pt;}
.y5_c00057{bottom:1037.122485pt;}
.y4_c00057{bottom:1055.329411pt;}
.h6_c00057{height:10.006595pt;}
.hb_c00057{height:25.216554pt;}
.h7_c00057{height:33.221817pt;}
.ha_c00057{height:36.824856pt;}
.hc_c00057{height:47.046718pt;}
.h9_c00057{height:47.151851pt;}
.h2_c00057{height:52.149123pt;}
.hd_c00057{height:52.382192pt;}
.h3_c00057{height:56.683311pt;}
.h8_c00057{height:56.746644pt;}
.h4_c00057{height:56.936644pt;}
.h5_c00057{height:1110.960672pt;}
.h1_c00057{height:1122.559167pt;}
.h0_c00057{height:1122.666667pt;}
.w2_c00057{width:785.062974pt;}
.w1_c00057{width:793.257550pt;}
.w0_c00057{width:793.333333pt;}
.x0_c00057{left:0.000000pt;}
.x7_c00057{left:1.370626pt;}
.x8_c00057{left:97.691868pt;}
.xc_c00057{left:99.051244pt;}
.x9_c00057{left:109.725597pt;}
.x2_c00057{left:112.192252pt;}
.xa_c00057{left:156.432297pt;}
.xb_c00057{left:159.125310pt;}
.x4_c00057{left:221.914974pt;}
.x3_c00057{left:237.589988pt;}
.x6_c00057{left:288.096014pt;}
.x5_c00057{left:371.060339pt;}
.x1_c00057{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00058;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00058{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00058{word-spacing:-8.906156px;}
.ws2_c00058{word-spacing:0.000000px;}
.ws0_c00058{word-spacing:334.195524px;}
._0_c00058{margin-left:-1.339390px;}
._1_c00058{width:1.056812px;}
._10_c00058{width:294.119821px;}
._8_c00058{width:307.479124px;}
._d_c00058{width:314.233844px;}
._3_c00058{width:327.438432px;}
._c_c00058{width:334.196487px;}
._5_c00058{width:347.555789px;}
._7_c00058{width:367.359651px;}
._f_c00058{width:370.231113px;}
._2_c00058{width:388.188802px;}
._b_c00058{width:390.193031px;}
._4_c00058{width:407.437912px;}
._e_c00058{width:514.276859px;}
._6_c00058{width:523.558757px;}
._11_c00058{width:570.659413px;}
._9_c00058{width:593.301062px;}
._a_c00058{width:699.862973px;}
.fc1_c00058{color:rgb(105,148,45);}
.fc0_c00058{color:rgb(35,31,32);}
.fs2_c00058{font-size:17.812373px;}
.fs6_c00058{font-size:35.624626px;}
.fs5_c00058{font-size:53.436999px;}
.fs3_c00058{font-size:59.136936px;}
.fs0_c00058{font-size:65.550574px;}
.fs1_c00058{font-size:71.249972px;}
.fs4_c00058{font-size:76.949969px;}
.y0_c00058{bottom:0.000000px;}
.y1_c00058{bottom:0.120938px;}
.y18_c00058{bottom:1.952728px;}
.y1e_c00058{bottom:1.958475px;}
.y13_c00058{bottom:1.958997px;}
.yd_c00058{bottom:6.826644px;}
.y9_c00058{bottom:71.838984px;}
.y3_c00058{bottom:83.062176px;}
.y2_c00058{bottom:84.131629px;}
.y2f_c00058{bottom:99.333924px;}
.y2e_c00058{bottom:114.295008px;}
.y2d_c00058{bottom:146.893295px;}
.y2c_c00058{bottom:169.153886px;}
.y2b_c00058{bottom:184.473529px;}
.y2a_c00058{bottom:220.813115px;}
.y29_c00058{bottom:235.952759px;}
.y28_c00058{bottom:272.288144px;}
.y27_c00058{bottom:287.429288px;}
.y26_c00058{bottom:302.923982px;}
.y25_c00058{bottom:339.084318px;}
.y24_c00058{bottom:354.403962px;}
.y23_c00058{bottom:392.878196px;}
.y22_c00058{bottom:432.068680px;}
.y21_c00058{bottom:471.253165px;}
.y20_c00058{bottom:510.442149px;}
.y1c_c00058{bottom:549.272634px;}
.y1f_c00058{bottom:549.626633px;}
.y1d_c00058{bottom:560.017800px;}
.y1b_c00058{bottom:588.817118px;}
.y1a_c00058{bottom:628.001602px;}
.y19_c00058{bottom:667.192086px;}
.y16_c00058{bottom:673.539293px;}
.y17_c00058{bottom:677.583000px;}
.y15_c00058{bottom:712.725277px;}
.y10_c00058{bottom:725.614063px;}
.y11_c00058{bottom:745.208105px;}
.y14_c00058{bottom:751.914262px;}
.y12_c00058{bottom:755.953200px;}
.yf_c00058{bottom:767.114546px;}
.ye_c00058{bottom:803.098032px;}
.yc_c00058{bottom:1019.984404px;}
.yb_c00058{bottom:1043.677645px;}
.ya_c00058{bottom:1080.550630px;}
.y8_c00058{bottom:1112.794617px;}
.y7_c00058{bottom:1125.436612px;}
.y6_c00058{bottom:1146.276554px;}
.y5_c00058{bottom:1166.762796px;}
.y4_c00058{bottom:1187.245588px;}
.he_c00058{height:8.544600px;}
.hc_c00058{height:8.551800px;}
.h10_c00058{height:8.553600px;}
.h5_c00058{height:11.257420px;}
.hd_c00058{height:31.955289px;}
.h6_c00058{height:37.374544px;}
.h9_c00058{height:41.427963px;}
.hf_c00058{height:47.879551px;}
.hb_c00058{height:47.932988px;}
.h7_c00058{height:48.632381px;}
.h11_c00058{height:52.927558px;}
.h2_c00058{height:58.667764px;}
.h8_c00058{height:58.929966px;}
.h3_c00058{height:63.768724px;}
.h4_c00058{height:64.053724px;}
.ha_c00058{height:1249.830756px;}
.h1_c00058{height:1262.879062px;}
.h0_c00058{height:1263.000000px;}
.w3_c00058{width:4.447800px;}
.w4_c00058{width:10.508220px;}
.w5_c00058{width:10.510200px;}
.w2_c00058{width:883.195846px;}
.w1_c00058{width:892.414744px;}
.w0_c00058{width:892.500000px;}
.x0_c00058{left:0.000000px;}
.x8_c00058{left:1.541954px;}
.x11_c00058{left:109.903352px;}
.x7_c00058{left:111.432649px;}
.x2_c00058{left:126.216284px;}
.xb_c00058{left:128.072094px;}
.x10_c00058{left:159.538320px;}
.xa_c00058{left:241.537449px;}
.x4_c00058{left:249.654346px;}
.x12_c00058{left:251.985600px;}
.x3_c00058{left:267.288737px;}
.xc_c00058{left:282.324132px;}
.x6_c00058{left:324.108016px;}
.xf_c00058{left:338.894208px;}
.x13_c00058{left:353.935404px;}
.x5_c00058{left:417.442881px;}
.xd_c00058{left:442.935000px;}
.xe_c00058{left:447.374165px;}
.x1_c00058{left:510.074140px;}
.x9_c00058{left:814.378220px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws1_c00058{word-spacing:-7.916584pt;}
.ws2_c00058{word-spacing:0.000000pt;}
.ws0_c00058{word-spacing:297.062688pt;}
._0_c00058{margin-left:-1.190569pt;}
._1_c00058{width:0.939388pt;}
._10_c00058{width:261.439841pt;}
._8_c00058{width:273.314777pt;}
._d_c00058{width:279.318973pt;}
._3_c00058{width:291.056384pt;}
._c_c00058{width:297.063544pt;}
._5_c00058{width:308.938479pt;}
._7_c00058{width:326.541912pt;}
._f_c00058{width:329.094322pt;}
._2_c00058{width:345.056712pt;}
._b_c00058{width:346.838250pt;}
._4_c00058{width:362.167033pt;}
._e_c00058{width:457.134986pt;}
._6_c00058{width:465.385562pt;}
._11_c00058{width:507.252811pt;}
._9_c00058{width:527.378722pt;}
._a_c00058{width:622.100420pt;}
.fs2_c00058{font-size:15.833220pt;}
.fs6_c00058{font-size:31.666334pt;}
.fs5_c00058{font-size:47.499554pt;}
.fs3_c00058{font-size:52.566166pt;}
.fs0_c00058{font-size:58.267177pt;}
.fs1_c00058{font-size:63.333308pt;}
.fs4_c00058{font-size:68.399973pt;}
.y0_c00058{bottom:0.000000pt;}
.y1_c00058{bottom:0.107500pt;}
.y18_c00058{bottom:1.735758pt;}
.y1e_c00058{bottom:1.740867pt;}
.y13_c00058{bottom:1.741331pt;}
.yd_c00058{bottom:6.068128pt;}
.y9_c00058{bottom:63.856874pt;}
.y3_c00058{bottom:73.833045pt;}
.y2_c00058{bottom:74.783670pt;}
.y2f_c00058{bottom:88.296821pt;}
.y2e_c00058{bottom:101.595562pt;}
.y2d_c00058{bottom:130.571817pt;}
.y2c_c00058{bottom:150.359009pt;}
.y2b_c00058{bottom:163.976471pt;}
.y2a_c00058{bottom:196.278324pt;}
.y29_c00058{bottom:209.735786pt;}
.y28_c00058{bottom:242.033906pt;}
.y27_c00058{bottom:255.492701pt;}
.y26_c00058{bottom:269.265762pt;}
.y25_c00058{bottom:301.408282pt;}
.y24_c00058{bottom:315.025744pt;}
.y23_c00058{bottom:349.225063pt;}
.y22_c00058{bottom:384.061049pt;}
.y21_c00058{bottom:418.891702pt;}
.y20_c00058{bottom:453.726355pt;}
.y1c_c00058{bottom:488.242341pt;}
.y1f_c00058{bottom:488.557007pt;}
.y1d_c00058{bottom:497.793600pt;}
.y1b_c00058{bottom:523.392994pt;}
.y1a_c00058{bottom:558.223646pt;}
.y19_c00058{bottom:593.059632pt;}
.y16_c00058{bottom:598.701594pt;}
.y17_c00058{bottom:602.296000pt;}
.y15_c00058{bottom:633.533580pt;}
.y10_c00058{bottom:644.990278pt;}
.y11_c00058{bottom:662.407205pt;}
.y14_c00058{bottom:668.368233pt;}
.y12_c00058{bottom:671.958400pt;}
.yf_c00058{bottom:681.879597pt;}
.ye_c00058{bottom:713.864917pt;}
.yc_c00058{bottom:906.652804pt;}
.yb_c00058{bottom:927.713462pt;}
.ya_c00058{bottom:960.489449pt;}
.y8_c00058{bottom:989.150771pt;}
.y7_c00058{bottom:1000.388100pt;}
.y6_c00058{bottom:1018.912492pt;}
.y5_c00058{bottom:1037.122485pt;}
.y4_c00058{bottom:1055.329411pt;}
.he_c00058{height:7.595200pt;}
.hc_c00058{height:7.601600pt;}
.h10_c00058{height:7.603200pt;}
.h5_c00058{height:10.006595pt;}
.hd_c00058{height:28.404702pt;}
.h6_c00058{height:33.221817pt;}
.h9_c00058{height:36.824856pt;}
.hf_c00058{height:42.559601pt;}
.hb_c00058{height:42.607100pt;}
.h7_c00058{height:43.228783pt;}
.h11_c00058{height:47.046718pt;}
.h2_c00058{height:52.149123pt;}
.h8_c00058{height:52.382192pt;}
.h3_c00058{height:56.683311pt;}
.h4_c00058{height:56.936644pt;}
.ha_c00058{height:1110.960672pt;}
.h1_c00058{height:1122.559167pt;}
.h0_c00058{height:1122.666667pt;}
.w3_c00058{width:3.953600pt;}
.w4_c00058{width:9.340640pt;}
.w5_c00058{width:9.342400pt;}
.w2_c00058{width:785.062974pt;}
.w1_c00058{width:793.257550pt;}
.w0_c00058{width:793.333333pt;}
.x0_c00058{left:0.000000pt;}
.x8_c00058{left:1.370626pt;}
.x11_c00058{left:97.691868pt;}
.x7_c00058{left:99.051244pt;}
.x2_c00058{left:112.192252pt;}
.xb_c00058{left:113.841862pt;}
.x10_c00058{left:141.811840pt;}
.xa_c00058{left:214.699955pt;}
.x4_c00058{left:221.914974pt;}
.x12_c00058{left:223.987200pt;}
.x3_c00058{left:237.589988pt;}
.xc_c00058{left:250.954784pt;}
.x6_c00058{left:288.096014pt;}
.xf_c00058{left:301.239296pt;}
.x13_c00058{left:314.609248pt;}
.x5_c00058{left:371.060339pt;}
.xd_c00058{left:393.720000pt;}
.xe_c00058{left:397.665924pt;}
.x1_c00058{left:453.399235pt;}
.x9_c00058{left:723.891751pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:0.632000;font-style:normal;font-weight:normal;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_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.113000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00059{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00059{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls0_c00059{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00059{word-spacing:-17.812493px;}
.ws1_c00059{word-spacing:0.000000px;}
._3_c00059{margin-left:-3.059756px;}
._0_c00059{margin-left:-1.339390px;}
._1_c00059{width:1.056812px;}
._4_c00059{width:2.411863px;}
._6_c00059{width:9.234002px;}
._7_c00059{width:10.329874px;}
._5_c00059{width:11.440892px;}
._8_c00059{width:13.682174px;}
._9_c00059{width:14.822343px;}
._2_c00059{width:714.493105px;}
.fc1_c00059{color:rgb(105,148,45);}
.fc0_c00059{color:rgb(35,31,32);}
.fs2_c00059{font-size:17.812373px;}
.fs6_c00059{font-size:41.324503px;}
.fs5_c00059{font-size:47.737061px;}
.fs4_c00059{font-size:56.286877px;}
.fs3_c00059{font-size:59.136936px;}
.fs0_c00059{font-size:65.550574px;}
.fs1_c00059{font-size:71.249972px;}
.y0_c00059{bottom:0.000000px;}
.y1_c00059{bottom:0.120938px;}
.y36_c00059{bottom:2.851299px;}
.y30_c00059{bottom:4.453290px;}
.y31_c00059{bottom:6.826644px;}
.y9_c00059{bottom:71.838984px;}
.y3_c00059{bottom:83.062176px;}
.y2_c00059{bottom:84.131629px;}
.y41_c00059{bottom:163.102438px;}
.y40_c00059{bottom:193.738276px;}
.y3f_c00059{bottom:248.599254px;}
.y3e_c00059{bottom:295.979435px;}
.y3d_c00059{bottom:326.616623px;}
.y3c_c00059{bottom:357.253210px;}
.y3b_c00059{bottom:376.315203px;}
.y3a_c00059{bottom:391.097697px;}
.y39_c00059{bottom:410.513689px;}
.y38_c00059{bottom:445.426175px;}
.y37_c00059{bottom:457.894170px;}
.y33_c00059{bottom:486.215659px;}
.y34_c00059{bottom:486.391159px;}
.y35_c00059{bottom:498.564000px;}
.y32_c00059{bottom:517.564146px;}
.y2f_c00059{bottom:520.830000px;}
.y2e_c00059{bottom:544.399935px;}
.y2d_c00059{bottom:559.183839px;}
.y2c_c00059{bottom:573.966243px;}
.y43_c00059{bottom:582.163830px;}
.y2b_c00059{bottom:588.750147px;}
.y2a_c00059{bottom:603.534051px;}
.y29_c00059{bottom:618.319350px;}
.y28_c00059{bottom:633.103254px;}
.y27_c00059{bottom:647.884338px;}
.y42_c00059{bottom:648.420303px;}
.y26_c00059{bottom:662.668242px;}
.y25_c00059{bottom:677.452146px;}
.y24_c00059{bottom:692.058856px;}
.y23_c00059{bottom:706.842760px;}
.y22_c00059{bottom:721.626664px;}
.y21_c00059{bottom:736.409158px;}
.y20_c00059{bottom:751.193062px;}
.y1f_c00059{bottom:765.978361px;}
.y1e_c00059{bottom:780.763660px;}
.y1d_c00059{bottom:795.544744px;}
.y1c_c00059{bottom:810.333568px;}
.y1b_c00059{bottom:825.117472px;}
.y1a_c00059{bottom:839.898556px;}
.y19_c00059{bottom:854.683856px;}
.y18_c00059{bottom:869.291270px;}
.y17_c00059{bottom:884.073764px;}
.y16_c00059{bottom:898.857668px;}
.y15_c00059{bottom:913.645082px;}
.y14_c00059{bottom:928.427576px;}
.y13_c00059{bottom:943.214285px;}
.y12_c00059{bottom:957.998894px;}
.y11_c00059{bottom:972.781388px;}
.y10_c00059{bottom:987.569507px;}
.yf_c00059{bottom:1002.352707px;}
.ye_c00059{bottom:1017.139416px;}
.yd_c00059{bottom:1031.921910px;}
.yc_c00059{bottom:1046.530734px;}
.yb_c00059{bottom:1061.314638px;}
.ya_c00059{bottom:1080.730630px;}
.y8_c00059{bottom:1112.794617px;}
.y7_c00059{bottom:1125.436612px;}
.y6_c00059{bottom:1146.276554px;}
.y5_c00059{bottom:1166.762796px;}
.y4_c00059{bottom:1187.245588px;}
.he_c00059{height:10.866600px;}
.h5_c00059{height:11.257420px;}
.h9_c00059{height:19.953000px;}
.h11_c00059{height:26.117086px;}
.h8_c00059{height:35.573307px;}
.h6_c00059{height:37.374544px;}
.ha_c00059{height:41.427963px;}
.hf_c00059{height:42.772407px;}
.h10_c00059{height:52.927558px;}
.h2_c00059{height:58.667764px;}
.h7_c00059{height:58.929966px;}
.h3_c00059{height:63.768724px;}
.hd_c00059{height:63.839974px;}
.h4_c00059{height:64.053724px;}
.hc_c00059{height:64.551538px;}
.hb_c00059{height:1249.830756px;}
.h1_c00059{height:1262.879062px;}
.h0_c00059{height:1263.000000px;}
.w4_c00059{width:6.233400px;}
.w2_c00059{width:8.192880px;}
.w3_c00059{width:883.195846px;}
.w1_c00059{width:892.414744px;}
.w0_c00059{width:892.500000px;}
.x0_c00059{left:0.000000px;}
.x9_c00059{left:1.541954px;}
.xf_c00059{left:109.903352px;}
.x7_c00059{left:111.432649px;}
.x8_c00059{left:118.926540px;}
.x11_c00059{left:123.442437px;}
.x2_c00059{left:126.216284px;}
.x12_c00059{left:163.342480px;}
.xb_c00059{left:165.296979px;}
.x10_c00059{left:175.987475px;}
.xe_c00059{left:179.015974px;}
.x4_c00059{left:249.654346px;}
.x3_c00059{left:267.288737px;}
.x6_c00059{left:324.108016px;}
.x5_c00059{left:417.442881px;}
.x1_c00059{left:510.074140px;}
.xa_c00059{left:542.389329px;}
.xc_c00059{left:580.859813px;}
.xd_c00059{left:625.332600px;}
.x13_c00059{left:695.321066px;}
.x14_c00059{left:727.562053px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:-15.833327pt;}
.ws1_c00059{word-spacing:0.000000pt;}
._3_c00059{margin-left:-2.719783pt;}
._0_c00059{margin-left:-1.190569pt;}
._1_c00059{width:0.939388pt;}
._4_c00059{width:2.143879pt;}
._6_c00059{width:8.208002pt;}
._7_c00059{width:9.182110pt;}
._5_c00059{width:10.169682pt;}
._8_c00059{width:12.161933pt;}
._9_c00059{width:13.175416pt;}
._2_c00059{width:635.104982pt;}
.fs2_c00059{font-size:15.833220pt;}
.fs6_c00059{font-size:36.732892pt;}
.fs5_c00059{font-size:42.432943pt;}
.fs4_c00059{font-size:50.032780pt;}
.fs3_c00059{font-size:52.566166pt;}
.fs0_c00059{font-size:58.267177pt;}
.fs1_c00059{font-size:63.333308pt;}
.y0_c00059{bottom:0.000000pt;}
.y1_c00059{bottom:0.107500pt;}
.y36_c00059{bottom:2.534488pt;}
.y30_c00059{bottom:3.958480pt;}
.y31_c00059{bottom:6.068128pt;}
.y9_c00059{bottom:63.856874pt;}
.y3_c00059{bottom:73.833045pt;}
.y2_c00059{bottom:74.783670pt;}
.y41_c00059{bottom:144.979945pt;}
.y40_c00059{bottom:172.211801pt;}
.y3f_c00059{bottom:220.977115pt;}
.y3e_c00059{bottom:263.092831pt;}
.y3d_c00059{bottom:290.325887pt;}
.y3c_c00059{bottom:317.558409pt;}
.y3b_c00059{bottom:334.502402pt;}
.y3a_c00059{bottom:347.642397pt;}
.y39_c00059{bottom:364.901057pt;}
.y38_c00059{bottom:395.934378pt;}
.y37_c00059{bottom:407.017040pt;}
.y33_c00059{bottom:432.191697pt;}
.y34_c00059{bottom:432.347697pt;}
.y35_c00059{bottom:443.168000pt;}
.y32_c00059{bottom:460.057019pt;}
.y2f_c00059{bottom:462.960000pt;}
.y2e_c00059{bottom:483.911053pt;}
.y2d_c00059{bottom:497.052301pt;}
.y2c_c00059{bottom:510.192216pt;}
.y43_c00059{bottom:517.478960pt;}
.y2b_c00059{bottom:523.333464pt;}
.y2a_c00059{bottom:536.474712pt;}
.y29_c00059{bottom:549.617200pt;}
.y28_c00059{bottom:562.758448pt;}
.y27_c00059{bottom:575.897190pt;}
.y42_c00059{bottom:576.373603pt;}
.y26_c00059{bottom:589.038438pt;}
.y25_c00059{bottom:602.179686pt;}
.y24_c00059{bottom:615.163427pt;}
.y23_c00059{bottom:628.304675pt;}
.y22_c00059{bottom:641.445923pt;}
.y21_c00059{bottom:654.585918pt;}
.y20_c00059{bottom:667.727166pt;}
.y1f_c00059{bottom:680.869654pt;}
.y1e_c00059{bottom:694.012142pt;}
.y1d_c00059{bottom:707.150884pt;}
.y1c_c00059{bottom:720.296505pt;}
.y1b_c00059{bottom:733.437753pt;}
.y1a_c00059{bottom:746.576495pt;}
.y19_c00059{bottom:759.718983pt;}
.y18_c00059{bottom:772.703351pt;}
.y17_c00059{bottom:785.843346pt;}
.y16_c00059{bottom:798.984594pt;}
.y15_c00059{bottom:812.128962pt;}
.y14_c00059{bottom:825.268957pt;}
.y13_c00059{bottom:838.412698pt;}
.y12_c00059{bottom:851.554573pt;}
.y11_c00059{bottom:864.694567pt;}
.y10_c00059{bottom:877.839562pt;}
.yf_c00059{bottom:890.980184pt;}
.ye_c00059{bottom:904.123925pt;}
.yd_c00059{bottom:917.263920pt;}
.yc_c00059{bottom:930.249541pt;}
.yb_c00059{bottom:943.390789pt;}
.ya_c00059{bottom:960.649449pt;}
.y8_c00059{bottom:989.150771pt;}
.y7_c00059{bottom:1000.388100pt;}
.y6_c00059{bottom:1018.912492pt;}
.y5_c00059{bottom:1037.122485pt;}
.y4_c00059{bottom:1055.329411pt;}
.he_c00059{height:9.659200pt;}
.h5_c00059{height:10.006595pt;}
.h9_c00059{height:17.736000pt;}
.h11_c00059{height:23.215188pt;}
.h8_c00059{height:31.620717pt;}
.h6_c00059{height:33.221817pt;}
.ha_c00059{height:36.824856pt;}
.hf_c00059{height:38.019917pt;}
.h10_c00059{height:47.046718pt;}
.h2_c00059{height:52.149123pt;}
.h7_c00059{height:52.382192pt;}
.h3_c00059{height:56.683311pt;}
.hd_c00059{height:56.746644pt;}
.h4_c00059{height:56.936644pt;}
.hc_c00059{height:57.379145pt;}
.hb_c00059{height:1110.960672pt;}
.h1_c00059{height:1122.559167pt;}
.h0_c00059{height:1122.666667pt;}
.w4_c00059{width:5.540800pt;}
.w2_c00059{width:7.282560pt;}
.w3_c00059{width:785.062974pt;}
.w1_c00059{width:793.257550pt;}
.w0_c00059{width:793.333333pt;}
.x0_c00059{left:0.000000pt;}
.x9_c00059{left:1.370626pt;}
.xf_c00059{left:97.691868pt;}
.x7_c00059{left:99.051244pt;}
.x8_c00059{left:105.712480pt;}
.x11_c00059{left:109.726611pt;}
.x2_c00059{left:112.192252pt;}
.x12_c00059{left:145.193316pt;}
.xb_c00059{left:146.930648pt;}
.x10_c00059{left:156.433311pt;}
.xe_c00059{left:159.125310pt;}
.x4_c00059{left:221.914974pt;}
.x3_c00059{left:237.589988pt;}
.x6_c00059{left:288.096014pt;}
.x5_c00059{left:371.060339pt;}
.x1_c00059{left:453.399235pt;}
.xa_c00059{left:482.123848pt;}
.xc_c00059{left:516.319834pt;}
.xd_c00059{left:555.851200pt;}
.x13_c00059{left:618.063169pt;}
.x14_c00059{left:646.721825pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:0.632000;font-style:normal;font-weight:normal;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_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:1.112000;font-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_c00060{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00060{word-spacing:-17.812493px;}
.ws0_c00060{word-spacing:-16.387643px;}
.ws2_c00060{word-spacing:0.000000px;}
._2c_c00060{margin-left:-2.551434px;}
._0_c00060{margin-left:-1.339390px;}
._1_c00060{width:1.056812px;}
._4_c00060{width:2.765999px;}
._2_c00060{width:3.966682px;}
._3_c00060{width:5.074166px;}
._5_c00060{width:13.471813px;}
._6_c00060{width:14.563866px;}
._1b_c00060{width:96.366986px;}
._1e_c00060{width:100.072720px;}
._8_c00060{width:105.761144px;}
._14_c00060{width:119.321256px;}
._2b_c00060{width:127.760141px;}
._b_c00060{width:130.820892px;}
._9_c00060{width:141.422455px;}
._f_c00060{width:148.550306px;}
._25_c00060{width:150.330772px;}
._7_c00060{width:155.775818px;}
._19_c00060{width:167.648117px;}
._1d_c00060{width:181.100581px;}
._28_c00060{width:183.203976px;}
._a_c00060{width:201.928060px;}
._10_c00060{width:232.712979px;}
._13_c00060{width:240.370268px;}
._29_c00060{width:242.147652px;}
._1a_c00060{width:248.108788px;}
._e_c00060{width:256.663060px;}
._24_c00060{width:258.802696px;}
._2a_c00060{width:280.189088px;}
._12_c00060{width:283.953452px;}
._d_c00060{width:291.862668px;}
._1f_c00060{width:293.736558px;}
._27_c00060{width:297.351137px;}
._11_c00060{width:300.151905px;}
._c_c00060{width:307.994389px;}
._23_c00060{width:309.672921px;}
._21_c00060{width:313.304764px;}
._26_c00060{width:314.409737px;}
._18_c00060{width:319.402222px;}
._16_c00060{width:323.128489px;}
._22_c00060{width:325.816857px;}
._20_c00060{width:330.093280px;}
._1c_c00060{width:333.660767px;}
._15_c00060{width:340.076114px;}
._17_c00060{width:424.913455px;}
.fc1_c00060{color:rgb(105,148,45);}
.fc0_c00060{color:rgb(35,31,32);}
.fs2_c00060{font-size:17.812373px;}
.fs4_c00060{font-size:35.624626px;}
.fs5_c00060{font-size:44.887062px;}
.fs3_c00060{font-size:59.136936px;}
.fs0_c00060{font-size:65.550574px;}
.fs1_c00060{font-size:71.249972px;}
.y0_c00060{bottom:0.000000px;}
.y1_c00060{bottom:0.120938px;}
.y17_c00060{bottom:3.915288px;}
.y1c_c00060{bottom:3.916835px;}
.y8_c00060{bottom:6.826644px;}
.ya_c00060{bottom:65.133277px;}
.y3_c00060{bottom:83.062176px;}
.y2_c00060{bottom:84.131629px;}
.y2e_c00060{bottom:119.462355px;}
.y2d_c00060{bottom:133.534000px;}
.y2c_c00060{bottom:147.070294px;}
.y2b_c00060{bottom:187.325778px;}
.y2a_c00060{bottom:204.425771px;}
.y29_c00060{bottom:219.743765px;}
.y28_c00060{bottom:230.611261px;}
.y27_c00060{bottom:278.345742px;}
.y26_c00060{bottom:313.969228px;}
.y25_c00060{bottom:349.774213px;}
.y24_c00060{bottom:385.400699px;}
.y23_c00060{bottom:421.201185px;}
.y22_c00060{bottom:456.824671px;}
.y21_c00060{bottom:492.629656px;}
.y20_c00060{bottom:528.253142px;}
.y1f_c00060{bottom:563.875128px;}
.y1e_c00060{bottom:594.692615px;}
.y1d_c00060{bottom:625.330103px;}
.y1b_c00060{bottom:659.057400px;}
.y1a_c00060{bottom:686.786579px;}
.y19_c00060{bottom:717.599566px;}
.y18_c00060{bottom:748.237054px;}
.y16_c00060{bottom:776.795400px;}
.y15_c00060{bottom:805.235531px;}
.y14_c00060{bottom:825.186573px;}
.y13_c00060{bottom:840.862017px;}
.y12_c00060{bottom:860.807509px;}
.y11_c00060{bottom:896.787995px;}
.y10_c00060{bottom:923.145834px;}
.yf_c00060{bottom:953.963772px;}
.ye_c00060{bottom:984.600959px;}
.yd_c00060{bottom:1015.415447px;}
.yc_c00060{bottom:1034.483439px;}
.yb_c00060{bottom:1054.962931px;}
.y9_c00060{bottom:1106.088911px;}
.y7_c00060{bottom:1125.436612px;}
.y6_c00060{bottom:1146.276554px;}
.y5_c00060{bottom:1166.762796px;}
.y4_c00060{bottom:1187.245588px;}
.h6_c00060{height:11.257420px;}
.hc_c00060{height:19.947600px;}
.hb_c00060{height:19.951200px;}
.he_c00060{height:22.514763px;}
.hf_c00060{height:28.368623px;}
.h7_c00060{height:37.374544px;}
.hd_c00060{height:52.927558px;}
.h2_c00060{height:58.667764px;}
.ha_c00060{height:58.929966px;}
.h3_c00060{height:63.768724px;}
.h9_c00060{height:63.839974px;}
.h8_c00060{height:63.911224px;}
.h4_c00060{height:64.053724px;}
.h5_c00060{height:1249.830756px;}
.h1_c00060{height:1262.879062px;}
.h0_c00060{height:1263.000000px;}
.w8_c00060{width:33.663600px;}
.w6_c00060{width:35.629200px;}
.w4_c00060{width:55.400400px;}
.w7_c00060{width:64.300860px;}
.w9_c00060{width:91.017000px;}
.w5_c00060{width:91.911600px;}
.w3_c00060{width:106.873740px;}
.w2_c00060{width:883.195846px;}
.w1_c00060{width:892.414744px;}
.w0_c00060{width:892.500000px;}
.x0_c00060{left:0.000000px;}
.x7_c00060{left:1.541954px;}
.x8_c00060{left:109.903352px;}
.xb_c00060{left:123.202260px;}
.x2_c00060{left:126.216284px;}
.x10_c00060{left:144.576540px;}
.xa_c00060{left:146.062187px;}
.xf_c00060{left:175.097976px;}
.x9_c00060{left:179.015974px;}
.x4_c00060{left:249.654346px;}
.x3_c00060{left:267.288737px;}
.x13_c00060{left:285.710931px;}
.x6_c00060{left:324.108016px;}
.x5_c00060{left:417.442881px;}
.xc_c00060{left:460.387800px;}
.x11_c00060{left:471.256200px;}
.x1_c00060{left:510.074140px;}
.xd_c00060{left:544.107600px;}
.x12_c00060{left:659.534400px;}
.xe_c00060{left:687.141000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws1_c00060{word-spacing:-15.833327pt;}
.ws0_c00060{word-spacing:-14.566794pt;}
.ws2_c00060{word-spacing:0.000000pt;}
._2c_c00060{margin-left:-2.267942pt;}
._0_c00060{margin-left:-1.190569pt;}
._1_c00060{width:0.939388pt;}
._4_c00060{width:2.458666pt;}
._2_c00060{width:3.525939pt;}
._3_c00060{width:4.510370pt;}
._5_c00060{width:11.974945pt;}
._6_c00060{width:12.945658pt;}
._1b_c00060{width:85.659543pt;}
._1e_c00060{width:88.953529pt;}
._8_c00060{width:94.009906pt;}
._14_c00060{width:106.063339pt;}
._2b_c00060{width:113.564569pt;}
._b_c00060{width:116.285237pt;}
._9_c00060{width:125.708849pt;}
._f_c00060{width:132.044716pt;}
._25_c00060{width:133.627353pt;}
._7_c00060{width:138.467394pt;}
._19_c00060{width:149.020548pt;}
._1d_c00060{width:160.978294pt;}
._28_c00060{width:162.847978pt;}
._a_c00060{width:179.491609pt;}
._10_c00060{width:206.855981pt;}
._13_c00060{width:213.662461pt;}
._29_c00060{width:215.242357pt;}
._1a_c00060{width:220.541145pt;}
._e_c00060{width:228.144942pt;}
._24_c00060{width:230.046841pt;}
._2a_c00060{width:249.056967pt;}
._12_c00060{width:252.403068pt;}
._d_c00060{width:259.433482pt;}
._1f_c00060{width:261.099162pt;}
._27_c00060{width:264.312122pt;}
._11_c00060{width:266.801693pt;}
._c_c00060{width:273.772790pt;}
._23_c00060{width:275.264819pt;}
._21_c00060{width:278.493124pt;}
._26_c00060{width:279.475322pt;}
._18_c00060{width:283.913086pt;}
._16_c00060{width:287.225324pt;}
._22_c00060{width:289.614984pt;}
._20_c00060{width:293.416249pt;}
._1c_c00060{width:296.587348pt;}
._15_c00060{width:302.289879pt;}
._17_c00060{width:377.700849pt;}
.fs2_c00060{font-size:15.833220pt;}
.fs4_c00060{font-size:31.666334pt;}
.fs5_c00060{font-size:39.899611pt;}
.fs3_c00060{font-size:52.566166pt;}
.fs0_c00060{font-size:58.267177pt;}
.fs1_c00060{font-size:63.333308pt;}
.y0_c00060{bottom:0.000000pt;}
.y1_c00060{bottom:0.107500pt;}
.y17_c00060{bottom:3.480256pt;}
.y1c_c00060{bottom:3.481631pt;}
.y8_c00060{bottom:6.068128pt;}
.ya_c00060{bottom:57.896246pt;}
.y3_c00060{bottom:73.833045pt;}
.y2_c00060{bottom:74.783670pt;}
.y2e_c00060{bottom:106.188760pt;}
.y2d_c00060{bottom:118.696889pt;}
.y2c_c00060{bottom:130.729151pt;}
.y2b_c00060{bottom:166.511803pt;}
.y2a_c00060{bottom:181.711797pt;}
.y29_c00060{bottom:195.327791pt;}
.y28_c00060{bottom:204.987788pt;}
.y27_c00060{bottom:247.418437pt;}
.y26_c00060{bottom:279.083758pt;}
.y25_c00060{bottom:310.910412pt;}
.y24_c00060{bottom:342.578399pt;}
.y23_c00060{bottom:374.401053pt;}
.y22_c00060{bottom:406.066374pt;}
.y21_c00060{bottom:437.893028pt;}
.y20_c00060{bottom:469.558348pt;}
.y1f_c00060{bottom:501.222336pt;}
.y1e_c00060{bottom:528.615658pt;}
.y1d_c00060{bottom:555.848981pt;}
.y1b_c00060{bottom:585.828800pt;}
.y1a_c00060{bottom:610.476959pt;}
.y19_c00060{bottom:637.866281pt;}
.y18_c00060{bottom:665.099604pt;}
.y16_c00060{bottom:690.484800pt;}
.y15_c00060{bottom:715.764917pt;}
.y14_c00060{bottom:733.499176pt;}
.y13_c00060{bottom:747.432904pt;}
.y12_c00060{bottom:765.162230pt;}
.y11_c00060{bottom:797.144884pt;}
.y10_c00060{bottom:820.574075pt;}
.yf_c00060{bottom:847.967797pt;}
.ye_c00060{bottom:875.200853pt;}
.yd_c00060{bottom:902.591509pt;}
.yc_c00060{bottom:919.540835pt;}
.yb_c00060{bottom:937.744828pt;}
.y9_c00060{bottom:983.190143pt;}
.y7_c00060{bottom:1000.388100pt;}
.y6_c00060{bottom:1018.912492pt;}
.y5_c00060{bottom:1037.122485pt;}
.y4_c00060{bottom:1055.329411pt;}
.h6_c00060{height:10.006595pt;}
.hc_c00060{height:17.731200pt;}
.hb_c00060{height:17.734400pt;}
.he_c00060{height:20.013123pt;}
.hf_c00060{height:25.216554pt;}
.h7_c00060{height:33.221817pt;}
.hd_c00060{height:47.046718pt;}
.h2_c00060{height:52.149123pt;}
.ha_c00060{height:52.382192pt;}
.h3_c00060{height:56.683311pt;}
.h9_c00060{height:56.746644pt;}
.h8_c00060{height:56.809977pt;}
.h4_c00060{height:56.936644pt;}
.h5_c00060{height:1110.960672pt;}
.h1_c00060{height:1122.559167pt;}
.h0_c00060{height:1122.666667pt;}
.w8_c00060{width:29.923200pt;}
.w6_c00060{width:31.670400pt;}
.w4_c00060{width:49.244800pt;}
.w7_c00060{width:57.156320pt;}
.w9_c00060{width:80.904000pt;}
.w5_c00060{width:81.699200pt;}
.w3_c00060{width:94.998880pt;}
.w2_c00060{width:785.062974pt;}
.w1_c00060{width:793.257550pt;}
.w0_c00060{width:793.333333pt;}
.x0_c00060{left:0.000000pt;}
.x7_c00060{left:1.370626pt;}
.x8_c00060{left:97.691868pt;}
.xb_c00060{left:109.513120pt;}
.x2_c00060{left:112.192252pt;}
.x10_c00060{left:128.512480pt;}
.xa_c00060{left:129.833055pt;}
.xf_c00060{left:155.642645pt;}
.x9_c00060{left:159.125310pt;}
.x4_c00060{left:221.914974pt;}
.x3_c00060{left:237.589988pt;}
.x13_c00060{left:253.965272pt;}
.x6_c00060{left:288.096014pt;}
.x5_c00060{left:371.060339pt;}
.xc_c00060{left:409.233600pt;}
.x11_c00060{left:418.894400pt;}
.x1_c00060{left:453.399235pt;}
.xd_c00060{left:483.651200pt;}
.x12_c00060{left:586.252800pt;}
.xe_c00060{left:610.792000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc2da18164633488f097dd11.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
._1_c00061{margin-left:-1.030102px;}
._0_c00061{width:1.177273px;}
.fc0_c00061{color:rgb(35,31,32);}
.fs0_c00061{font-size:106.873757px;}
.y0_c00061{bottom:0.000000px;}
.y1_c00061{bottom:0.120938px;}
.y2_c00061{bottom:459.259879px;}
.h2_c00061{height:95.865760px;}
.h1_c00061{height:1262.879062px;}
.h0_c00061{height:1263.000000px;}
.w1_c00061{width:892.414744px;}
.w0_c00061{width:892.500000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:108.404900px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._1_c00061{margin-left:-0.915646pt;}
._0_c00061{width:1.046465pt;}
.fs0_c00061{font-size:94.998895pt;}
.y0_c00061{bottom:0.000000pt;}
.y1_c00061{bottom:0.107500pt;}
.y2_c00061{bottom:408.231003pt;}
.h2_c00061{height:85.214009pt;}
.h1_c00061{height:1122.559167pt;}
.h0_c00061{height:1122.666667pt;}
.w1_c00061{width:793.257550pt;}
.w0_c00061{width:793.333333pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.112000;font-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_c00062{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:0.000000px;}
._8_c00062{margin-left:-12.900699px;}
._2_c00062{margin-left:-11.879087px;}
._5_c00062{margin-left:-10.474429px;}
._6_c00062{margin-left:-8.951179px;}
._4_c00062{margin-left:-6.853519px;}
._3_c00062{margin-left:-5.547738px;}
._7_c00062{margin-left:-2.344718px;}
._0_c00062{margin-left:-1.339390px;}
._1_c00062{width:1.056812px;}
.fc1_c00062{color:rgb(105,148,45);}
.fc0_c00062{color:rgb(35,31,32);}
.fs2_c00062{font-size:59.136936px;}
.fs0_c00062{font-size:65.550574px;}
.fs1_c00062{font-size:71.249972px;}
.fs3_c00062{font-size:76.949969px;}
.fs4_c00062{font-size:118.985952px;}
.y0_c00062{bottom:0.000000px;}
.y1_c00062{bottom:0.120938px;}
.y4_c00062{bottom:4.274337px;}
.y9_c00062{bottom:6.826644px;}
.yb_c00062{bottom:65.133277px;}
.y3_c00062{bottom:77.839380px;}
.y2_c00062{bottom:84.131629px;}
.y1c_c00062{bottom:443.999676px;}
.y1b_c00062{bottom:473.747664px;}
.y1a_c00062{bottom:513.470648px;}
.y19_c00062{bottom:553.010632px;}
.y18_c00062{bottom:592.733616px;}
.y17_c00062{bottom:621.947604px;}
.y16_c00062{bottom:649.378094px;}
.y15_c00062{bottom:689.098078px;}
.y14_c00062{bottom:728.641062px;}
.y13_c00062{bottom:757.855050px;}
.y12_c00062{bottom:785.284039px;}
.y11_c00062{bottom:825.008523px;}
.y10_c00062{bottom:864.550007px;}
.yf_c00062{bottom:904.271492px;}
.ye_c00062{bottom:1008.650450px;}
.yd_c00062{bottom:1041.960936px;}
.yc_c00062{bottom:1060.486379px;}
.ya_c00062{bottom:1094.685915px;}
.y8_c00062{bottom:1125.436612px;}
.y7_c00062{bottom:1146.276554px;}
.y6_c00062{bottom:1166.762796px;}
.y5_c00062{bottom:1187.245588px;}
.h3_c00062{height:20.126340px;}
.h8_c00062{height:37.374544px;}
.h7_c00062{height:41.427963px;}
.h9_c00062{height:48.632381px;}
.hb_c00062{height:52.986695px;}
.h2_c00062{height:58.667764px;}
.h4_c00062{height:63.768724px;}
.h5_c00062{height:64.053724px;}
.ha_c00062{height:106.968371px;}
.h6_c00062{height:1249.830756px;}
.h1_c00062{height:1262.879062px;}
.h0_c00062{height:1263.000000px;}
.w2_c00062{width:8.905860px;}
.w3_c00062{width:883.195846px;}
.w1_c00062{width:892.414744px;}
.w0_c00062{width:892.500000px;}
.x0_c00062{left:0.000000px;}
.x7_c00062{left:1.541954px;}
.x8_c00062{left:109.903352px;}
.x2_c00062{left:126.229140px;}
.xb_c00062{left:216.778459px;}
.x4_c00062{left:249.654346px;}
.x3_c00062{left:267.288737px;}
.x6_c00062{left:373.804160px;}
.x9_c00062{left:393.296888px;}
.x5_c00062{left:417.442881px;}
.x1_c00062{left:510.074140px;}
.xc_c00062{left:762.368741px;}
.xa_c00062{left:764.506240px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:0.000000pt;}
._8_c00062{margin-left:-11.467288pt;}
._2_c00062{margin-left:-10.559188pt;}
._5_c00062{margin-left:-9.310604pt;}
._6_c00062{margin-left:-7.956603pt;}
._4_c00062{margin-left:-6.092017pt;}
._3_c00062{margin-left:-4.931323pt;}
._7_c00062{margin-left:-2.084193pt;}
._0_c00062{margin-left:-1.190569pt;}
._1_c00062{width:0.939388pt;}
.fs2_c00062{font-size:52.566166pt;}
.fs0_c00062{font-size:58.267177pt;}
.fs1_c00062{font-size:63.333308pt;}
.fs3_c00062{font-size:68.399973pt;}
.fs4_c00062{font-size:105.765291pt;}
.y0_c00062{bottom:0.000000pt;}
.y1_c00062{bottom:0.107500pt;}
.y4_c00062{bottom:3.799411pt;}
.y9_c00062{bottom:6.068128pt;}
.yb_c00062{bottom:57.896246pt;}
.y3_c00062{bottom:69.190560pt;}
.y2_c00062{bottom:74.783670pt;}
.y1c_c00062{bottom:394.666378pt;}
.y1b_c00062{bottom:421.109034pt;}
.y1a_c00062{bottom:456.418354pt;}
.y19_c00062{bottom:491.565006pt;}
.y18_c00062{bottom:526.874325pt;}
.y17_c00062{bottom:552.842315pt;}
.y16_c00062{bottom:577.224972pt;}
.y15_c00062{bottom:612.531625pt;}
.y14_c00062{bottom:647.680944pt;}
.y13_c00062{bottom:673.648933pt;}
.y12_c00062{bottom:698.030257pt;}
.y11_c00062{bottom:733.340910pt;}
.y10_c00062{bottom:768.488896pt;}
.yf_c00062{bottom:803.796881pt;}
.ye_c00062{bottom:896.578178pt;}
.yd_c00062{bottom:926.187499pt;}
.yc_c00062{bottom:942.654559pt;}
.ya_c00062{bottom:973.054147pt;}
.y8_c00062{bottom:1000.388100pt;}
.y7_c00062{bottom:1018.912492pt;}
.y6_c00062{bottom:1037.122485pt;}
.y5_c00062{bottom:1055.329411pt;}
.h3_c00062{height:17.890080pt;}
.h8_c00062{height:33.221817pt;}
.h7_c00062{height:36.824856pt;}
.h9_c00062{height:43.228783pt;}
.hb_c00062{height:47.099284pt;}
.h2_c00062{height:52.149123pt;}
.h4_c00062{height:56.683311pt;}
.h5_c00062{height:56.936644pt;}
.ha_c00062{height:95.082997pt;}
.h6_c00062{height:1110.960672pt;}
.h1_c00062{height:1122.559167pt;}
.h0_c00062{height:1122.666667pt;}
.w2_c00062{width:7.916320pt;}
.w3_c00062{width:785.062974pt;}
.w1_c00062{width:793.257550pt;}
.w0_c00062{width:793.333333pt;}
.x0_c00062{left:0.000000pt;}
.x7_c00062{left:1.370626pt;}
.x8_c00062{left:97.691868pt;}
.x2_c00062{left:112.203680pt;}
.xb_c00062{left:192.691963pt;}
.x4_c00062{left:221.914974pt;}
.x3_c00062{left:237.589988pt;}
.x6_c00062{left:332.270364pt;}
.x9_c00062{left:349.597234pt;}
.x5_c00062{left:371.060339pt;}
.x1_c00062{left:453.399235pt;}
.xc_c00062{left:677.661103pt;}
.xa_c00062{left:679.561102pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:0.632000;font-style:normal;font-weight:normal;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_bc2da18164633488f097dd11.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.113000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00063{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls0_c00063{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00063{word-spacing:-17.812493px;}
.ws1_c00063{word-spacing:0.000000px;}
._e_c00063{margin-left:-5.172129px;}
._d_c00063{margin-left:-3.122681px;}
._0_c00063{margin-left:-1.339390px;}
._1_c00063{width:1.056812px;}
._a_c00063{width:2.334718px;}
._9_c00063{width:3.443169px;}
._7_c00063{width:4.721638px;}
._8_c00063{width:6.673360px;}
._f_c00063{width:7.970054px;}
._5_c00063{width:9.166501px;}
._3_c00063{width:10.287524px;}
._2_c00063{width:11.808760px;}
._4_c00063{width:13.188033px;}
._6_c00063{width:14.465853px;}
._10_c00063{width:16.512616px;}
._c_c00063{width:19.029955px;}
._b_c00063{width:20.101334px;}
._11_c00063{width:21.715888px;}
._12_c00063{width:22.907801px;}
.fc1_c00063{color:rgb(105,148,45);}
.fc0_c00063{color:rgb(35,31,32);}
.fs4_c00063{font-size:41.324503px;}
.fs3_c00063{font-size:44.887062px;}
.fs2_c00063{font-size:59.136936px;}
.fs0_c00063{font-size:65.550574px;}
.fs1_c00063{font-size:71.249972px;}
.y0_c00063{bottom:0.000000px;}
.y1_c00063{bottom:0.120938px;}
.y4_c00063{bottom:4.274337px;}
.y9_c00063{bottom:6.826644px;}
.yb_c00063{bottom:65.133277px;}
.y3_c00063{bottom:77.839380px;}
.y2_c00063{bottom:84.131629px;}
.y30_c00063{bottom:105.564111px;}
.y2f_c00063{bottom:136.204899px;}
.y2e_c00063{bottom:166.839387px;}
.y2d_c00063{bottom:197.478824px;}
.y2c_c00063{bottom:228.116012px;}
.y2b_c00063{bottom:258.752600px;}
.y2a_c00063{bottom:289.389788px;}
.y29_c00063{bottom:320.027725px;}
.y28_c00063{bottom:339.263718px;}
.y27_c00063{bottom:353.158212px;}
.y26_c00063{bottom:366.160207px;}
.y25_c00063{bottom:385.756199px;}
.y24_c00063{bottom:414.433037px;}
.y23_c00063{bottom:445.070975px;}
.y22_c00063{bottom:475.706813px;}
.y21_c00063{bottom:506.344001px;}
.y20_c00063{bottom:536.978488px;}
.y1f_c00063{bottom:567.619276px;}
.y1e_c00063{bottom:598.255114px;}
.y1d_c00063{bottom:637.087098px;}
.y1c_c00063{bottom:650.090593px;}
.y1b_c00063{bottom:669.329586px;}
.y1a_c00063{bottom:683.399580px;}
.y19_c00063{bottom:700.499573px;}
.y18_c00063{bottom:736.301559px;}
.y17_c00063{bottom:752.689052px;}
.y16_c00063{bottom:771.567895px;}
.y15_c00063{bottom:787.957038px;}
.y14_c00063{bottom:814.320428px;}
.y13_c00063{bottom:845.134915px;}
.y12_c00063{bottom:875.770753px;}
.y11_c00063{bottom:906.585241px;}
.y10_c00063{bottom:937.224678px;}
.yf_c00063{bottom:968.040516px;}
.ye_c00063{bottom:998.678454px;}
.yd_c00063{bottom:1017.732946px;}
.yc_c00063{bottom:1038.219938px;}
.ya_c00063{bottom:1094.685915px;}
.y8_c00063{bottom:1125.436612px;}
.y7_c00063{bottom:1146.276554px;}
.y6_c00063{bottom:1166.762796px;}
.y5_c00063{bottom:1187.245588px;}
.h3_c00063{height:20.126340px;}
.hd_c00063{height:26.117086px;}
.hc_c00063{height:28.368623px;}
.h8_c00063{height:37.374544px;}
.h7_c00063{height:41.427963px;}
.h2_c00063{height:58.667764px;}
.hb_c00063{height:58.929966px;}
.h4_c00063{height:63.768724px;}
.ha_c00063{height:63.839974px;}
.h9_c00063{height:63.911224px;}
.h5_c00063{height:64.053724px;}
.h6_c00063{height:1249.830756px;}
.h1_c00063{height:1262.879062px;}
.h0_c00063{height:1263.000000px;}
.w2_c00063{width:8.905860px;}
.w3_c00063{width:883.195846px;}
.w1_c00063{width:892.414744px;}
.w0_c00063{width:892.500000px;}
.x0_c00063{left:0.000000px;}
.x7_c00063{left:1.541954px;}
.x8_c00063{left:109.903352px;}
.xa_c00063{left:123.440938px;}
.x2_c00063{left:126.229140px;}
.x9_c00063{left:175.987475px;}
.x4_c00063{left:249.654346px;}
.x3_c00063{left:267.288737px;}
.x6_c00063{left:373.804160px;}
.x5_c00063{left:417.442881px;}
.x1_c00063{left:510.074140px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:-15.833327pt;}
.ws1_c00063{word-spacing:0.000000pt;}
._e_c00063{margin-left:-4.597448pt;}
._d_c00063{margin-left:-2.775716pt;}
._0_c00063{margin-left:-1.190569pt;}
._1_c00063{width:0.939388pt;}
._a_c00063{width:2.075305pt;}
._9_c00063{width:3.060595pt;}
._7_c00063{width:4.197012pt;}
._8_c00063{width:5.931876pt;}
._f_c00063{width:7.084492pt;}
._5_c00063{width:8.148001pt;}
._3_c00063{width:9.144465pt;}
._2_c00063{width:10.496676pt;}
._4_c00063{width:11.722696pt;}
._6_c00063{width:12.858536pt;}
._10_c00063{width:14.677881pt;}
._c_c00063{width:16.915515pt;}
._b_c00063{width:17.867852pt;}
._11_c00063{width:19.303011pt;}
._12_c00063{width:20.362490pt;}
.fs4_c00063{font-size:36.732892pt;}
.fs3_c00063{font-size:39.899611pt;}
.fs2_c00063{font-size:52.566166pt;}
.fs0_c00063{font-size:58.267177pt;}
.fs1_c00063{font-size:63.333308pt;}
.y0_c00063{bottom:0.000000pt;}
.y1_c00063{bottom:0.107500pt;}
.y4_c00063{bottom:3.799411pt;}
.y9_c00063{bottom:6.068128pt;}
.yb_c00063{bottom:57.896246pt;}
.y3_c00063{bottom:69.190560pt;}
.y2_c00063{bottom:74.783670pt;}
.y30_c00063{bottom:93.834765pt;}
.y2f_c00063{bottom:121.071021pt;}
.y2e_c00063{bottom:148.301677pt;}
.y2d_c00063{bottom:175.536733pt;}
.y2c_c00063{bottom:202.769788pt;}
.y2b_c00063{bottom:230.002311pt;}
.y2a_c00063{bottom:257.235367pt;}
.y29_c00063{bottom:284.469089pt;}
.y28_c00063{bottom:301.567749pt;}
.y27_c00063{bottom:313.918411pt;}
.y26_c00063{bottom:325.475739pt;}
.y25_c00063{bottom:342.894399pt;}
.y24_c00063{bottom:368.384922pt;}
.y23_c00063{bottom:395.618645pt;}
.y22_c00063{bottom:422.850500pt;}
.y21_c00063{bottom:450.083556pt;}
.y20_c00063{bottom:477.314212pt;}
.y1f_c00063{bottom:504.550468pt;}
.y1e_c00063{bottom:531.782324pt;}
.y1d_c00063{bottom:566.299643pt;}
.y1c_c00063{bottom:577.858305pt;}
.y1b_c00063{bottom:594.959632pt;}
.y1a_c00063{bottom:607.466293pt;}
.y19_c00063{bottom:622.666287pt;}
.y18_c00063{bottom:654.490274pt;}
.y17_c00063{bottom:669.056935pt;}
.y16_c00063{bottom:685.838129pt;}
.y15_c00063{bottom:700.406256pt;}
.y14_c00063{bottom:723.840380pt;}
.y13_c00063{bottom:751.231036pt;}
.y12_c00063{bottom:778.462892pt;}
.y11_c00063{bottom:805.853547pt;}
.y10_c00063{bottom:833.088603pt;}
.yf_c00063{bottom:860.480459pt;}
.ye_c00063{bottom:887.714181pt;}
.yd_c00063{bottom:904.651508pt;}
.yc_c00063{bottom:922.862167pt;}
.ya_c00063{bottom:973.054147pt;}
.y8_c00063{bottom:1000.388100pt;}
.y7_c00063{bottom:1018.912492pt;}
.y6_c00063{bottom:1037.122485pt;}
.y5_c00063{bottom:1055.329411pt;}
.h3_c00063{height:17.890080pt;}
.hd_c00063{height:23.215188pt;}
.hc_c00063{height:25.216554pt;}
.h8_c00063{height:33.221817pt;}
.h7_c00063{height:36.824856pt;}
.h2_c00063{height:52.149123pt;}
.hb_c00063{height:52.382192pt;}
.h4_c00063{height:56.683311pt;}
.ha_c00063{height:56.746644pt;}
.h9_c00063{height:56.809977pt;}
.h5_c00063{height:56.936644pt;}
.h6_c00063{height:1110.960672pt;}
.h1_c00063{height:1122.559167pt;}
.h0_c00063{height:1122.666667pt;}
.w2_c00063{width:7.916320pt;}
.w3_c00063{width:785.062974pt;}
.w1_c00063{width:793.257550pt;}
.w0_c00063{width:793.333333pt;}
.x0_c00063{left:0.000000pt;}
.x7_c00063{left:1.370626pt;}
.x8_c00063{left:97.691868pt;}
.xa_c00063{left:109.725278pt;}
.x2_c00063{left:112.203680pt;}
.x9_c00063{left:156.433311pt;}
.x4_c00063{left:221.914974pt;}
.x3_c00063{left:237.589988pt;}
.x6_c00063{left:332.270364pt;}
.x5_c00063{left:371.060339pt;}
.x1_c00063{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.112000;font-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_c00064{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.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:-17.812493px;}
.ws1_c00064{word-spacing:0.000000px;}
._12_c00064{margin-left:-2.827070px;}
._0_c00064{margin-left:-1.339390px;}
._1_c00064{width:1.056812px;}
._13_c00064{width:2.672753px;}
._f_c00064{width:3.758423px;}
._10_c00064{width:5.713948px;}
._16_c00064{width:7.164339px;}
._3_c00064{width:8.226207px;}
._2_c00064{width:10.028391px;}
._4_c00064{width:11.812291px;}
._11_c00064{width:13.187941px;}
._14_c00064{width:14.721992px;}
._15_c00064{width:19.035003px;}
._e_c00064{width:20.528751px;}
._c_c00064{width:21.780134px;}
._d_c00064{width:23.026230px;}
._1a_c00064{width:27.158178px;}
._17_c00064{width:28.231364px;}
._18_c00064{width:29.392431px;}
._5_c00064{width:30.612522px;}
._6_c00064{width:32.380209px;}
._7_c00064{width:33.518042px;}
._8_c00064{width:34.529919px;}
._a_c00064{width:35.947201px;}
._19_c00064{width:37.243968px;}
._9_c00064{width:38.370052px;}
._b_c00064{width:39.506306px;}
.fc1_c00064{color:rgb(105,148,45);}
.fc0_c00064{color:rgb(35,31,32);}
.fs3_c00064{font-size:47.737061px;}
.fs2_c00064{font-size:59.136936px;}
.fs0_c00064{font-size:65.550574px;}
.fs1_c00064{font-size:71.249972px;}
.y0_c00064{bottom:0.000000px;}
.y1_c00064{bottom:0.120938px;}
.y4_c00064{bottom:4.274337px;}
.y9_c00064{bottom:6.826644px;}
.yb_c00064{bottom:65.133277px;}
.y3_c00064{bottom:77.839380px;}
.y2_c00064{bottom:84.131629px;}
.y2e_c00064{bottom:91.676367px;}
.y2d_c00064{bottom:122.489354px;}
.y2c_c00064{bottom:153.123842px;}
.y2b_c00064{bottom:183.942530px;}
.y2a_c00064{bottom:214.580467px;}
.y29_c00064{bottom:245.216305px;}
.y28_c00064{bottom:276.030793px;}
.y27_c00064{bottom:306.671581px;}
.y26_c00064{bottom:337.483218px;}
.y25_c00064{bottom:368.121906px;}
.y24_c00064{bottom:398.936994px;}
.y23_c00064{bottom:429.572831px;}
.y22_c00064{bottom:460.388669px;}
.y21_c00064{bottom:479.449161px;}
.y20_c00064{bottom:495.479655px;}
.y1f_c00064{bottom:514.894147px;}
.y1e_c00064{bottom:541.254687px;}
.y1d_c00064{bottom:572.071874px;}
.y1c_c00064{bottom:602.708462px;}
.y1b_c00064{bottom:633.347150px;}
.y1a_c00064{bottom:664.165088px;}
.y19_c00064{bottom:694.799575px;}
.y18_c00064{bottom:725.614063px;}
.y17_c00064{bottom:744.673055px;}
.y16_c00064{bottom:760.705049px;}
.y15_c00064{bottom:780.121041px;}
.y14_c00064{bottom:806.480381px;}
.y13_c00064{bottom:837.117568px;}
.y12_c00064{bottom:867.754156px;}
.y11_c00064{bottom:898.392844px;}
.y10_c00064{bottom:929.028682px;}
.yf_c00064{bottom:959.665269px;}
.ye_c00064{bottom:990.303957px;}
.yd_c00064{bottom:1009.365950px;}
.yc_c00064{bottom:1025.394943px;}
.ya_c00064{bottom:1094.685915px;}
.y8_c00064{bottom:1125.436612px;}
.y7_c00064{bottom:1146.276554px;}
.y6_c00064{bottom:1166.762796px;}
.y5_c00064{bottom:1187.245588px;}
.h3_c00064{height:20.126340px;}
.h9_c00064{height:30.169822px;}
.h8_c00064{height:37.374544px;}
.h7_c00064{height:41.427963px;}
.h2_c00064{height:58.667764px;}
.h4_c00064{height:63.768724px;}
.ha_c00064{height:63.839974px;}
.h5_c00064{height:64.053724px;}
.h6_c00064{height:1249.830756px;}
.h1_c00064{height:1262.879062px;}
.h0_c00064{height:1263.000000px;}
.w2_c00064{width:8.905860px;}
.w3_c00064{width:883.195846px;}
.w1_c00064{width:892.414744px;}
.w0_c00064{width:892.500000px;}
.x0_c00064{left:0.000000px;}
.x7_c00064{left:1.541954px;}
.x8_c00064{left:109.903352px;}
.xa_c00064{left:123.442437px;}
.x2_c00064{left:126.229140px;}
.x9_c00064{left:175.987475px;}
.x4_c00064{left:249.654346px;}
.x3_c00064{left:267.288737px;}
.x6_c00064{left:373.804160px;}
.x5_c00064{left:417.442881px;}
.x1_c00064{left:510.074140px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:-15.833327pt;}
.ws1_c00064{word-spacing:0.000000pt;}
._12_c00064{margin-left:-2.512951pt;}
._0_c00064{margin-left:-1.190569pt;}
._1_c00064{width:0.939388pt;}
._13_c00064{width:2.375781pt;}
._f_c00064{width:3.340820pt;}
._10_c00064{width:5.079065pt;}
._16_c00064{width:6.368301pt;}
._3_c00064{width:7.312184pt;}
._2_c00064{width:8.914126pt;}
._4_c00064{width:10.499814pt;}
._11_c00064{width:11.722614pt;}
._14_c00064{width:13.086215pt;}
._15_c00064{width:16.920003pt;}
._e_c00064{width:18.247778pt;}
._c_c00064{width:19.360119pt;}
._d_c00064{width:20.467760pt;}
._1a_c00064{width:24.140603pt;}
._17_c00064{width:25.094546pt;}
._18_c00064{width:26.126606pt;}
._5_c00064{width:27.211131pt;}
._6_c00064{width:28.782408pt;}
._7_c00064{width:29.793815pt;}
._8_c00064{width:30.693262pt;}
._a_c00064{width:31.953068pt;}
._19_c00064{width:33.105750pt;}
._9_c00064{width:34.106712pt;}
._b_c00064{width:35.116717pt;}
.fs3_c00064{font-size:42.432943pt;}
.fs2_c00064{font-size:52.566166pt;}
.fs0_c00064{font-size:58.267177pt;}
.fs1_c00064{font-size:63.333308pt;}
.y0_c00064{bottom:0.000000pt;}
.y1_c00064{bottom:0.107500pt;}
.y4_c00064{bottom:3.799411pt;}
.y9_c00064{bottom:6.068128pt;}
.yb_c00064{bottom:57.896246pt;}
.y3_c00064{bottom:69.190560pt;}
.y2_c00064{bottom:74.783670pt;}
.y2e_c00064{bottom:81.490104pt;}
.y2d_c00064{bottom:108.879426pt;}
.y2c_c00064{bottom:136.110082pt;}
.y2b_c00064{bottom:163.504471pt;}
.y2a_c00064{bottom:190.738193pt;}
.y29_c00064{bottom:217.970049pt;}
.y28_c00064{bottom:245.360705pt;}
.y27_c00064{bottom:272.596961pt;}
.y26_c00064{bottom:299.985083pt;}
.y25_c00064{bottom:327.219472pt;}
.y24_c00064{bottom:354.610661pt;}
.y23_c00064{bottom:381.842517pt;}
.y22_c00064{bottom:409.234373pt;}
.y21_c00064{bottom:426.177032pt;}
.y20_c00064{bottom:440.426360pt;}
.y1f_c00064{bottom:457.683686pt;}
.y1e_c00064{bottom:481.115277pt;}
.y1d_c00064{bottom:508.508333pt;}
.y1c_c00064{bottom:535.740855pt;}
.y1b_c00064{bottom:562.975244pt;}
.y1a_c00064{bottom:590.368967pt;}
.y19_c00064{bottom:617.599623pt;}
.y18_c00064{bottom:644.990278pt;}
.y17_c00064{bottom:661.931605pt;}
.y16_c00064{bottom:676.182266pt;}
.y15_c00064{bottom:693.440926pt;}
.y14_c00064{bottom:716.871449pt;}
.y13_c00064{bottom:744.104505pt;}
.y12_c00064{bottom:771.337028pt;}
.y11_c00064{bottom:798.571417pt;}
.y10_c00064{bottom:825.803273pt;}
.yf_c00064{bottom:853.035795pt;}
.ye_c00064{bottom:880.270184pt;}
.yd_c00064{bottom:897.214177pt;}
.yc_c00064{bottom:911.462172pt;}
.ya_c00064{bottom:973.054147pt;}
.y8_c00064{bottom:1000.388100pt;}
.y7_c00064{bottom:1018.912492pt;}
.y6_c00064{bottom:1037.122485pt;}
.y5_c00064{bottom:1055.329411pt;}
.h3_c00064{height:17.890080pt;}
.h9_c00064{height:26.817620pt;}
.h8_c00064{height:33.221817pt;}
.h7_c00064{height:36.824856pt;}
.h2_c00064{height:52.149123pt;}
.h4_c00064{height:56.683311pt;}
.ha_c00064{height:56.746644pt;}
.h5_c00064{height:56.936644pt;}
.h6_c00064{height:1110.960672pt;}
.h1_c00064{height:1122.559167pt;}
.h0_c00064{height:1122.666667pt;}
.w2_c00064{width:7.916320pt;}
.w3_c00064{width:785.062974pt;}
.w1_c00064{width:793.257550pt;}
.w0_c00064{width:793.333333pt;}
.x0_c00064{left:0.000000pt;}
.x7_c00064{left:1.370626pt;}
.x8_c00064{left:97.691868pt;}
.xa_c00064{left:109.726611pt;}
.x2_c00064{left:112.203680pt;}
.x9_c00064{left:156.433311pt;}
.x4_c00064{left:221.914974pt;}
.x3_c00064{left:237.589988pt;}
.x6_c00064{left:332.270364pt;}
.x5_c00064{left:371.060339pt;}
.x1_c00064{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.112000;font-style:normal;font-weight:normal;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_cea00cad088ae0172acf5904.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00065{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.v1_c00065{vertical-align:1.428749px;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:-17.812493px;}
.ws5_c00065{word-spacing:0.000000px;}
.ws3_c00065{word-spacing:460.575779px;}
.ws2_c00065{word-spacing:538.567925px;}
.ws1_c00065{word-spacing:573.926266px;}
.ws4_c00065{word-spacing:626.677303px;}
._14_c00065{margin-left:-3.586309px;}
._2_c00065{margin-left:-2.427321px;}
._0_c00065{margin-left:-1.339390px;}
._1_c00065{width:1.056812px;}
._11_c00065{width:2.067135px;}
._13_c00065{width:3.070427px;}
._7_c00065{width:4.313827px;}
._8_c00065{width:6.372992px;}
._9_c00065{width:8.255028px;}
._a_c00065{width:10.056673px;}
._e_c00065{width:11.664535px;}
._d_c00065{width:13.030450px;}
._10_c00065{width:14.383554px;}
._f_c00065{width:16.460425px;}
._b_c00065{width:20.000749px;}
._12_c00065{width:21.513102px;}
._c_c00065{width:22.532298px;}
._6_c00065{width:24.006317px;}
._5_c00065{width:25.393368px;}
._4_c00065{width:27.122731px;}
._3_c00065{width:28.498838px;}
.fc1_c00065{color:rgb(105,148,45);}
.fc0_c00065{color:rgb(35,31,32);}
.fs6_c00065{font-size:32.774747px;}
.fs7_c00065{font-size:35.624626px;}
.fs4_c00065{font-size:38.474625px;}
.fs3_c00065{font-size:41.324503px;}
.fs5_c00065{font-size:44.887062px;}
.fs2_c00065{font-size:59.136936px;}
.fs0_c00065{font-size:65.550574px;}
.fs1_c00065{font-size:71.249972px;}
.y0_c00065{bottom:0.000000px;}
.y1_c00065{bottom:0.120938px;}
.y4_c00065{bottom:4.274337px;}
.y9_c00065{bottom:6.826644px;}
.yb_c00065{bottom:65.133277px;}
.y3_c00065{bottom:77.839380px;}
.y2_c00065{bottom:84.131629px;}
.y35_c00065{bottom:129.790451px;}
.y34_c00065{bottom:160.429139px;}
.y33_c00065{bottom:191.067077px;}
.y32_c00065{bottom:221.702915px;}
.y31_c00065{bottom:252.338752px;}
.y30_c00065{bottom:271.399245px;}
.y2f_c00065{bottom:299.362984px;}
.y2e_c00065{bottom:330.000921px;}
.y2d_c00065{bottom:360.816759px;}
.y2c_c00065{bottom:391.452597px;}
.y2b_c00065{bottom:422.269184px;}
.y2a_c00065{bottom:441.328177px;}
.y29_c00065{bottom:455.222671px;}
.y28_c00065{bottom:466.445667px;}
.y27_c00065{bottom:481.588161px;}
.y26_c00065{bottom:491.740157px;}
.y25_c00065{bottom:519.880145px;}
.y24_c00065{bottom:551.410133px;}
.y23_c00065{bottom:582.937120px;}
.y22_c00065{bottom:614.287108px;}
.y21_c00065{bottom:633.523100px;}
.y20_c00065{bottom:646.526595px;}
.y1f_c00065{bottom:665.230087px;}
.y1e_c00065{bottom:680.192581px;}
.y1d_c00065{bottom:694.264076px;}
.y1c_c00065{bottom:708.158570px;}
.y1b_c00065{bottom:725.969563px;}
.y1a_c00065{bottom:738.794558px;}
.y19_c00065{bottom:757.855050px;}
.y18_c00065{bottom:771.743545px;}
.y17_c00065{bottom:788.135538px;}
.y16_c00065{bottom:824.651223px;}
.y15_c00065{bottom:854.751261px;}
.y14_c00065{bottom:885.389199px;}
.y13_c00065{bottom:916.203687px;}
.y12_c00065{bottom:946.839525px;}
.y11_c00065{bottom:977.658962px;}
.y10_c00065{bottom:996.717955px;}
.yf_c00065{bottom:1010.787949px;}
.ye_c00065{bottom:1023.612944px;}
.yd_c00065{bottom:1043.207436px;}
.yc_c00065{bottom:1060.486379px;}
.ya_c00065{bottom:1094.685915px;}
.y8_c00065{bottom:1125.436612px;}
.y7_c00065{bottom:1146.276554px;}
.y6_c00065{bottom:1166.762796px;}
.y5_c00065{bottom:1187.245588px;}
.h3_c00065{height:20.126340px;}
.h14_c00065{height:20.713640px;}
.h15_c00065{height:22.514763px;}
.hd_c00065{height:24.315963px;}
.h9_c00065{height:26.117086px;}
.he_c00065{height:28.368623px;}
.h8_c00065{height:37.374544px;}
.h7_c00065{height:41.427963px;}
.hb_c00065{height:45.029982px;}
.h13_c00065{height:52.927558px;}
.h2_c00065{height:58.667764px;}
.hc_c00065{height:58.929966px;}
.h4_c00065{height:63.768724px;}
.ha_c00065{height:63.839974px;}
.hf_c00065{height:63.911224px;}
.h5_c00065{height:64.053724px;}
.h12_c00065{height:65.257474px;}
.h11_c00065{height:65.265910px;}
.h10_c00065{height:65.268724px;}
.h6_c00065{height:1249.830756px;}
.h1_c00065{height:1262.879062px;}
.h0_c00065{height:1263.000000px;}
.w2_c00065{width:8.905860px;}
.w3_c00065{width:883.195846px;}
.w1_c00065{width:892.414744px;}
.w0_c00065{width:892.500000px;}
.x0_c00065{left:0.000000px;}
.x7_c00065{left:1.541954px;}
.x8_c00065{left:109.903352px;}
.xa_c00065{left:123.439139px;}
.xc_c00065{left:125.042996px;}
.x2_c00065{left:126.229140px;}
.x9_c00065{left:175.987475px;}
.xb_c00065{left:179.015974px;}
.x4_c00065{left:249.654346px;}
.x3_c00065{left:267.288737px;}
.x6_c00065{left:373.804160px;}
.x5_c00065{left:417.442881px;}
.x1_c00065{left:510.074140px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.v1_c00065{vertical-align:1.269999pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:-15.833327pt;}
.ws5_c00065{word-spacing:0.000000pt;}
.ws3_c00065{word-spacing:409.400693pt;}
.ws2_c00065{word-spacing:478.727044pt;}
.ws1_c00065{word-spacing:510.156681pt;}
.ws4_c00065{word-spacing:557.046492pt;}
._14_c00065{margin-left:-3.187830pt;}
._2_c00065{margin-left:-2.157619pt;}
._0_c00065{margin-left:-1.190569pt;}
._1_c00065{width:0.939388pt;}
._11_c00065{width:1.837453pt;}
._13_c00065{width:2.729268pt;}
._7_c00065{width:3.834512pt;}
._8_c00065{width:5.664882pt;}
._9_c00065{width:7.337803pt;}
._a_c00065{width:8.939265pt;}
._e_c00065{width:10.368475pt;}
._d_c00065{width:11.582622pt;}
._10_c00065{width:12.785381pt;}
._f_c00065{width:14.631489pt;}
._b_c00065{width:17.778444pt;}
._12_c00065{width:19.122758pt;}
._c_c00065{width:20.028709pt;}
._6_c00065{width:21.338949pt;}
._5_c00065{width:22.571882pt;}
._4_c00065{width:24.109094pt;}
._3_c00065{width:25.332301pt;}
.fs6_c00065{font-size:29.133108pt;}
.fs7_c00065{font-size:31.666334pt;}
.fs4_c00065{font-size:34.199666pt;}
.fs3_c00065{font-size:36.732892pt;}
.fs5_c00065{font-size:39.899611pt;}
.fs2_c00065{font-size:52.566166pt;}
.fs0_c00065{font-size:58.267177pt;}
.fs1_c00065{font-size:63.333308pt;}
.y0_c00065{bottom:0.000000pt;}
.y1_c00065{bottom:0.107500pt;}
.y4_c00065{bottom:3.799411pt;}
.y9_c00065{bottom:6.068128pt;}
.yb_c00065{bottom:57.896246pt;}
.y3_c00065{bottom:69.190560pt;}
.y2_c00065{bottom:74.783670pt;}
.y35_c00065{bottom:115.369290pt;}
.y34_c00065{bottom:142.603679pt;}
.y33_c00065{bottom:169.837402pt;}
.y32_c00065{bottom:197.069257pt;}
.y31_c00065{bottom:224.301113pt;}
.y30_c00065{bottom:241.243773pt;}
.y2f_c00065{bottom:266.100430pt;}
.y2e_c00065{bottom:293.334152pt;}
.y2d_c00065{bottom:320.726008pt;}
.y2c_c00065{bottom:347.957864pt;}
.y2b_c00065{bottom:375.350386pt;}
.y2a_c00065{bottom:392.291713pt;}
.y29_c00065{bottom:404.642374pt;}
.y28_c00065{bottom:414.618370pt;}
.y27_c00065{bottom:428.078365pt;}
.y26_c00065{bottom:437.102361pt;}
.y25_c00065{bottom:462.115685pt;}
.y24_c00065{bottom:490.142340pt;}
.y23_c00065{bottom:518.166329pt;}
.y22_c00065{bottom:546.032984pt;}
.y21_c00065{bottom:563.131644pt;}
.y20_c00065{bottom:574.690306pt;}
.y1f_c00065{bottom:591.315633pt;}
.y1e_c00065{bottom:604.615628pt;}
.y1d_c00065{bottom:617.123623pt;}
.y1c_c00065{bottom:629.474284pt;}
.y1b_c00065{bottom:645.306278pt;}
.y1a_c00065{bottom:656.706274pt;}
.y19_c00065{bottom:673.648933pt;}
.y18_c00065{bottom:685.994262pt;}
.y17_c00065{bottom:700.564923pt;}
.y16_c00065{bottom:733.023310pt;}
.y15_c00065{bottom:759.778899pt;}
.y14_c00065{bottom:787.012621pt;}
.y13_c00065{bottom:814.403277pt;}
.y12_c00065{bottom:841.635133pt;}
.y11_c00065{bottom:869.030189pt;}
.y10_c00065{bottom:885.971515pt;}
.yf_c00065{bottom:898.478177pt;}
.ye_c00065{bottom:909.878172pt;}
.yd_c00065{bottom:927.295499pt;}
.yc_c00065{bottom:942.654559pt;}
.ya_c00065{bottom:973.054147pt;}
.y8_c00065{bottom:1000.388100pt;}
.y7_c00065{bottom:1018.912492pt;}
.y6_c00065{bottom:1037.122485pt;}
.y5_c00065{bottom:1055.329411pt;}
.h3_c00065{height:17.890080pt;}
.h14_c00065{height:18.412124pt;}
.h15_c00065{height:20.013123pt;}
.hd_c00065{height:21.614189pt;}
.h9_c00065{height:23.215188pt;}
.he_c00065{height:25.216554pt;}
.h8_c00065{height:33.221817pt;}
.h7_c00065{height:36.824856pt;}
.hb_c00065{height:40.026651pt;}
.h13_c00065{height:47.046718pt;}
.h2_c00065{height:52.149123pt;}
.hc_c00065{height:52.382192pt;}
.h4_c00065{height:56.683311pt;}
.ha_c00065{height:56.746644pt;}
.hf_c00065{height:56.809977pt;}
.h5_c00065{height:56.936644pt;}
.h12_c00065{height:58.006643pt;}
.h11_c00065{height:58.014142pt;}
.h10_c00065{height:58.016643pt;}
.h6_c00065{height:1110.960672pt;}
.h1_c00065{height:1122.559167pt;}
.h0_c00065{height:1122.666667pt;}
.w2_c00065{width:7.916320pt;}
.w3_c00065{width:785.062974pt;}
.w1_c00065{width:793.257550pt;}
.w0_c00065{width:793.333333pt;}
.x0_c00065{left:0.000000pt;}
.x7_c00065{left:1.370626pt;}
.x8_c00065{left:97.691868pt;}
.xa_c00065{left:109.723679pt;}
.xc_c00065{left:111.149329pt;}
.x2_c00065{left:112.203680pt;}
.x9_c00065{left:156.433311pt;}
.xb_c00065{left:159.125310pt;}
.x4_c00065{left:221.914974pt;}
.x3_c00065{left:237.589988pt;}
.x6_c00065{left:332.270364pt;}
.x5_c00065{left:371.060339pt;}
.x1_c00065{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.112000;font-style:normal;font-weight:normal;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_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00066{transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.v1_c00066{vertical-align:1.423127px;}
.ls0_c00066{letter-spacing:0.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:-17.812493px;}
.ws1_c00066{word-spacing:-14.784234px;}
.ws2_c00066{word-spacing:0.000000px;}
._d_c00066{margin-left:-4.851756px;}
._a_c00066{margin-left:-2.768192px;}
._0_c00066{margin-left:-1.339390px;}
._1_c00066{width:1.056812px;}
._b_c00066{width:2.197019px;}
._6_c00066{width:4.966251px;}
._7_c00066{width:6.238180px;}
._8_c00066{width:7.669920px;}
._9_c00066{width:9.407683px;}
._5_c00066{width:11.675040px;}
._3_c00066{width:12.916303px;}
._2_c00066{width:14.573984px;}
._4_c00066{width:15.845493px;}
._c_c00066{width:770.108573px;}
._e_c00066{width:817.166554px;}
.fc1_c00066{color:rgb(105,148,45);}
.fc0_c00066{color:rgb(35,31,32);}
.fs4_c00066{font-size:32.774747px;}
.fs3_c00066{font-size:38.474625px;}
.fs5_c00066{font-size:44.887062px;}
.fs2_c00066{font-size:59.136936px;}
.fs0_c00066{font-size:65.550574px;}
.fs1_c00066{font-size:71.249972px;}
.y0_c00066{bottom:0.000000px;}
.y1_c00066{bottom:0.120938px;}
.y1d_c00066{bottom:2.668514px;}
.y23_c00066{bottom:2.669135px;}
.y40_c00066{bottom:2.669895px;}
.y3b_c00066{bottom:3.913359px;}
.y1a_c00066{bottom:3.914091px;}
.y4_c00066{bottom:4.274337px;}
.y9_c00066{bottom:6.826644px;}
.yb_c00066{bottom:65.133277px;}
.y3_c00066{bottom:77.839380px;}
.y2_c00066{bottom:84.131629px;}
.y4c_c00066{bottom:95.590465px;}
.y4b_c00066{bottom:105.745761px;}
.y49_c00066{bottom:133.891150px;}
.y4a_c00066{bottom:134.959149px;}
.y46_c00066{bottom:165.416787px;}
.y48_c00066{bottom:169.155836px;}
.y47_c00066{bottom:194.629275px;}
.y45_c00066{bottom:196.055775px;}
.y44_c00066{bottom:225.977763px;}
.y41_c00066{bottom:238.090258px;}
.y43_c00066{bottom:241.120257px;}
.y42_c00066{bottom:251.269253px;}
.y3f_c00066{bottom:260.415000px;}
.y3d_c00066{bottom:286.300948px;}
.y3e_c00066{bottom:287.187448px;}
.y39_c00066{bottom:311.120729px;}
.y38_c00066{bottom:329.467221px;}
.y3c_c00066{bottom:333.325929px;}
.y37_c00066{bottom:341.761217px;}
.y3a_c00066{bottom:348.768000px;}
.y35_c00066{bottom:373.285204px;}
.y36_c00066{bottom:373.465204px;}
.y34_c00066{bottom:404.636691px;}
.y33_c00066{bottom:424.049684px;}
.y32_c00066{bottom:437.585678px;}
.y31_c00066{bottom:479.627661px;}
.y30_c00066{bottom:494.767155px;}
.y2f_c00066{bottom:504.919151px;}
.y2d_c00066{bottom:533.237640px;}
.y2e_c00066{bottom:534.130140px;}
.y2a_c00066{bottom:564.766127px;}
.y2c_c00066{bottom:568.332376px;}
.y29_c00066{bottom:583.115620px;}
.y2b_c00066{bottom:593.803116px;}
.y28_c00066{bottom:595.406615px;}
.y27_c00066{bottom:625.510103px;}
.y24_c00066{bottom:637.265598px;}
.y26_c00066{bottom:640.471097px;}
.y25_c00066{bottom:650.803093px;}
.y22_c00066{bottom:659.766600px;}
.y21_c00066{bottom:684.046789px;}
.y1e_c00066{bottom:695.982284px;}
.y20_c00066{bottom:699.007783px;}
.y1f_c00066{bottom:709.164279px;}
.y1c_c00066{bottom:711.601200px;}
.y18_c00066{bottom:730.781561px;}
.y1b_c00066{bottom:752.983761px;}
.y17_c00066{bottom:761.419049px;}
.y19_c00066{bottom:768.423600px;}
.y15_c00066{bottom:792.946036px;}
.y16_c00066{bottom:793.301536px;}
.y14_c00066{bottom:824.474523px;}
.y13_c00066{bottom:865.618007px;}
.y12_c00066{bottom:883.609000px;}
.y11_c00066{bottom:895.900595px;}
.y10_c00066{bottom:949.515973px;}
.yf_c00066{bottom:980.153161px;}
.ye_c00066{bottom:1010.789749px;}
.yd_c00066{bottom:1041.426937px;}
.yc_c00066{bottom:1060.486379px;}
.ya_c00066{bottom:1094.685915px;}
.y8_c00066{bottom:1125.436612px;}
.y7_c00066{bottom:1146.276554px;}
.y6_c00066{bottom:1166.762796px;}
.y5_c00066{bottom:1187.245588px;}
.he_c00066{height:10.866600px;}
.h11_c00066{height:11.048400px;}
.h14_c00066{height:16.203600px;}
.hd_c00066{height:16.385400px;}
.h3_c00066{height:20.126340px;}
.h10_c00066{height:20.713640px;}
.ha_c00066{height:24.315963px;}
.h12_c00066{height:28.368623px;}
.h8_c00066{height:37.374544px;}
.h7_c00066{height:41.427963px;}
.hf_c00066{height:52.927558px;}
.h2_c00066{height:58.667764px;}
.h4_c00066{height:63.768724px;}
.h9_c00066{height:63.839974px;}
.hc_c00066{height:63.911224px;}
.h5_c00066{height:64.053724px;}
.h13_c00066{height:64.488724px;}
.hb_c00066{height:65.191852px;}
.h6_c00066{height:1249.830756px;}
.h1_c00066{height:1262.879062px;}
.h0_c00066{height:1263.000000px;}
.w5_c00066{width:5.698800px;}
.w4_c00066{width:8.724600px;}
.w6_c00066{width:8.726400px;}
.w2_c00066{width:8.905860px;}
.w3_c00066{width:883.195846px;}
.w1_c00066{width:892.414744px;}
.w0_c00066{width:892.500000px;}
.x0_c00066{left:0.000000px;}
.x7_c00066{left:1.541954px;}
.x8_c00066{left:109.903352px;}
.x1c_c00066{left:117.383849px;}
.x13_c00066{left:118.926540px;}
.x2_c00066{left:126.229140px;}
.xd_c00066{left:141.431389px;}
.x23_c00066{left:144.460488px;}
.x10_c00066{left:152.828984px;}
.x20_c00066{left:157.462483px;}
.x1b_c00066{left:159.065982px;}
.x30_c00066{left:160.133982px;}
.x16_c00066{left:162.449981px;}
.x1d_c00066{left:165.833979px;}
.x2d_c00066{left:169.040978px;}
.xf_c00066{left:175.631975px;}
.x26_c00066{left:177.695273px;}
.x9_c00066{left:179.015974px;}
.xa_c00066{left:206.090663px;}
.x4_c00066{left:249.654346px;}
.x3_c00066{left:267.288737px;}
.x19_c00066{left:296.752427px;}
.x11_c00066{left:298.296000px;}
.x2a_c00066{left:302.633925px;}
.x24_c00066{left:304.176600px;}
.x27_c00066{left:314.849218px;}
.x22_c00066{left:315.991419px;}
.x12_c00066{left:320.550716px;}
.x1e_c00066{left:321.692917px;}
.x17_c00066{left:324.362916px;}
.x2e_c00066{left:332.914412px;}
.x28_c00066{left:340.930409px;}
.x31_c00066{left:364.442900px;}
.xc_c00066{left:369.787398px;}
.x21_c00066{left:372.452897px;}
.x6_c00066{left:373.804160px;}
.x5_c00066{left:417.442881px;}
.xb_c00066{left:443.171868px;}
.x25_c00066{left:453.249662px;}
.x1f_c00066{left:457.060789px;}
.x2b_c00066{left:472.382857px;}
.x1a_c00066{left:499.277846px;}
.x15_c00066{left:500.984143px;}
.x2f_c00066{left:508.722052px;}
.x1_c00066{left:510.074140px;}
.xe_c00066{left:527.603835px;}
.x2c_c00066{left:535.082832px;}
.x18_c00066{left:659.768782px;}
.x29_c00066{left:675.265275px;}
.x14_c00066{left:708.857060px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.v1_c00066{vertical-align:1.265002pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws0_c00066{word-spacing:-15.833327pt;}
.ws1_c00066{word-spacing:-13.141541pt;}
.ws2_c00066{word-spacing:0.000000pt;}
._d_c00066{margin-left:-4.312672pt;}
._a_c00066{margin-left:-2.460615pt;}
._0_c00066{margin-left:-1.190569pt;}
._1_c00066{width:0.939388pt;}
._b_c00066{width:1.952906pt;}
._6_c00066{width:4.414446pt;}
._7_c00066{width:5.545049pt;}
._8_c00066{width:6.817707pt;}
._9_c00066{width:8.362385pt;}
._5_c00066{width:10.377813pt;}
._3_c00066{width:11.481159pt;}
._2_c00066{width:12.954652pt;}
._4_c00066{width:14.084883pt;}
._c_c00066{width:684.540954pt;}
._e_c00066{width:726.370270pt;}
.fs4_c00066{font-size:29.133108pt;}
.fs3_c00066{font-size:34.199666pt;}
.fs5_c00066{font-size:39.899611pt;}
.fs2_c00066{font-size:52.566166pt;}
.fs0_c00066{font-size:58.267177pt;}
.fs1_c00066{font-size:63.333308pt;}
.y0_c00066{bottom:0.000000pt;}
.y1_c00066{bottom:0.107500pt;}
.y1d_c00066{bottom:2.372013pt;}
.y23_c00066{bottom:2.372564pt;}
.y40_c00066{bottom:2.373240pt;}
.y3b_c00066{bottom:3.478541pt;}
.y1a_c00066{bottom:3.479192pt;}
.y4_c00066{bottom:3.799411pt;}
.y9_c00066{bottom:6.068128pt;}
.yb_c00066{bottom:57.896246pt;}
.y3_c00066{bottom:69.190560pt;}
.y2_c00066{bottom:74.783670pt;}
.y4c_c00066{bottom:84.969302pt;}
.y4b_c00066{bottom:93.996232pt;}
.y49_c00066{bottom:119.014355pt;}
.y4a_c00066{bottom:119.963688pt;}
.y46_c00066{bottom:147.037144pt;}
.y48_c00066{bottom:150.360743pt;}
.y47_c00066{bottom:173.003800pt;}
.y45_c00066{bottom:174.271800pt;}
.y44_c00066{bottom:200.869123pt;}
.y41_c00066{bottom:211.635785pt;}
.y43_c00066{bottom:214.329117pt;}
.y42_c00066{bottom:223.350447pt;}
.y3f_c00066{bottom:231.480000pt;}
.y3d_c00066{bottom:254.489731pt;}
.y3e_c00066{bottom:255.277731pt;}
.y39_c00066{bottom:276.551759pt;}
.y38_c00066{bottom:292.859752pt;}
.y3c_c00066{bottom:296.289715pt;}
.y37_c00066{bottom:303.787748pt;}
.y3a_c00066{bottom:310.016000pt;}
.y35_c00066{bottom:331.809070pt;}
.y36_c00066{bottom:331.969070pt;}
.y34_c00066{bottom:359.677059pt;}
.y33_c00066{bottom:376.933052pt;}
.y32_c00066{bottom:388.965047pt;}
.y31_c00066{bottom:426.335699pt;}
.y30_c00066{bottom:439.793027pt;}
.y2f_c00066{bottom:448.817023pt;}
.y2d_c00066{bottom:473.989013pt;}
.y2e_c00066{bottom:474.782346pt;}
.y2a_c00066{bottom:502.014335pt;}
.y2c_c00066{bottom:505.184334pt;}
.y29_c00066{bottom:518.324996pt;}
.y2b_c00066{bottom:527.824992pt;}
.y28_c00066{bottom:529.250325pt;}
.y27_c00066{bottom:556.008981pt;}
.y24_c00066{bottom:566.458310pt;}
.y26_c00066{bottom:569.307642pt;}
.y25_c00066{bottom:578.491638pt;}
.y22_c00066{bottom:586.459200pt;}
.y21_c00066{bottom:608.041590pt;}
.y1e_c00066{bottom:618.650919pt;}
.y20_c00066{bottom:621.340251pt;}
.y1f_c00066{bottom:630.368248pt;}
.y1c_c00066{bottom:632.534400pt;}
.y18_c00066{bottom:649.583610pt;}
.y1b_c00066{bottom:669.318899pt;}
.y17_c00066{bottom:676.816932pt;}
.y19_c00066{bottom:683.043200pt;}
.y15_c00066{bottom:704.840921pt;}
.y16_c00066{bottom:705.156921pt;}
.y14_c00066{bottom:732.866243pt;}
.y13_c00066{bottom:769.438228pt;}
.y12_c00066{bottom:785.430222pt;}
.y11_c00066{bottom:796.356084pt;}
.y10_c00066{bottom:844.014199pt;}
.yf_c00066{bottom:871.247254pt;}
.ye_c00066{bottom:898.479777pt;}
.yd_c00066{bottom:925.712833pt;}
.yc_c00066{bottom:942.654559pt;}
.ya_c00066{bottom:973.054147pt;}
.y8_c00066{bottom:1000.388100pt;}
.y7_c00066{bottom:1018.912492pt;}
.y6_c00066{bottom:1037.122485pt;}
.y5_c00066{bottom:1055.329411pt;}
.he_c00066{height:9.659200pt;}
.h11_c00066{height:9.820800pt;}
.h14_c00066{height:14.403200pt;}
.hd_c00066{height:14.564800pt;}
.h3_c00066{height:17.890080pt;}
.h10_c00066{height:18.412124pt;}
.ha_c00066{height:21.614189pt;}
.h12_c00066{height:25.216554pt;}
.h8_c00066{height:33.221817pt;}
.h7_c00066{height:36.824856pt;}
.hf_c00066{height:47.046718pt;}
.h2_c00066{height:52.149123pt;}
.h4_c00066{height:56.683311pt;}
.h9_c00066{height:56.746644pt;}
.hc_c00066{height:56.809977pt;}
.h5_c00066{height:56.936644pt;}
.h13_c00066{height:57.323310pt;}
.hb_c00066{height:57.948313pt;}
.h6_c00066{height:1110.960672pt;}
.h1_c00066{height:1122.559167pt;}
.h0_c00066{height:1122.666667pt;}
.w5_c00066{width:5.065600pt;}
.w4_c00066{width:7.755200pt;}
.w6_c00066{width:7.756800pt;}
.w2_c00066{width:7.916320pt;}
.w3_c00066{width:785.062974pt;}
.w1_c00066{width:793.257550pt;}
.w0_c00066{width:793.333333pt;}
.x0_c00066{left:0.000000pt;}
.x7_c00066{left:1.370626pt;}
.x8_c00066{left:97.691868pt;}
.x1c_c00066{left:104.341199pt;}
.x13_c00066{left:105.712480pt;}
.x2_c00066{left:112.203680pt;}
.xd_c00066{left:125.716790pt;}
.x23_c00066{left:128.409322pt;}
.x10_c00066{left:135.847986pt;}
.x20_c00066{left:139.966651pt;}
.x1b_c00066{left:141.391984pt;}
.x30_c00066{left:142.341317pt;}
.x16_c00066{left:144.399983pt;}
.x1d_c00066{left:147.407982pt;}
.x2d_c00066{left:150.258647pt;}
.xf_c00066{left:156.117311pt;}
.x26_c00066{left:157.951353pt;}
.x9_c00066{left:159.125310pt;}
.xa_c00066{left:183.191700pt;}
.x4_c00066{left:221.914974pt;}
.x3_c00066{left:237.589988pt;}
.x19_c00066{left:263.779935pt;}
.x11_c00066{left:265.152000pt;}
.x2a_c00066{left:269.007933pt;}
.x24_c00066{left:270.379200pt;}
.x27_c00066{left:279.865971pt;}
.x22_c00066{left:280.881261pt;}
.x12_c00066{left:284.933969pt;}
.x1e_c00066{left:285.949259pt;}
.x17_c00066{left:288.322592pt;}
.x2e_c00066{left:295.923922pt;}
.x28_c00066{left:303.049253pt;}
.x31_c00066{left:323.949244pt;}
.xc_c00066{left:328.699909pt;}
.x21_c00066{left:331.069241pt;}
.x6_c00066{left:332.270364pt;}
.x5_c00066{left:371.060339pt;}
.xb_c00066{left:393.930550pt;}
.x25_c00066{left:402.888589pt;}
.x1f_c00066{left:406.276257pt;}
.x2b_c00066{left:419.895873pt;}
.x1a_c00066{left:443.802530pt;}
.x15_c00066{left:445.319239pt;}
.x2f_c00066{left:452.197379pt;}
.x1_c00066{left:453.399235pt;}
.xe_c00066{left:468.981186pt;}
.x2c_c00066{left:475.629184pt;}
.x18_c00066{left:586.461139pt;}
.x29_c00066{left:600.235800pt;}
.x14_c00066{left:630.095165pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.112000;font-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_c00067{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls0_c00067{letter-spacing:0.000000px;}
.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:-17.812493px;}
.ws1_c00067{word-spacing:0.000000px;}
._b_c00067{margin-left:-3.851260px;}
._2_c00067{margin-left:-2.347051px;}
._0_c00067{margin-left:-1.339390px;}
._1_c00067{width:1.056812px;}
._4_c00067{width:2.659432px;}
._7_c00067{width:3.702076px;}
._8_c00067{width:5.001256px;}
._d_c00067{width:6.058683px;}
._c_c00067{width:7.238275px;}
._e_c00067{width:8.308355px;}
._f_c00067{width:9.389241px;}
._a_c00067{width:11.026115px;}
._9_c00067{width:12.384248px;}
._12_c00067{width:13.433248px;}
._3_c00067{width:14.458323px;}
._5_c00067{width:16.453987px;}
._14_c00067{width:18.863240px;}
._6_c00067{width:19.882135px;}
._13_c00067{width:20.925489px;}
._11_c00067{width:29.962134px;}
._10_c00067{width:31.906760px;}
.fc1_c00067{color:rgb(105,148,45);}
.fc0_c00067{color:rgb(35,31,32);}
.fs3_c00067{font-size:41.324503px;}
.fs2_c00067{font-size:59.136936px;}
.fs0_c00067{font-size:65.550574px;}
.fs1_c00067{font-size:71.249972px;}
.y0_c00067{bottom:0.000000px;}
.y1_c00067{bottom:0.120938px;}
.y4_c00067{bottom:4.274337px;}
.y9_c00067{bottom:6.826644px;}
.yb_c00067{bottom:65.133277px;}
.y3_c00067{bottom:77.839380px;}
.y2_c00067{bottom:84.131629px;}
.y39_c00067{bottom:91.321287px;}
.y38_c00067{bottom:106.103781px;}
.y37_c00067{bottom:121.066275px;}
.y36_c00067{bottom:135.852279px;}
.y35_c00067{bottom:150.634773px;}
.y34_c00067{bottom:165.597267px;}
.y33_c00067{bottom:180.381876px;}
.y32_c00067{bottom:195.166485px;}
.y31_c00067{bottom:210.128979px;}
.y30_c00067{bottom:224.911473px;}
.y2f_c00067{bottom:239.693967px;}
.y2e_c00067{bottom:254.659281px;}
.y2d_c00067{bottom:269.443890px;}
.y2c_c00067{bottom:284.224975px;}
.y2b_c00067{bottom:299.186059px;}
.y2a_c00067{bottom:313.972768px;}
.y29_c00067{bottom:328.756672px;}
.y28_c00067{bottom:343.719166px;}
.y27_c00067{bottom:358.503070px;}
.y26_c00067{bottom:373.286974px;}
.y25_c00067{bottom:388.249468px;}
.y24_c00067{bottom:403.034077px;}
.y23_c00067{bottom:417.818686px;}
.y22_c00067{bottom:444.353526px;}
.y21_c00067{bottom:474.992963px;}
.y20_c00067{bottom:505.803851px;}
.y1f_c00067{bottom:536.443289px;}
.y1e_c00067{bottom:567.256276px;}
.y1d_c00067{bottom:597.893464px;}
.y1c_c00067{bottom:628.712902px;}
.y1b_c00067{bottom:659.350090px;}
.y1a_c00067{bottom:690.164577px;}
.y19_c00067{bottom:709.226570px;}
.y18_c00067{bottom:737.193458px;}
.y17_c00067{bottom:767.827946px;}
.y16_c00067{bottom:798.468734px;}
.y15_c00067{bottom:829.284572px;}
.y14_c00067{bottom:859.921759px;}
.y13_c00067{bottom:890.732047px;}
.y12_c00067{bottom:921.371485px;}
.y11_c00067{bottom:952.187322px;}
.y10_c00067{bottom:982.824510px;}
.yf_c00067{bottom:1013.642448px;}
.ye_c00067{bottom:1032.695440px;}
.yd_c00067{bottom:1046.772935px;}
.yc_c00067{bottom:1059.059880px;}
.ya_c00067{bottom:1094.685915px;}
.y8_c00067{bottom:1125.436612px;}
.y7_c00067{bottom:1146.276554px;}
.y6_c00067{bottom:1166.762796px;}
.y5_c00067{bottom:1187.245588px;}
.h3_c00067{height:20.126340px;}
.ha_c00067{height:26.117086px;}
.h8_c00067{height:37.374544px;}
.h7_c00067{height:41.427963px;}
.h9_c00067{height:52.927558px;}
.h2_c00067{height:58.667764px;}
.h4_c00067{height:63.768724px;}
.hb_c00067{height:63.839974px;}
.h5_c00067{height:64.053724px;}
.h6_c00067{height:1249.830756px;}
.h1_c00067{height:1262.879062px;}
.h0_c00067{height:1263.000000px;}
.w2_c00067{width:9.262980px;}
.w3_c00067{width:883.195846px;}
.w1_c00067{width:892.414744px;}
.w0_c00067{width:892.500000px;}
.x0_c00067{left:0.000000px;}
.x7_c00067{left:1.541954px;}
.x8_c00067{left:109.903352px;}
.x2_c00067{left:126.229140px;}
.x9_c00067{left:179.015605px;}
.x4_c00067{left:249.654346px;}
.x3_c00067{left:267.288737px;}
.x6_c00067{left:373.804160px;}
.x5_c00067{left:417.442881px;}
.x1_c00067{left:510.074140px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:-15.833327pt;}
.ws1_c00067{word-spacing:0.000000pt;}
._b_c00067{margin-left:-3.423342pt;}
._2_c00067{margin-left:-2.086268pt;}
._0_c00067{margin-left:-1.190569pt;}
._1_c00067{width:0.939388pt;}
._4_c00067{width:2.363939pt;}
._7_c00067{width:3.290734pt;}
._8_c00067{width:4.445561pt;}
._d_c00067{width:5.385496pt;}
._c_c00067{width:6.434022pt;}
._e_c00067{width:7.385204pt;}
._f_c00067{width:8.345992pt;}
._a_c00067{width:9.800991pt;}
._9_c00067{width:11.008220pt;}
._12_c00067{width:11.940665pt;}
._3_c00067{width:12.851842pt;}
._5_c00067{width:14.625767pt;}
._14_c00067{width:16.767324pt;}
._6_c00067{width:17.673009pt;}
._13_c00067{width:18.600434pt;}
._11_c00067{width:26.633008pt;}
._10_c00067{width:28.361564pt;}
.fs3_c00067{font-size:36.732892pt;}
.fs2_c00067{font-size:52.566166pt;}
.fs0_c00067{font-size:58.267177pt;}
.fs1_c00067{font-size:63.333308pt;}
.y0_c00067{bottom:0.000000pt;}
.y1_c00067{bottom:0.107500pt;}
.y4_c00067{bottom:3.799411pt;}
.y9_c00067{bottom:6.068128pt;}
.yb_c00067{bottom:57.896246pt;}
.y3_c00067{bottom:69.190560pt;}
.y2_c00067{bottom:74.783670pt;}
.y39_c00067{bottom:81.174477pt;}
.y38_c00067{bottom:94.314472pt;}
.y37_c00067{bottom:107.614467pt;}
.y36_c00067{bottom:120.757581pt;}
.y35_c00067{bottom:133.897576pt;}
.y34_c00067{bottom:147.197571pt;}
.y33_c00067{bottom:160.339445pt;}
.y32_c00067{bottom:173.481320pt;}
.y31_c00067{bottom:186.781315pt;}
.y30_c00067{bottom:199.921310pt;}
.y2f_c00067{bottom:213.061304pt;}
.y2e_c00067{bottom:226.363806pt;}
.y2d_c00067{bottom:239.505680pt;}
.y2c_c00067{bottom:252.644422pt;}
.y2b_c00067{bottom:265.943163pt;}
.y2a_c00067{bottom:279.086905pt;}
.y29_c00067{bottom:292.228153pt;}
.y28_c00067{bottom:305.528147pt;}
.y27_c00067{bottom:318.669395pt;}
.y26_c00067{bottom:331.810644pt;}
.y25_c00067{bottom:345.110638pt;}
.y24_c00067{bottom:358.252513pt;}
.y23_c00067{bottom:371.394388pt;}
.y22_c00067{bottom:394.980912pt;}
.y21_c00067{bottom:422.215967pt;}
.y20_c00067{bottom:449.603423pt;}
.y1f_c00067{bottom:476.838479pt;}
.y1e_c00067{bottom:504.227801pt;}
.y1d_c00067{bottom:531.460857pt;}
.y1c_c00067{bottom:558.855913pt;}
.y1b_c00067{bottom:586.088968pt;}
.y1a_c00067{bottom:613.479624pt;}
.y19_c00067{bottom:630.423617pt;}
.y18_c00067{bottom:655.283074pt;}
.y17_c00067{bottom:682.513730pt;}
.y16_c00067{bottom:709.749986pt;}
.y15_c00067{bottom:737.141841pt;}
.y14_c00067{bottom:764.374897pt;}
.y13_c00067{bottom:791.761820pt;}
.y12_c00067{bottom:818.996875pt;}
.y11_c00067{bottom:846.388731pt;}
.y10_c00067{bottom:873.621787pt;}
.yf_c00067{bottom:901.015509pt;}
.ye_c00067{bottom:917.951502pt;}
.yd_c00067{bottom:930.464831pt;}
.yc_c00067{bottom:941.386560pt;}
.ya_c00067{bottom:973.054147pt;}
.y8_c00067{bottom:1000.388100pt;}
.y7_c00067{bottom:1018.912492pt;}
.y6_c00067{bottom:1037.122485pt;}
.y5_c00067{bottom:1055.329411pt;}
.h3_c00067{height:17.890080pt;}
.ha_c00067{height:23.215188pt;}
.h8_c00067{height:33.221817pt;}
.h7_c00067{height:36.824856pt;}
.h9_c00067{height:47.046718pt;}
.h2_c00067{height:52.149123pt;}
.h4_c00067{height:56.683311pt;}
.hb_c00067{height:56.746644pt;}
.h5_c00067{height:56.936644pt;}
.h6_c00067{height:1110.960672pt;}
.h1_c00067{height:1122.559167pt;}
.h0_c00067{height:1122.666667pt;}
.w2_c00067{width:8.233760pt;}
.w3_c00067{width:785.062974pt;}
.w1_c00067{width:793.257550pt;}
.w0_c00067{width:793.333333pt;}
.x0_c00067{left:0.000000pt;}
.x7_c00067{left:1.370626pt;}
.x8_c00067{left:97.691868pt;}
.x2_c00067{left:112.203680pt;}
.x9_c00067{left:159.124983pt;}
.x4_c00067{left:221.914974pt;}
.x3_c00067{left:237.589988pt;}
.x6_c00067{left:332.270364pt;}
.x5_c00067{left:371.060339pt;}
.x1_c00067{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.112000;font-style:normal;font-weight:normal;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_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:1.113000;font-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_c00068{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls0_c00068{letter-spacing:0.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00068{word-spacing:-17.812493px;}
.ws1_c00068{word-spacing:0.000000px;}
._5_c00068{margin-left:-3.819246px;}
._7_c00068{margin-left:-2.459600px;}
._0_c00068{margin-left:-1.339390px;}
._1_c00068{width:1.056812px;}
._6_c00068{width:2.134437px;}
._9_c00068{width:4.028828px;}
._3_c00068{width:5.688619px;}
._4_c00068{width:6.758804px;}
._2_c00068{width:8.244442px;}
._a_c00068{width:9.553099px;}
._b_c00068{width:10.693847px;}
._c_c00068{width:11.876131px;}
._d_c00068{width:13.041104px;}
._f_c00068{width:14.321051px;}
._10_c00068{width:15.390628px;}
._e_c00068{width:16.598093px;}
._12_c00068{width:22.001661px;}
._11_c00068{width:23.905594px;}
._8_c00068{width:380.235168px;}
.fc1_c00068{color:rgb(105,148,45);}
.fc0_c00068{color:rgb(35,31,32);}
.fs6_c00068{font-size:32.774747px;}
.fs7_c00068{font-size:35.624626px;}
.fs5_c00068{font-size:38.474625px;}
.fs3_c00068{font-size:41.324503px;}
.fs4_c00068{font-size:44.887062px;}
.fs2_c00068{font-size:59.136936px;}
.fs0_c00068{font-size:65.550574px;}
.fs1_c00068{font-size:71.249972px;}
.y0_c00068{bottom:0.000000px;}
.y1_c00068{bottom:0.120938px;}
.y4_c00068{bottom:4.274337px;}
.y9_c00068{bottom:6.826644px;}
.yb_c00068{bottom:65.133277px;}
.y3_c00068{bottom:77.839380px;}
.y2_c00068{bottom:84.131629px;}
.y35_c00068{bottom:119.462895px;}
.y34_c00068{bottom:134.246800px;}
.y33_c00068{bottom:149.209294px;}
.y32_c00068{bottom:175.567133px;}
.y31_c00068{bottom:206.202971px;}
.y30_c00068{bottom:236.842409px;}
.y2f_c00068{bottom:267.478246px;}
.y2e_c00068{bottom:286.541589px;}
.y2d_c00068{bottom:302.750732px;}
.y2c_c00068{bottom:329.288872px;}
.y2b_c00068{bottom:359.926059px;}
.y2a_c00068{bottom:390.740547px;}
.y29_c00068{bottom:421.375035px;}
.y28_c00068{bottom:443.283726px;}
.y27_c00068{bottom:471.964164px;}
.y26_c00068{bottom:502.601352px;}
.y25_c00068{bottom:533.238540px;}
.y24_c00068{bottom:563.875128px;}
.y23_c00068{bottom:583.115710px;}
.y22_c00068{bottom:597.899614px;}
.y21_c00068{bottom:611.794109px;}
.y20_c00068{bottom:623.195604px;}
.y1f_c00068{bottom:638.155098px;}
.y1e_c00068{bottom:648.487094px;}
.y1d_c00068{bottom:677.696432px;}
.y1c_c00068{bottom:708.330920px;}
.y1b_c00068{bottom:738.970358px;}
.y1a_c00068{bottom:769.607545px;}
.y19_c00068{bottom:787.777038px;}
.y18_c00068{bottom:800.068033px;}
.y17_c00068{bottom:831.241021px;}
.y16_c00068{bottom:851.188898px;}
.y15_c00068{bottom:865.973507px;}
.y14_c00068{bottom:880.222001px;}
.y13_c00068{bottom:897.147994px;}
.y12_c00068{bottom:933.658580px;}
.y11_c00068{bottom:962.339018px;}
.y10_c00068{bottom:992.976956px;}
.yf_c00068{bottom:1012.036038px;}
.ye_c00068{bottom:1026.999942px;}
.yd_c00068{bottom:1040.891437px;}
.yc_c00068{bottom:1057.280430px;}
.ya_c00068{bottom:1094.685915px;}
.y8_c00068{bottom:1125.436612px;}
.y7_c00068{bottom:1146.276554px;}
.y6_c00068{bottom:1166.762796px;}
.y5_c00068{bottom:1187.245588px;}
.h3_c00068{height:20.126340px;}
.h11_c00068{height:20.713640px;}
.h12_c00068{height:22.514763px;}
.hf_c00068{height:24.315963px;}
.ha_c00068{height:26.117086px;}
.he_c00068{height:28.368623px;}
.h8_c00068{height:37.374544px;}
.h7_c00068{height:41.427963px;}
.hc_c00068{height:45.029982px;}
.h10_c00068{height:52.927558px;}
.h2_c00068{height:58.667764px;}
.hd_c00068{height:58.798865px;}
.h9_c00068{height:58.929966px;}
.h4_c00068{height:63.768724px;}
.hb_c00068{height:63.839974px;}
.h5_c00068{height:64.053724px;}
.h6_c00068{height:1249.830756px;}
.h1_c00068{height:1262.879062px;}
.h0_c00068{height:1263.000000px;}
.w2_c00068{width:9.262980px;}
.w3_c00068{width:883.195846px;}
.w1_c00068{width:892.414744px;}
.w0_c00068{width:892.500000px;}
.x0_c00068{left:0.000000px;}
.x7_c00068{left:1.541954px;}
.x8_c00068{left:109.903352px;}
.xd_c00068{left:117.383849px;}
.xf_c00068{left:123.442449px;}
.xc_c00068{left:125.042996px;}
.x2_c00068{left:126.229140px;}
.xe_c00068{left:175.991985px;}
.x9_c00068{left:179.015974px;}
.xa_c00068{left:220.339457px;}
.x4_c00068{left:249.654346px;}
.x3_c00068{left:267.288737px;}
.x6_c00068{left:373.804160px;}
.x5_c00068{left:417.442881px;}
.xb_c00068{left:432.662873px;}
.x1_c00068{left:510.074140px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:-15.833327pt;}
.ws1_c00068{word-spacing:0.000000pt;}
._5_c00068{margin-left:-3.394885pt;}
._7_c00068{margin-left:-2.186312pt;}
._0_c00068{margin-left:-1.190569pt;}
._1_c00068{width:0.939388pt;}
._6_c00068{width:1.897277pt;}
._9_c00068{width:3.581180pt;}
._3_c00068{width:5.056550pt;}
._4_c00068{width:6.007826pt;}
._2_c00068{width:7.328393pt;}
._a_c00068{width:8.491643pt;}
._b_c00068{width:9.505642pt;}
._c_c00068{width:10.556561pt;}
._d_c00068{width:11.592092pt;}
._f_c00068{width:12.729823pt;}
._10_c00068{width:13.680558pt;}
._e_c00068{width:14.753861pt;}
._12_c00068{width:19.557032pt;}
._11_c00068{width:21.249417pt;}
._8_c00068{width:337.986816pt;}
.fs6_c00068{font-size:29.133108pt;}
.fs7_c00068{font-size:31.666334pt;}
.fs5_c00068{font-size:34.199666pt;}
.fs3_c00068{font-size:36.732892pt;}
.fs4_c00068{font-size:39.899611pt;}
.fs2_c00068{font-size:52.566166pt;}
.fs0_c00068{font-size:58.267177pt;}
.fs1_c00068{font-size:63.333308pt;}
.y0_c00068{bottom:0.000000pt;}
.y1_c00068{bottom:0.107500pt;}
.y4_c00068{bottom:3.799411pt;}
.y9_c00068{bottom:6.068128pt;}
.yb_c00068{bottom:57.896246pt;}
.y3_c00068{bottom:69.190560pt;}
.y2_c00068{bottom:74.783670pt;}
.y35_c00068{bottom:106.189240pt;}
.y34_c00068{bottom:119.330489pt;}
.y33_c00068{bottom:132.630483pt;}
.y32_c00068{bottom:156.059674pt;}
.y31_c00068{bottom:183.291530pt;}
.y30_c00068{bottom:210.526585pt;}
.y2f_c00068{bottom:237.758441pt;}
.y2e_c00068{bottom:254.703634pt;}
.y2d_c00068{bottom:269.111762pt;}
.y2c_c00068{bottom:292.701219pt;}
.y2b_c00068{bottom:319.934275pt;}
.y2a_c00068{bottom:347.324931pt;}
.y29_c00068{bottom:374.555586pt;}
.y28_c00068{bottom:394.029979pt;}
.y27_c00068{bottom:419.523702pt;}
.y26_c00068{bottom:446.756758pt;}
.y25_c00068{bottom:473.989813pt;}
.y24_c00068{bottom:501.222336pt;}
.y23_c00068{bottom:518.325076pt;}
.y22_c00068{bottom:531.466324pt;}
.y21_c00068{bottom:543.816985pt;}
.y20_c00068{bottom:553.951648pt;}
.y1f_c00068{bottom:567.248976pt;}
.y1e_c00068{bottom:576.432972pt;}
.y1d_c00068{bottom:602.396829pt;}
.y1c_c00068{bottom:629.627484pt;}
.y1b_c00068{bottom:656.862540pt;}
.y1a_c00068{bottom:684.095596pt;}
.y19_c00068{bottom:700.246256pt;}
.y18_c00068{bottom:711.171585pt;}
.y17_c00068{bottom:738.880907pt;}
.y16_c00068{bottom:756.612354pt;}
.y15_c00068{bottom:769.754228pt;}
.y14_c00068{bottom:782.419557pt;}
.y13_c00068{bottom:797.464884pt;}
.y12_c00068{bottom:829.918738pt;}
.y11_c00068{bottom:855.412461pt;}
.y10_c00068{bottom:882.646183pt;}
.yf_c00068{bottom:899.587590pt;}
.ye_c00068{bottom:912.888838pt;}
.yd_c00068{bottom:925.236833pt;}
.yc_c00068{bottom:939.804827pt;}
.ya_c00068{bottom:973.054147pt;}
.y8_c00068{bottom:1000.388100pt;}
.y7_c00068{bottom:1018.912492pt;}
.y6_c00068{bottom:1037.122485pt;}
.y5_c00068{bottom:1055.329411pt;}
.h3_c00068{height:17.890080pt;}
.h11_c00068{height:18.412124pt;}
.h12_c00068{height:20.013123pt;}
.hf_c00068{height:21.614189pt;}
.ha_c00068{height:23.215188pt;}
.he_c00068{height:25.216554pt;}
.h8_c00068{height:33.221817pt;}
.h7_c00068{height:36.824856pt;}
.hc_c00068{height:40.026651pt;}
.h10_c00068{height:47.046718pt;}
.h2_c00068{height:52.149123pt;}
.hd_c00068{height:52.265657pt;}
.h9_c00068{height:52.382192pt;}
.h4_c00068{height:56.683311pt;}
.hb_c00068{height:56.746644pt;}
.h5_c00068{height:56.936644pt;}
.h6_c00068{height:1110.960672pt;}
.h1_c00068{height:1122.559167pt;}
.h0_c00068{height:1122.666667pt;}
.w2_c00068{width:8.233760pt;}
.w3_c00068{width:785.062974pt;}
.w1_c00068{width:793.257550pt;}
.w0_c00068{width:793.333333pt;}
.x0_c00068{left:0.000000pt;}
.x7_c00068{left:1.370626pt;}
.x8_c00068{left:97.691868pt;}
.xd_c00068{left:104.341199pt;}
.xf_c00068{left:109.726621pt;}
.xc_c00068{left:111.149329pt;}
.x2_c00068{left:112.203680pt;}
.xe_c00068{left:156.437320pt;}
.x9_c00068{left:159.125310pt;}
.xa_c00068{left:195.857296pt;}
.x4_c00068{left:221.914974pt;}
.x3_c00068{left:237.589988pt;}
.x6_c00068{left:332.270364pt;}
.x5_c00068{left:371.060339pt;}
.xb_c00068{left:384.589220pt;}
.x1_c00068{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.112000;font-style:normal;font-weight:normal;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_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:1.113000;font-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_c00069{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00069{vertical-align:-17.817173px;}
.v0_c00069{vertical-align:0.000000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:-17.812493px;}
.ws1_c00069{word-spacing:0.000000px;}
._6_c00069{margin-left:-2.760831px;}
._0_c00069{margin-left:-1.339390px;}
._1_c00069{width:1.056812px;}
._8_c00069{width:2.113115px;}
._7_c00069{width:3.166221px;}
._5_c00069{width:4.235906px;}
._b_c00069{width:5.300539px;}
._a_c00069{width:7.080032px;}
._9_c00069{width:8.448108px;}
._2_c00069{width:11.020438px;}
._3_c00069{width:12.593162px;}
._4_c00069{width:13.818129px;}
._10_c00069{width:15.469576px;}
._11_c00069{width:19.403452px;}
._f_c00069{width:21.260546px;}
._c_c00069{width:22.294642px;}
._e_c00069{width:23.635502px;}
._d_c00069{width:24.845506px;}
.fc1_c00069{color:rgb(105,148,45);}
.fc0_c00069{color:rgb(35,31,32);}
.fs6_c00069{font-size:32.774747px;}
.fs5_c00069{font-size:38.474625px;}
.fs3_c00069{font-size:41.324503px;}
.fs4_c00069{font-size:47.737061px;}
.fs2_c00069{font-size:59.136936px;}
.fs0_c00069{font-size:65.550574px;}
.fs1_c00069{font-size:71.249972px;}
.y0_c00069{bottom:0.000000px;}
.y1_c00069{bottom:0.120938px;}
.y4_c00069{bottom:4.274337px;}
.y9_c00069{bottom:6.826644px;}
.yb_c00069{bottom:65.133277px;}
.y3_c00069{bottom:77.839380px;}
.y2_c00069{bottom:84.131629px;}
.y35_c00069{bottom:109.127660px;}
.y34_c00069{bottom:139.763497px;}
.y33_c00069{bottom:170.402935px;}
.y32_c00069{bottom:201.038773px;}
.y31_c00069{bottom:220.099265px;}
.y30_c00069{bottom:234.170760px;}
.y2f_c00069{bottom:250.558253px;}
.y2e_c00069{bottom:286.540239px;}
.y2d_c00069{bottom:312.902278px;}
.y2c_c00069{bottom:343.538116px;}
.y2b_c00069{bottom:374.354704px;}
.y2a_c00069{bottom:393.412196px;}
.y29_c00069{bottom:407.485190px;}
.y28_c00069{bottom:423.871184px;}
.y27_c00069{bottom:459.674669px;}
.y26_c00069{bottom:473.747664px;}
.y25_c00069{bottom:486.215659px;}
.y24_c00069{bottom:501.358153px;}
.y23_c00069{bottom:511.510149px;}
.y22_c00069{bottom:544.284881px;}
.y21_c00069{bottom:573.319079px;}
.y20_c00069{bottom:602.174612px;}
.y1f_c00069{bottom:619.987105px;}
.y1e_c00069{bottom:632.276600px;}
.y1d_c00069{bottom:663.626588px;}
.y1c_c00069{bottom:683.756580px;}
.y1b_c00069{bottom:698.006574px;}
.y1a_c00069{bottom:711.718219px;}
.y19_c00069{bottom:742.531206px;}
.y18_c00069{bottom:773.348394px;}
.y17_c00069{bottom:803.985582px;}
.y16_c00069{bottom:834.623519px;}
.y15_c00069{bottom:865.438007px;}
.y14_c00069{bottom:884.499999px;}
.y13_c00069{bottom:899.462493px;}
.y12_c00069{bottom:913.353988px;}
.y11_c00069{bottom:929.742981px;}
.y10_c00069{bottom:977.123012px;}
.yf_c00069{bottom:1007.760950px;}
.ye_c00069{bottom:1026.999942px;}
.yd_c00069{bottom:1040.891437px;}
.yc_c00069{bottom:1057.280430px;}
.ya_c00069{bottom:1094.685915px;}
.y8_c00069{bottom:1125.436612px;}
.y7_c00069{bottom:1146.276554px;}
.y6_c00069{bottom:1166.762796px;}
.y5_c00069{bottom:1187.245588px;}
.h3_c00069{height:20.126340px;}
.h10_c00069{height:20.713640px;}
.he_c00069{height:24.315963px;}
.ha_c00069{height:26.117086px;}
.hc_c00069{height:30.169822px;}
.h8_c00069{height:37.374544px;}
.h7_c00069{height:41.427963px;}
.hf_c00069{height:52.927558px;}
.h2_c00069{height:58.667764px;}
.h11_c00069{height:58.798865px;}
.h9_c00069{height:58.929966px;}
.h4_c00069{height:63.768724px;}
.hb_c00069{height:63.839974px;}
.hd_c00069{height:63.911224px;}
.h5_c00069{height:64.053724px;}
.h6_c00069{height:1249.830756px;}
.h1_c00069{height:1262.879062px;}
.h0_c00069{height:1263.000000px;}
.w2_c00069{width:8.905860px;}
.w3_c00069{width:883.195846px;}
.w1_c00069{width:892.414744px;}
.w0_c00069{width:892.500000px;}
.x0_c00069{left:0.000000px;}
.x7_c00069{left:1.541954px;}
.x8_c00069{left:109.903352px;}
.x10_c00069{left:117.383849px;}
.xa_c00069{left:123.443936px;}
.x2_c00069{left:126.229140px;}
.xf_c00069{left:152.828984px;}
.x12_c00069{left:157.829496px;}
.x11_c00069{left:174.563976px;}
.x9_c00069{left:175.987475px;}
.xb_c00069{left:179.015974px;}
.xc_c00069{left:197.008467px;}
.x4_c00069{left:249.654346px;}
.x3_c00069{left:267.288737px;}
.x6_c00069{left:373.804160px;}
.xd_c00069{left:381.184393px;}
.x5_c00069{left:417.442881px;}
.x1_c00069{left:510.074140px;}
.xe_c00069{left:623.077296px;}
@media print{
.v1_c00069{vertical-align:-15.837487pt;}
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:-15.833327pt;}
.ws1_c00069{word-spacing:0.000000pt;}
._6_c00069{margin-left:-2.454072pt;}
._0_c00069{margin-left:-1.190569pt;}
._1_c00069{width:0.939388pt;}
._8_c00069{width:1.878324pt;}
._7_c00069{width:2.814419pt;}
._5_c00069{width:3.765249pt;}
._b_c00069{width:4.711590pt;}
._a_c00069{width:6.293362pt;}
._9_c00069{width:7.509430pt;}
._2_c00069{width:9.795945pt;}
._3_c00069{width:11.193922pt;}
._4_c00069{width:12.282781pt;}
._10_c00069{width:13.750734pt;}
._11_c00069{width:17.247513pt;}
._f_c00069{width:18.898263pt;}
._c_c00069{width:19.817460pt;}
._e_c00069{width:21.009335pt;}
._d_c00069{width:22.084894pt;}
.fs6_c00069{font-size:29.133108pt;}
.fs5_c00069{font-size:34.199666pt;}
.fs3_c00069{font-size:36.732892pt;}
.fs4_c00069{font-size:42.432943pt;}
.fs2_c00069{font-size:52.566166pt;}
.fs0_c00069{font-size:58.267177pt;}
.fs1_c00069{font-size:63.333308pt;}
.y0_c00069{bottom:0.000000pt;}
.y1_c00069{bottom:0.107500pt;}
.y4_c00069{bottom:3.799411pt;}
.y9_c00069{bottom:6.068128pt;}
.yb_c00069{bottom:57.896246pt;}
.y3_c00069{bottom:69.190560pt;}
.y2_c00069{bottom:74.783670pt;}
.y35_c00069{bottom:97.002364pt;}
.y34_c00069{bottom:124.234220pt;}
.y33_c00069{bottom:151.469276pt;}
.y32_c00069{bottom:178.701131pt;}
.y31_c00069{bottom:195.643791pt;}
.y30_c00069{bottom:208.151786pt;}
.y2f_c00069{bottom:222.718447pt;}
.y2e_c00069{bottom:254.702434pt;}
.y2d_c00069{bottom:278.135358pt;}
.y2c_c00069{bottom:305.367214pt;}
.y2b_c00069{bottom:332.759736pt;}
.y2a_c00069{bottom:349.699730pt;}
.y29_c00069{bottom:362.209058pt;}
.y28_c00069{bottom:376.774386pt;}
.y27_c00069{bottom:408.599706pt;}
.y26_c00069{bottom:421.109034pt;}
.y25_c00069{bottom:432.191697pt;}
.y24_c00069{bottom:445.651691pt;}
.y23_c00069{bottom:454.675688pt;}
.y22_c00069{bottom:483.808783pt;}
.y21_c00069{bottom:509.616959pt;}
.y20_c00069{bottom:535.266322pt;}
.y1f_c00069{bottom:551.099649pt;}
.y1e_c00069{bottom:562.023645pt;}
.y1d_c00069{bottom:589.890300pt;}
.y1c_c00069{bottom:607.783626pt;}
.y1b_c00069{bottom:620.450288pt;}
.y1a_c00069{bottom:632.638417pt;}
.y19_c00069{bottom:660.027739pt;}
.y18_c00069{bottom:687.420795pt;}
.y17_c00069{bottom:714.653850pt;}
.y16_c00069{bottom:741.887573pt;}
.y15_c00069{bottom:769.278229pt;}
.y14_c00069{bottom:786.222222pt;}
.y13_c00069{bottom:799.522216pt;}
.y12_c00069{bottom:811.870211pt;}
.y11_c00069{bottom:826.438206pt;}
.y10_c00069{bottom:868.553789pt;}
.yf_c00069{bottom:895.787511pt;}
.ye_c00069{bottom:912.888838pt;}
.yd_c00069{bottom:925.236833pt;}
.yc_c00069{bottom:939.804827pt;}
.ya_c00069{bottom:973.054147pt;}
.y8_c00069{bottom:1000.388100pt;}
.y7_c00069{bottom:1018.912492pt;}
.y6_c00069{bottom:1037.122485pt;}
.y5_c00069{bottom:1055.329411pt;}
.h3_c00069{height:17.890080pt;}
.h10_c00069{height:18.412124pt;}
.he_c00069{height:21.614189pt;}
.ha_c00069{height:23.215188pt;}
.hc_c00069{height:26.817620pt;}
.h8_c00069{height:33.221817pt;}
.h7_c00069{height:36.824856pt;}
.hf_c00069{height:47.046718pt;}
.h2_c00069{height:52.149123pt;}
.h11_c00069{height:52.265657pt;}
.h9_c00069{height:52.382192pt;}
.h4_c00069{height:56.683311pt;}
.hb_c00069{height:56.746644pt;}
.hd_c00069{height:56.809977pt;}
.h5_c00069{height:56.936644pt;}
.h6_c00069{height:1110.960672pt;}
.h1_c00069{height:1122.559167pt;}
.h0_c00069{height:1122.666667pt;}
.w2_c00069{width:7.916320pt;}
.w3_c00069{width:785.062974pt;}
.w1_c00069{width:793.257550pt;}
.w0_c00069{width:793.333333pt;}
.x0_c00069{left:0.000000pt;}
.x7_c00069{left:1.370626pt;}
.x8_c00069{left:97.691868pt;}
.x10_c00069{left:104.341199pt;}
.xa_c00069{left:109.727943pt;}
.x2_c00069{left:112.203680pt;}
.xf_c00069{left:135.847986pt;}
.x12_c00069{left:140.292885pt;}
.x11_c00069{left:155.167978pt;}
.x9_c00069{left:156.433311pt;}
.xb_c00069{left:159.125310pt;}
.xc_c00069{left:175.118637pt;}
.x4_c00069{left:221.914974pt;}
.x3_c00069{left:237.589988pt;}
.x6_c00069{left:332.270364pt;}
.xd_c00069{left:338.830572pt;}
.x5_c00069{left:371.060339pt;}
.x1_c00069{left:453.399235pt;}
.xe_c00069{left:553.846486pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.112000;font-style:normal;font-weight:normal;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_bc2da18164633488f097dd11.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.113000;font-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_c00070{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v2_c00070{vertical-align:-17.794673px;}
.v1_c00070{vertical-align:-14.973774px;}
.v0_c00070{vertical-align:0.000000px;}
.ls0_c00070{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00070{word-spacing:-17.812493px;}
.ws1_c00070{word-spacing:0.000000px;}
._8_c00070{margin-left:-3.059935px;}
._0_c00070{margin-left:-1.339390px;}
._1_c00070{width:1.056812px;}
._d_c00070{width:2.529691px;}
._c_c00070{width:4.098685px;}
._5_c00070{width:6.308339px;}
._3_c00070{width:7.806528px;}
._4_c00070{width:9.762216px;}
._6_c00070{width:10.841140px;}
._7_c00070{width:12.671620px;}
._e_c00070{width:14.406369px;}
._2_c00070{width:15.422094px;}
._a_c00070{width:93.305195px;}
._b_c00070{width:104.889161px;}
._10_c00070{width:211.647916px;}
._14_c00070{width:228.875783px;}
._9_c00070{width:258.782430px;}
._13_c00070{width:269.701820px;}
._18_c00070{width:279.512029px;}
._16_c00070{width:301.898879px;}
._11_c00070{width:307.387291px;}
._f_c00070{width:348.602106px;}
._12_c00070{width:432.175842px;}
._15_c00070{width:754.445589px;}
._17_c00070{width:988.587355px;}
._19_c00070{width:1021.552582px;}
.fc1_c00070{color:rgb(105,148,45);}
.fc0_c00070{color:rgb(35,31,32);}
.fs5_c00070{font-size:32.774747px;}
.fs4_c00070{font-size:38.474625px;}
.fs6_c00070{font-size:41.324503px;}
.fs3_c00070{font-size:47.737061px;}
.fs2_c00070{font-size:59.136936px;}
.fs0_c00070{font-size:65.550574px;}
.fs1_c00070{font-size:71.249972px;}
.y0_c00070{bottom:0.000000px;}
.y1_c00070{bottom:0.120938px;}
.y4_c00070{bottom:4.274337px;}
.y9_c00070{bottom:6.826644px;}
.yb_c00070{bottom:65.133277px;}
.y3_c00070{bottom:77.839380px;}
.y2_c00070{bottom:84.131629px;}
.y31_c00070{bottom:207.274270px;}
.y30_c00070{bottom:222.236764px;}
.y2f_c00070{bottom:232.567260px;}
.y2e_c00070{bottom:284.399290px;}
.y2d_c00070{bottom:314.147728px;}
.y2c_c00070{bottom:332.140220px;}
.y2b_c00070{bottom:344.247991px;}
.y2a_c00070{bottom:362.953208px;}
.y29_c00070{bottom:380.944201px;}
.y28_c00070{bottom:393.232196px;}
.y27_c00070{bottom:424.405184px;}
.y26_c00070{bottom:444.535175px;}
.y25_c00070{bottom:458.963670px;}
.y24_c00070{bottom:476.420663px;}
.y23_c00070{bottom:511.510149px;}
.y22_c00070{bottom:523.978144px;}
.y21_c00070{bottom:539.119138px;}
.y20_c00070{bottom:549.272634px;}
.y1f_c00070{bottom:584.006080px;}
.y1e_c00070{bottom:612.687193px;}
.y1d_c00070{bottom:642.072901px;}
.y1c_c00070{bottom:670.577585px;}
.y1b_c00070{bottom:688.567078px;}
.y1a_c00070{bottom:700.855073px;}
.y19_c00070{bottom:732.028060px;}
.y18_c00070{bottom:752.151347px;}
.y17_c00070{bottom:767.114546px;}
.y16_c00070{bottom:781.363041px;}
.y15_c00070{bottom:799.000184px;}
.y14_c00070{bottom:835.160519px;}
.y13_c00070{bottom:864.014808px;}
.y12_c00070{bottom:894.651995px;}
.y11_c00070{bottom:913.353988px;}
.y10_c00070{bottom:931.346481px;}
.yf_c00070{bottom:968.396466px;}
.ye_c00070{bottom:994.757605px;}
.yd_c00070{bottom:1025.572093px;}
.yc_c00070{bottom:1056.387931px;}
.ya_c00070{bottom:1094.685915px;}
.y8_c00070{bottom:1125.436612px;}
.y7_c00070{bottom:1146.276554px;}
.y6_c00070{bottom:1166.762796px;}
.y5_c00070{bottom:1187.245588px;}
.h3_c00070{height:20.126340px;}
.hf_c00070{height:20.713640px;}
.hd_c00070{height:24.315963px;}
.h10_c00070{height:26.117086px;}
.hb_c00070{height:30.169822px;}
.h8_c00070{height:37.374544px;}
.h7_c00070{height:41.427963px;}
.he_c00070{height:52.927558px;}
.h2_c00070{height:58.667764px;}
.hc_c00070{height:58.929966px;}
.h4_c00070{height:63.768724px;}
.h9_c00070{height:63.839974px;}
.ha_c00070{height:63.911224px;}
.h5_c00070{height:64.053724px;}
.h6_c00070{height:1249.830756px;}
.h1_c00070{height:1262.879062px;}
.h0_c00070{height:1263.000000px;}
.w2_c00070{width:8.905860px;}
.w3_c00070{width:883.195846px;}
.w1_c00070{width:892.414744px;}
.w0_c00070{width:892.500000px;}
.x0_c00070{left:0.000000px;}
.x7_c00070{left:1.541954px;}
.x8_c00070{left:109.903352px;}
.xf_c00070{left:117.383849px;}
.x9_c00070{left:123.441296px;}
.xe_c00070{left:125.042996px;}
.x2_c00070{left:126.229140px;}
.xc_c00070{left:133.058692px;}
.xd_c00070{left:167.972978px;}
.xa_c00070{left:179.015974px;}
.xb_c00070{left:180.440973px;}
.x4_c00070{left:249.654346px;}
.x3_c00070{left:267.288737px;}
.x6_c00070{left:373.804160px;}
.x5_c00070{left:417.442881px;}
.x1_c00070{left:510.074140px;}
@media print{
.v2_c00070{vertical-align:-15.817487pt;}
.v1_c00070{vertical-align:-13.310021pt;}
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:-15.833327pt;}
.ws1_c00070{word-spacing:0.000000pt;}
._8_c00070{margin-left:-2.719943pt;}
._0_c00070{margin-left:-1.190569pt;}
._1_c00070{width:0.939388pt;}
._d_c00070{width:2.248615pt;}
._c_c00070{width:3.643276pt;}
._5_c00070{width:5.607413pt;}
._3_c00070{width:6.939136pt;}
._4_c00070{width:8.677525pt;}
._6_c00070{width:9.636569pt;}
._7_c00070{width:11.263662pt;}
._e_c00070{width:12.805661pt;}
._2_c00070{width:13.708528pt;}
._a_c00070{width:82.937951pt;}
._b_c00070{width:93.234810pt;}
._10_c00070{width:188.131481pt;}
._14_c00070{width:203.445140pt;}
._9_c00070{width:230.028826pt;}
._13_c00070{width:239.734951pt;}
._18_c00070{width:248.455137pt;}
._16_c00070{width:268.354559pt;}
._11_c00070{width:273.233148pt;}
._f_c00070{width:309.868539pt;}
._12_c00070{width:384.156304pt;}
._15_c00070{width:670.618301pt;}
._17_c00070{width:878.744315pt;}
._19_c00070{width:908.046739pt;}
.fs5_c00070{font-size:29.133108pt;}
.fs4_c00070{font-size:34.199666pt;}
.fs6_c00070{font-size:36.732892pt;}
.fs3_c00070{font-size:42.432943pt;}
.fs2_c00070{font-size:52.566166pt;}
.fs0_c00070{font-size:58.267177pt;}
.fs1_c00070{font-size:63.333308pt;}
.y0_c00070{bottom:0.000000pt;}
.y1_c00070{bottom:0.107500pt;}
.y4_c00070{bottom:3.799411pt;}
.y9_c00070{bottom:6.068128pt;}
.yb_c00070{bottom:57.896246pt;}
.y3_c00070{bottom:69.190560pt;}
.y2_c00070{bottom:74.783670pt;}
.y31_c00070{bottom:184.243796pt;}
.y30_c00070{bottom:197.543791pt;}
.y2f_c00070{bottom:206.726454pt;}
.y2e_c00070{bottom:252.799368pt;}
.y2d_c00070{bottom:279.242425pt;}
.y2c_c00070{bottom:295.235751pt;}
.y2b_c00070{bottom:305.998214pt;}
.y2a_c00070{bottom:322.625074pt;}
.y29_c00070{bottom:338.617067pt;}
.y28_c00070{bottom:349.539730pt;}
.y27_c00070{bottom:377.249052pt;}
.y26_c00070{bottom:395.142378pt;}
.y25_c00070{bottom:407.967706pt;}
.y24_c00070{bottom:423.485034pt;}
.y23_c00070{bottom:454.675688pt;}
.y22_c00070{bottom:465.758350pt;}
.y21_c00070{bottom:479.217011pt;}
.y20_c00070{bottom:488.242341pt;}
.y1f_c00070{bottom:519.116515pt;}
.y1e_c00070{bottom:544.610838pt;}
.y1d_c00070{bottom:570.731468pt;}
.y1c_c00070{bottom:596.068964pt;}
.y1b_c00070{bottom:612.059625pt;}
.y1a_c00070{bottom:622.982287pt;}
.y19_c00070{bottom:650.691609pt;}
.y18_c00070{bottom:668.578975pt;}
.y17_c00070{bottom:681.879597pt;}
.y16_c00070{bottom:694.544925pt;}
.y15_c00070{bottom:710.222385pt;}
.y14_c00070{bottom:742.364906pt;}
.y13_c00070{bottom:768.013162pt;}
.y12_c00070{bottom:795.246218pt;}
.y11_c00070{bottom:811.870211pt;}
.y10_c00070{bottom:827.863538pt;}
.yf_c00070{bottom:860.796859pt;}
.ye_c00070{bottom:884.228983pt;}
.yd_c00070{bottom:911.619638pt;}
.yc_c00070{bottom:939.011494pt;}
.ya_c00070{bottom:973.054147pt;}
.y8_c00070{bottom:1000.388100pt;}
.y7_c00070{bottom:1018.912492pt;}
.y6_c00070{bottom:1037.122485pt;}
.y5_c00070{bottom:1055.329411pt;}
.h3_c00070{height:17.890080pt;}
.hf_c00070{height:18.412124pt;}
.hd_c00070{height:21.614189pt;}
.h10_c00070{height:23.215188pt;}
.hb_c00070{height:26.817620pt;}
.h8_c00070{height:33.221817pt;}
.h7_c00070{height:36.824856pt;}
.he_c00070{height:47.046718pt;}
.h2_c00070{height:52.149123pt;}
.hc_c00070{height:52.382192pt;}
.h4_c00070{height:56.683311pt;}
.h9_c00070{height:56.746644pt;}
.ha_c00070{height:56.809977pt;}
.h5_c00070{height:56.936644pt;}
.h6_c00070{height:1110.960672pt;}
.h1_c00070{height:1122.559167pt;}
.h0_c00070{height:1122.666667pt;}
.w2_c00070{width:7.916320pt;}
.w3_c00070{width:785.062974pt;}
.w1_c00070{width:793.257550pt;}
.w0_c00070{width:793.333333pt;}
.x0_c00070{left:0.000000pt;}
.x7_c00070{left:1.370626pt;}
.x8_c00070{left:97.691868pt;}
.xf_c00070{left:104.341199pt;}
.x9_c00070{left:109.725597pt;}
.xe_c00070{left:111.149329pt;}
.x2_c00070{left:112.203680pt;}
.xc_c00070{left:118.274393pt;}
.xd_c00070{left:149.309314pt;}
.xa_c00070{left:159.125310pt;}
.xb_c00070{left:160.391976pt;}
.x4_c00070{left:221.914974pt;}
.x3_c00070{left:237.589988pt;}
.x6_c00070{left:332.270364pt;}
.x5_c00070{left:371.060339pt;}
.x1_c00070{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8fcd5f21b9c975dbe727771.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.111000;font-style:normal;font-weight:normal;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_d812dd43b43155aa2ca259fb.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:0.632000;font-style:normal;font-weight:normal;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_d63a43ad6b49450b0e1fdf1f.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.112000;font-style:normal;font-weight:normal;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_5e23a19d58cb0ffb5a1e27f9.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:0.727000;font-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_c00071{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls0_c00071{letter-spacing:0.000000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:-17.812493px;}
.ws1_c00071{word-spacing:0.000000px;}
._13_c00071{margin-left:-6.712950px;}
._9_c00071{margin-left:-3.692241px;}
._10_c00071{margin-left:-2.479152px;}
._0_c00071{margin-left:-1.339390px;}
._1_c00071{width:1.056287px;}
._4_c00071{width:2.572013px;}
._2_c00071{width:3.966772px;}
._3_c00071{width:5.420230px;}
._c_c00071{width:6.596212px;}
._8_c00071{width:8.415825px;}
._5_c00071{width:9.569470px;}
._6_c00071{width:10.753576px;}
._7_c00071{width:11.792094px;}
._e_c00071{width:13.037753px;}
._a_c00071{width:14.282698px;}
._b_c00071{width:15.577698px;}
._11_c00071{width:16.604873px;}
._12_c00071{width:19.848445px;}
._d_c00071{width:21.678561px;}
._14_c00071{width:30.262259px;}
._15_c00071{width:32.086600px;}
._16_c00071{width:33.357439px;}
._17_c00071{width:36.424003px;}
._f_c00071{width:63.255953px;}
.fc1_c00071{color:rgb(105,148,45);}
.fc0_c00071{color:rgb(35,31,32);}
.fs4_c00071{font-size:38.474625px;}
.fs3_c00071{font-size:41.324503px;}
.fs5_c00071{font-size:44.887062px;}
.fs2_c00071{font-size:59.136936px;}
.fs0_c00071{font-size:65.550574px;}
.fs1_c00071{font-size:71.249972px;}
.y0_c00071{bottom:0.000000px;}
.y1_c00071{bottom:0.120938px;}
.y4_c00071{bottom:4.274337px;}
.y9_c00071{bottom:6.826644px;}
.yb_c00071{bottom:65.133277px;}
.y3_c00071{bottom:77.839380px;}
.y2_c00071{bottom:84.131629px;}
.y35_c00071{bottom:93.632966px;}
.y34_c00071{bottom:111.801109px;}
.y33_c00071{bottom:138.339098px;}
.y32_c00071{bottom:168.977786px;}
.y31_c00071{bottom:199.790773px;}
.y30_c00071{bottom:218.854116px;}
.y2f_c00071{bottom:235.063259px;}
.y2e_c00071{bottom:261.423799px;}
.y2d_c00071{bottom:292.062486px;}
.y2c_c00071{bottom:322.699074px;}
.y2b_c00071{bottom:353.334912px;}
.y2a_c00071{bottom:383.974350px;}
.y29_c00071{bottom:414.610187px;}
.y28_c00071{bottom:433.848565px;}
.y27_c00071{bottom:448.633174px;}
.y26_c00071{bottom:462.706168px;}
.y25_c00071{bottom:476.242163px;}
.y24_c00071{bottom:495.836655px;}
.y23_c00071{bottom:512.755148px;}
.y22_c00071{bottom:539.295688px;}
.y21_c00071{bottom:569.931525px;}
.y20_c00071{bottom:600.748113px;}
.y1f_c00071{bottom:618.739106px;}
.y1e_c00071{bottom:631.564101px;}
.y1d_c00071{bottom:650.624443px;}
.y1c_c00071{bottom:666.833587px;}
.y1b_c00071{bottom:693.191276px;}
.y1a_c00071{bottom:723.830714px;}
.y19_c00071{bottom:754.646551px;}
.y18_c00071{bottom:774.064044px;}
.y17_c00071{bottom:791.164037px;}
.y16_c00071{bottom:817.523076px;}
.y15_c00071{bottom:848.161014px;}
.y14_c00071{bottom:867.400096px;}
.y13_c00071{bottom:882.184000px;}
.y12_c00071{bottom:896.078495px;}
.y11_c00071{bottom:912.642988px;}
.y10_c00071{bottom:948.444974px;}
.yf_c00071{bottom:974.808213px;}
.ye_c00071{bottom:1005.624051px;}
.yd_c00071{bottom:1036.261989px;}
.yc_c00071{bottom:1058.171430px;}
.ya_c00071{bottom:1094.685915px;}
.y8_c00071{bottom:1125.436612px;}
.y7_c00071{bottom:1146.276554px;}
.y6_c00071{bottom:1166.762796px;}
.y5_c00071{bottom:1187.245588px;}
.h3_c00071{height:20.126340px;}
.he_c00071{height:24.315963px;}
.hc_c00071{height:26.117086px;}
.hf_c00071{height:28.368623px;}
.h8_c00071{height:37.374544px;}
.h7_c00071{height:41.427963px;}
.h9_c00071{height:45.029982px;}
.hd_c00071{height:51.014980px;}
.h2_c00071{height:58.667764px;}
.hb_c00071{height:58.929966px;}
.h4_c00071{height:63.768724px;}
.ha_c00071{height:63.839974px;}
.h5_c00071{height:64.053724px;}
.h6_c00071{height:1249.830756px;}
.h1_c00071{height:1262.879062px;}
.h0_c00071{height:1263.000000px;}
.w2_c00071{width:17.812980px;}
.w3_c00071{width:883.195846px;}
.w1_c00071{width:892.414744px;}
.w0_c00071{width:892.500000px;}
.x0_c00071{left:0.000000px;}
.x7_c00071{left:1.541954px;}
.x8_c00071{left:112.753050px;}
.x2_c00071{left:126.229140px;}
.xa_c00071{left:153.008984px;}
.x9_c00071{left:178.834084px;}
.xb_c00071{left:205.376963px;}
.xc_c00071{left:232.093453px;}
.x4_c00071{left:252.504495px;}
.x3_c00071{left:270.140236px;}
.x6_c00071{left:376.653110px;}
.x5_c00071{left:420.296029px;}
.x1_c00071{left:510.074140px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:-15.833327pt;}
.ws1_c00071{word-spacing:0.000000pt;}
._13_c00071{margin-left:-5.967067pt;}
._9_c00071{margin-left:-3.281992pt;}
._10_c00071{margin-left:-2.203691pt;}
._0_c00071{margin-left:-1.190569pt;}
._1_c00071{width:0.938922pt;}
._4_c00071{width:2.286234pt;}
._2_c00071{width:3.526020pt;}
._3_c00071{width:4.817982pt;}
._c_c00071{width:5.863299pt;}
._8_c00071{width:7.480733pt;}
._5_c00071{width:8.506195pt;}
._6_c00071{width:9.558735pt;}
._7_c00071{width:10.481861pt;}
._e_c00071{width:11.589113pt;}
._a_c00071{width:12.695731pt;}
._b_c00071{width:13.846843pt;}
._11_c00071{width:14.759887pt;}
._12_c00071{width:17.643062pt;}
._d_c00071{width:19.269832pt;}
._14_c00071{width:26.899785pt;}
._15_c00071{width:28.521422pt;}
._16_c00071{width:29.651057pt;}
._17_c00071{width:32.376892pt;}
._f_c00071{width:56.227514pt;}
.fs4_c00071{font-size:34.199666pt;}
.fs3_c00071{font-size:36.732892pt;}
.fs5_c00071{font-size:39.899611pt;}
.fs2_c00071{font-size:52.566166pt;}
.fs0_c00071{font-size:58.267177pt;}
.fs1_c00071{font-size:63.333308pt;}
.y0_c00071{bottom:0.000000pt;}
.y1_c00071{bottom:0.107500pt;}
.y4_c00071{bottom:3.799411pt;}
.y9_c00071{bottom:6.068128pt;}
.yb_c00071{bottom:57.896246pt;}
.y3_c00071{bottom:69.190560pt;}
.y2_c00071{bottom:74.783670pt;}
.y35_c00071{bottom:83.229303pt;}
.y34_c00071{bottom:99.378763pt;}
.y33_c00071{bottom:122.968087pt;}
.y32_c00071{bottom:150.202476pt;}
.y31_c00071{bottom:177.591799pt;}
.y30_c00071{bottom:194.536992pt;}
.y2f_c00071{bottom:208.945119pt;}
.y2e_c00071{bottom:232.376710pt;}
.y2d_c00071{bottom:259.611099pt;}
.y2c_c00071{bottom:286.843622pt;}
.y2b_c00071{bottom:314.075477pt;}
.y2a_c00071{bottom:341.310533pt;}
.y29_c00071{bottom:368.542389pt;}
.y28_c00071{bottom:385.643169pt;}
.y27_c00071{bottom:398.785043pt;}
.y26_c00071{bottom:411.294372pt;}
.y25_c00071{bottom:423.326367pt;}
.y24_c00071{bottom:440.743693pt;}
.y23_c00071{bottom:455.782354pt;}
.y22_c00071{bottom:479.373944pt;}
.y21_c00071{bottom:506.605800pt;}
.y20_c00071{bottom:533.998323pt;}
.y1f_c00071{bottom:549.990316pt;}
.y1e_c00071{bottom:561.390312pt;}
.y1d_c00071{bottom:578.332838pt;}
.y1c_c00071{bottom:592.740966pt;}
.y1b_c00071{bottom:616.170023pt;}
.y1a_c00071{bottom:643.405079pt;}
.y19_c00071{bottom:670.796935pt;}
.y18_c00071{bottom:688.056928pt;}
.y17_c00071{bottom:703.256922pt;}
.y16_c00071{bottom:726.687179pt;}
.y15_c00071{bottom:753.920901pt;}
.y14_c00071{bottom:771.022308pt;}
.y13_c00071{bottom:784.163556pt;}
.y12_c00071{bottom:796.514218pt;}
.y11_c00071{bottom:811.238212pt;}
.y10_c00071{bottom:843.062199pt;}
.yf_c00071{bottom:866.496190pt;}
.ye_c00071{bottom:893.888045pt;}
.yd_c00071{bottom:921.121768pt;}
.yc_c00071{bottom:940.596827pt;}
.ya_c00071{bottom:973.054147pt;}
.y8_c00071{bottom:1000.388100pt;}
.y7_c00071{bottom:1018.912492pt;}
.y6_c00071{bottom:1037.122485pt;}
.y5_c00071{bottom:1055.329411pt;}
.h3_c00071{height:17.890080pt;}
.he_c00071{height:21.614189pt;}
.hc_c00071{height:23.215188pt;}
.hf_c00071{height:25.216554pt;}
.h8_c00071{height:33.221817pt;}
.h7_c00071{height:36.824856pt;}
.h9_c00071{height:40.026651pt;}
.hd_c00071{height:45.346649pt;}
.h2_c00071{height:52.149123pt;}
.hb_c00071{height:52.382192pt;}
.h4_c00071{height:56.683311pt;}
.ha_c00071{height:56.746644pt;}
.h5_c00071{height:56.936644pt;}
.h6_c00071{height:1110.960672pt;}
.h1_c00071{height:1122.559167pt;}
.h0_c00071{height:1122.666667pt;}
.w2_c00071{width:15.833760pt;}
.w3_c00071{width:785.062974pt;}
.w1_c00071{width:793.257550pt;}
.w0_c00071{width:793.333333pt;}
.x0_c00071{left:0.000000pt;}
.x7_c00071{left:1.370626pt;}
.x8_c00071{left:100.224934pt;}
.x2_c00071{left:112.203680pt;}
.xa_c00071{left:136.007986pt;}
.x9_c00071{left:158.963630pt;}
.xb_c00071{left:182.557301pt;}
.xc_c00071{left:206.305291pt;}
.x4_c00071{left:224.448440pt;}
.x3_c00071{left:240.124654pt;}
.x6_c00071{left:334.802765pt;}
.x5_c00071{left:373.596470pt;}
.x1_c00071{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b171676107bd1a12e2d6f33.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:0.693000;font-style: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.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00072{word-spacing:0.000000px;}
._1_c00072{margin-left:-1.019809px;}
._0_c00072{width:1.188480px;}
.fc0_c00072{color:rgb(35,31,32);}
.fs0_c00072{font-size:107.979557px;}
.y0_c00072{bottom:0.000000px;}
.y1_c00072{bottom:0.120938px;}
.y2_c00072{bottom:457.354880px;}
.h2_c00072{height:73.210140px;}
.h1_c00072{height:1262.879062px;}
.h0_c00072{height:1263.000000px;}
.w1_c00072{width:892.414744px;}
.w0_c00072{width:892.500000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:107.991501px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
._1_c00072{margin-left:-0.906497pt;}
._0_c00072{width:1.056426pt;}
.fs0_c00072{font-size:95.981828pt;}
.y0_c00072{bottom:0.000000pt;}
.y1_c00072{bottom:0.107500pt;}
.y2_c00072{bottom:406.537671pt;}
.h2_c00072{height:65.075680pt;}
.h1_c00072{height:1122.559167pt;}
.h0_c00072{height:1122.666667pt;}
.w1_c00072{width:793.257550pt;}
.w0_c00072{width:793.333333pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:95.992445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.115000;font-style:normal;font-weight:normal;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_958ff9f3081c04b1f89f3916.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_f188d5475c0792d67e7a0d29.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:0.836000;font-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_c00073{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00073{word-spacing:-33.234141px;}
.ws0_c00073{word-spacing:-30.087713px;}
.ws2_c00073{word-spacing:0.000000px;}
._2_c00073{margin-left:-13.303794px;}
._6_c00073{margin-left:-10.638753px;}
._4_c00073{margin-left:-8.302650px;}
._5_c00073{margin-left:-5.808877px;}
._3_c00073{margin-left:-4.671266px;}
._0_c00073{margin-left:-1.339390px;}
._1_c00073{width:1.056812px;}
.fc1_c00073{color:rgb(105,148,45);}
.fc0_c00073{color:rgb(35,31,32);}
.fs2_c00073{font-size:59.136936px;}
.fs0_c00073{font-size:65.550574px;}
.fs1_c00073{font-size:71.249972px;}
.fs3_c00073{font-size:118.985952px;}
.y0_c00073{bottom:0.000000px;}
.y1_c00073{bottom:0.120938px;}
.y8_c00073{bottom:6.826644px;}
.ya_c00073{bottom:65.133277px;}
.y3_c00073{bottom:83.062176px;}
.y2_c00073{bottom:84.131629px;}
.y19_c00073{bottom:472.855164px;}
.y18_c00073{bottom:498.862154px;}
.y17_c00073{bottom:538.582138px;}
.y16_c00073{bottom:577.411872px;}
.y15_c00073{bottom:615.178857px;}
.y14_c00073{bottom:652.938792px;}
.y13_c00073{bottom:690.700827px;}
.y12_c00073{bottom:728.462862px;}
.y11_c00073{bottom:758.032050px;}
.y10_c00073{bottom:796.860135px;}
.yf_c00073{bottom:834.623519px;}
.ye_c00073{bottom:872.384204px;}
.yd_c00073{bottom:910.146989px;}
.yc_c00073{bottom:947.912474px;}
.yb_c00073{bottom:1042.317936px;}
.y9_c00073{bottom:1094.153416px;}
.y7_c00073{bottom:1125.436612px;}
.y6_c00073{bottom:1146.276554px;}
.y5_c00073{bottom:1166.762796px;}
.y4_c00073{bottom:1187.245588px;}
.h7_c00073{height:37.906776px;}
.h6_c00073{height:42.017918px;}
.h9_c00073{height:54.079223px;}
.h2_c00073{height:58.667764px;}
.h3_c00073{height:63.768724px;}
.h4_c00073{height:64.053724px;}
.h8_c00073{height:106.968371px;}
.h5_c00073{height:1249.830756px;}
.h1_c00073{height:1262.879062px;}
.h0_c00073{height:1263.000000px;}
.w2_c00073{width:883.195846px;}
.w1_c00073{width:892.414744px;}
.w0_c00073{width:892.500000px;}
.x0_c00073{left:0.000000px;}
.x7_c00073{left:1.541954px;}
.x8_c00073{left:109.903352px;}
.x2_c00073{left:126.216284px;}
.x9_c00073{left:185.426971px;}
.x4_c00073{left:249.654346px;}
.x3_c00073{left:267.288737px;}
.x6_c00073{left:315.382190px;}
.x5_c00073{left:417.442881px;}
.x1_c00073{left:510.074140px;}
.xa_c00073{left:764.506240px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws1_c00073{word-spacing:-29.541459pt;}
.ws0_c00073{word-spacing:-26.744634pt;}
.ws2_c00073{word-spacing:0.000000pt;}
._2_c00073{margin-left:-11.825594pt;}
._6_c00073{margin-left:-9.456669pt;}
._4_c00073{margin-left:-7.380134pt;}
._5_c00073{margin-left:-5.163446pt;}
._3_c00073{margin-left:-4.152236pt;}
._0_c00073{margin-left:-1.190569pt;}
._1_c00073{width:0.939388pt;}
.fs2_c00073{font-size:52.566166pt;}
.fs0_c00073{font-size:58.267177pt;}
.fs1_c00073{font-size:63.333308pt;}
.fs3_c00073{font-size:105.765291pt;}
.y0_c00073{bottom:0.000000pt;}
.y1_c00073{bottom:0.107500pt;}
.y8_c00073{bottom:6.068128pt;}
.ya_c00073{bottom:57.896246pt;}
.y3_c00073{bottom:73.833045pt;}
.y2_c00073{bottom:74.783670pt;}
.y19_c00073{bottom:420.315701pt;}
.y18_c00073{bottom:443.433026pt;}
.y17_c00073{bottom:478.739678pt;}
.y16_c00073{bottom:513.254998pt;}
.y15_c00073{bottom:546.825651pt;}
.y14_c00073{bottom:580.390037pt;}
.y13_c00073{bottom:613.956291pt;}
.y12_c00073{bottom:647.522544pt;}
.y11_c00073{bottom:673.806267pt;}
.y10_c00073{bottom:708.320120pt;}
.yf_c00073{bottom:741.887573pt;}
.ye_c00073{bottom:775.452626pt;}
.yd_c00073{bottom:809.019546pt;}
.yc_c00073{bottom:842.588866pt;}
.yb_c00073{bottom:926.504832pt;}
.y9_c00073{bottom:972.580814pt;}
.y7_c00073{bottom:1000.388100pt;}
.y6_c00073{bottom:1018.912492pt;}
.y5_c00073{bottom:1037.122485pt;}
.y4_c00073{bottom:1055.329411pt;}
.h7_c00073{height:33.694912pt;}
.h6_c00073{height:37.349260pt;}
.h9_c00073{height:48.070421pt;}
.h2_c00073{height:52.149123pt;}
.h3_c00073{height:56.683311pt;}
.h4_c00073{height:56.936644pt;}
.h8_c00073{height:95.082997pt;}
.h5_c00073{height:1110.960672pt;}
.h1_c00073{height:1122.559167pt;}
.h0_c00073{height:1122.666667pt;}
.w2_c00073{width:785.062974pt;}
.w1_c00073{width:793.257550pt;}
.w0_c00073{width:793.333333pt;}
.x0_c00073{left:0.000000pt;}
.x7_c00073{left:1.370626pt;}
.x8_c00073{left:97.691868pt;}
.x2_c00073{left:112.192252pt;}
.x9_c00073{left:164.823975pt;}
.x4_c00073{left:221.914974pt;}
.x3_c00073{left:237.589988pt;}
.x6_c00073{left:280.339725pt;}
.x5_c00073{left:371.060339pt;}
.x1_c00073{left:453.399235pt;}
.xa_c00073{left:679.561102pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.115000;font-style:normal;font-weight:normal;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_29048482d1ab65066bd22250.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.112000;font-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_c00074{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00074{word-spacing:0.000000px;}
._d_c00074{margin-left:-3.119385px;}
._0_c00074{margin-left:-1.339390px;}
._1_c00074{width:1.056812px;}
._12_c00074{width:2.160772px;}
._11_c00074{width:3.468559px;}
._8_c00074{width:5.020381px;}
._a_c00074{width:6.223959px;}
._9_c00074{width:7.580978px;}
._b_c00074{width:8.827892px;}
._c_c00074{width:10.054236px;}
._e_c00074{width:12.067524px;}
._6_c00074{width:13.868491px;}
._7_c00074{width:15.034676px;}
._2_c00074{width:16.128399px;}
._5_c00074{width:26.535369px;}
._3_c00074{width:29.223406px;}
._4_c00074{width:30.416041px;}
._f_c00074{width:42.205038px;}
._10_c00074{width:43.478910px;}
.fc1_c00074{color:rgb(105,148,45);}
.fc0_c00074{color:rgb(35,31,32);}
.fs3_c00074{font-size:41.324503px;}
.fs2_c00074{font-size:59.136936px;}
.fs0_c00074{font-size:65.550574px;}
.fs1_c00074{font-size:71.249972px;}
.y0_c00074{bottom:0.000000px;}
.y1_c00074{bottom:0.120938px;}
.y8_c00074{bottom:6.826644px;}
.ya_c00074{bottom:65.133277px;}
.y3_c00074{bottom:83.062176px;}
.y2_c00074{bottom:84.131629px;}
.y30_c00074{bottom:124.447603px;}
.y2f_c00074{bottom:142.260546px;}
.y2e_c00074{bottom:159.897089px;}
.y2d_c00074{bottom:177.709282px;}
.y2c_c00074{bottom:206.562671px;}
.y2b_c00074{bottom:237.380608px;}
.y2a_c00074{bottom:268.017796px;}
.y29_c00074{bottom:298.833634px;}
.y28_c00074{bottom:329.468121px;}
.y27_c00074{bottom:360.283209px;}
.y26_c00074{bottom:390.919047px;}
.y25_c00074{bottom:421.736235px;}
.y24_c00074{bottom:452.372822px;}
.y23_c00074{bottom:483.188660px;}
.y22_c00074{bottom:502.247742px;}
.y21_c00074{bottom:517.031646px;}
.y20_c00074{bottom:531.103141px;}
.y1f_c00074{bottom:547.487034px;}
.y1e_c00074{bottom:583.826620px;}
.y1d_c00074{bottom:612.680308px;}
.y1c_c00074{bottom:643.498996px;}
.y1b_c00074{bottom:674.135584px;}
.y1a_c00074{bottom:693.373076px;}
.y19_c00074{bottom:707.266070px;}
.y18_c00074{bottom:723.652964px;}
.y17_c00074{bottom:759.992549px;}
.y16_c00074{bottom:788.666688px;}
.y15_c00074{bottom:819.479675px;}
.y14_c00074{bottom:850.118363px;}
.y13_c00074{bottom:880.934951px;}
.y12_c00074{bottom:911.570789px;}
.y11_c00074{bottom:942.387976px;}
.y10_c00074{bottom:961.450059px;}
.yf_c00074{bottom:976.233963px;}
.ye_c00074{bottom:990.303957px;}
.yd_c00074{bottom:1006.691451px;}
.yc_c00074{bottom:1042.494936px;}
.yb_c00074{bottom:1057.815930px;}
.y9_c00074{bottom:1094.153416px;}
.y7_c00074{bottom:1125.436612px;}
.y6_c00074{bottom:1146.276554px;}
.y5_c00074{bottom:1166.762796px;}
.y4_c00074{bottom:1187.245588px;}
.ha_c00074{height:26.489007px;}
.h7_c00074{height:37.906776px;}
.h6_c00074{height:42.017918px;}
.h2_c00074{height:58.667764px;}
.h9_c00074{height:58.929966px;}
.h3_c00074{height:63.768724px;}
.hb_c00074{height:63.839974px;}
.h8_c00074{height:63.911224px;}
.h4_c00074{height:64.053724px;}
.h5_c00074{height:1249.830756px;}
.h1_c00074{height:1262.879062px;}
.h0_c00074{height:1263.000000px;}
.w2_c00074{width:883.195846px;}
.w1_c00074{width:892.414744px;}
.w0_c00074{width:892.500000px;}
.x0_c00074{left:0.000000px;}
.x7_c00074{left:1.541954px;}
.x8_c00074{left:109.903352px;}
.xa_c00074{left:123.439439px;}
.x2_c00074{left:126.216284px;}
.x9_c00074{left:175.987475px;}
.x4_c00074{left:249.654346px;}
.x3_c00074{left:267.288737px;}
.x6_c00074{left:315.382190px;}
.x5_c00074{left:417.442881px;}
.x1_c00074{left:510.074140px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:0.000000pt;}
._d_c00074{margin-left:-2.772787pt;}
._0_c00074{margin-left:-1.190569pt;}
._1_c00074{width:0.939388pt;}
._12_c00074{width:1.920686pt;}
._11_c00074{width:3.083164pt;}
._8_c00074{width:4.462561pt;}
._a_c00074{width:5.532408pt;}
._9_c00074{width:6.738647pt;}
._b_c00074{width:7.847015pt;}
._c_c00074{width:8.937099pt;}
._e_c00074{width:10.726688pt;}
._6_c00074{width:12.327548pt;}
._7_c00074{width:13.364157pt;}
._2_c00074{width:14.336355pt;}
._5_c00074{width:23.586994pt;}
._3_c00074{width:25.976361pt;}
._4_c00074{width:27.036481pt;}
._f_c00074{width:37.515590pt;}
._10_c00074{width:38.647920pt;}
.fs3_c00074{font-size:36.732892pt;}
.fs2_c00074{font-size:52.566166pt;}
.fs0_c00074{font-size:58.267177pt;}
.fs1_c00074{font-size:63.333308pt;}
.y0_c00074{bottom:0.000000pt;}
.y1_c00074{bottom:0.107500pt;}
.y8_c00074{bottom:6.068128pt;}
.ya_c00074{bottom:57.896246pt;}
.y3_c00074{bottom:73.833045pt;}
.y2_c00074{bottom:74.783670pt;}
.y30_c00074{bottom:110.620092pt;}
.y2f_c00074{bottom:126.453819pt;}
.y2e_c00074{bottom:142.130746pt;}
.y2d_c00074{bottom:157.963806pt;}
.y2c_c00074{bottom:183.611263pt;}
.y2b_c00074{bottom:211.004985pt;}
.y2a_c00074{bottom:238.238041pt;}
.y29_c00074{bottom:265.629897pt;}
.y28_c00074{bottom:292.860552pt;}
.y27_c00074{bottom:320.251741pt;}
.y26_c00074{bottom:347.483597pt;}
.y25_c00074{bottom:374.876653pt;}
.y24_c00074{bottom:402.109175pt;}
.y23_c00074{bottom:429.501031pt;}
.y22_c00074{bottom:446.442438pt;}
.y21_c00074{bottom:459.583686pt;}
.y20_c00074{bottom:472.091681pt;}
.y1f_c00074{bottom:486.655142pt;}
.y1e_c00074{bottom:518.956995pt;}
.y1d_c00074{bottom:544.604718pt;}
.y1c_c00074{bottom:571.999107pt;}
.y1b_c00074{bottom:599.231630pt;}
.y1a_c00074{bottom:616.331623pt;}
.y19_c00074{bottom:628.680951pt;}
.y18_c00074{bottom:643.247079pt;}
.y17_c00074{bottom:675.548933pt;}
.y16_c00074{bottom:701.037056pt;}
.y15_c00074{bottom:728.426378pt;}
.y14_c00074{bottom:755.660767pt;}
.y13_c00074{bottom:783.053290pt;}
.y12_c00074{bottom:810.285145pt;}
.y11_c00074{bottom:837.678201pt;}
.y10_c00074{bottom:854.622274pt;}
.yf_c00074{bottom:867.763522pt;}
.ye_c00074{bottom:880.270184pt;}
.yd_c00074{bottom:894.836845pt;}
.yc_c00074{bottom:926.662166pt;}
.yb_c00074{bottom:940.280827pt;}
.y9_c00074{bottom:972.580814pt;}
.y7_c00074{bottom:1000.388100pt;}
.y6_c00074{bottom:1018.912492pt;}
.y5_c00074{bottom:1037.122485pt;}
.y4_c00074{bottom:1055.329411pt;}
.ha_c00074{height:23.545784pt;}
.h7_c00074{height:33.694912pt;}
.h6_c00074{height:37.349260pt;}
.h2_c00074{height:52.149123pt;}
.h9_c00074{height:52.382192pt;}
.h3_c00074{height:56.683311pt;}
.hb_c00074{height:56.746644pt;}
.h8_c00074{height:56.809977pt;}
.h4_c00074{height:56.936644pt;}
.h5_c00074{height:1110.960672pt;}
.h1_c00074{height:1122.559167pt;}
.h0_c00074{height:1122.666667pt;}
.w2_c00074{width:785.062974pt;}
.w1_c00074{width:793.257550pt;}
.w0_c00074{width:793.333333pt;}
.x0_c00074{left:0.000000pt;}
.x7_c00074{left:1.370626pt;}
.x8_c00074{left:97.691868pt;}
.xa_c00074{left:109.723946pt;}
.x2_c00074{left:112.192252pt;}
.x9_c00074{left:156.433311pt;}
.x4_c00074{left:221.914974pt;}
.x3_c00074{left:237.589988pt;}
.x6_c00074{left:280.339725pt;}
.x5_c00074{left:371.060339pt;}
.x1_c00074{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.115000;font-style:normal;font-weight:normal;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_29048482d1ab65066bd22250.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.113000;font-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_c00075{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:0.000000px;}
._a_c00075{margin-left:-4.158622px;}
._9_c00075{margin-left:-2.381327px;}
._0_c00075{margin-left:-1.339390px;}
._1_c00075{width:1.056812px;}
._c_c00075{width:2.117542px;}
._d_c00075{width:4.126126px;}
._3_c00075{width:6.921768px;}
._6_c00075{width:9.291876px;}
._7_c00075{width:10.411796px;}
._8_c00075{width:12.097160px;}
._b_c00075{width:13.198275px;}
._4_c00075{width:15.086585px;}
._5_c00075{width:16.618848px;}
._10_c00075{width:19.236151px;}
._11_c00075{width:20.369605px;}
._2_c00075{width:23.641569px;}
._f_c00075{width:35.816863px;}
._e_c00075{width:37.365669px;}
.fc1_c00075{color:rgb(105,148,45);}
.fc0_c00075{color:rgb(35,31,32);}
.fs3_c00075{font-size:41.324503px;}
.fs4_c00075{font-size:50.586940px;}
.fs2_c00075{font-size:59.136936px;}
.fs0_c00075{font-size:65.550574px;}
.fs1_c00075{font-size:71.249972px;}
.y0_c00075{bottom:0.000000px;}
.y1_c00075{bottom:0.120938px;}
.y8_c00075{bottom:6.826644px;}
.ya_c00075{bottom:65.133277px;}
.y3_c00075{bottom:83.062176px;}
.y2_c00075{bottom:84.131629px;}
.y31_c00075{bottom:90.249567px;}
.y30_c00075{bottom:119.105506px;}
.y2f_c00075{bottom:149.743443px;}
.y2e_c00075{bottom:180.379281px;}
.y2d_c00075{bottom:199.619773px;}
.y2c_c00075{bottom:219.563915px;}
.y2b_c00075{bottom:255.904251px;}
.y2a_c00075{bottom:284.579589px;}
.y29_c00075{bottom:315.395427px;}
.y28_c00075{bottom:346.034865px;}
.y27_c00075{bottom:376.670703px;}
.y26_c00075{bottom:407.485190px;}
.y25_c00075{bottom:426.544183px;}
.y24_c00075{bottom:446.672225px;}
.y23_c00075{bottom:482.833160px;}
.y22_c00075{bottom:511.690299px;}
.y21_c00075{bottom:542.326136px;}
.y20_c00075{bottom:561.386629px;}
.y1f_c00075{bottom:589.349318px;}
.y1e_c00075{bottom:619.986505px;}
.y1d_c00075{bottom:650.803093px;}
.y1c_c00075{bottom:669.860585px;}
.y1b_c00075{bottom:684.469079px;}
.y1a_c00075{bottom:702.988672px;}
.y19_c00075{bottom:740.753557px;}
.y17_c00075{bottom:770.141245px;}
.y18_c00075{bottom:770.143045px;}
.y16_c00075{bottom:800.782033px;}
.y15_c00075{bottom:831.596521px;}
.y14_c00075{bottom:850.654013px;}
.y13_c00075{bottom:864.550007px;}
.y12_c00075{bottom:881.113301px;}
.y11_c00075{bottom:917.274986px;}
.y10_c00075{bottom:945.948825px;}
.yf_c00075{bottom:976.588263px;}
.ye_c00075{bottom:1007.225450px;}
.yd_c00075{bottom:1026.287443px;}
.yc_c00075{bottom:1040.358937px;}
.yb_c00075{bottom:1056.744931px;}
.y9_c00075{bottom:1094.153416px;}
.y7_c00075{bottom:1125.436612px;}
.y6_c00075{bottom:1146.276554px;}
.y5_c00075{bottom:1166.762796px;}
.y4_c00075{bottom:1187.245588px;}
.h9_c00075{height:26.489007px;}
.hd_c00075{height:32.426228px;}
.h7_c00075{height:37.906776px;}
.h6_c00075{height:42.017918px;}
.hb_c00075{height:45.671232px;}
.h2_c00075{height:58.667764px;}
.h8_c00075{height:58.929966px;}
.h3_c00075{height:63.768724px;}
.ha_c00075{height:63.839974px;}
.hc_c00075{height:63.911224px;}
.h4_c00075{height:64.053724px;}
.h5_c00075{height:1249.830756px;}
.h1_c00075{height:1262.879062px;}
.h0_c00075{height:1263.000000px;}
.w2_c00075{width:883.195846px;}
.w1_c00075{width:892.414744px;}
.w0_c00075{width:892.500000px;}
.x0_c00075{left:0.000000px;}
.x7_c00075{left:1.541954px;}
.x8_c00075{left:109.903352px;}
.xa_c00075{left:123.440938px;}
.x2_c00075{left:126.216284px;}
.x9_c00075{left:175.987475px;}
.x4_c00075{left:249.654346px;}
.x3_c00075{left:267.288737px;}
.x6_c00075{left:315.382190px;}
.x5_c00075{left:417.442881px;}
.x1_c00075{left:510.074140px;}
.xb_c00075{left:588.340310px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:0.000000pt;}
._a_c00075{margin-left:-3.696553pt;}
._9_c00075{margin-left:-2.116735pt;}
._0_c00075{margin-left:-1.190569pt;}
._1_c00075{width:0.939388pt;}
._c_c00075{width:1.882260pt;}
._d_c00075{width:3.667668pt;}
._3_c00075{width:6.152682pt;}
._6_c00075{width:8.259445pt;}
._7_c00075{width:9.254930pt;}
._8_c00075{width:10.753031pt;}
._b_c00075{width:11.731800pt;}
._4_c00075{width:13.410298pt;}
._5_c00075{width:14.772309pt;}
._10_c00075{width:17.098801pt;}
._11_c00075{width:18.106316pt;}
._2_c00075{width:21.014728pt;}
._f_c00075{width:31.837212pt;}
._e_c00075{width:33.213928pt;}
.fs3_c00075{font-size:36.732892pt;}
.fs4_c00075{font-size:44.966169pt;}
.fs2_c00075{font-size:52.566166pt;}
.fs0_c00075{font-size:58.267177pt;}
.fs1_c00075{font-size:63.333308pt;}
.y0_c00075{bottom:0.000000pt;}
.y1_c00075{bottom:0.107500pt;}
.y8_c00075{bottom:6.068128pt;}
.ya_c00075{bottom:57.896246pt;}
.y3_c00075{bottom:73.833045pt;}
.y2_c00075{bottom:74.783670pt;}
.y31_c00075{bottom:80.221837pt;}
.y30_c00075{bottom:105.871561pt;}
.y2f_c00075{bottom:133.105283pt;}
.y2e_c00075{bottom:160.337139pt;}
.y2d_c00075{bottom:177.439799pt;}
.y2c_c00075{bottom:195.167925pt;}
.y2b_c00075{bottom:227.470445pt;}
.y2a_c00075{bottom:252.959635pt;}
.y29_c00075{bottom:280.351491pt;}
.y28_c00075{bottom:307.586547pt;}
.y27_c00075{bottom:334.818402pt;}
.y26_c00075{bottom:362.209058pt;}
.y25_c00075{bottom:379.150385pt;}
.y24_c00075{bottom:397.041977pt;}
.y23_c00075{bottom:429.185031pt;}
.y22_c00075{bottom:454.835821pt;}
.y21_c00075{bottom:482.067677pt;}
.y20_c00075{bottom:499.010337pt;}
.y1f_c00075{bottom:523.866060pt;}
.y1e_c00075{bottom:551.099116pt;}
.y1d_c00075{bottom:578.491638pt;}
.y1c_c00075{bottom:595.431631pt;}
.y1b_c00075{bottom:608.416960pt;}
.y1a_c00075{bottom:624.878820pt;}
.y19_c00075{bottom:658.447606pt;}
.y17_c00075{bottom:684.569996pt;}
.y18_c00075{bottom:684.571596pt;}
.y16_c00075{bottom:711.806252pt;}
.y15_c00075{bottom:739.196907pt;}
.y14_c00075{bottom:756.136900pt;}
.y13_c00075{bottom:768.488896pt;}
.y12_c00075{bottom:783.211823pt;}
.y11_c00075{bottom:815.355543pt;}
.y10_c00075{bottom:840.843400pt;}
.yf_c00075{bottom:868.078456pt;}
.ye_c00075{bottom:895.311511pt;}
.yd_c00075{bottom:912.255505pt;}
.yc_c00075{bottom:924.763500pt;}
.yb_c00075{bottom:939.328827pt;}
.y9_c00075{bottom:972.580814pt;}
.y7_c00075{bottom:1000.388100pt;}
.y6_c00075{bottom:1018.912492pt;}
.y5_c00075{bottom:1037.122485pt;}
.y4_c00075{bottom:1055.329411pt;}
.h9_c00075{height:23.545784pt;}
.hd_c00075{height:28.823314pt;}
.h7_c00075{height:33.694912pt;}
.h6_c00075{height:37.349260pt;}
.hb_c00075{height:40.596650pt;}
.h2_c00075{height:52.149123pt;}
.h8_c00075{height:52.382192pt;}
.h3_c00075{height:56.683311pt;}
.ha_c00075{height:56.746644pt;}
.hc_c00075{height:56.809977pt;}
.h4_c00075{height:56.936644pt;}
.h5_c00075{height:1110.960672pt;}
.h1_c00075{height:1122.559167pt;}
.h0_c00075{height:1122.666667pt;}
.w2_c00075{width:785.062974pt;}
.w1_c00075{width:793.257550pt;}
.w0_c00075{width:793.333333pt;}
.x0_c00075{left:0.000000pt;}
.x7_c00075{left:1.370626pt;}
.x8_c00075{left:97.691868pt;}
.xa_c00075{left:109.725278pt;}
.x2_c00075{left:112.192252pt;}
.x9_c00075{left:156.433311pt;}
.x4_c00075{left:221.914974pt;}
.x3_c00075{left:237.589988pt;}
.x6_c00075{left:280.339725pt;}
.x5_c00075{left:371.060339pt;}
.x1_c00075{left:453.399235pt;}
.xb_c00075{left:522.969165pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.115000;font-style:normal;font-weight:normal;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_29048482d1ab65066bd22250.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.112000;font-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_c00076{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:0.000000px;}
._3_c00076{margin-left:-2.830455px;}
._0_c00076{margin-left:-1.339390px;}
._1_c00076{width:1.056812px;}
._6_c00076{width:2.163310px;}
._11_c00076{width:3.546493px;}
._14_c00076{width:5.490568px;}
._16_c00076{width:7.092099px;}
._b_c00076{width:8.527478px;}
._c_c00076{width:9.741080px;}
._f_c00076{width:10.791735px;}
._5_c00076{width:11.862809px;}
._d_c00076{width:12.934397px;}
._4_c00076{width:13.997487px;}
._2_c00076{width:15.440926px;}
._10_c00076{width:19.030136px;}
._7_c00076{width:20.196851px;}
._13_c00076{width:21.418859px;}
._12_c00076{width:22.769958px;}
._15_c00076{width:24.433867px;}
._a_c00076{width:25.724777px;}
._8_c00076{width:27.492294px;}
._9_c00076{width:28.498612px;}
._e_c00076{width:29.693860px;}
.fc1_c00076{color:rgb(105,148,45);}
.fc0_c00076{color:rgb(35,31,32);}
.fs3_c00076{font-size:41.324503px;}
.fs2_c00076{font-size:59.136936px;}
.fs0_c00076{font-size:65.550574px;}
.fs1_c00076{font-size:71.249972px;}
.y0_c00076{bottom:0.000000px;}
.y1_c00076{bottom:0.120938px;}
.y8_c00076{bottom:6.826644px;}
.ya_c00076{bottom:65.133277px;}
.y3_c00076{bottom:83.062176px;}
.y2_c00076{bottom:84.131629px;}
.y2f_c00076{bottom:99.514013px;}
.y2e_c00076{bottom:115.720307px;}
.y2d_c00076{bottom:131.930800px;}
.y2c_c00076{bottom:148.141294px;}
.y2b_c00076{bottom:174.680483px;}
.y2a_c00076{bottom:205.315571px;}
.y29_c00076{bottom:236.130059px;}
.y28_c00076{bottom:266.767247px;}
.y27_c00076{bottom:297.583084px;}
.y26_c00076{bottom:328.219672px;}
.y25_c00076{bottom:359.036860px;}
.y24_c00076{bottom:389.672697px;}
.y23_c00076{bottom:408.910190px;}
.y22_c00076{bottom:435.272079px;}
.y21_c00076{bottom:466.086567px;}
.y20_c00076{bottom:496.723755px;}
.y1f_c00076{bottom:527.536742px;}
.y1e_c00076{bottom:558.174680px;}
.y1d_c00076{bottom:588.991868px;}
.y1c_c00076{bottom:619.628455px;}
.y1b_c00076{bottom:650.444293px;}
.y1a_c00076{bottom:681.082981px;}
.y19_c00076{bottom:711.719569px;}
.y18_c00076{bottom:730.960061px;}
.y17_c00076{bottom:757.319700px;}
.y16_c00076{bottom:788.132688px;}
.y15_c00076{bottom:818.773476px;}
.y14_c00076{bottom:849.586463px;}
.y13_c00076{bottom:880.223651px;}
.y12_c00076{bottom:902.130842px;}
.y11_c00076{bottom:930.989181px;}
.y10_c00076{bottom:961.624269px;}
.yf_c00076{bottom:992.441456px;}
.ye_c00076{bottom:1011.502129px;}
.yd_c00076{bottom:1026.287443px;}
.yc_c00076{bottom:1040.358937px;}
.yb_c00076{bottom:1056.744931px;}
.y9_c00076{bottom:1094.153416px;}
.y7_c00076{bottom:1125.436612px;}
.y6_c00076{bottom:1146.276554px;}
.y5_c00076{bottom:1166.762796px;}
.y4_c00076{bottom:1187.245588px;}
.h9_c00076{height:26.489007px;}
.h7_c00076{height:37.906776px;}
.h6_c00076{height:42.017918px;}
.hb_c00076{height:45.671232px;}
.h2_c00076{height:58.667764px;}
.h8_c00076{height:58.929966px;}
.h3_c00076{height:63.768724px;}
.ha_c00076{height:63.839974px;}
.h4_c00076{height:64.053724px;}
.h5_c00076{height:1249.830756px;}
.h1_c00076{height:1262.879062px;}
.h0_c00076{height:1263.000000px;}
.w2_c00076{width:883.195846px;}
.w1_c00076{width:892.414744px;}
.w0_c00076{width:892.500000px;}
.x0_c00076{left:0.000000px;}
.x7_c00076{left:1.541954px;}
.x8_c00076{left:109.903352px;}
.xa_c00076{left:123.442437px;}
.x2_c00076{left:126.216284px;}
.x9_c00076{left:175.987475px;}
.x4_c00076{left:249.654346px;}
.x3_c00076{left:267.288737px;}
.x6_c00076{left:315.382190px;}
.x5_c00076{left:417.442881px;}
.x1_c00076{left:510.074140px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
._3_c00076{margin-left:-2.515960pt;}
._0_c00076{margin-left:-1.190569pt;}
._1_c00076{width:0.939388pt;}
._6_c00076{width:1.922942pt;}
._11_c00076{width:3.152438pt;}
._14_c00076{width:4.880505pt;}
._16_c00076{width:6.304088pt;}
._b_c00076{width:7.579980pt;}
._c_c00076{width:8.658738pt;}
._f_c00076{width:9.592653pt;}
._5_c00076{width:10.544719pt;}
._d_c00076{width:11.497242pt;}
._4_c00076{width:12.442210pt;}
._2_c00076{width:13.725267pt;}
._10_c00076{width:16.915676pt;}
._7_c00076{width:17.952757pt;}
._13_c00076{width:19.038986pt;}
._12_c00076{width:20.239963pt;}
._15_c00076{width:21.718993pt;}
._a_c00076{width:22.866468pt;}
._8_c00076{width:24.437595pt;}
._9_c00076{width:25.332100pt;}
._e_c00076{width:26.394543pt;}
.fs3_c00076{font-size:36.732892pt;}
.fs2_c00076{font-size:52.566166pt;}
.fs0_c00076{font-size:58.267177pt;}
.fs1_c00076{font-size:63.333308pt;}
.y0_c00076{bottom:0.000000pt;}
.y1_c00076{bottom:0.107500pt;}
.y8_c00076{bottom:6.068128pt;}
.ya_c00076{bottom:57.896246pt;}
.y3_c00076{bottom:73.833045pt;}
.y2_c00076{bottom:74.783670pt;}
.y2f_c00076{bottom:88.456901pt;}
.y2e_c00076{bottom:102.862495pt;}
.y2d_c00076{bottom:117.271823pt;}
.y2c_c00076{bottom:131.681150pt;}
.y2b_c00076{bottom:155.271541pt;}
.y2a_c00076{bottom:182.502730pt;}
.y29_c00076{bottom:209.893386pt;}
.y28_c00076{bottom:237.126441pt;}
.y27_c00076{bottom:264.518297pt;}
.y26_c00076{bottom:291.750820pt;}
.y25_c00076{bottom:319.143875pt;}
.y24_c00076{bottom:346.375731pt;}
.y23_c00076{bottom:363.475724pt;}
.y22_c00076{bottom:386.908515pt;}
.y21_c00076{bottom:414.299171pt;}
.y20_c00076{bottom:441.532226pt;}
.y1f_c00076{bottom:468.921549pt;}
.y1e_c00076{bottom:496.155271pt;}
.y1d_c00076{bottom:523.548327pt;}
.y1c_c00076{bottom:550.780849pt;}
.y1b_c00076{bottom:578.172705pt;}
.y1a_c00076{bottom:605.407094pt;}
.y19_c00076{bottom:632.639617pt;}
.y18_c00076{bottom:649.742276pt;}
.y17_c00076{bottom:673.173067pt;}
.y16_c00076{bottom:700.562389pt;}
.y15_c00076{bottom:727.798645pt;}
.y14_c00076{bottom:755.187967pt;}
.y13_c00076{bottom:782.421023pt;}
.y12_c00076{bottom:801.894082pt;}
.y11_c00076{bottom:827.545939pt;}
.y10_c00076{bottom:854.777128pt;}
.yf_c00076{bottom:882.170183pt;}
.ye_c00076{bottom:899.113003pt;}
.yd_c00076{bottom:912.255505pt;}
.yc_c00076{bottom:924.763500pt;}
.yb_c00076{bottom:939.328827pt;}
.y9_c00076{bottom:972.580814pt;}
.y7_c00076{bottom:1000.388100pt;}
.y6_c00076{bottom:1018.912492pt;}
.y5_c00076{bottom:1037.122485pt;}
.y4_c00076{bottom:1055.329411pt;}
.h9_c00076{height:23.545784pt;}
.h7_c00076{height:33.694912pt;}
.h6_c00076{height:37.349260pt;}
.hb_c00076{height:40.596650pt;}
.h2_c00076{height:52.149123pt;}
.h8_c00076{height:52.382192pt;}
.h3_c00076{height:56.683311pt;}
.ha_c00076{height:56.746644pt;}
.h4_c00076{height:56.936644pt;}
.h5_c00076{height:1110.960672pt;}
.h1_c00076{height:1122.559167pt;}
.h0_c00076{height:1122.666667pt;}
.w2_c00076{width:785.062974pt;}
.w1_c00076{width:793.257550pt;}
.w0_c00076{width:793.333333pt;}
.x0_c00076{left:0.000000pt;}
.x7_c00076{left:1.370626pt;}
.x8_c00076{left:97.691868pt;}
.xa_c00076{left:109.726611pt;}
.x2_c00076{left:112.192252pt;}
.x9_c00076{left:156.433311pt;}
.x4_c00076{left:221.914974pt;}
.x3_c00076{left:237.589988pt;}
.x6_c00076{left:280.339725pt;}
.x5_c00076{left:371.060339pt;}
.x1_c00076{left:453.399235pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.115000;font-style:normal;font-weight:normal;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_29048482d1ab65066bd22250.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.112000;font-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_c00077{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls0_c00077{letter-spacing:0.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00077{word-spacing:0.000000px;}
._e_c00077{margin-left:-2.349910px;}
._0_c00077{margin-left:-1.339390px;}
._1_c00077{width:1.056812px;}
._2_c00077{width:2.151629px;}
._3_c00077{width:3.399017px;}
._4_c00077{width:4.498499px;}
._a_c00077{width:5.601328px;}
._7_c00077{width:6.900716px;}
._9_c00077{width:8.020653px;}
._8_c00077{width:9.667064px;}
._d_c00077{width:10.887022px;}
._b_c00077{width:12.877230px;}
._c_c00077{width:14.387831px;}
._5_c00077{width:15.891321px;}
._6_c00077{width:19.052575px;}
._11_c00077{width:21.283030px;}
._10_c00077{width:22.726241px;}
._f_c00077{width:24.519235px;}
._13_c00077{width:28.040518px;}
._12_c00077{width:29.857262px;}
._14_c00077{width:31.135083px;}
.fc1_c00077{color:rgb(105,148,45);}
.fc0_c00077{color:rgb(35,31,32);}
.fs3_c00077{font-size:38.474625px;}
.fs4_c00077{font-size:47.737061px;}
.fs2_c00077{font-size:59.136936px;}
.fs0_c00077{font-size:65.550574px;}
.fs1_c00077{font-size:71.249972px;}
.y0_c00077{bottom:0.000000px;}
.y1_c00077{bottom:0.120938px;}
.y8_c00077{bottom:6.826644px;}
.ya_c00077{bottom:65.133277px;}
.y3_c00077{bottom:83.062176px;}
.y2_c00077{bottom:84.131629px;}
.y32_c00077{bottom:88.826368px;}
.y31_c00077{bottom:106.281786px;}
.y30_c00077{bottom:121.065690px;}
.y2f_c00077{bottom:135.848184px;}
.y2e_c00077{bottom:150.811383px;}
.y2d_c00077{bottom:165.595287px;}
.y2c_c00077{bottom:191.956276px;}
.y2b_c00077{bottom:222.238414px;}
.y2a_c00077{bottom:252.695602px;}
.y29_c00077{bottom:282.976390px;}
.y28_c00077{bottom:313.438528px;}
.y27_c00077{bottom:342.472216px;}
.y26_c00077{bottom:343.895716px;}
.y25_c00077{bottom:362.062208px;}
.y24_c00077{bottom:374.885703px;}
.y23_c00077{bottom:393.767696px;}
.y22_c00077{bottom:421.557735px;}
.y21_c00077{bottom:452.197172px;}
.y20_c00077{bottom:482.834360px;}
.y1f_c00077{bottom:513.472298px;}
.y1e_c00077{bottom:544.108136px;}
.y1d_c00077{bottom:563.345628px;}
.y1c_c00077{bottom:577.060122px;}
.y1b_c00077{bottom:592.909416px;}
.y1a_c00077{bottom:629.251102px;}
.y19_c00077{bottom:658.103440px;}
.y18_c00077{bottom:688.919278px;}
.y17_c00077{bottom:719.557965px;}
.y16_c00077{bottom:750.373053px;}
.y15_c00077{bottom:769.431535px;}
.y14_c00077{bottom:784.217540px;}
.y13_c00077{bottom:804.343332px;}
.y12_c00077{bottom:840.505017px;}
.y11_c00077{bottom:869.358556px;}
.y10_c00077{bottom:899.994393px;}
.yf_c00077{bottom:932.771330px;}
.ye_c00077{bottom:963.585818px;}
.yd_c00077{bottom:994.224506px;}
.yc_c00077{bottom:1025.037493px;}
.yb_c00077{bottom:1055.676931px;}
.y9_c00077{bottom:1094.153416px;}
.y7_c00077{bottom:1125.436612px;}
.y6_c00077{bottom:1146.276554px;}
.y5_c00077{bottom:1166.762796px;}
.y4_c00077{bottom:1187.245588px;}
.ha_c00077{height:24.662234px;}
.h7_c00077{height:37.906776px;}
.h6_c00077{height:42.017918px;}
.hb_c00077{height:42.724670px;}
.h2_c00077{height:58.667764px;}
.h9_c00077{height:58.929966px;}
.h3_c00077{height:63.768724px;}
.h8_c00077{height:63.839974px;}
.h4_c00077{height:64.053724px;}
.h5_c00077{height:1249.830756px;}
.h1_c00077{height:1262.879062px;}
.h0_c00077{height:1263.000000px;}
.w2_c00077{width:883.195846px;}
.w1_c00077{width:892.414744px;}
.w0_c00077{width:892.500000px;}
.x0_c00077{left:0.000000px;}
.x7_c00077{left:1.541954px;}
.x8_c00077{left:109.903352px;}
.xa_c00077{left:123.442437px;}
.x2_c00077{left:126.216284px;}
.x9_c00077{left:175.987475px;}
.x4_c00077{left:249.654346px;}
.x3_c00077{left:267.288737px;}
.x6_c00077{left:315.382190px;}
.x5_c00077{left:417.442881px;}
.x1_c00077{left:510.074140px;}
.xb_c00077{left:575.161316px;}
.xc_c00077{left:590.477809px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
._e_c00077{margin-left:-2.088809pt;}
._0_c00077{margin-left:-1.190569pt;}
._1_c00077{width:0.939388pt;}
._2_c00077{width:1.912559pt;}
._3_c00077{width:3.021348pt;}
._4_c00077{width:3.998666pt;}
._a_c00077{width:4.978958pt;}
._7_c00077{width:6.133970pt;}
._9_c00077{width:7.129470pt;}
._8_c00077{width:8.592946pt;}
._d_c00077{width:9.677353pt;}
._b_c00077{width:11.446427pt;}
._c_c00077{width:12.789183pt;}
._5_c00077{width:14.125619pt;}
._6_c00077{width:16.935622pt;}
._11_c00077{width:18.918249pt;}
._10_c00077{width:20.201103pt;}
._f_c00077{width:21.794875pt;}
._13_c00077{width:24.924905pt;}
._12_c00077{width:26.539788pt;}
._14_c00077{width:27.675629pt;}
.fs3_c00077{font-size:34.199666pt;}
.fs4_c00077{font-size:42.432943pt;}
.fs2_c00077{font-size:52.566166pt;}
.fs0_c00077{font-size:58.267177pt;}
.fs1_c00077{font-size:63.333308pt;}
.y0_c00077{bottom:0.000000pt;}
.y1_c00077{bottom:0.107500pt;}
.y8_c00077{bottom:6.068128pt;}
.ya_c00077{bottom:57.896246pt;}
.y3_c00077{bottom:73.833045pt;}
.y2_c00077{bottom:74.783670pt;}
.y32_c00077{bottom:78.956771pt;}
.y31_c00077{bottom:94.472698pt;}
.y30_c00077{bottom:107.613947pt;}
.y2f_c00077{bottom:120.753941pt;}
.y2e_c00077{bottom:134.054563pt;}
.y2d_c00077{bottom:147.195811pt;}
.y2c_c00077{bottom:170.627801pt;}
.y2b_c00077{bottom:197.545257pt;}
.y2a_c00077{bottom:224.618313pt;}
.y29_c00077{bottom:251.534569pt;}
.y28_c00077{bottom:278.612025pt;}
.y27_c00077{bottom:304.419748pt;}
.y26_c00077{bottom:305.685081pt;}
.y25_c00077{bottom:321.833074pt;}
.y24_c00077{bottom:333.231736pt;}
.y23_c00077{bottom:350.015730pt;}
.y22_c00077{bottom:374.717986pt;}
.y21_c00077{bottom:401.953042pt;}
.y20_c00077{bottom:429.186098pt;}
.y1f_c00077{bottom:456.419820pt;}
.y1e_c00077{bottom:483.651676pt;}
.y1d_c00077{bottom:500.751669pt;}
.y1c_c00077{bottom:512.942331pt;}
.y1b_c00077{bottom:527.030592pt;}
.y1a_c00077{bottom:559.334313pt;}
.y19_c00077{bottom:584.980836pt;}
.y18_c00077{bottom:612.372691pt;}
.y17_c00077{bottom:639.607080pt;}
.y16_c00077{bottom:666.998269pt;}
.y15_c00077{bottom:683.939143pt;}
.y14_c00077{bottom:697.082257pt;}
.y13_c00077{bottom:714.971850pt;}
.y12_c00077{bottom:747.115571pt;}
.y11_c00077{bottom:772.763160pt;}
.y10_c00077{bottom:799.995016pt;}
.yf_c00077{bottom:829.130071pt;}
.ye_c00077{bottom:856.520727pt;}
.yd_c00077{bottom:883.755116pt;}
.yc_c00077{bottom:911.144438pt;}
.yb_c00077{bottom:938.379494pt;}
.y9_c00077{bottom:972.580814pt;}
.y7_c00077{bottom:1000.388100pt;}
.y6_c00077{bottom:1018.912492pt;}
.y5_c00077{bottom:1037.122485pt;}
.y4_c00077{bottom:1055.329411pt;}
.ha_c00077{height:21.921986pt;}
.h7_c00077{height:33.694912pt;}
.h6_c00077{height:37.349260pt;}
.hb_c00077{height:37.977484pt;}
.h2_c00077{height:52.149123pt;}
.h9_c00077{height:52.382192pt;}
.h3_c00077{height:56.683311pt;}
.h8_c00077{height:56.746644pt;}
.h4_c00077{height:56.936644pt;}
.h5_c00077{height:1110.960672pt;}
.h1_c00077{height:1122.559167pt;}
.h0_c00077{height:1122.666667pt;}
.w2_c00077{width:785.062974pt;}
.w1_c00077{width:793.257550pt;}
.w0_c00077{width:793.333333pt;}
.x0_c00077{left:0.000000pt;}
.x7_c00077{left:1.370626pt;}
.x8_c00077{left:97.691868pt;}
.xa_c00077{left:109.726611pt;}
.x2_c00077{left:112.192252pt;}
.x9_c00077{left:156.433311pt;}
.x4_c00077{left:221.914974pt;}
.x3_c00077{left:237.589988pt;}
.x6_c00077{left:280.339725pt;}
.x5_c00077{left:371.060339pt;}
.x1_c00077{left:453.399235pt;}
.xb_c00077{left:511.254503pt;}
.xc_c00077{left:524.869164pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.115000;font-style:normal;font-weight:normal;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_29048482d1ab65066bd22250.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_98bb09970289ca160802b915.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.107000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.112000;font-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_c00078{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00078{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls0_c00078{letter-spacing:0.000000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:-17.812493px;}
.ws1_c00078{word-spacing:0.000000px;}
._16_c00078{margin-left:-2.693182px;}
._0_c00078{margin-left:-1.339390px;}
._1_c00078{width:1.056812px;}
._13_c00078{width:2.347034px;}
._10_c00078{width:3.406441px;}
._8_c00078{width:4.463394px;}
._7_c00078{width:6.400221px;}
._6_c00078{width:8.135834px;}
._5_c00078{width:9.307385px;}
._4_c00078{width:10.377366px;}
._d_c00078{width:12.024294px;}
._e_c00078{width:13.306198px;}
._c_c00078{width:14.318226px;}
._f_c00078{width:15.925944px;}
._b_c00078{width:19.091472px;}
._14_c00078{width:24.045676px;}
._11_c00078{width:26.554856px;}
._12_c00078{width:27.563908px;}
._2_c00078{width:28.631847px;}
._3_c00078{width:30.072509px;}
._15_c00078{width:31.556799px;}
._a_c00078{width:32.699368px;}
._9_c00078{width:34.560718px;}
.fc1_c00078{color:rgb(105,148,45);}
.fc0_c00078{color:rgb(35,31,32);}
.fs3_c00078{font-size:47.737061px;}
.fs2_c00078{font-size:59.136936px;}
.fs0_c00078{font-size:65.550574px;}
.fs1_c00078{font-size:71.249972px;}
.y0_c00078{bottom:0.000000px;}
.y1_c00078{bottom:0.120938px;}
.y8_c00078{bottom:6.826644px;}
.ya_c00078{bottom:65.133277px;}
.y3_c00078{bottom:83.062176px;}
.y2_c00078{bottom:84.131629px;}
.y2c_c00078{bottom:276.210643px;}
.y2b_c00078{bottom:306.847231px;}
.y2a_c00078{bottom:326.443223px;}
.y29_c00078{bottom:354.052062px;}
.y28_c00078{bottom:384.154200px;}
.y27_c00078{bottom:414.435737px;}
.y26_c00078{bottom:443.290176px;}
.y25_c00078{bottom:444.715175px;}
.y24_c00078{bottom:464.131168px;}
.y23_c00078{bottom:491.737457px;}
.y22_c00078{bottom:522.017494px;}
.y20_c00078{bottom:550.694633px;}
.y1f_c00078{bottom:552.117532px;}
.y21_c00078{bottom:552.119632px;}
.y1e_c00078{bottom:582.578320px;}
.y1c_c00078{bottom:611.440109px;}
.y1d_c00078{bottom:612.859108px;}
.y1b_c00078{bottom:612.864658px;}
.y1a_c00078{bottom:643.145446px;}
.y19_c00078{bottom:673.427584px;}
.y18_c00078{bottom:692.837576px;}
.y17_c00078{bottom:720.272115px;}
.y16_c00078{bottom:750.554253px;}
.y15_c00078{bottom:780.654291px;}
.y14_c00078{bottom:809.512029px;}
.y13_c00078{bottom:810.938529px;}
.y12_c00078{bottom:842.820116px;}
.y11_c00078{bottom:873.099554px;}
.y10_c00078{bottom:903.203192px;}
.yf_c00078{bottom:933.483980px;}
.ye_c00078{bottom:965.190217px;}
.yd_c00078{bottom:995.469655px;}
.yc_c00078{bottom:1025.571793px;}
.yb_c00078{bottom:1055.853931px;}
.y9_c00078{bottom:1094.153416px;}
.y7_c00078{bottom:1125.436612px;}
.y6_c00078{bottom:1146.276554px;}
.y5_c00078{bottom:1166.762796px;}
.y4_c00078{bottom:1187.245588px;}
.h7_c00078{height:37.906776px;}
.h6_c00078{height:42.017918px;}
.h9_c00078{height:42.724670px;}
.hb_c00078{height:42.772407px;}
.h2_c00078{height:58.667764px;}
.h3_c00078{height:63.768724px;}
.ha_c00078{height:63.839974px;}
.h8_c00078{height:63.911224px;}
.h4_c00078{height:64.053724px;}
.h5_c00078{height:1249.830756px;}
.h1_c00078{height:1262.879062px;}
.h0_c00078{height:1263.000000px;}
.w2_c00078{width:883.195846px;}
.w1_c00078{width:892.414744px;}
.w0_c00078{width:892.500000px;}
.x0_c00078{left:0.000000px;}
.x7_c00078{left:1.541954px;}
.x8_c00078{left:109.903352px;}
.xe_c00078{left:123.443936px;}
.x2_c00078{left:126.216284px;}
.xd_c00078{left:175.987475px;}
.x9_c00078{left:190.414469px;}
.xa_c00078{left:216.778459px;}
.x4_c00078{left:249.654346px;}
.xf_c00078{left:261.311941px;}
.x3_c00078{left:267.288737px;}
.x6_c00078{left:315.382190px;}
.x5_c00078{left:417.442881px;}
.x12_c00078{left:429.457374px;}
.x13_c00078{left:435.511371px;}
.x1_c00078{left:510.074140px;}
.x10_c00078{left:614.705800px;}
.x11_c00078{left:620.762797px;}
.xb_c00078{left:622.187797px;}
.xc_c00078{left:645.875787px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:-15.833327pt;}
.ws1_c00078{word-spacing:0.000000pt;}
._16_c00078{margin-left:-2.393940pt;}
._0_c00078{margin-left:-1.190569pt;}
._1_c00078{width:0.939388pt;}
._13_c00078{width:2.086253pt;}
._10_c00078{width:3.027947pt;}
._8_c00078{width:3.967461pt;}
._7_c00078{width:5.689085pt;}
._6_c00078{width:7.231853pt;}
._5_c00078{width:8.273231pt;}
._4_c00078{width:9.224326pt;}
._d_c00078{width:10.688262pt;}
._e_c00078{width:11.827731pt;}
._c_c00078{width:12.727312pt;}
._f_c00078{width:14.156395pt;}
._b_c00078{width:16.970197pt;}
._14_c00078{width:21.373934pt;}
._11_c00078{width:23.604316pt;}
._12_c00078{width:24.501252pt;}
._2_c00078{width:25.450530pt;}
._3_c00078{width:26.731119pt;}
._15_c00078{width:28.050488pt;}
._a_c00078{width:29.066105pt;}
._9_c00078{width:30.720638pt;}
.fs3_c00078{font-size:42.432943pt;}
.fs2_c00078{font-size:52.566166pt;}
.fs0_c00078{font-size:58.267177pt;}
.fs1_c00078{font-size:63.333308pt;}
.y0_c00078{bottom:0.000000pt;}
.y1_c00078{bottom:0.107500pt;}
.y8_c00078{bottom:6.068128pt;}
.ya_c00078{bottom:57.896246pt;}
.y3_c00078{bottom:73.833045pt;}
.y2_c00078{bottom:74.783670pt;}
.y2c_c00078{bottom:245.520571pt;}
.y2b_c00078{bottom:272.753094pt;}
.y2a_c00078{bottom:290.171754pt;}
.y29_c00078{bottom:314.712944pt;}
.y28_c00078{bottom:341.470400pt;}
.y27_c00078{bottom:368.387322pt;}
.y26_c00078{bottom:394.035712pt;}
.y25_c00078{bottom:395.302378pt;}
.y24_c00078{bottom:412.561038pt;}
.y23_c00078{bottom:437.099961pt;}
.y22_c00078{bottom:464.015551pt;}
.y20_c00078{bottom:489.506340pt;}
.y1f_c00078{bottom:490.771140pt;}
.y21_c00078{bottom:490.773007pt;}
.y1e_c00078{bottom:517.847396pt;}
.y1c_c00078{bottom:543.502319pt;}
.y1d_c00078{bottom:544.763652pt;}
.y1b_c00078{bottom:544.768585pt;}
.y1a_c00078{bottom:571.684841pt;}
.y19_c00078{bottom:598.602297pt;}
.y18_c00078{bottom:615.855623pt;}
.y17_c00078{bottom:640.241880pt;}
.y16_c00078{bottom:667.159336pt;}
.y15_c00078{bottom:693.914925pt;}
.y14_c00078{bottom:719.566248pt;}
.y13_c00078{bottom:720.834248pt;}
.y12_c00078{bottom:749.173437pt;}
.y11_c00078{bottom:776.088492pt;}
.y10_c00078{bottom:802.847282pt;}
.yf_c00078{bottom:829.763538pt;}
.ye_c00078{bottom:857.946860pt;}
.yd_c00078{bottom:884.861916pt;}
.yc_c00078{bottom:911.619372pt;}
.yb_c00078{bottom:938.536827pt;}
.y9_c00078{bottom:972.580814pt;}
.y7_c00078{bottom:1000.388100pt;}
.y6_c00078{bottom:1018.912492pt;}
.y5_c00078{bottom:1037.122485pt;}
.y4_c00078{bottom:1055.329411pt;}
.h7_c00078{height:33.694912pt;}
.h6_c00078{height:37.349260pt;}
.h9_c00078{height:37.977484pt;}
.hb_c00078{height:38.019917pt;}
.h2_c00078{height:52.149123pt;}
.h3_c00078{height:56.683311pt;}
.ha_c00078{height:56.746644pt;}
.h8_c00078{height:56.809977pt;}
.h4_c00078{height:56.936644pt;}
.h5_c00078{height:1110.960672pt;}
.h1_c00078{height:1122.559167pt;}
.h0_c00078{height:1122.666667pt;}
.w2_c00078{width:785.062974pt;}
.w1_c00078{width:793.257550pt;}
.w0_c00078{width:793.333333pt;}
.x0_c00078{left:0.000000pt;}
.x7_c00078{left:1.370626pt;}
.x8_c00078{left:97.691868pt;}
.xe_c00078{left:109.727943pt;}
.x2_c00078{left:112.192252pt;}
.xd_c00078{left:156.433311pt;}
.x9_c00078{left:169.257306pt;}
.xa_c00078{left:192.691963pt;}
.x4_c00078{left:221.914974pt;}
.xf_c00078{left:232.277281pt;}
.x3_c00078{left:237.589988pt;}
.x6_c00078{left:280.339725pt;}
.x5_c00078{left:371.060339pt;}
.x12_c00078{left:381.739888pt;}
.x13_c00078{left:387.121219pt;}
.x1_c00078{left:453.399235pt;}
.x10_c00078{left:546.405155pt;}
.x11_c00078{left:551.789153pt;}
.xb_c00078{left:553.055819pt;}
.xc_c00078{left:574.111811pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.115000;font-style:normal;font-weight:normal;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_29048482d1ab65066bd22250.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00079;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.112000;font-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_c00079{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00079{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00079{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00079{vertical-align:-63.407975px;}
.v0_c00079{vertical-align:0.000000px;}
.v2_c00079{vertical-align:62.701775px;}
.ls0_c00079{letter-spacing:0.000000px;}
.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:-17.812493px;}
.ws2_c00079{word-spacing:0.000000px;}
.ws1_c00079{word-spacing:118.699400px;}
._d_c00079{margin-left:-4.075124px;}
._a_c00079{margin-left:-2.852774px;}
._0_c00079{margin-left:-1.339390px;}
._1_c00079{width:1.056812px;}
._6_c00079{width:2.797229px;}
._5_c00079{width:3.904493px;}
._9_c00079{width:7.668115px;}
._7_c00079{width:9.806558px;}
._8_c00079{width:11.195533px;}
._4_c00079{width:14.946060px;}
._2_c00079{width:16.444506px;}
._3_c00079{width:19.307414px;}
._e_c00079{width:145.756168px;}
._f_c00079{width:214.944101px;}
._c_c00079{width:343.843498px;}
._10_c00079{width:345.158753px;}
._11_c00079{width:558.512780px;}
._b_c00079{width:767.530532px;}
.fc1_c00079{color:rgb(105,148,45);}
.fc0_c00079{color:rgb(35,31,32);}
.fs5_c00079{font-size:32.774747px;}
.fs4_c00079{font-size:38.474625px;}
.fs3_c00079{font-size:47.737061px;}
.fs2_c00079{font-size:59.136936px;}
.fs0_c00079{font-size:65.550574px;}
.fs1_c00079{font-size:71.249972px;}
.y0_c00079{bottom:0.000000px;}
.y1_c00079{bottom:0.120938px;}
.y23_c00079{bottom:3.916889px;}
.y29_c00079{bottom:3.918413px;}
.y26_c00079{bottom:4.273290px;}
.y8_c00079{bottom:6.826644px;}
.ya_c00079{bottom:65.133277px;}
.y3_c00079{bottom:83.062176px;}
.y2_c00079{bottom:84.131629px;}
.y31_c00079{bottom:339.802217px;}
.y30_c00079{bottom:354.764711px;}
.y2f_c00079{bottom:365.092207px;}
.y2e_c00079{bottom:393.412196px;}
.y2d_c00079{bottom:425.654683px;}
.y2a_c00079{bottom:440.258677px;}
.y2c_c00079{bottom:443.644176px;}
.y2b_c00079{bottom:455.933671px;}
.y28_c00079{bottom:462.407400px;}
.y24_c00079{bottom:509.310359px;}
.y27_c00079{bottom:510.019858px;}
.y25_c00079{bottom:521.010000px;}
.y22_c00079{bottom:524.750400px;}
.y21_c00079{bottom:549.272634px;}
.y20_c00079{bottom:569.398921px;}
.y1f_c00079{bottom:584.362120px;}
.y1e_c00079{bottom:598.610614px;}
.y1d_c00079{bottom:612.325108px;}
.y1c_c00079{bottom:631.207896px;}
.y1b_c00079{bottom:646.171095px;}
.y1a_c00079{bottom:660.421089px;}
.y19_c00079{bottom:678.409082px;}
.y18_c00079{bottom:715.459667px;}
.y17_c00079{bottom:731.848061px;}
.y16_c00079{bottom:758.208300px;}
.y15_c00079{bottom:789.021288px;}
.y14_c00079{bottom:819.660725px;}
.y13_c00079{bottom:850.476563px;}
.y12_c00079{bottom:881.111051px;}
.y11_c00079{bottom:911.928988px;}
.y10_c00079{bottom:942.564826px;}
.yf_c00079{bottom:973.382014px;}
.ye_c00079{bottom:1004.019952px;}
.yd_c00079{bottom:1023.257444px;}
.yc_c00079{bottom:1037.505938px;}
.yb_c00079{bottom:1055.496931px;}
.y9_c00079{bottom:1094.153416px;}
.y7_c00079{bottom:1125.436612px;}
.y6_c00079{bottom:1146.276554px;}
.y5_c00079{bottom:1166.762796px;}
.y4_c00079{bottom:1187.245588px;}
.hb_c00079{height:16.210800px;}
.hd_c00079{height:16.389000px;}
.hc_c00079{height:19.951200px;}
.h12_c00079{height:21.008613px;}
.hf_c00079{height:24.662234px;}
.h9_c00079{height:30.599456px;}
.h7_c00079{height:37.906776px;}
.h6_c00079{height:42.017918px;}
.h11_c00079{height:52.927558px;}
.h2_c00079{height:58.667764px;}
.h3_c00079{height:63.768724px;}
.ha_c00079{height:63.839974px;}
.h8_c00079{height:63.911224px;}
.h4_c00079{height:64.053724px;}
.h10_c00079{height:64.554352px;}
.he_c00079{height:126.541749px;}
.h5_c00079{height:1249.830756px;}
.h1_c00079{height:1262.879062px;}
.h0_c00079{height:1263.000000px;}
.w8_c00079{width:4.453200px;}
.w10_c00079{width:4.989600px;}
.w13_c00079{width:5.160600px;}
.w9_c00079{width:5.167800px;}
.wf_c00079{width:6.942600px;}
.w15_c00079{width:7.837200px;}
.wa_c00079{width:7.839000px;}
.w12_c00079{width:7.840800px;}
.w5_c00079{width:8.013600px;}
.we_c00079{width:8.015400px;}
.w16_c00079{width:8.726400px;}
.w3_c00079{width:8.727300px;}
.wb_c00079{width:8.904600px;}
.w6_c00079{width:8.906400px;}
.wd_c00079{width:8.908200px;}
.w14_c00079{width:8.910000px;}
.w17_c00079{width:9.972000px;}
.wc_c00079{width:11.403000px;}
.w4_c00079{width:15.854400px;}
.w18_c00079{width:17.992800px;}
.w11_c00079{width:20.304000px;}
.w7_c00079{width:21.729600px;}
.w2_c00079{width:883.195846px;}
.w1_c00079{width:892.414744px;}
.w0_c00079{width:892.500000px;}
.x0_c00079{left:0.000000px;}
.x7_c00079{left:1.541954px;}
.x8_c00079{left:109.903352px;}
.xd_c00079{left:118.926540px;}
.xa_c00079{left:123.439439px;}
.x2_c00079{left:126.216284px;}
.x26_c00079{left:128.072094px;}
.x2b_c00079{left:130.744643px;}
.x9_c00079{left:175.987475px;}
.xb_c00079{left:179.015974px;}
.x28_c00079{left:220.516457px;}
.x25_c00079{left:246.980245px;}
.x4_c00079{left:249.654346px;}
.x29_c00079{left:250.796945px;}
.x3_c00079{left:267.288737px;}
.x6_c00079{left:315.382190px;}
.xc_c00079{left:323.470416px;}
.x5_c00079{left:417.442881px;}
.x1_c00079{left:510.074140px;}
.xe_c00079{left:525.585600px;}
.xf_c00079{left:533.421000px;}
.x10_c00079{left:542.327400px;}
.x11_c00079{left:563.882400px;}
.x12_c00079{left:572.248800px;}
.x13_c00079{left:577.416600px;}
.x14_c00079{left:585.255600px;}
.x15_c00079{left:594.160200px;}
.x16_c00079{left:601.999200px;}
.x17_c00079{left:617.315400px;}
.x18_c00079{left:626.223600px;}
.x19_c00079{left:634.062600px;}
.x1a_c00079{left:641.005200px;}
.x27_c00079{left:642.131789px;}
.x1b_c00079{left:645.994800px;}
.x1c_c00079{left:670.217400px;}
.x2a_c00079{left:674.552776px;}
.x1d_c00079{left:678.058200px;}
.x1e_c00079{left:683.218800px;}
.x1f_c00079{left:692.128800px;}
.x20_c00079{left:699.966000px;}
.x21_c00079{left:708.692400px;}
.x22_c00079{left:716.531400px;}
.x23_c00079{left:726.503400px;}
.x24_c00079{left:734.342400px;}
@media print{
.v1_c00079{vertical-align:-56.362644pt;}
.v0_c00079{vertical-align:0.000000pt;}
.v2_c00079{vertical-align:55.734911pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws0_c00079{word-spacing:-15.833327pt;}
.ws2_c00079{word-spacing:0.000000pt;}
.ws1_c00079{word-spacing:105.510578pt;}
._d_c00079{margin-left:-3.622333pt;}
._a_c00079{margin-left:-2.535799pt;}
._0_c00079{margin-left:-1.190569pt;}
._1_c00079{width:0.939388pt;}
._6_c00079{width:2.486426pt;}
._5_c00079{width:3.470661pt;}
._9_c00079{width:6.816102pt;}
._7_c00079{width:8.716941pt;}
._8_c00079{width:9.951585pt;}
._4_c00079{width:13.285386pt;}
._2_c00079{width:14.617339pt;}
._3_c00079{width:17.162146pt;}
._e_c00079{width:129.561039pt;}
._f_c00079{width:191.061423pt;}
._c_c00079{width:305.638665pt;}
._10_c00079{width:306.807780pt;}
._11_c00079{width:496.455804pt;}
._b_c00079{width:682.249362pt;}
.fs5_c00079{font-size:29.133108pt;}
.fs4_c00079{font-size:34.199666pt;}
.fs3_c00079{font-size:42.432943pt;}
.fs2_c00079{font-size:52.566166pt;}
.fs0_c00079{font-size:58.267177pt;}
.fs1_c00079{font-size:63.333308pt;}
.y0_c00079{bottom:0.000000pt;}
.y1_c00079{bottom:0.107500pt;}
.y23_c00079{bottom:3.481679pt;}
.y29_c00079{bottom:3.483034pt;}
.y26_c00079{bottom:3.798480pt;}
.y8_c00079{bottom:6.068128pt;}
.ya_c00079{bottom:57.896246pt;}
.y3_c00079{bottom:73.833045pt;}
.y2_c00079{bottom:74.783670pt;}
.y31_c00079{bottom:302.046415pt;}
.y30_c00079{bottom:315.346410pt;}
.y2f_c00079{bottom:324.526406pt;}
.y2e_c00079{bottom:349.699730pt;}
.y2d_c00079{bottom:378.359718pt;}
.y2a_c00079{bottom:391.341046pt;}
.y2c_c00079{bottom:394.350378pt;}
.y2b_c00079{bottom:405.274374pt;}
.y28_c00079{bottom:411.028800pt;}
.y24_c00079{bottom:452.720319pt;}
.y27_c00079{bottom:453.350985pt;}
.y25_c00079{bottom:463.120000pt;}
.y22_c00079{bottom:466.444800pt;}
.y21_c00079{bottom:488.242341pt;}
.y20_c00079{bottom:506.132374pt;}
.y1f_c00079{bottom:519.432995pt;}
.y1e_c00079{bottom:532.098323pt;}
.y1d_c00079{bottom:544.288985pt;}
.y1c_c00079{bottom:561.073685pt;}
.y1b_c00079{bottom:574.374306pt;}
.y1a_c00079{bottom:587.040968pt;}
.y19_c00079{bottom:603.030295pt;}
.y18_c00079{bottom:635.964149pt;}
.y17_c00079{bottom:650.531609pt;}
.y16_c00079{bottom:673.962933pt;}
.y15_c00079{bottom:701.352256pt;}
.y14_c00079{bottom:728.587311pt;}
.y13_c00079{bottom:755.979167pt;}
.y12_c00079{bottom:783.209823pt;}
.y11_c00079{bottom:810.603545pt;}
.y10_c00079{bottom:837.835401pt;}
.yf_c00079{bottom:865.228457pt;}
.ye_c00079{bottom:892.462179pt;}
.yd_c00079{bottom:909.562172pt;}
.yc_c00079{bottom:922.227501pt;}
.yb_c00079{bottom:938.219494pt;}
.y9_c00079{bottom:972.580814pt;}
.y7_c00079{bottom:1000.388100pt;}
.y6_c00079{bottom:1018.912492pt;}
.y5_c00079{bottom:1037.122485pt;}
.y4_c00079{bottom:1055.329411pt;}
.hb_c00079{height:14.409600pt;}
.hd_c00079{height:14.568000pt;}
.hc_c00079{height:17.734400pt;}
.h12_c00079{height:18.674322pt;}
.hf_c00079{height:21.921986pt;}
.h9_c00079{height:27.199516pt;}
.h7_c00079{height:33.694912pt;}
.h6_c00079{height:37.349260pt;}
.h11_c00079{height:47.046718pt;}
.h2_c00079{height:52.149123pt;}
.h3_c00079{height:56.683311pt;}
.ha_c00079{height:56.746644pt;}
.h8_c00079{height:56.809977pt;}
.h4_c00079{height:56.936644pt;}
.h10_c00079{height:57.381646pt;}
.he_c00079{height:112.481555pt;}
.h5_c00079{height:1110.960672pt;}
.h1_c00079{height:1122.559167pt;}
.h0_c00079{height:1122.666667pt;}
.w8_c00079{width:3.958400pt;}
.w10_c00079{width:4.435200pt;}
.w13_c00079{width:4.587200pt;}
.w9_c00079{width:4.593600pt;}
.wf_c00079{width:6.171200pt;}
.w15_c00079{width:6.966400pt;}
.wa_c00079{width:6.968000pt;}
.w12_c00079{width:6.969600pt;}
.w5_c00079{width:7.123200pt;}
.we_c00079{width:7.124800pt;}
.w16_c00079{width:7.756800pt;}
.w3_c00079{width:7.757600pt;}
.wb_c00079{width:7.915200pt;}
.w6_c00079{width:7.916800pt;}
.wd_c00079{width:7.918400pt;}
.w14_c00079{width:7.920000pt;}
.w17_c00079{width:8.864000pt;}
.wc_c00079{width:10.136000pt;}
.w4_c00079{width:14.092800pt;}
.w18_c00079{width:15.993600pt;}
.w11_c00079{width:18.048000pt;}
.w7_c00079{width:19.315200pt;}
.w2_c00079{width:785.062974pt;}
.w1_c00079{width:793.257550pt;}
.w0_c00079{width:793.333333pt;}
.x0_c00079{left:0.000000pt;}
.x7_c00079{left:1.370626pt;}
.x8_c00079{left:97.691868pt;}
.xd_c00079{left:105.712480pt;}
.xa_c00079{left:109.723946pt;}
.x2_c00079{left:112.192252pt;}
.x26_c00079{left:113.841862pt;}
.x2b_c00079{left:116.217461pt;}
.x9_c00079{left:156.433311pt;}
.xb_c00079{left:159.125310pt;}
.x28_c00079{left:196.014629pt;}
.x25_c00079{left:219.537996pt;}
.x4_c00079{left:221.914974pt;}
.x29_c00079{left:222.930618pt;}
.x3_c00079{left:237.589988pt;}
.x6_c00079{left:280.339725pt;}
.xc_c00079{left:287.529259pt;}
.x5_c00079{left:371.060339pt;}
.x1_c00079{left:453.399235pt;}
.xe_c00079{left:467.187200pt;}
.xf_c00079{left:474.152000pt;}
.x10_c00079{left:482.068800pt;}
.x11_c00079{left:501.228800pt;}
.x12_c00079{left:508.665600pt;}
.x13_c00079{left:513.259200pt;}
.x14_c00079{left:520.227200pt;}
.x15_c00079{left:528.142400pt;}
.x16_c00079{left:535.110400pt;}
.x17_c00079{left:548.724800pt;}
.x18_c00079{left:556.643200pt;}
.x19_c00079{left:563.611200pt;}
.x1a_c00079{left:569.782400pt;}
.x27_c00079{left:570.783812pt;}
.x1b_c00079{left:574.217600pt;}
.x1c_c00079{left:595.748800pt;}
.x2a_c00079{left:599.602467pt;}
.x1d_c00079{left:602.718400pt;}
.x1e_c00079{left:607.305600pt;}
.x1f_c00079{left:615.225600pt;}
.x20_c00079{left:622.192000pt;}
.x21_c00079{left:629.948800pt;}
.x22_c00079{left:636.916800pt;}
.x23_c00079{left:645.780800pt;}
.x24_c00079{left:652.748800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00080{word-spacing:0.000000px;}
.fc0_c00080{color:rgb(35,31,32);}
.fs0_c00080{font-size:106.873757px;}
.y0_c00080{bottom:0.000000px;}
.y1_c00080{bottom:0.120938px;}
.y2_c00080{bottom:407.959899px;}
.h2_c00080{height:95.865760px;}
.h1_c00080{height:1262.879062px;}
.h0_c00080{height:1263.000000px;}
.w1_c00080{width:892.414744px;}
.w0_c00080{width:892.500000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:108.404900px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws0_c00080{word-spacing:0.000000pt;}
.fs0_c00080{font-size:94.998895pt;}
.y0_c00080{bottom:0.000000pt;}
.y1_c00080{bottom:0.107500pt;}
.y2_c00080{bottom:362.631022pt;}
.h2_c00080{height:85.214009pt;}
.h1_c00080{height:1122.559167pt;}
.h0_c00080{height:1122.666667pt;}
.w1_c00080{width:793.257550pt;}
.w0_c00080{width:793.333333pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.113000;font-style:normal;font-weight:normal;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_8285f6272fe2221a8e395236.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:0.632000;font-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_c00081{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00081{word-spacing:-23.690691px;}
.ws1_c00081{word-spacing:0.000000px;}
._2_c00081{margin-left:-12.490468px;}
._3_c00081{margin-left:-11.141527px;}
._1_c00081{margin-left:-8.258174px;}
._0_c00081{width:1.056287px;}
.fc1_c00081{color:rgb(35,31,32);}
.fc2_c00081{color:transparent;}
.fc0_c00081{color:rgb(105,148,45);}
.fs2_c00081{font-size:59.136936px;}
.fs1_c00081{font-size:65.550574px;}
.fs0_c00081{font-size:71.249972px;}
.fs3_c00081{font-size:94.762762px;}
.y0_c00081{bottom:0.000000px;}
.y1_c00081{bottom:0.120938px;}
.yd_c00081{bottom:3.562451px;}
.ye_c00081{bottom:6.826644px;}
.y8_c00081{bottom:64.359117px;}
.y7_c00081{bottom:79.144431px;}
.y20_c00081{bottom:244.502905px;}
.y1f_c00081{bottom:282.442840px;}
.y1e_c00081{bottom:320.203525px;}
.y1d_c00081{bottom:357.966910px;}
.y1c_c00081{bottom:395.728945px;}
.y1b_c00081{bottom:528.073142px;}
.y1a_c00081{bottom:555.506631px;}
.y19_c00081{bottom:589.885117px;}
.y18_c00081{bottom:589.887067px;}
.y17_c00081{bottom:624.442103px;}
.y16_c00081{bottom:658.994590px;}
.y15_c00081{bottom:658.995190px;}
.y14_c00081{bottom:693.373076px;}
.y13_c00081{bottom:727.930062px;}
.y12_c00081{bottom:727.930512px;}
.y11_c00081{bottom:762.487048px;}
.y10_c00081{bottom:797.042534px;}
.yf_c00081{bottom:831.419521px;}
.yc_c00081{bottom:869.596200px;}
.yb_c00081{bottom:873.037713px;}
.ya_c00081{bottom:963.166677px;}
.y9_c00081{bottom:1018.921655px;}
.y6_c00081{bottom:1101.568622px;}
.y5_c00081{bottom:1125.258112px;}
.y4_c00081{bottom:1146.098804px;}
.y3_c00081{bottom:1166.584296px;}
.y2_c00081{bottom:1187.067088px;}
.h8_c00081{height:16.743600px;}
.h5_c00081{height:37.374544px;}
.h4_c00081{height:41.427963px;}
.h9_c00081{height:52.927558px;}
.h7_c00081{height:53.164106px;}
.h2_c00081{height:63.768724px;}
.h3_c00081{height:64.053724px;}
.h6_c00081{height:85.002198px;}
.ha_c00081{height:1249.830756px;}
.h1_c00081{height:1262.879062px;}
.h0_c00081{height:1263.000000px;}
.w2_c00081{width:50.407200px;}
.w3_c00081{width:883.195846px;}
.w1_c00081{width:892.414744px;}
.w0_c00081{width:892.500000px;}
.x0_c00081{left:0.000000px;}
.x9_c00081{left:1.541954px;}
.xc_c00081{left:112.753050px;}
.x5_c00081{left:114.282348px;}
.xa_c00081{left:133.770892px;}
.x2_c00081{left:252.504495px;}
.x1_c00081{left:270.140236px;}
.x7_c00081{left:286.706229px;}
.x4_c00081{left:374.872776px;}
.x6_c00081{left:397.856185px;}
.x3_c00081{left:420.296029px;}
.xb_c00081{left:767.354739px;}
.x8_c00081{left:834.271200px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:-21.058392pt;}
.ws1_c00081{word-spacing:0.000000pt;}
._2_c00081{margin-left:-11.102638pt;}
._3_c00081{margin-left:-9.903580pt;}
._1_c00081{margin-left:-7.340599pt;}
._0_c00081{width:0.938922pt;}
.fs2_c00081{font-size:52.566166pt;}
.fs1_c00081{font-size:58.267177pt;}
.fs0_c00081{font-size:63.333308pt;}
.fs3_c00081{font-size:84.233566pt;}
.y0_c00081{bottom:0.000000pt;}
.y1_c00081{bottom:0.107500pt;}
.yd_c00081{bottom:3.166623pt;}
.ye_c00081{bottom:6.068128pt;}
.y8_c00081{bottom:57.208104pt;}
.y7_c00081{bottom:70.350605pt;}
.y20_c00081{bottom:217.335916pt;}
.y1f_c00081{bottom:251.060302pt;}
.y1e_c00081{bottom:284.625356pt;}
.y1d_c00081{bottom:318.192809pt;}
.y1c_c00081{bottom:351.759062pt;}
.y1b_c00081{bottom:469.398348pt;}
.y1a_c00081{bottom:493.783672pt;}
.y19_c00081{bottom:524.342327pt;}
.y18_c00081{bottom:524.344060pt;}
.y17_c00081{bottom:555.059648pt;}
.y16_c00081{bottom:585.772969pt;}
.y15_c00081{bottom:585.773502pt;}
.y14_c00081{bottom:616.331623pt;}
.y13_c00081{bottom:647.048944pt;}
.y12_c00081{bottom:647.049344pt;}
.y11_c00081{bottom:677.766265pt;}
.y10_c00081{bottom:708.482253pt;}
.yf_c00081{bottom:739.039574pt;}
.yc_c00081{bottom:772.974400pt;}
.yb_c00081{bottom:776.033523pt;}
.ya_c00081{bottom:856.148157pt;}
.y9_c00081{bottom:905.708138pt;}
.y6_c00081{bottom:979.172108pt;}
.y5_c00081{bottom:1000.229433pt;}
.y4_c00081{bottom:1018.754492pt;}
.y3_c00081{bottom:1036.963819pt;}
.y2_c00081{bottom:1055.170745pt;}
.h8_c00081{height:14.883200pt;}
.h5_c00081{height:33.221817pt;}
.h4_c00081{height:36.824856pt;}
.h9_c00081{height:47.046718pt;}
.h7_c00081{height:47.256983pt;}
.h2_c00081{height:56.683311pt;}
.h3_c00081{height:56.936644pt;}
.h6_c00081{height:75.557509pt;}
.ha_c00081{height:1110.960672pt;}
.h1_c00081{height:1122.559167pt;}
.h0_c00081{height:1122.666667pt;}
.w2_c00081{width:44.806400pt;}
.w3_c00081{width:785.062974pt;}
.w1_c00081{width:793.257550pt;}
.w0_c00081{width:793.333333pt;}
.x0_c00081{left:0.000000pt;}
.x9_c00081{left:1.370626pt;}
.xc_c00081{left:100.224934pt;}
.x5_c00081{left:101.584309pt;}
.xa_c00081{left:118.907460pt;}
.x2_c00081{left:224.448440pt;}
.x1_c00081{left:240.124654pt;}
.x7_c00081{left:254.849981pt;}
.x4_c00081{left:333.220246pt;}
.x6_c00081{left:353.649942pt;}
.x3_c00081{left:373.596470pt;}
.xb_c00081{left:682.093101pt;}
.x8_c00081{left:741.574400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:1.112000;font-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_c00082{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:0.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:0.000000px;}
._0_c00082{margin-left:-1.375620px;}
._1_c00082{width:1.056287px;}
._2_c00082{width:2.162967px;}
._a_c00082{width:3.908774px;}
._b_c00082{width:4.946190px;}
._5_c00082{width:5.988111px;}
._6_c00082{width:7.244987px;}
._7_c00082{width:8.446604px;}
._c_c00082{width:10.038721px;}
._3_c00082{width:11.070559px;}
._4_c00082{width:12.126942px;}
._f_c00082{width:21.210337px;}
._10_c00082{width:22.573219px;}
._8_c00082{width:27.329486px;}
._9_c00082{width:28.517501px;}
._e_c00082{width:29.528371px;}
._d_c00082{width:30.831089px;}
.fc1_c00082{color:rgb(105,148,45);}
.fc0_c00082{color:rgb(35,31,32);}
.fs2_c00082{font-size:59.136936px;}
.fs0_c00082{font-size:65.550574px;}
.fs1_c00082{font-size:71.249972px;}
.fs3_c00082{font-size:94.762762px;}
.y0_c00082{bottom:0.000000px;}
.y1_c00082{bottom:0.120938px;}
.y8_c00082{bottom:6.826644px;}
.yb_c00082{bottom:57.653410px;}
.ya_c00082{bottom:72.438724px;}
.y3_c00082{bottom:83.414470px;}
.y2_c00082{bottom:84.305329px;}
.y24_c00082{bottom:123.376154px;}
.y23_c00082{bottom:154.012742px;}
.y22_c00082{bottom:184.829929px;}
.y21_c00082{bottom:230.253211px;}
.y20_c00082{bottom:261.069049px;}
.y1f_c00082{bottom:291.705637px;}
.y1e_c00082{bottom:322.520124px;}
.y1d_c00082{bottom:353.158812px;}
.y1c_c00082{bottom:383.973900px;}
.y1b_c00082{bottom:414.611087px;}
.y1a_c00082{bottom:445.425575px;}
.y19_c00082{bottom:476.061413px;}
.y18_c00082{bottom:506.876501px;}
.y17_c00082{bottom:552.476182px;}
.y16_c00082{bottom:583.114120px;}
.y15_c00082{bottom:656.855741px;}
.y14_c00082{bottom:695.331475px;}
.y13_c00082{bottom:733.627210px;}
.y12_c00082{bottom:772.103544px;}
.y11_c00082{bottom:810.046029px;}
.y10_c00082{bottom:855.286011px;}
.yf_c00082{bottom:900.885693px;}
.ye_c00082{bottom:931.702281px;}
.yd_c00082{bottom:962.340968px;}
.yc_c00082{bottom:1012.215948px;}
.y9_c00082{bottom:1094.862915px;}
.y7_c00082{bottom:1125.258112px;}
.y6_c00082{bottom:1146.098804px;}
.y5_c00082{bottom:1166.584296px;}
.y4_c00082{bottom:1187.067088px;}
.h7_c00082{height:37.374544px;}
.h6_c00082{height:41.427963px;}
.ha_c00082{height:53.164106px;}
.h2_c00082{height:58.667764px;}
.h3_c00082{height:63.768724px;}
.h9_c00082{height:63.839974px;}
.hb_c00082{height:63.911224px;}
.h4_c00082{height:64.053724px;}
.h8_c00082{height:85.002198px;}
.h5_c00082{height:1249.830756px;}
.h1_c00082{height:1262.879062px;}
.h0_c00082{height:1263.000000px;}
.w2_c00082{width:883.195846px;}
.w1_c00082{width:892.414744px;}
.w0_c00082{width:892.500000px;}
.x0_c00082{left:0.000000px;}
.x7_c00082{left:1.541954px;}
.x8_c00082{left:112.753050px;}
.x2_c00082{left:126.215172px;}
.xa_c00082{left:138.938840px;}
.x4_c00082{left:252.504495px;}
.x3_c00082{left:270.140236px;}
.x9_c00082{left:285.176932px;}
.xb_c00082{left:372.992896px;}
.x6_c00082{left:374.872776px;}
.x5_c00082{left:420.296029px;}
.x1_c00082{left:458.594160px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
._0_c00082{margin-left:-1.222774pt;}
._1_c00082{width:0.938922pt;}
._2_c00082{width:1.922637pt;}
._a_c00082{width:3.474466pt;}
._b_c00082{width:4.396613pt;}
._5_c00082{width:5.322766pt;}
._6_c00082{width:6.439988pt;}
._7_c00082{width:7.508093pt;}
._c_c00082{width:8.923308pt;}
._3_c00082{width:9.840497pt;}
._4_c00082{width:10.779504pt;}
._f_c00082{width:18.853633pt;}
._10_c00082{width:20.065083pt;}
._8_c00082{width:24.292876pt;}
._9_c00082{width:25.348890pt;}
._e_c00082{width:26.247441pt;}
._d_c00082{width:27.405412pt;}
.fs2_c00082{font-size:52.566166pt;}
.fs0_c00082{font-size:58.267177pt;}
.fs1_c00082{font-size:63.333308pt;}
.fs3_c00082{font-size:84.233566pt;}
.y0_c00082{bottom:0.000000pt;}
.y1_c00082{bottom:0.107500pt;}
.y8_c00082{bottom:6.068128pt;}
.yb_c00082{bottom:51.247476pt;}
.ya_c00082{bottom:64.389977pt;}
.y3_c00082{bottom:74.146196pt;}
.y2_c00082{bottom:74.938070pt;}
.y24_c00082{bottom:109.667692pt;}
.y23_c00082{bottom:136.900215pt;}
.y22_c00082{bottom:164.293271pt;}
.y21_c00082{bottom:204.669521pt;}
.y20_c00082{bottom:232.061377pt;}
.y1f_c00082{bottom:259.293899pt;}
.y1e_c00082{bottom:286.684555pt;}
.y1d_c00082{bottom:313.918944pt;}
.y1c_c00082{bottom:341.310133pt;}
.y1b_c00082{bottom:368.543189pt;}
.y1a_c00082{bottom:395.933845pt;}
.y19_c00082{bottom:423.165700pt;}
.y18_c00082{bottom:450.556889pt;}
.y17_c00082{bottom:491.089940pt;}
.y16_c00082{bottom:518.323662pt;}
.y15_c00082{bottom:583.871769pt;}
.y14_c00082{bottom:618.072422pt;}
.y13_c00082{bottom:652.113075pt;}
.y12_c00082{bottom:686.314262pt;}
.y11_c00082{bottom:720.040915pt;}
.y10_c00082{bottom:760.254232pt;}
.yf_c00082{bottom:800.787283pt;}
.ye_c00082{bottom:828.179805pt;}
.yd_c00082{bottom:855.414194pt;}
.yc_c00082{bottom:899.747510pt;}
.y9_c00082{bottom:973.211480pt;}
.y7_c00082{bottom:1000.229433pt;}
.y6_c00082{bottom:1018.754492pt;}
.y5_c00082{bottom:1036.963819pt;}
.y4_c00082{bottom:1055.170745pt;}
.h7_c00082{height:33.221817pt;}
.h6_c00082{height:36.824856pt;}
.ha_c00082{height:47.256983pt;}
.h2_c00082{height:52.149123pt;}
.h3_c00082{height:56.683311pt;}
.h9_c00082{height:56.746644pt;}
.hb_c00082{height:56.809977pt;}
.h4_c00082{height:56.936644pt;}
.h8_c00082{height:75.557509pt;}
.h5_c00082{height:1110.960672pt;}
.h1_c00082{height:1122.559167pt;}
.h0_c00082{height:1122.666667pt;}
.w2_c00082{width:785.062974pt;}
.w1_c00082{width:793.257550pt;}
.w0_c00082{width:793.333333pt;}
.x0_c00082{left:0.000000pt;}
.x7_c00082{left:1.370626pt;}
.x8_c00082{left:100.224934pt;}
.x2_c00082{left:112.191264pt;}
.xa_c00082{left:123.501191pt;}
.x4_c00082{left:224.448440pt;}
.x3_c00082{left:240.124654pt;}
.x9_c00082{left:253.490606pt;}
.xb_c00082{left:331.549241pt;}
.x6_c00082{left:333.220246pt;}
.x5_c00082{left:373.596470pt;}
.x1_c00082{left:407.639254pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.112000;font-style:normal;font-weight:normal;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_91c94d9680606deb988c60ae.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:0.865062;font-style:normal;font-weight:normal;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_e930b46f28399f75a928e611.woff2')format("woff");}.ff6_c00083{font-family:ff6_c00083;line-height:1.007000;font-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_c00083{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.v1_c00083{vertical-align:22.084791px;}
.ls0_c00083{letter-spacing:0.000000px;}
.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:-17.812493px;}
.ws1_c00083{word-spacing:-10.390286px;}
.ws3_c00083{word-spacing:0.000000px;}
.ws2_c00083{word-spacing:186.251872px;}
._12_c00083{margin-left:-405.621528px;}
._17_c00083{margin-left:-186.048526px;}
._13_c00083{margin-left:-140.646994px;}
._10_c00083{margin-left:-90.505824px;}
._f_c00083{margin-left:-89.109864px;}
._15_c00083{margin-left:-53.686239px;}
._14_c00083{margin-left:-52.022454px;}
._11_c00083{margin-left:-49.893790px;}
._16_c00083{margin-left:-33.204444px;}
._4_c00083{margin-left:-2.826549px;}
._0_c00083{margin-left:-1.375620px;}
._1_c00083{width:1.056287px;}
._3_c00083{width:2.931729px;}
._5_c00083{width:3.948552px;}
._2_c00083{width:5.073058px;}
._a_c00083{width:6.463578px;}
._e_c00083{width:9.764095px;}
._d_c00083{width:11.321044px;}
._8_c00083{width:13.303625px;}
._9_c00083{width:14.828521px;}
._6_c00083{width:15.929861px;}
._7_c00083{width:19.955562px;}
._b_c00083{width:21.150240px;}
._c_c00083{width:22.479666px;}
.fc1_c00083{color:rgb(105,148,45);}
.fc0_c00083{color:rgb(35,31,32);}
.fs4_c00083{font-size:41.561143px;}
.fs2_c00083{font-size:59.136936px;}
.fs0_c00083{font-size:65.550574px;}
.fs1_c00083{font-size:71.249972px;}
.fs3_c00083{font-size:106.873757px;}
.y0_c00083{bottom:0.000000px;}
.y1_c00083{bottom:0.120938px;}
.y27_c00083{bottom:4.987355px;}
.y8_c00083{bottom:6.826644px;}
.yb_c00083{bottom:57.653410px;}
.ya_c00083{bottom:72.438724px;}
.y3_c00083{bottom:83.414470px;}
.y2_c00083{bottom:84.305329px;}
.y23_c00083{bottom:147.606844px;}
.y22_c00083{bottom:178.242682px;}
.y21_c00083{bottom:216.720517px;}
.y20_c00083{bottom:255.189951px;}
.y1f_c00083{bottom:293.489136px;}
.y26_c00083{bottom:356.958000px;}
.y2d_c00083{bottom:361.288168px;}
.y2b_c00083{bottom:365.385266px;}
.y24_c00083{bottom:376.846203px;}
.y2a_c00083{bottom:378.030711px;}
.y2c_c00083{bottom:382.483909px;}
.y28_c00083{bottom:383.551909px;}
.y25_c00083{bottom:388.249483px;}
.y2f_c00083{bottom:399.582403px;}
.y2e_c00083{bottom:399.583903px;}
.y29_c00083{bottom:411.696398px;}
.y1e_c00083{bottom:449.525073px;}
.y1d_c00083{bottom:494.943405px;}
.y1c_c00083{bottom:525.759993px;}
.y1b_c00083{bottom:556.398681px;}
.y1a_c00083{bottom:587.213168px;}
.y19_c00083{bottom:617.851106px;}
.y18_c00083{bottom:658.461340px;}
.y17_c00083{bottom:706.375821px;}
.y16_c00083{bottom:737.013758px;}
.y15_c00083{bottom:767.828246px;}
.y14_c00083{bottom:798.469034px;}
.y13_c00083{bottom:844.068716px;}
.y12_c00083{bottom:874.881703px;}
.y11_c00083{bottom:920.304985px;}
.y10_c00083{bottom:951.116623px;}
.yf_c00083{bottom:981.755311px;}
.ye_c00083{bottom:1012.568298px;}
.yd_c00083{bottom:1043.206236px;}
.yc_c00083{bottom:1074.024924px;}
.y9_c00083{bottom:1094.862915px;}
.y7_c00083{bottom:1125.258112px;}
.y6_c00083{bottom:1146.098804px;}
.y5_c00083{bottom:1166.584296px;}
.y4_c00083{bottom:1187.067088px;}
.h9_c00083{height:28.857600px;}
.hb_c00083{height:37.238784px;}
.h7_c00083{height:37.374544px;}
.h6_c00083{height:41.427963px;}
.he_c00083{height:48.022481px;}
.h2_c00083{height:58.667764px;}
.h3_c00083{height:63.768724px;}
.h8_c00083{height:63.839974px;}
.h4_c00083{height:64.053724px;}
.hd_c00083{height:65.977474px;}
.hc_c00083{height:70.107272px;}
.ha_c00083{height:95.652013px;}
.h5_c00083{height:1249.830756px;}
.h1_c00083{height:1262.879062px;}
.h0_c00083{height:1263.000000px;}
.w3_c00083{width:15.494400px;}
.w2_c00083{width:883.195846px;}
.w1_c00083{width:892.414744px;}
.w0_c00083{width:892.500000px;}
.x0_c00083{left:0.000000px;}
.x7_c00083{left:1.541954px;}
.x8_c00083{left:112.753050px;}
.x2_c00083{left:126.215172px;}
.x4_c00083{left:252.504495px;}
.x3_c00083{left:270.140236px;}
.xb_c00083{left:320.089921px;}
.x12_c00083{left:369.708178px;}
.x6_c00083{left:374.872776px;}
.x11_c00083{left:381.290048px;}
.xc_c00083{left:396.622800px;}
.xa_c00083{left:407.728047px;}
.x5_c00083{left:420.296029px;}
.xf_c00083{left:421.367203px;}
.x10_c00083{left:433.832388px;}
.xe_c00083{left:450.222664px;}
.x1_c00083{left:458.594160px;}
.xd_c00083{left:511.322139px;}
.x9_c00083{left:513.709340px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.v1_c00083{vertical-align:19.630925pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:-15.833327pt;}
.ws1_c00083{word-spacing:-9.235810pt;}
.ws3_c00083{word-spacing:0.000000pt;}
.ws2_c00083{word-spacing:165.557220pt;}
._12_c00083{margin-left:-360.552469pt;}
._17_c00083{margin-left:-165.376467pt;}
._13_c00083{margin-left:-125.019550pt;}
._10_c00083{margin-left:-80.449621pt;}
._f_c00083{margin-left:-79.208768pt;}
._15_c00083{margin-left:-47.721101pt;}
._14_c00083{margin-left:-46.242182pt;}
._11_c00083{margin-left:-44.350036pt;}
._16_c00083{margin-left:-29.515062pt;}
._4_c00083{margin-left:-2.512488pt;}
._0_c00083{margin-left:-1.222774pt;}
._1_c00083{width:0.938922pt;}
._3_c00083{width:2.605982pt;}
._5_c00083{width:3.509824pt;}
._2_c00083{width:4.509385pt;}
._a_c00083{width:5.745403pt;}
._e_c00083{width:8.679195pt;}
._d_c00083{width:10.063151pt;}
._8_c00083{width:11.825444pt;}
._9_c00083{width:13.180907pt;}
._6_c00083{width:14.159877pt;}
._7_c00083{width:17.738277pt;}
._b_c00083{width:18.800213pt;}
._c_c00083{width:19.981925pt;}
.fs4_c00083{font-size:36.943239pt;}
.fs2_c00083{font-size:52.566166pt;}
.fs0_c00083{font-size:58.267177pt;}
.fs1_c00083{font-size:63.333308pt;}
.fs3_c00083{font-size:94.998895pt;}
.y0_c00083{bottom:0.000000pt;}
.y1_c00083{bottom:0.107500pt;}
.y27_c00083{bottom:4.433205pt;}
.y8_c00083{bottom:6.068128pt;}
.yb_c00083{bottom:51.247476pt;}
.ya_c00083{bottom:64.389977pt;}
.y3_c00083{bottom:74.146196pt;}
.y2_c00083{bottom:74.938070pt;}
.y23_c00083{bottom:131.206084pt;}
.y22_c00083{bottom:158.437940pt;}
.y21_c00083{bottom:192.640459pt;}
.y20_c00083{bottom:226.835512pt;}
.y1f_c00083{bottom:260.879232pt;}
.y26_c00083{bottom:317.296000pt;}
.y2d_c00083{bottom:321.145038pt;}
.y2b_c00083{bottom:324.786903pt;}
.y24_c00083{bottom:334.974402pt;}
.y2a_c00083{bottom:336.027299pt;}
.y2c_c00083{bottom:339.985697pt;}
.y28_c00083{bottom:340.935030pt;}
.y25_c00083{bottom:345.110652pt;}
.y2f_c00083{bottom:355.184358pt;}
.y2e_c00083{bottom:355.185691pt;}
.y29_c00083{bottom:365.952354pt;}
.y1e_c00083{bottom:399.577843pt;}
.y1d_c00083{bottom:439.949694pt;}
.y1c_c00083{bottom:467.342216pt;}
.y1b_c00083{bottom:494.576605pt;}
.y1a_c00083{bottom:521.967261pt;}
.y19_c00083{bottom:549.200983pt;}
.y18_c00083{bottom:585.298969pt;}
.y17_c00083{bottom:627.889618pt;}
.y16_c00083{bottom:655.123341pt;}
.y15_c00083{bottom:682.513997pt;}
.y14_c00083{bottom:709.750252pt;}
.y13_c00083{bottom:750.283303pt;}
.y12_c00083{bottom:777.672625pt;}
.y11_c00083{bottom:818.048876pt;}
.y10_c00083{bottom:845.436998pt;}
.yf_c00083{bottom:872.671387pt;}
.ye_c00083{bottom:900.060710pt;}
.yd_c00083{bottom:927.294432pt;}
.yc_c00083{bottom:954.688821pt;}
.y9_c00083{bottom:973.211480pt;}
.y7_c00083{bottom:1000.229433pt;}
.y6_c00083{bottom:1018.754492pt;}
.y5_c00083{bottom:1036.963819pt;}
.y4_c00083{bottom:1055.170745pt;}
.h9_c00083{height:25.651200pt;}
.hb_c00083{height:33.101142pt;}
.h7_c00083{height:33.221817pt;}
.h6_c00083{height:36.824856pt;}
.he_c00083{height:42.686650pt;}
.h2_c00083{height:52.149123pt;}
.h3_c00083{height:56.683311pt;}
.h8_c00083{height:56.746644pt;}
.h4_c00083{height:56.936644pt;}
.hd_c00083{height:58.646643pt;}
.hc_c00083{height:62.317575pt;}
.ha_c00083{height:85.024011pt;}
.h5_c00083{height:1110.960672pt;}
.h1_c00083{height:1122.559167pt;}
.h0_c00083{height:1122.666667pt;}
.w3_c00083{width:13.772800pt;}
.w2_c00083{width:785.062974pt;}
.w1_c00083{width:793.257550pt;}
.w0_c00083{width:793.333333pt;}
.x0_c00083{left:0.000000pt;}
.x7_c00083{left:1.370626pt;}
.x8_c00083{left:100.224934pt;}
.x2_c00083{left:112.191264pt;}
.x4_c00083{left:224.448440pt;}
.x3_c00083{left:240.124654pt;}
.xb_c00083{left:284.524374pt;}
.x12_c00083{left:328.629492pt;}
.x6_c00083{left:333.220246pt;}
.x11_c00083{left:338.924487pt;}
.xc_c00083{left:352.553600pt;}
.xa_c00083{left:362.424931pt;}
.x5_c00083{left:373.596470pt;}
.xf_c00083{left:374.548625pt;}
.x10_c00083{left:385.628789pt;}
.xe_c00083{left:400.197923pt;}
.x1_c00083{left:407.639254pt;}
.xd_c00083{left:454.508568pt;}
.x9_c00083{left:456.630525pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.112000;font-style:normal;font-weight:normal;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_91c94d9680606deb988c60ae.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00084{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00084{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00084{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls2_c00084{letter-spacing:0.000000px;}
.ls1_c00084{letter-spacing:0.022260px;}
.ls0_c00084{letter-spacing:0.241350px;}
.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:-17.812493px;}
.ws1_c00084{word-spacing:-17.794343px;}
.ws4_c00084{word-spacing:-17.788793px;}
.ws2_c00084{word-spacing:-10.379786px;}
.ws3_c00084{word-spacing:-7.414407px;}
.ws5_c00084{word-spacing:0.000000px;}
._8_c00084{margin-left:-134.841126px;}
._d_c00084{margin-left:-131.328629px;}
._7_c00084{margin-left:-129.210223px;}
._c_c00084{margin-left:-122.556551px;}
._6_c00084{margin-left:-119.946226px;}
._b_c00084{margin-left:-80.417427px;}
._a_c00084{margin-left:-24.525109px;}
._9_c00084{margin-left:-22.671863px;}
._0_c00084{margin-left:-1.375620px;}
._1_c00084{width:1.056287px;}
._4_c00084{width:2.601326px;}
._3_c00084{width:3.679949px;}
._5_c00084{width:13.987961px;}
._2_c00084{width:196.064959px;}
.fc1_c00084{color:rgb(105,148,45);}
.fc0_c00084{color:rgb(35,31,32);}
.fs6_c00084{font-size:29.657628px;}
.fs5_c00084{font-size:41.519143px;}
.fs3_c00084{font-size:47.737061px;}
.fs2_c00084{font-size:59.136936px;}
.fs0_c00084{font-size:65.550574px;}
.fs7_c00084{font-size:71.155172px;}
.fs4_c00084{font-size:71.177372px;}
.fs1_c00084{font-size:71.249972px;}
.y0_c00084{bottom:0.000000px;}
.y1_c00084{bottom:0.120938px;}
.y2b_c00084{bottom:3.735851px;}
.y2f_c00084{bottom:3.914941px;}
.y8_c00084{bottom:6.826644px;}
.yb_c00084{bottom:57.653410px;}
.ya_c00084{bottom:72.438724px;}
.y25_c00084{bottom:81.992780px;}
.y27_c00084{bottom:82.882129px;}
.y3_c00084{bottom:83.414470px;}
.y2_c00084{bottom:84.305329px;}
.y1e_c00084{bottom:95.705774px;}
.y20_c00084{bottom:96.601544px;}
.y29_c00084{bottom:96.601574px;}
.y21_c00084{bottom:106.574020px;}
.y1f_c00084{bottom:106.751155px;}
.y26_c00084{bottom:106.751170px;}
.y28_c00084{bottom:107.643369px;}
.y23_c00084{bottom:111.204068px;}
.y22_c00084{bottom:122.604513px;}
.y24_c00084{bottom:127.237412px;}
.y1d_c00084{bottom:160.722498px;}
.y1c_c00084{bottom:506.880401px;}
.y1b_c00084{bottom:537.517588px;}
.y1a_c00084{bottom:568.332076px;}
.y19_c00084{bottom:598.968664px;}
.y18_c00084{bottom:629.784501px;}
.y17_c00084{bottom:668.081586px;}
.y16_c00084{bottom:691.769127px;}
.y13_c00084{bottom:730.065461px;}
.y15_c00084{bottom:730.069061px;}
.y14_c00084{bottom:738.260558px;}
.y12_c00084{bottom:768.538346px;}
.y11_c00084{bottom:806.837531px;}
.yf_c00084{bottom:806.837831px;}
.y10_c00084{bottom:815.032027px;}
.ye_c00084{bottom:845.314915px;}
.y2a_c00084{bottom:868.528800px;}
.y2d_c00084{bottom:886.216333px;}
.y30_c00084{bottom:886.216708px;}
.y2e_c00084{bottom:893.644200px;}
.y2c_c00084{bottom:897.438203px;}
.yd_c00084{bottom:952.188522px;}
.yc_c00084{bottom:982.826460px;}
.y9_c00084{bottom:1094.862915px;}
.y7_c00084{bottom:1125.258112px;}
.y6_c00084{bottom:1146.098804px;}
.y5_c00084{bottom:1166.584296px;}
.y4_c00084{bottom:1187.067088px;}
.h11_c00084{height:19.773000px;}
.h14_c00084{height:20.844000px;}
.hc_c00084{height:26.573235px;}
.hf_c00084{height:27.983903px;}
.he_c00084{height:37.159633px;}
.hb_c00084{height:37.201152px;}
.h7_c00084{height:37.374544px;}
.h6_c00084{height:41.427963px;}
.h9_c00084{height:42.772407px;}
.h15_c00084{height:47.958586px;}
.h10_c00084{height:47.973548px;}
.h2_c00084{height:58.667764px;}
.h13_c00084{height:63.683879px;}
.hd_c00084{height:63.703748px;}
.h12_c00084{height:63.755034px;}
.h3_c00084{height:63.768724px;}
.ha_c00084{height:63.774925px;}
.h8_c00084{height:63.839974px;}
.h4_c00084{height:64.053724px;}
.h5_c00084{height:1249.830756px;}
.h1_c00084{height:1262.879062px;}
.h0_c00084{height:1263.000000px;}
.w5_c00084{width:8.901000px;}
.w4_c00084{width:8.904600px;}
.w3_c00084{width:8.908200px;}
.w2_c00084{width:883.195846px;}
.w1_c00084{width:892.414744px;}
.w0_c00084{width:892.500000px;}
.x0_c00084{left:0.000000px;}
.x7_c00084{left:1.541954px;}
.x8_c00084{left:112.753050px;}
.xd_c00084{left:114.282348px;}
.x2_c00084{left:126.215172px;}
.x4_c00084{left:252.504495px;}
.x3_c00084{left:270.140236px;}
.x17_c00084{left:373.094729px;}
.x6_c00084{left:374.872776px;}
.x1c_c00084{left:385.741523px;}
.xb_c00084{left:397.214887px;}
.x19_c00084{left:401.240183px;}
.xc_c00084{left:403.270384px;}
.x10_c00084{left:415.131131px;}
.x5_c00084{left:420.296029px;}
.x15_c00084{left:423.503174px;}
.x16_c00084{left:424.928408px;}
.xf_c00084{left:431.341655px;}
.x1e_c00084{left:433.674000px;}
.xe_c00084{left:441.672667px;}
.x1a_c00084{left:444.002400px;}
.x12_c00084{left:449.154684px;}
.x1d_c00084{left:455.581800px;}
.x1_c00084{left:458.594160px;}
.x1b_c00084{left:467.145657px;}
.x13_c00084{left:472.310155px;}
.x18_c00084{left:478.368652px;}
.x11_c00084{left:483.534650px;}
.x14_c00084{left:489.052925px;}
.x9_c00084{left:555.035824px;}
.xa_c00084{left:561.088321px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls2_c00084{letter-spacing:0.000000pt;}
.ls1_c00084{letter-spacing:0.019787pt;}
.ls0_c00084{letter-spacing:0.214533pt;}
.ws0_c00084{word-spacing:-15.833327pt;}
.ws1_c00084{word-spacing:-15.817194pt;}
.ws4_c00084{word-spacing:-15.812260pt;}
.ws2_c00084{word-spacing:-9.226476pt;}
.ws3_c00084{word-spacing:-6.590584pt;}
.ws5_c00084{word-spacing:0.000000pt;}
._8_c00084{margin-left:-119.858779pt;}
._d_c00084{margin-left:-116.736559pt;}
._7_c00084{margin-left:-114.853531pt;}
._c_c00084{margin-left:-108.939156pt;}
._6_c00084{margin-left:-106.618868pt;}
._b_c00084{margin-left:-71.482158pt;}
._a_c00084{margin-left:-21.800097pt;}
._9_c00084{margin-left:-20.152767pt;}
._0_c00084{margin-left:-1.222774pt;}
._1_c00084{width:0.938922pt;}
._4_c00084{width:2.312290pt;}
._3_c00084{width:3.271066pt;}
._5_c00084{width:12.433743pt;}
._2_c00084{width:174.279964pt;}
.fs6_c00084{font-size:26.362336pt;}
.fs5_c00084{font-size:36.905905pt;}
.fs3_c00084{font-size:42.432943pt;}
.fs2_c00084{font-size:52.566166pt;}
.fs0_c00084{font-size:58.267177pt;}
.fs7_c00084{font-size:63.249041pt;}
.fs4_c00084{font-size:63.268775pt;}
.fs1_c00084{font-size:63.333308pt;}
.y0_c00084{bottom:0.000000pt;}
.y1_c00084{bottom:0.107500pt;}
.y2b_c00084{bottom:3.320757pt;}
.y2f_c00084{bottom:3.479948pt;}
.y8_c00084{bottom:6.068128pt;}
.yb_c00084{bottom:51.247476pt;}
.ya_c00084{bottom:64.389977pt;}
.y25_c00084{bottom:72.882471pt;}
.y27_c00084{bottom:73.673004pt;}
.y3_c00084{bottom:74.146196pt;}
.y2_c00084{bottom:74.938070pt;}
.y1e_c00084{bottom:85.071799pt;}
.y20_c00084{bottom:85.868039pt;}
.y29_c00084{bottom:85.868066pt;}
.y21_c00084{bottom:94.732462pt;}
.y1f_c00084{bottom:94.889915pt;}
.y26_c00084{bottom:94.889929pt;}
.y28_c00084{bottom:95.682995pt;}
.y23_c00084{bottom:98.848060pt;}
.y22_c00084{bottom:108.981790pt;}
.y24_c00084{bottom:113.099921pt;}
.y1d_c00084{bottom:142.864443pt;}
.y1c_c00084{bottom:450.560356pt;}
.y1b_c00084{bottom:477.793412pt;}
.y1a_c00084{bottom:505.184067pt;}
.y19_c00084{bottom:532.416590pt;}
.y18_c00084{bottom:559.808446pt;}
.y17_c00084{bottom:593.850299pt;}
.y16_c00084{bottom:614.905890pt;}
.y13_c00084{bottom:648.947077pt;}
.y15_c00084{bottom:648.950277pt;}
.y14_c00084{bottom:656.231607pt;}
.y12_c00084{bottom:683.145196pt;}
.y11_c00084{bottom:717.188916pt;}
.yf_c00084{bottom:717.189183pt;}
.y10_c00084{bottom:724.472913pt;}
.ye_c00084{bottom:751.391036pt;}
.y2a_c00084{bottom:772.025600pt;}
.y2d_c00084{bottom:787.747852pt;}
.y30_c00084{bottom:787.748185pt;}
.y2e_c00084{bottom:794.350400pt;}
.y2c_c00084{bottom:797.722848pt;}
.yd_c00084{bottom:846.389798pt;}
.yc_c00084{bottom:873.623520pt;}
.y9_c00084{bottom:973.211480pt;}
.y7_c00084{bottom:1000.229433pt;}
.y6_c00084{bottom:1018.754492pt;}
.y5_c00084{bottom:1036.963819pt;}
.y4_c00084{bottom:1055.170745pt;}
.h11_c00084{height:17.576000pt;}
.h14_c00084{height:18.528000pt;}
.hc_c00084{height:23.620653pt;}
.hf_c00084{height:24.874580pt;}
.he_c00084{height:33.030785pt;}
.hb_c00084{height:33.067691pt;}
.h7_c00084{height:33.221817pt;}
.h6_c00084{height:36.824856pt;}
.h9_c00084{height:38.019917pt;}
.h15_c00084{height:42.629854pt;}
.h10_c00084{height:42.643154pt;}
.h2_c00084{height:52.149123pt;}
.h13_c00084{height:56.607892pt;}
.hd_c00084{height:56.625553pt;}
.h12_c00084{height:56.671141pt;}
.h3_c00084{height:56.683311pt;}
.ha_c00084{height:56.688822pt;}
.h8_c00084{height:56.746644pt;}
.h4_c00084{height:56.936644pt;}
.h5_c00084{height:1110.960672pt;}
.h1_c00084{height:1122.559167pt;}
.h0_c00084{height:1122.666667pt;}
.w5_c00084{width:7.912000pt;}
.w4_c00084{width:7.915200pt;}
.w3_c00084{width:7.918400pt;}
.w2_c00084{width:785.062974pt;}
.w1_c00084{width:793.257550pt;}
.w0_c00084{width:793.333333pt;}
.x0_c00084{left:0.000000pt;}
.x7_c00084{left:1.370626pt;}
.x8_c00084{left:100.224934pt;}
.xd_c00084{left:101.584309pt;}
.x2_c00084{left:112.191264pt;}
.x4_c00084{left:224.448440pt;}
.x3_c00084{left:240.124654pt;}
.x17_c00084{left:331.639759pt;}
.x6_c00084{left:333.220246pt;}
.x1c_c00084{left:342.881354pt;}
.xb_c00084{left:353.079899pt;}
.x19_c00084{left:356.657941pt;}
.xc_c00084{left:358.462564pt;}
.x10_c00084{left:369.005450pt;}
.x5_c00084{left:373.596470pt;}
.x15_c00084{left:376.447266pt;}
.x16_c00084{left:377.714140pt;}
.xf_c00084{left:383.414805pt;}
.x1e_c00084{left:385.488000pt;}
.xe_c00084{left:392.597926pt;}
.x1a_c00084{left:394.668800pt;}
.x12_c00084{left:399.248608pt;}
.x1d_c00084{left:404.961600pt;}
.x1_c00084{left:407.639254pt;}
.x1b_c00084{left:415.240584pt;}
.x13_c00084{left:419.831249pt;}
.x18_c00084{left:425.216580pt;}
.x11_c00084{left:429.808578pt;}
.x14_c00084{left:434.713711pt;}
.x9_c00084{left:493.365177pt;}
.xa_c00084{left:498.745174pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:1.113000;font-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_c00085{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00085{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:0.000000px;}
._0_c00085{margin-left:-1.375620px;}
._1_c00085{width:1.056287px;}
._8_c00085{width:2.352103px;}
._a_c00085{width:8.441702px;}
._7_c00085{width:9.885960px;}
._6_c00085{width:10.983125px;}
._4_c00085{width:15.410013px;}
._3_c00085{width:16.444868px;}
._9_c00085{width:47.582688px;}
._5_c00085{width:64.111986px;}
._2_c00085{width:196.064959px;}
.fc1_c00085{color:rgb(105,148,45);}
.fc0_c00085{color:rgb(35,31,32);}
.fs2_c00085{font-size:59.136936px;}
.fs0_c00085{font-size:65.550574px;}
.fs1_c00085{font-size:71.249972px;}
.y0_c00085{bottom:0.000000px;}
.y1_c00085{bottom:0.120938px;}
.y8_c00085{bottom:6.826644px;}
.yb_c00085{bottom:57.653410px;}
.ya_c00085{bottom:72.438724px;}
.y3_c00085{bottom:83.414470px;}
.y2_c00085{bottom:84.305329px;}
.y21_c00085{bottom:226.867113px;}
.y20_c00085{bottom:272.826194px;}
.y1f_c00085{bottom:303.639182px;}
.y1e_c00085{bottom:334.279220px;}
.y1d_c00085{bottom:379.874101px;}
.y1c_c00085{bottom:410.514139px;}
.y1b_c00085{bottom:456.113221px;}
.y1a_c00085{bottom:486.929058px;}
.y19_c00085{bottom:517.564896px;}
.y18_c00085{bottom:548.379384px;}
.y17_c00085{bottom:593.804016px;}
.y16_c00085{bottom:639.404448px;}
.y15_c00085{bottom:670.217435px;}
.y14_c00085{bottom:700.856123px;}
.y13_c00085{bottom:731.672711px;}
.y12_c00085{bottom:762.308548px;}
.y11_c00085{bottom:802.920582px;}
.y10_c00085{bottom:882.006700px;}
.yf_c00085{bottom:920.305135px;}
.ye_c00085{bottom:958.778020px;}
.yd_c00085{bottom:997.253754px;}
.yc_c00085{bottom:1035.552939px;}
.y9_c00085{bottom:1094.862915px;}
.y7_c00085{bottom:1125.258112px;}
.y6_c00085{bottom:1146.098804px;}
.y5_c00085{bottom:1166.584296px;}
.y4_c00085{bottom:1187.067088px;}
.h7_c00085{height:37.374544px;}
.h6_c00085{height:41.427963px;}
.h2_c00085{height:58.667764px;}
.h3_c00085{height:63.768724px;}
.h8_c00085{height:63.839974px;}
.h9_c00085{height:63.911224px;}
.h4_c00085{height:64.053724px;}
.h5_c00085{height:1249.830756px;}
.h1_c00085{height:1262.879062px;}
.h0_c00085{height:1263.000000px;}
.w2_c00085{width:883.195846px;}
.w1_c00085{width:892.414744px;}
.w0_c00085{width:892.500000px;}
.x0_c00085{left:0.000000px;}
.x7_c00085{left:1.541954px;}
.x8_c00085{left:112.753050px;}
.x2_c00085{left:126.215172px;}
.x9_c00085{left:139.471852px;}
.xa_c00085{left:166.193353px;}
.x4_c00085{left:252.504495px;}
.x3_c00085{left:270.140236px;}
.xb_c00085{left:361.595804px;}
.x6_c00085{left:374.872776px;}
.x5_c00085{left:420.296029px;}
.x1_c00085{left:458.594160px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws0_c00085{word-spacing:0.000000pt;}
._0_c00085{margin-left:-1.222774pt;}
._1_c00085{width:0.938922pt;}
._8_c00085{width:2.090759pt;}
._a_c00085{width:7.503735pt;}
._7_c00085{width:8.787520pt;}
._6_c00085{width:9.762778pt;}
._4_c00085{width:13.697789pt;}
._3_c00085{width:14.617661pt;}
._9_c00085{width:42.295723pt;}
._5_c00085{width:56.988432pt;}
._2_c00085{width:174.279964pt;}
.fs2_c00085{font-size:52.566166pt;}
.fs0_c00085{font-size:58.267177pt;}
.fs1_c00085{font-size:63.333308pt;}
.y0_c00085{bottom:0.000000pt;}
.y1_c00085{bottom:0.107500pt;}
.y8_c00085{bottom:6.068128pt;}
.yb_c00085{bottom:51.247476pt;}
.ya_c00085{bottom:64.389977pt;}
.y3_c00085{bottom:74.146196pt;}
.y2_c00085{bottom:74.938070pt;}
.y21_c00085{bottom:201.659656pt;}
.y20_c00085{bottom:242.512173pt;}
.y1f_c00085{bottom:269.901495pt;}
.y1e_c00085{bottom:297.137084pt;}
.y1d_c00085{bottom:337.665868pt;}
.y1c_c00085{bottom:364.901457pt;}
.y1b_c00085{bottom:405.433974pt;}
.y1a_c00085{bottom:432.825830pt;}
.y19_c00085{bottom:460.057686pt;}
.y18_c00085{bottom:487.448341pt;}
.y17_c00085{bottom:527.825792pt;}
.y16_c00085{bottom:568.359509pt;}
.y15_c00085{bottom:595.748831pt;}
.y14_c00085{bottom:622.983220pt;}
.y13_c00085{bottom:650.375743pt;}
.y12_c00085{bottom:677.607599pt;}
.y11_c00085{bottom:713.707184pt;}
.y10_c00085{bottom:784.005956pt;}
.yf_c00085{bottom:818.049009pt;}
.ye_c00085{bottom:852.247129pt;}
.yd_c00085{bottom:886.447782pt;}
.yc_c00085{bottom:920.491501pt;}
.y9_c00085{bottom:973.211480pt;}
.y7_c00085{bottom:1000.229433pt;}
.y6_c00085{bottom:1018.754492pt;}
.y5_c00085{bottom:1036.963819pt;}
.y4_c00085{bottom:1055.170745pt;}
.h7_c00085{height:33.221817pt;}
.h6_c00085{height:36.824856pt;}
.h2_c00085{height:52.149123pt;}
.h3_c00085{height:56.683311pt;}
.h8_c00085{height:56.746644pt;}
.h9_c00085{height:56.809977pt;}
.h4_c00085{height:56.936644pt;}
.h5_c00085{height:1110.960672pt;}
.h1_c00085{height:1122.559167pt;}
.h0_c00085{height:1122.666667pt;}
.w2_c00085{width:785.062974pt;}
.w1_c00085{width:793.257550pt;}
.w0_c00085{width:793.333333pt;}
.x0_c00085{left:0.000000pt;}
.x7_c00085{left:1.370626pt;}
.x8_c00085{left:100.224934pt;}
.x2_c00085{left:112.191264pt;}
.x9_c00085{left:123.974980pt;}
.xa_c00085{left:147.727425pt;}
.x4_c00085{left:224.448440pt;}
.x3_c00085{left:240.124654pt;}
.xb_c00085{left:321.418492pt;}
.x6_c00085{left:333.220246pt;}
.x5_c00085{left:373.596470pt;}
.x1_c00085{left:407.639254pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:0.632000;font-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_c00086{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00086{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:0.000000px;}
._0_c00086{margin-left:-1.375620px;}
._1_c00086{width:1.056287px;}
.fc1_c00086{color:rgb(105,148,45);}
.fc0_c00086{color:rgb(35,31,32);}
.fs2_c00086{font-size:59.136936px;}
.fs0_c00086{font-size:65.550574px;}
.fs1_c00086{font-size:71.249972px;}
.y0_c00086{bottom:0.000000px;}
.y1_c00086{bottom:0.120938px;}
.ya_c00086{bottom:64.359117px;}
.y9_c00086{bottom:79.144431px;}
.y3_c00086{bottom:83.414470px;}
.y2_c00086{bottom:84.305329px;}
.y8_c00086{bottom:1101.568622px;}
.y7_c00086{bottom:1125.258112px;}
.y6_c00086{bottom:1146.098804px;}
.y5_c00086{bottom:1166.584296px;}
.y4_c00086{bottom:1187.067088px;}
.h6_c00086{height:37.374544px;}
.h5_c00086{height:41.427963px;}
.h2_c00086{height:58.667764px;}
.h3_c00086{height:63.768724px;}
.h4_c00086{height:64.053724px;}
.h1_c00086{height:1262.879062px;}
.h0_c00086{height:1263.000000px;}
.w1_c00086{width:892.414744px;}
.w0_c00086{width:892.500000px;}
.x0_c00086{left:0.000000px;}
.x7_c00086{left:114.282348px;}
.x2_c00086{left:126.215172px;}
.x4_c00086{left:252.504495px;}
.x3_c00086{left:270.140236px;}
.x6_c00086{left:374.872776px;}
.x5_c00086{left:420.296029px;}
.x1_c00086{left:458.594160px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
._0_c00086{margin-left:-1.222774pt;}
._1_c00086{width:0.938922pt;}
.fs2_c00086{font-size:52.566166pt;}
.fs0_c00086{font-size:58.267177pt;}
.fs1_c00086{font-size:63.333308pt;}
.y0_c00086{bottom:0.000000pt;}
.y1_c00086{bottom:0.107500pt;}
.ya_c00086{bottom:57.208104pt;}
.y9_c00086{bottom:70.350605pt;}
.y3_c00086{bottom:74.146196pt;}
.y2_c00086{bottom:74.938070pt;}
.y8_c00086{bottom:979.172108pt;}
.y7_c00086{bottom:1000.229433pt;}
.y6_c00086{bottom:1018.754492pt;}
.y5_c00086{bottom:1036.963819pt;}
.y4_c00086{bottom:1055.170745pt;}
.h6_c00086{height:33.221817pt;}
.h5_c00086{height:36.824856pt;}
.h2_c00086{height:52.149123pt;}
.h3_c00086{height:56.683311pt;}
.h4_c00086{height:56.936644pt;}
.h1_c00086{height:1122.559167pt;}
.h0_c00086{height:1122.666667pt;}
.w1_c00086{width:793.257550pt;}
.w0_c00086{width:793.333333pt;}
.x0_c00086{left:0.000000pt;}
.x7_c00086{left:101.584309pt;}
.x2_c00086{left:112.191264pt;}
.x4_c00086{left:224.448440pt;}
.x3_c00086{left:240.124654pt;}
.x6_c00086{left:333.220246pt;}
.x5_c00086{left:373.596470pt;}
.x1_c00086{left:407.639254pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00087;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00087;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff6_c00087{font-family:ff6_c00087;line-height:0.865062;font-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_c00087{transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);}
.m3_c00087{transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.v1_c00087{vertical-align:-61.993175px;}
.v0_c00087{vertical-align:0.000000px;}
.ls3_c00087{letter-spacing:0.000000px;}
.ls1_c00087{letter-spacing:74.169570px;}
.ls0_c00087{letter-spacing:74.172570px;}
.ls2_c00087{letter-spacing:414.242315px;}
.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;}
}
.ws1_c00087{word-spacing:-17.832743px;}
.ws2_c00087{word-spacing:0.000000px;}
.ws0_c00087{word-spacing:511.667349px;}
._10_c00087{margin-left:-382.966788px;}
._d_c00087{margin-left:-260.788714px;}
._e_c00087{margin-left:-230.292808px;}
._f_c00087{margin-left:-211.122657px;}
._c_c00087{margin-left:-163.283335px;}
._9_c00087{margin-left:-156.169138px;}
._b_c00087{margin-left:-144.584360px;}
._a_c00087{margin-left:-138.542768px;}
._0_c00087{margin-left:-1.375620px;}
._1_c00087{width:1.056287px;}
._2_c00087{width:2.198588px;}
._4_c00087{width:3.286399px;}
._5_c00087{width:4.538890px;}
._6_c00087{width:6.377568px;}
._3_c00087{width:13.305645px;}
._8_c00087{width:14.864722px;}
._7_c00087{width:19.354352px;}
.fc1_c00087{color:rgb(105,148,45);}
.fc0_c00087{color:rgb(35,31,32);}
.fs5_c00087{font-size:41.608183px;}
.fs2_c00087{font-size:59.136936px;}
.fs0_c00087{font-size:65.550574px;}
.fs1_c00087{font-size:71.249972px;}
.fs6_c00087{font-size:71.330971px;}
.fs3_c00087{font-size:94.177162px;}
.fs4_c00087{font-size:97.521561px;}
.y0_c00087{bottom:0.000000px;}
.y1_c00087{bottom:0.120938px;}
.y27_c00087{bottom:3.919887px;}
.y20_c00087{bottom:5.163687px;}
.y22_c00087{bottom:5.343687px;}
.y8_c00087{bottom:6.826644px;}
.yb_c00087{bottom:57.653410px;}
.ya_c00087{bottom:72.438724px;}
.y3_c00087{bottom:83.414470px;}
.y2_c00087{bottom:84.305329px;}
.y1e_c00087{bottom:212.619818px;}
.y1d_c00087{bottom:243.255656px;}
.y1c_c00087{bottom:274.071494px;}
.y1b_c00087{bottom:304.710931px;}
.y1a_c00087{bottom:335.526769px;}
.y19_c00087{bottom:366.163357px;}
.y18_c00087{bottom:413.006988px;}
.y17_c00087{bottom:445.072325px;}
.y23_c00087{bottom:506.634360px;}
.y24_c00087{bottom:515.901356px;}
.y2a_c00087{bottom:522.133839px;}
.y28_c00087{bottom:522.133854px;}
.y21_c00087{bottom:528.312600px;}
.y1f_c00087{bottom:528.492600px;}
.y26_c00087{bottom:529.736400px;}
.y25_c00087{bottom:533.529649px;}
.y29_c00087{bottom:533.532199px;}
.y16_c00087{bottom:609.299760px;}
.y15_c00087{bottom:639.938447px;}
.y14_c00087{bottom:670.751435px;}
.y13_c00087{bottom:701.392223px;}
.y12_c00087{bottom:732.208060px;}
.y11_c00087{bottom:811.114179px;}
.y10_c00087{bottom:889.842997px;}
.yf_c00087{bottom:935.797129px;}
.ye_c00087{bottom:966.432967px;}
.yd_c00087{bottom:997.249554px;}
.yc_c00087{bottom:1035.192939px;}
.y9_c00087{bottom:1094.862915px;}
.y7_c00087{bottom:1125.258112px;}
.y6_c00087{bottom:1146.098804px;}
.y5_c00087{bottom:1166.584296px;}
.y4_c00087{bottom:1187.067088px;}
.h11_c00087{height:20.842200px;}
.ha_c00087{height:22.086000px;}
.hc_c00087{height:22.266000px;}
.he_c00087{height:37.280932px;}
.h7_c00087{height:37.374544px;}
.h6_c00087{height:41.427963px;}
.h10_c00087{height:48.077075px;}
.h2_c00087{height:58.667764px;}
.hb_c00087{height:63.475407px;}
.h3_c00087{height:63.768724px;}
.h9_c00087{height:63.839974px;}
.h12_c00087{height:63.841219px;}
.h8_c00087{height:63.911224px;}
.hf_c00087{height:63.912550px;}
.h4_c00087{height:64.053724px;}
.hd_c00087{height:65.729532px;}
.h5_c00087{height:1249.830756px;}
.h1_c00087{height:1262.879062px;}
.h0_c00087{height:1263.000000px;}
.w3_c00087{width:5.875200px;}
.w4_c00087{width:5.877000px;}
.w6_c00087{width:5.880600px;}
.w5_c00087{width:5.882400px;}
.w8_c00087{width:8.901000px;}
.w9_c00087{width:9.795600px;}
.w7_c00087{width:9.799200px;}
.w2_c00087{width:883.195846px;}
.w1_c00087{width:892.414744px;}
.w0_c00087{width:892.500000px;}
.x0_c00087{left:0.000000px;}
.x7_c00087{left:1.541954px;}
.x8_c00087{left:112.753050px;}
.x2_c00087{left:126.215172px;}
.xb_c00087{left:139.471103px;}
.xc_c00087{left:166.189155px;}
.x4_c00087{left:252.504495px;}
.x3_c00087{left:270.140236px;}
.x1d_c00087{left:289.559165px;}
.x1b_c00087{left:307.014721px;}
.xf_c00087{left:322.344000px;}
.xd_c00087{left:326.977200px;}
.x9_c00087{left:358.736902px;}
.x6_c00087{left:374.872776px;}
.xa_c00087{left:381.004569px;}
.xe_c00087{left:386.469000px;}
.x1a_c00087{left:394.484400px;}
.x10_c00087{left:413.542800px;}
.x5_c00087{left:420.296029px;}
.x13_c00087{left:431.001000px;}
.x11_c00087{left:435.630600px;}
.x18_c00087{left:449.688843px;}
.x1_c00087{left:458.594160px;}
.x16_c00087{left:461.445659px;}
.x1c_c00087{left:474.627872px;}
.x15_c00087{left:483.354650px;}
.x19_c00087{left:504.208800px;}
.x17_c00087{left:517.729366px;}
.x12_c00087{left:535.559400px;}
.x14_c00087{left:540.365400px;}
@media print{
.v1_c00087{vertical-align:-55.105045pt;}
.v0_c00087{vertical-align:0.000000pt;}
.ls3_c00087{letter-spacing:0.000000pt;}
.ls1_c00087{letter-spacing:65.928507pt;}
.ls0_c00087{letter-spacing:65.931174pt;}
.ls2_c00087{letter-spacing:368.215391pt;}
.ws1_c00087{word-spacing:-15.851327pt;}
.ws2_c00087{word-spacing:0.000000pt;}
.ws0_c00087{word-spacing:454.815422pt;}
._10_c00087{margin-left:-340.414923pt;}
._d_c00087{margin-left:-231.812190pt;}
._e_c00087{margin-left:-204.704718pt;}
._f_c00087{margin-left:-187.664584pt;}
._c_c00087{margin-left:-145.140742pt;}
._9_c00087{margin-left:-138.817011pt;}
._b_c00087{margin-left:-128.519431pt;}
._a_c00087{margin-left:-123.149127pt;}
._0_c00087{margin-left:-1.222774pt;}
._1_c00087{width:0.938922pt;}
._2_c00087{width:1.954301pt;}
._4_c00087{width:2.921243pt;}
._5_c00087{width:4.034569pt;}
._6_c00087{width:5.668949pt;}
._3_c00087{width:11.827240pt;}
._8_c00087{width:13.213086pt;}
._7_c00087{width:17.203868pt;}
.fs5_c00087{font-size:36.985052pt;}
.fs2_c00087{font-size:52.566166pt;}
.fs0_c00087{font-size:58.267177pt;}
.fs1_c00087{font-size:63.333308pt;}
.fs6_c00087{font-size:63.405308pt;}
.fs3_c00087{font-size:83.713033pt;}
.fs4_c00087{font-size:86.685832pt;}
.y0_c00087{bottom:0.000000pt;}
.y1_c00087{bottom:0.107500pt;}
.y27_c00087{bottom:3.484344pt;}
.y20_c00087{bottom:4.589944pt;}
.y22_c00087{bottom:4.749944pt;}
.y8_c00087{bottom:6.068128pt;}
.yb_c00087{bottom:51.247476pt;}
.ya_c00087{bottom:64.389977pt;}
.y3_c00087{bottom:74.146196pt;}
.y2_c00087{bottom:74.938070pt;}
.y1e_c00087{bottom:188.995394pt;}
.y1d_c00087{bottom:216.227250pt;}
.y1c_c00087{bottom:243.619105pt;}
.y1b_c00087{bottom:270.854161pt;}
.y1a_c00087{bottom:298.246017pt;}
.y19_c00087{bottom:325.478539pt;}
.y18_c00087{bottom:367.117323pt;}
.y17_c00087{bottom:395.619845pt;}
.y23_c00087{bottom:450.341653pt;}
.y24_c00087{bottom:458.578983pt;}
.y2a_c00087{bottom:464.118968pt;}
.y28_c00087{bottom:464.118981pt;}
.y21_c00087{bottom:469.611200pt;}
.y1f_c00087{bottom:469.771200pt;}
.y26_c00087{bottom:470.876800pt;}
.y25_c00087{bottom:474.248577pt;}
.y29_c00087{bottom:474.250844pt;}
.y16_c00087{bottom:541.599786pt;}
.y15_c00087{bottom:568.834175pt;}
.y14_c00087{bottom:596.223498pt;}
.y13_c00087{bottom:623.459754pt;}
.y12_c00087{bottom:650.851609pt;}
.y11_c00087{bottom:720.990381pt;}
.y10_c00087{bottom:790.971553pt;}
.yf_c00087{bottom:831.819670pt;}
.ye_c00087{bottom:859.051526pt;}
.yd_c00087{bottom:886.444048pt;}
.yc_c00087{bottom:920.171502pt;}
.y9_c00087{bottom:973.211480pt;}
.y7_c00087{bottom:1000.229433pt;}
.y6_c00087{bottom:1018.754492pt;}
.y5_c00087{bottom:1036.963819pt;}
.y4_c00087{bottom:1055.170745pt;}
.h11_c00087{height:18.526400pt;}
.ha_c00087{height:19.632000pt;}
.hc_c00087{height:19.792000pt;}
.he_c00087{height:33.138606pt;}
.h7_c00087{height:33.221817pt;}
.h6_c00087{height:36.824856pt;}
.h10_c00087{height:42.735178pt;}
.h2_c00087{height:52.149123pt;}
.hb_c00087{height:56.422584pt;}
.h3_c00087{height:56.683311pt;}
.h9_c00087{height:56.746644pt;}
.h12_c00087{height:56.747751pt;}
.h8_c00087{height:56.809977pt;}
.hf_c00087{height:56.811156pt;}
.h4_c00087{height:56.936644pt;}
.hd_c00087{height:58.426251pt;}
.h5_c00087{height:1110.960672pt;}
.h1_c00087{height:1122.559167pt;}
.h0_c00087{height:1122.666667pt;}
.w3_c00087{width:5.222400pt;}
.w4_c00087{width:5.224000pt;}
.w6_c00087{width:5.227200pt;}
.w5_c00087{width:5.228800pt;}
.w8_c00087{width:7.912000pt;}
.w9_c00087{width:8.707200pt;}
.w7_c00087{width:8.710400pt;}
.w2_c00087{width:785.062974pt;}
.w1_c00087{width:793.257550pt;}
.w0_c00087{width:793.333333pt;}
.x0_c00087{left:0.000000pt;}
.x7_c00087{left:1.370626pt;}
.x8_c00087{left:100.224934pt;}
.x2_c00087{left:112.191264pt;}
.xb_c00087{left:123.974314pt;}
.xc_c00087{left:147.723693pt;}
.x4_c00087{left:224.448440pt;}
.x3_c00087{left:240.124654pt;}
.x1d_c00087{left:257.385925pt;}
.x1b_c00087{left:272.901974pt;}
.xf_c00087{left:286.528000pt;}
.xd_c00087{left:290.646400pt;}
.x9_c00087{left:318.877246pt;}
.x6_c00087{left:333.220246pt;}
.xa_c00087{left:338.670728pt;}
.xe_c00087{left:343.528000pt;}
.x1a_c00087{left:350.652800pt;}
.x10_c00087{left:367.593600pt;}
.x5_c00087{left:373.596470pt;}
.x13_c00087{left:383.112000pt;}
.x11_c00087{left:387.227200pt;}
.x18_c00087{left:399.723416pt;}
.x1_c00087{left:407.639254pt;}
.x16_c00087{left:410.173919pt;}
.x1c_c00087{left:421.891441pt;}
.x15_c00087{left:429.648578pt;}
.x19_c00087{left:448.185600pt;}
.x17_c00087{left:460.203881pt;}
.x12_c00087{left:476.052800pt;}
.x14_c00087{left:480.324800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00088;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00088{font-family:ff5_c00088;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00088;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff6_c00088{font-family:ff6_c00088;line-height:0.865062;font-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_c00088{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls2_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:0.022260px;}
.ls0_c00088{letter-spacing:0.241350px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:-17.812493px;}
.ws1_c00088{word-spacing:-17.788793px;}
.ws2_c00088{word-spacing:0.000000px;}
._7_c00088{margin-left:-131.328629px;}
._6_c00088{margin-left:-122.556551px;}
._0_c00088{margin-left:-1.375620px;}
._1_c00088{width:1.056287px;}
._2_c00088{width:2.876516px;}
._3_c00088{width:4.883851px;}
._4_c00088{width:6.016856px;}
._5_c00088{width:7.564759px;}
.fc1_c00088{color:rgb(105,148,45);}
.fc0_c00088{color:rgb(35,31,32);}
.fs3_c00088{font-size:47.737061px;}
.fs2_c00088{font-size:59.136936px;}
.fs0_c00088{font-size:65.550574px;}
.fs4_c00088{font-size:71.155172px;}
.fs1_c00088{font-size:71.249972px;}
.y0_c00088{bottom:0.000000px;}
.y1_c00088{bottom:0.120938px;}
.y2a_c00088{bottom:3.740824px;}
.y2e_c00088{bottom:3.916914px;}
.y8_c00088{bottom:6.826644px;}
.yb_c00088{bottom:57.653410px;}
.ya_c00088{bottom:72.438724px;}
.y3_c00088{bottom:83.414470px;}
.y2_c00088{bottom:84.305329px;}
.y27_c00088{bottom:195.163275px;}
.y28_c00088{bottom:203.357772px;}
.y26_c00088{bottom:236.129759px;}
.y25_c00088{bottom:259.821499px;}
.y22_c00088{bottom:298.113634px;}
.y24_c00088{bottom:298.117234px;}
.y23_c00088{bottom:306.313231px;}
.y21_c00088{bottom:336.589969px;}
.y20_c00088{bottom:374.885703px;}
.y1e_c00088{bottom:374.886603px;}
.y1f_c00088{bottom:383.084700px;}
.y1d_c00088{bottom:413.363688px;}
.y29_c00088{bottom:436.401000px;}
.y2c_c00088{bottom:454.090506px;}
.y2f_c00088{bottom:454.093881px;}
.y2d_c00088{bottom:461.516400px;}
.y2b_c00088{bottom:465.312376px;}
.y1b_c00088{bottom:512.935298px;}
.y1c_c00088{bottom:521.128145px;}
.y1a_c00088{bottom:536.447039px;}
.y19_c00088{bottom:605.022061px;}
.y18_c00088{bottom:674.489433px;}
.y17_c00088{bottom:735.946059px;}
.y16_c00088{bottom:766.760547px;}
.y15_c00088{bottom:766.761447px;}
.y14_c00088{bottom:797.399384px;}
.y13_c00088{bottom:828.212372px;}
.y12_c00088{bottom:858.851060px;}
.y11_c00088{bottom:889.664047px;}
.y10_c00088{bottom:920.304835px;}
.yf_c00088{bottom:951.116473px;}
.ye_c00088{bottom:981.757261px;}
.yd_c00088{bottom:1012.570248px;}
.yc_c00088{bottom:1043.207436px;}
.y9_c00088{bottom:1094.862915px;}
.y7_c00088{bottom:1125.258112px;}
.y6_c00088{bottom:1146.098804px;}
.y5_c00088{bottom:1166.584296px;}
.y4_c00088{bottom:1187.067088px;}
.hc_c00088{height:19.774800px;}
.hf_c00088{height:20.842200px;}
.h7_c00088{height:37.374544px;}
.h6_c00088{height:41.427963px;}
.h9_c00088{height:42.772407px;}
.hb_c00088{height:42.820144px;}
.h10_c00088{height:47.958586px;}
.h2_c00088{height:58.667764px;}
.he_c00088{height:63.683879px;}
.hd_c00088{height:63.755034px;}
.h3_c00088{height:63.768724px;}
.h8_c00088{height:63.839974px;}
.ha_c00088{height:63.911224px;}
.h4_c00088{height:64.053724px;}
.h5_c00088{height:1249.830756px;}
.h1_c00088{height:1262.879062px;}
.h0_c00088{height:1263.000000px;}
.w5_c00088{width:8.901000px;}
.w4_c00088{width:8.904600px;}
.w3_c00088{width:8.908200px;}
.w2_c00088{width:883.195846px;}
.w1_c00088{width:892.414744px;}
.w0_c00088{width:892.500000px;}
.x0_c00088{left:0.000000px;}
.x7_c00088{left:1.541954px;}
.x8_c00088{left:112.753050px;}
.x2_c00088{left:126.215172px;}
.x4_c00088{left:252.504495px;}
.xe_c00088{left:255.965943px;}
.x3_c00088{left:270.140236px;}
.x13_c00088{left:323.470416px;}
.x6_c00088{left:374.872776px;}
.x18_c00088{left:385.741523px;}
.x11_c00088{left:397.214887px;}
.x12_c00088{left:403.270384px;}
.xd_c00088{left:407.727750px;}
.x5_c00088{left:420.296029px;}
.x1a_c00088{left:433.674000px;}
.x16_c00088{left:444.002400px;}
.x19_c00088{left:455.581800px;}
.x1_c00088{left:458.594160px;}
.xb_c00088{left:462.766360px;}
.x17_c00088{left:467.145657px;}
.xc_c00088{left:471.848857px;}
.x14_c00088{left:523.685836px;}
.x15_c00088{left:529.739834px;}
.xf_c00088{left:555.035824px;}
.x10_c00088{left:561.088321px;}
.x9_c00088{left:592.615309px;}
.xa_c00088{left:603.305804px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls2_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:0.019787pt;}
.ls0_c00088{letter-spacing:0.214533pt;}
.ws0_c00088{word-spacing:-15.833327pt;}
.ws1_c00088{word-spacing:-15.812260pt;}
.ws2_c00088{word-spacing:0.000000pt;}
._7_c00088{margin-left:-116.736559pt;}
._6_c00088{margin-left:-108.939156pt;}
._0_c00088{margin-left:-1.222774pt;}
._1_c00088{width:0.938922pt;}
._2_c00088{width:2.556903pt;}
._3_c00088{width:4.341201pt;}
._4_c00088{width:5.348316pt;}
._5_c00088{width:6.724230pt;}
.fs3_c00088{font-size:42.432943pt;}
.fs2_c00088{font-size:52.566166pt;}
.fs0_c00088{font-size:58.267177pt;}
.fs4_c00088{font-size:63.249041pt;}
.fs1_c00088{font-size:63.333308pt;}
.y0_c00088{bottom:0.000000pt;}
.y1_c00088{bottom:0.107500pt;}
.y2a_c00088{bottom:3.325177pt;}
.y2e_c00088{bottom:3.481701pt;}
.y8_c00088{bottom:6.068128pt;}
.yb_c00088{bottom:51.247476pt;}
.ya_c00088{bottom:64.389977pt;}
.y3_c00088{bottom:74.146196pt;}
.y2_c00088{bottom:74.938070pt;}
.y27_c00088{bottom:173.478467pt;}
.y28_c00088{bottom:180.762464pt;}
.y26_c00088{bottom:209.893119pt;}
.y25_c00088{bottom:230.952444pt;}
.y22_c00088{bottom:264.989897pt;}
.y24_c00088{bottom:264.993097pt;}
.y23_c00088{bottom:272.278427pt;}
.y21_c00088{bottom:299.191083pt;}
.y20_c00088{bottom:333.231736pt;}
.y1e_c00088{bottom:333.232536pt;}
.y1f_c00088{bottom:340.519733pt;}
.y1d_c00088{bottom:367.434389pt;}
.y29_c00088{bottom:387.912000pt;}
.y2c_c00088{bottom:403.636005pt;}
.y2f_c00088{bottom:403.639005pt;}
.y2d_c00088{bottom:410.236800pt;}
.y2b_c00088{bottom:413.611001pt;}
.y1b_c00088{bottom:455.942487pt;}
.y1c_c00088{bottom:463.225018pt;}
.y1a_c00088{bottom:476.841812pt;}
.y19_c00088{bottom:537.797388pt;}
.y18_c00088{bottom:599.546163pt;}
.y17_c00088{bottom:654.174275pt;}
.y16_c00088{bottom:681.564930pt;}
.y15_c00088{bottom:681.565730pt;}
.y14_c00088{bottom:708.799453pt;}
.y13_c00088{bottom:736.188775pt;}
.y12_c00088{bottom:763.423164pt;}
.y11_c00088{bottom:790.812487pt;}
.y10_c00088{bottom:818.048742pt;}
.yf_c00088{bottom:845.436865pt;}
.ye_c00088{bottom:872.673121pt;}
.yd_c00088{bottom:900.062443pt;}
.yc_c00088{bottom:927.295499pt;}
.y9_c00088{bottom:973.211480pt;}
.y7_c00088{bottom:1000.229433pt;}
.y6_c00088{bottom:1018.754492pt;}
.y5_c00088{bottom:1036.963819pt;}
.y4_c00088{bottom:1055.170745pt;}
.hc_c00088{height:17.577600pt;}
.hf_c00088{height:18.526400pt;}
.h7_c00088{height:33.221817pt;}
.h6_c00088{height:36.824856pt;}
.h9_c00088{height:38.019917pt;}
.hb_c00088{height:38.062350pt;}
.h10_c00088{height:42.629854pt;}
.h2_c00088{height:52.149123pt;}
.he_c00088{height:56.607892pt;}
.hd_c00088{height:56.671141pt;}
.h3_c00088{height:56.683311pt;}
.h8_c00088{height:56.746644pt;}
.ha_c00088{height:56.809977pt;}
.h4_c00088{height:56.936644pt;}
.h5_c00088{height:1110.960672pt;}
.h1_c00088{height:1122.559167pt;}
.h0_c00088{height:1122.666667pt;}
.w5_c00088{width:7.912000pt;}
.w4_c00088{width:7.915200pt;}
.w3_c00088{width:7.918400pt;}
.w2_c00088{width:785.062974pt;}
.w1_c00088{width:793.257550pt;}
.w0_c00088{width:793.333333pt;}
.x0_c00088{left:0.000000pt;}
.x7_c00088{left:1.370626pt;}
.x8_c00088{left:100.224934pt;}
.x2_c00088{left:112.191264pt;}
.x4_c00088{left:224.448440pt;}
.xe_c00088{left:227.525283pt;}
.x3_c00088{left:240.124654pt;}
.x13_c00088{left:287.529259pt;}
.x6_c00088{left:333.220246pt;}
.x18_c00088{left:342.881354pt;}
.x11_c00088{left:353.079899pt;}
.x12_c00088{left:358.462564pt;}
.xd_c00088{left:362.424667pt;}
.x5_c00088{left:373.596470pt;}
.x1a_c00088{left:385.488000pt;}
.x16_c00088{left:394.668800pt;}
.x19_c00088{left:404.961600pt;}
.x1_c00088{left:407.639254pt;}
.xb_c00088{left:411.347876pt;}
.x17_c00088{left:415.240584pt;}
.xc_c00088{left:419.421206pt;}
.x14_c00088{left:465.498521pt;}
.x15_c00088{left:470.879852pt;}
.xf_c00088{left:493.365177pt;}
.x10_c00088{left:498.745174pt;}
.x9_c00088{left:526.769163pt;}
.xa_c00088{left:536.271826pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00089;src:url('chunks/assets/font_91fd308cd518be6c87954b64.woff2')format("woff");}.ff6_c00089{font-family:ff6_c00089;line-height:1.014000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00089;src:url('chunks/assets/font_6f2a638d39f76c704084a165.woff2')format("woff");}.ff7_c00089{font-family:ff7_c00089;line-height:0.800000;font-style:normal;font-weight: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_c00089;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff8_c00089{font-family:ff8_c00089;line-height:0.865062;font-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_c00089{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00089{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00089{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:34.210786px;}
.ls2_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:74.158170px;}
.ls0_c00089{letter-spacing:74.166570px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:-20.717884px;}
.ws1_c00089{word-spacing:0.000000px;}
._0_c00089{margin-left:-1.375620px;}
._1_c00089{width:1.056287px;}
._3_c00089{width:4.777741px;}
._2_c00089{width:5.818776px;}
._4_c00089{width:7.244459px;}
._c_c00089{width:53.128511px;}
._6_c00089{width:80.275871px;}
._7_c00089{width:157.028979px;}
._10_c00089{width:173.536158px;}
._a_c00089{width:203.765063px;}
._b_c00089{width:206.435173px;}
._9_c00089{width:242.398426px;}
._e_c00089{width:246.189370px;}
._8_c00089{width:252.112732px;}
._f_c00089{width:486.114379px;}
._d_c00089{width:494.608812px;}
._5_c00089{width:616.357177px;}
.fc1_c00089{color:rgb(105,148,45);}
.fc2_c00089{color:rgb(255,255,255);}
.fc0_c00089{color:rgb(35,31,32);}
.fs3_c00089{font-size:47.737061px;}
.fs2_c00089{font-size:59.136936px;}
.fs0_c00089{font-size:65.550574px;}
.fs1_c00089{font-size:71.249972px;}
.y0_c00089{bottom:0.000000px;}
.y1_c00089{bottom:0.120938px;}
.y8_c00089{bottom:6.826644px;}
.yb_c00089{bottom:57.653410px;}
.ya_c00089{bottom:72.438724px;}
.y3_c00089{bottom:83.414470px;}
.y2_c00089{bottom:84.305329px;}
.y2c_c00089{bottom:134.246200px;}
.y2b_c00089{bottom:156.865291px;}
.y2a_c00089{bottom:179.311282px;}
.y29_c00089{bottom:201.929772px;}
.y28_c00089{bottom:224.554263px;}
.y27_c00089{bottom:246.997254px;}
.y26_c00089{bottom:269.617245px;}
.y25_c00089{bottom:292.241736px;}
.y24_c00089{bottom:314.683227px;}
.y23_c00089{bottom:337.307718px;}
.y22_c00089{bottom:359.746209px;}
.y21_c00089{bottom:382.372200px;}
.y20_c00089{bottom:404.990691px;}
.y1f_c00089{bottom:427.436682px;}
.y1e_c00089{bottom:435.982479px;}
.y1d_c00089{bottom:486.748159px;}
.y1c_c00089{bottom:503.848152px;}
.y1b_c00089{bottom:539.474037px;}
.y1a_c00089{bottom:562.985778px;}
.y19_c00089{bottom:601.460013px;}
.y18_c00089{bottom:639.755747px;}
.y17_c00089{bottom:679.478131px;}
.y16_c00089{bottom:702.988522px;}
.y15_c00089{bottom:742.712256px;}
.y14_c00089{bottom:782.432540px;}
.y13_c00089{bottom:822.154924px;}
.y12_c00089{bottom:861.697309px;}
.y11_c00089{bottom:901.419693px;}
.yf_c00089{bottom:943.635976px;}
.y10_c00089{bottom:951.833473px;}
.ye_c00089{bottom:985.317209px;}
.yd_c00089{bottom:1009.008950px;}
.yc_c00089{bottom:1076.336003px;}
.y9_c00089{bottom:1094.862915px;}
.y7_c00089{bottom:1125.258112px;}
.y6_c00089{bottom:1146.098804px;}
.y5_c00089{bottom:1166.584296px;}
.y4_c00089{bottom:1187.067088px;}
.h7_c00089{height:37.374544px;}
.hb_c00089{height:38.189649px;}
.h6_c00089{height:41.427963px;}
.hc_c00089{height:52.986695px;}
.h8_c00089{height:53.045832px;}
.ha_c00089{height:56.999977px;}
.h2_c00089{height:58.667764px;}
.h3_c00089{height:63.768724px;}
.h9_c00089{height:63.839974px;}
.h4_c00089{height:64.053724px;}
.hd_c00089{height:87.197481px;}
.h5_c00089{height:1249.830756px;}
.h1_c00089{height:1262.879062px;}
.h0_c00089{height:1263.000000px;}
.w2_c00089{width:883.195846px;}
.w1_c00089{width:892.414744px;}
.w0_c00089{width:892.500000px;}
.x0_c00089{left:0.000000px;}
.x7_c00089{left:1.541954px;}
.x8_c00089{left:112.753050px;}
.x2_c00089{left:126.215172px;}
.xe_c00089{left:139.469546px;}
.xf_c00089{left:166.188947px;}
.x11_c00089{left:201.988492px;}
.x4_c00089{left:252.504495px;}
.x1a_c00089{left:257.212443px;}
.x15_c00089{left:263.800440px;}
.x3_c00089{left:270.140236px;}
.x16_c00089{left:283.214932px;}
.x1f_c00089{left:287.135931px;}
.x19_c00089{left:294.794928px;}
.x18_c00089{left:304.415924px;}
.x1d_c00089{left:305.485423px;}
.x17_c00089{left:306.910423px;}
.x14_c00089{left:351.260905px;}
.x1b_c00089{left:352.330405px;}
.x1e_c00089{left:365.510899px;}
.x1c_c00089{left:367.471399px;}
.x6_c00089{left:374.872776px;}
.x9_c00089{left:393.471968px;}
.x12_c00089{left:396.145545px;}
.x10_c00089{left:406.120383px;}
.x5_c00089{left:420.296029px;}
.x1_c00089{left:458.594160px;}
.xa_c00089{left:515.486839px;}
.xb_c00089{left:536.150831px;}
.x13_c00089{left:556.103823px;}
.xc_c00089{left:558.953822px;}
.xd_c00089{left:579.433314px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:30.409588pt;}
.ls2_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:65.918374pt;}
.ls0_c00089{letter-spacing:65.925840pt;}
.ws0_c00089{word-spacing:-18.415897pt;}
.ws1_c00089{word-spacing:0.000000pt;}
._0_c00089{margin-left:-1.222774pt;}
._1_c00089{width:0.938922pt;}
._3_c00089{width:4.246881pt;}
._2_c00089{width:5.172245pt;}
._4_c00089{width:6.439520pt;}
._c_c00089{width:47.225343pt;}
._6_c00089{width:71.356330pt;}
._7_c00089{width:139.581315pt;}
._10_c00089{width:154.254362pt;}
._a_c00089{width:181.124501pt;}
._b_c00089{width:183.497931pt;}
._9_c00089{width:215.465268pt;}
._e_c00089{width:218.834995pt;}
._8_c00089{width:224.100206pt;}
._f_c00089{width:432.101670pt;}
._d_c00089{width:439.652278pt;}
._5_c00089{width:547.873046pt;}
.fs3_c00089{font-size:42.432943pt;}
.fs2_c00089{font-size:52.566166pt;}
.fs0_c00089{font-size:58.267177pt;}
.fs1_c00089{font-size:63.333308pt;}
.y0_c00089{bottom:0.000000pt;}
.y1_c00089{bottom:0.107500pt;}
.y8_c00089{bottom:6.068128pt;}
.yb_c00089{bottom:51.247476pt;}
.ya_c00089{bottom:64.389977pt;}
.y3_c00089{bottom:74.146196pt;}
.y2_c00089{bottom:74.938070pt;}
.y2c_c00089{bottom:119.329955pt;}
.y2b_c00089{bottom:139.435814pt;}
.y2a_c00089{bottom:159.387806pt;}
.y29_c00089{bottom:179.493131pt;}
.y28_c00089{bottom:199.603790pt;}
.y27_c00089{bottom:219.553115pt;}
.y26_c00089{bottom:239.659774pt;}
.y25_c00089{bottom:259.770432pt;}
.y24_c00089{bottom:279.718424pt;}
.y23_c00089{bottom:299.829083pt;}
.y22_c00089{bottom:319.774408pt;}
.y21_c00089{bottom:339.886400pt;}
.y20_c00089{bottom:359.991726pt;}
.y1f_c00089{bottom:379.943718pt;}
.y1e_c00089{bottom:387.539981pt;}
.y1d_c00089{bottom:432.665030pt;}
.y1c_c00089{bottom:447.865024pt;}
.y1b_c00089{bottom:479.532478pt;}
.y1a_c00089{bottom:500.431803pt;}
.y19_c00089{bottom:534.631122pt;}
.y18_c00089{bottom:568.671775pt;}
.y17_c00089{bottom:603.980561pt;}
.y16_c00089{bottom:624.878686pt;}
.y15_c00089{bottom:660.188672pt;}
.y14_c00089{bottom:695.495591pt;}
.y13_c00089{bottom:730.804377pt;}
.y12_c00089{bottom:765.953163pt;}
.y11_c00089{bottom:801.261949pt;}
.yf_c00089{bottom:838.787534pt;}
.y10_c00089{bottom:846.074198pt;}
.ye_c00089{bottom:875.837519pt;}
.yd_c00089{bottom:896.896844pt;}
.yc_c00089{bottom:956.743114pt;}
.y9_c00089{bottom:973.211480pt;}
.y7_c00089{bottom:1000.229433pt;}
.y6_c00089{bottom:1018.754492pt;}
.y5_c00089{bottom:1036.963819pt;}
.y4_c00089{bottom:1055.170745pt;}
.h7_c00089{height:33.221817pt;}
.hb_c00089{height:33.946354pt;}
.h6_c00089{height:36.824856pt;}
.hc_c00089{height:47.099284pt;}
.h8_c00089{height:47.151851pt;}
.ha_c00089{height:50.666646pt;}
.h2_c00089{height:52.149123pt;}
.h3_c00089{height:56.683311pt;}
.h9_c00089{height:56.746644pt;}
.h4_c00089{height:56.936644pt;}
.hd_c00089{height:77.508872pt;}
.h5_c00089{height:1110.960672pt;}
.h1_c00089{height:1122.559167pt;}
.h0_c00089{height:1122.666667pt;}
.w2_c00089{width:785.062974pt;}
.w1_c00089{width:793.257550pt;}
.w0_c00089{width:793.333333pt;}
.x0_c00089{left:0.000000pt;}
.x7_c00089{left:1.370626pt;}
.x8_c00089{left:100.224934pt;}
.x2_c00089{left:112.191264pt;}
.xe_c00089{left:123.972929pt;}
.xf_c00089{left:147.723509pt;}
.x11_c00089{left:179.545326pt;}
.x4_c00089{left:224.448440pt;}
.x1a_c00089{left:228.633282pt;}
.x15_c00089{left:234.489280pt;}
.x3_c00089{left:240.124654pt;}
.x16_c00089{left:251.746606pt;}
.x1f_c00089{left:255.231938pt;}
.x19_c00089{left:262.039936pt;}
.x18_c00089{left:270.591932pt;}
.x1d_c00089{left:271.542599pt;}
.x17_c00089{left:272.809265pt;}
.x14_c00089{left:312.231916pt;}
.x1b_c00089{left:313.182582pt;}
.x1e_c00089{left:324.898577pt;}
.x1c_c00089{left:326.641243pt;}
.x6_c00089{left:333.220246pt;}
.x9_c00089{left:349.752860pt;}
.x12_c00089{left:352.129374pt;}
.x10_c00089{left:360.995896pt;}
.x5_c00089{left:373.596470pt;}
.x1_c00089{left:407.639254pt;}
.xa_c00089{left:458.210524pt;}
.xb_c00089{left:476.578517pt;}
.x13_c00089{left:494.314509pt;}
.xc_c00089{left:496.847842pt;}
.xd_c00089{left:515.051834pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00090;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00090{font-family:ff5_c00090;line-height:1.113000;font-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_c00090{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.v1_c00090{vertical-align:34.188766px;}
.ls0_c00090{letter-spacing:0.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:-14.784234px;}
.ws1_c00090{word-spacing:0.000000px;}
._0_c00090{margin-left:-1.375620px;}
._1_c00090{width:1.056287px;}
._a_c00090{width:25.874343px;}
._b_c00090{width:37.979415px;}
._9_c00090{width:40.126170px;}
._5_c00090{width:76.615277px;}
._2_c00090{width:189.174720px;}
._3_c00090{width:304.355833px;}
._4_c00090{width:314.321163px;}
._8_c00090{width:321.545310px;}
._6_c00090{width:474.492025px;}
._7_c00090{width:549.236682px;}
.fc3_c00090{color:rgb(237,30,36);}
.fc2_c00090{color:rgb(57,76,168);}
.fc1_c00090{color:rgb(105,148,45);}
.fc0_c00090{color:rgb(35,31,32);}
.fs3_c00090{font-size:38.474625px;}
.fs4_c00090{font-size:47.737061px;}
.fs2_c00090{font-size:59.136936px;}
.fs0_c00090{font-size:65.550574px;}
.fs1_c00090{font-size:71.249972px;}
.y0_c00090{bottom:0.000000px;}
.y1_c00090{bottom:0.120938px;}
.y1d_c00090{bottom:2.311781px;}
.y8_c00090{bottom:6.826644px;}
.yb_c00090{bottom:57.653410px;}
.ya_c00090{bottom:72.438724px;}
.y3_c00090{bottom:83.414470px;}
.y2_c00090{bottom:84.305329px;}
.y2a_c00090{bottom:169.154936px;}
.y29_c00090{bottom:199.790773px;}
.y28_c00090{bottom:278.345742px;}
.y27_c00090{bottom:357.963010px;}
.y26_c00090{bottom:396.258745px;}
.y25_c00090{bottom:434.734479px;}
.y24_c00090{bottom:473.033664px;}
.y23_c00090{bottom:549.803633px;}
.y22_c00090{bottom:626.756603px;}
.y21_c00090{bottom:667.013586px;}
.y20_c00090{bottom:684.113580px;}
.y1f_c00090{bottom:723.475064px;}
.y1e_c00090{bottom:740.575057px;}
.y1b_c00090{bottom:784.571539px;}
.y1c_c00090{bottom:795.857400px;}
.y1a_c00090{bottom:807.194530px;}
.y18_c00090{bottom:829.639021px;}
.y19_c00090{bottom:844.957015px;}
.y17_c00090{bottom:846.739015px;}
.y16_c00090{bottom:869.362006px;}
.y15_c00090{bottom:886.461999px;}
.y14_c00090{bottom:908.900490px;}
.y13_c00090{bottom:926.000483px;}
.y12_c00090{bottom:948.626474px;}
.y11_c00090{bottom:965.726467px;}
.y10_c00090{bottom:988.167208px;}
.yf_c00090{bottom:1005.266451px;}
.ye_c00090{bottom:1027.890942px;}
.yd_c00090{bottom:1050.333933px;}
.yc_c00090{bottom:1072.949004px;}
.y9_c00090{bottom:1094.862915px;}
.y7_c00090{bottom:1125.258112px;}
.y6_c00090{bottom:1146.098804px;}
.y5_c00090{bottom:1166.584296px;}
.y4_c00090{bottom:1187.067088px;}
.hd_c00090{height:8.902800px;}
.hc_c00090{height:34.473264px;}
.h7_c00090{height:37.374544px;}
.h6_c00090{height:41.427963px;}
.hf_c00090{height:42.820144px;}
.h8_c00090{height:52.986695px;}
.he_c00090{height:53.045832px;}
.h2_c00090{height:58.667764px;}
.h3_c00090{height:63.768724px;}
.h10_c00090{height:63.839974px;}
.h11_c00090{height:63.911224px;}
.h4_c00090{height:64.053724px;}
.h9_c00090{height:87.175461px;}
.ha_c00090{height:87.178221px;}
.hb_c00090{height:87.183861px;}
.h5_c00090{height:1249.830756px;}
.h1_c00090{height:1262.879062px;}
.h0_c00090{height:1263.000000px;}
.w3_c00090{width:4.631400px;}
.w2_c00090{width:883.195846px;}
.w1_c00090{width:892.414744px;}
.w0_c00090{width:892.500000px;}
.x0_c00090{left:0.000000px;}
.x7_c00090{left:1.541954px;}
.x8_c00090{left:112.753050px;}
.x2_c00090{left:126.215172px;}
.x15_c00090{left:129.497994px;}
.x16_c00090{left:156.214489px;}
.x17_c00090{left:238.687450px;}
.xe_c00090{left:248.480946px;}
.x10_c00090{left:251.152445px;}
.x4_c00090{left:252.504495px;}
.xd_c00090{left:263.089061px;}
.x3_c00090{left:270.140236px;}
.x9_c00090{left:291.054399px;}
.xa_c00090{left:319.913918px;}
.xc_c00090{left:322.401869px;}
.x12_c00090{left:326.497848px;}
.xf_c00090{left:362.654312px;}
.x18_c00090{left:372.812838px;}
.x6_c00090{left:374.872776px;}
.xb_c00090{left:377.978894px;}
.x11_c00090{left:381.182715px;}
.x1a_c00090{left:403.805896px;}
.x19_c00090{left:410.753471px;}
.x1b_c00090{left:414.138309px;}
.x5_c00090{left:420.296029px;}
.x1_c00090{left:458.594160px;}
.x13_c00090{left:625.391795px;}
.x14_c00090{left:626.934600px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.v1_c00090{vertical-align:30.390015pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:-13.141541pt;}
.ws1_c00090{word-spacing:0.000000pt;}
._0_c00090{margin-left:-1.222774pt;}
._1_c00090{width:0.938922pt;}
._a_c00090{width:22.999416pt;}
._b_c00090{width:33.759480pt;}
._9_c00090{width:35.667707pt;}
._5_c00090{width:68.102469pt;}
._2_c00090{width:168.155307pt;}
._3_c00090{width:270.538518pt;}
._4_c00090{width:279.396589pt;}
._8_c00090{width:285.818053pt;}
._6_c00090{width:421.770689pt;}
._7_c00090{width:488.210384pt;}
.fs3_c00090{font-size:34.199666pt;}
.fs4_c00090{font-size:42.432943pt;}
.fs2_c00090{font-size:52.566166pt;}
.fs0_c00090{font-size:58.267177pt;}
.fs1_c00090{font-size:63.333308pt;}
.y0_c00090{bottom:0.000000pt;}
.y1_c00090{bottom:0.107500pt;}
.y1d_c00090{bottom:2.054916pt;}
.y8_c00090{bottom:6.068128pt;}
.yb_c00090{bottom:51.247476pt;}
.ya_c00090{bottom:64.389977pt;}
.y3_c00090{bottom:74.146196pt;}
.y2_c00090{bottom:74.938070pt;}
.y2a_c00090{bottom:150.359943pt;}
.y29_c00090{bottom:177.591799pt;}
.y28_c00090{bottom:247.418437pt;}
.y27_c00090{bottom:318.189342pt;}
.y26_c00090{bottom:352.229995pt;}
.y25_c00090{bottom:386.430648pt;}
.y24_c00090{bottom:420.474368pt;}
.y23_c00090{bottom:488.714341pt;}
.y22_c00090{bottom:557.116980pt;}
.y21_c00090{bottom:592.900966pt;}
.y20_c00090{bottom:608.100960pt;}
.y1f_c00090{bottom:643.088946pt;}
.y1e_c00090{bottom:658.288940pt;}
.y1b_c00090{bottom:697.396924pt;}
.y1c_c00090{bottom:707.428800pt;}
.y1a_c00090{bottom:717.506249pt;}
.y18_c00090{bottom:737.456908pt;}
.y19_c00090{bottom:751.072902pt;}
.y17_c00090{bottom:752.656902pt;}
.y16_c00090{bottom:772.766227pt;}
.y15_c00090{bottom:787.966221pt;}
.y14_c00090{bottom:807.911546pt;}
.y13_c00090{bottom:823.111540pt;}
.y12_c00090{bottom:843.223532pt;}
.y11_c00090{bottom:858.423526pt;}
.y10_c00090{bottom:878.370852pt;}
.yf_c00090{bottom:893.570179pt;}
.ye_c00090{bottom:913.680837pt;}
.yd_c00090{bottom:933.630163pt;}
.yc_c00090{bottom:953.732448pt;}
.y9_c00090{bottom:973.211480pt;}
.y7_c00090{bottom:1000.229433pt;}
.y6_c00090{bottom:1018.754492pt;}
.y5_c00090{bottom:1036.963819pt;}
.y4_c00090{bottom:1055.170745pt;}
.hd_c00090{height:7.913600pt;}
.hc_c00090{height:30.642901pt;}
.h7_c00090{height:33.221817pt;}
.h6_c00090{height:36.824856pt;}
.hf_c00090{height:38.062350pt;}
.h8_c00090{height:47.099284pt;}
.he_c00090{height:47.151851pt;}
.h2_c00090{height:52.149123pt;}
.h3_c00090{height:56.683311pt;}
.h10_c00090{height:56.746644pt;}
.h11_c00090{height:56.809977pt;}
.h4_c00090{height:56.936644pt;}
.h9_c00090{height:77.489299pt;}
.ha_c00090{height:77.491752pt;}
.hb_c00090{height:77.496766pt;}
.h5_c00090{height:1110.960672pt;}
.h1_c00090{height:1122.559167pt;}
.h0_c00090{height:1122.666667pt;}
.w3_c00090{width:4.116800pt;}
.w2_c00090{width:785.062974pt;}
.w1_c00090{width:793.257550pt;}
.w0_c00090{width:793.333333pt;}
.x0_c00090{left:0.000000pt;}
.x7_c00090{left:1.370626pt;}
.x8_c00090{left:100.224934pt;}
.x2_c00090{left:112.191264pt;}
.x15_c00090{left:115.109328pt;}
.x16_c00090{left:138.857323pt;}
.x17_c00090{left:212.166622pt;}
.xe_c00090{left:220.871952pt;}
.x10_c00090{left:223.246618pt;}
.x4_c00090{left:224.448440pt;}
.xd_c00090{left:233.856943pt;}
.x3_c00090{left:240.124654pt;}
.x9_c00090{left:258.715022pt;}
.xa_c00090{left:284.367927pt;}
.xc_c00090{left:286.579439pt;}
.x12_c00090{left:290.220309pt;}
.xf_c00090{left:322.359388pt;}
.x18_c00090{left:331.389189pt;}
.x6_c00090{left:333.220246pt;}
.xb_c00090{left:335.981239pt;}
.x11_c00090{left:338.829080pt;}
.x1a_c00090{left:358.938574pt;}
.x19_c00090{left:365.114196pt;}
.x1b_c00090{left:368.122941pt;}
.x5_c00090{left:373.596470pt;}
.x1_c00090{left:407.639254pt;}
.x13_c00090{left:555.903818pt;}
.x14_c00090{left:557.275200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00091;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00091;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00091{font-family:ff6_c00091;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00091;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff7_c00091{font-family:ff7_c00091;line-height:0.865062;font-style:normal;font-weight: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_c00091;src:url('chunks/assets/font_e930b46f28399f75a928e611.woff2')format("woff");}.ff8_c00091{font-family:ff8_c00091;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00091{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m3_c00091{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls2_c00091{letter-spacing:0.000000px;}
.ls1_c00091{letter-spacing:50.369080px;}
.ls0_c00091{letter-spacing:50.375080px;}
.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;}
}
.ws1_c00091{word-spacing:-17.796443px;}
.ws3_c00091{word-spacing:-17.794343px;}
.ws0_c00091{word-spacing:-16.387643px;}
.ws2_c00091{word-spacing:-10.381211px;}
.ws4_c00091{word-spacing:-10.379786px;}
.ws5_c00091{word-spacing:-7.414407px;}
.ws6_c00091{word-spacing:0.000000px;}
._5_c00091{margin-left:-412.704250px;}
._a_c00091{margin-left:-187.437225px;}
._6_c00091{margin-left:-142.750814px;}
._d_c00091{margin-left:-134.841126px;}
._c_c00091{margin-left:-129.210223px;}
._b_c00091{margin-left:-119.946226px;}
._3_c00091{margin-left:-89.090814px;}
._10_c00091{margin-left:-80.417427px;}
._9_c00091{margin-left:-55.073558px;}
._7_c00091{margin-left:-53.646999px;}
._4_c00091{margin-left:-51.935804px;}
._8_c00091{margin-left:-33.194960px;}
._f_c00091{margin-left:-24.525109px;}
._e_c00091{margin-left:-22.671863px;}
._0_c00091{margin-left:-1.375620px;}
._1_c00091{width:1.056287px;}
._2_c00091{width:196.064959px;}
.fc1_c00091{color:rgb(105,148,45);}
.fc0_c00091{color:rgb(35,31,32);}
.fs8_c00091{font-size:29.657628px;}
.fs7_c00091{font-size:41.519143px;}
.fs5_c00091{font-size:41.524843px;}
.fs2_c00091{font-size:59.136936px;}
.fs0_c00091{font-size:65.550574px;}
.fs6_c00091{font-size:71.177372px;}
.fs3_c00091{font-size:71.185772px;}
.fs1_c00091{font-size:71.249972px;}
.fs4_c00091{font-size:106.779557px;}
.y0_c00091{bottom:0.000000px;}
.y1_c00091{bottom:0.120938px;}
.y21_c00091{bottom:5.869846px;}
.y8_c00091{bottom:6.826644px;}
.yb_c00091{bottom:57.653410px;}
.ya_c00091{bottom:72.438724px;}
.y3_c00091{bottom:83.414470px;}
.y2_c00091{bottom:84.305329px;}
.y1d_c00091{bottom:142.976046px;}
.y1c_c00091{bottom:181.628931px;}
.y1b_c00091{bottom:220.100465px;}
.y1a_c00091{bottom:258.578900px;}
.y19_c00091{bottom:296.873135px;}
.y18_c00091{bottom:335.346019px;}
.y30_c00091{bottom:362.892417px;}
.y32_c00091{bottom:363.783267px;}
.y29_c00091{bottom:376.609912px;}
.y36_c00091{bottom:377.496411px;}
.y2b_c00091{bottom:377.502171px;}
.y35_c00091{bottom:387.469907px;}
.y2c_c00091{bottom:387.472907px;}
.y31_c00091{bottom:387.650807px;}
.y2a_c00091{bottom:387.651782px;}
.y33_c00091{bottom:388.541657px;}
.y2e_c00091{bottom:392.106406px;}
.y34_c00091{bottom:403.501901px;}
.y2d_c00091{bottom:403.504901px;}
.y2f_c00091{bottom:408.138399px;}
.y17_c00091{bottom:434.916879px;}
.y16_c00091{bottom:488.178558px;}
.y15_c00091{bottom:526.650093px;}
.y14_c00091{bottom:564.948527px;}
.y20_c00091{bottom:628.421400px;}
.y27_c00091{bottom:633.639759px;}
.y25_c00091{bottom:639.162157px;}
.y1e_c00091{bottom:649.735093px;}
.y24_c00091{bottom:650.203952px;}
.y26_c00091{bottom:656.083500px;}
.y22_c00091{bottom:656.440800px;}
.y1f_c00091{bottom:660.956964px;}
.y28_c00091{bottom:673.186343px;}
.y23_c00091{bottom:685.294788px;}
.y13_c00091{bottom:722.407964px;}
.y12_c00091{bottom:775.664093px;}
.y11_c00091{bottom:814.139828px;}
.y10_c00091{bottom:852.438262px;}
.yf_c00091{bottom:890.912497px;}
.ye_c00091{bottom:928.852132px;}
.yd_c00091{bottom:978.015962px;}
.yc_c00091{bottom:1033.584940px;}
.y9_c00091{bottom:1094.862915px;}
.y7_c00091{bottom:1125.258112px;}
.y6_c00091{bottom:1146.098804px;}
.y5_c00091{bottom:1166.584296px;}
.y4_c00091{bottom:1187.067088px;}
.h14_c00091{height:26.573235px;}
.h17_c00091{height:27.983903px;}
.hc_c00091{height:29.745000px;}
.h16_c00091{height:37.159633px;}
.h13_c00091{height:37.201152px;}
.hf_c00091{height:37.206260px;}
.h7_c00091{height:37.374544px;}
.h6_c00091{height:41.427963px;}
.h18_c00091{height:47.973548px;}
.h10_c00091{height:47.979210px;}
.h8_c00091{height:53.164106px;}
.h2_c00091{height:58.667764px;}
.h15_c00091{height:63.703748px;}
.hb_c00091{height:63.711266px;}
.h3_c00091{height:63.768724px;}
.h12_c00091{height:63.774925px;}
.he_c00091{height:63.782451px;}
.h9_c00091{height:63.839974px;}
.ha_c00091{height:63.911224px;}
.h4_c00091{height:64.053724px;}
.h11_c00091{height:65.918024px;}
.hd_c00091{height:95.567704px;}
.h5_c00091{height:1249.830756px;}
.h1_c00091{height:1262.879062px;}
.h0_c00091{height:1263.000000px;}
.w3_c00091{width:15.494400px;}
.w2_c00091{width:883.195846px;}
.w1_c00091{width:892.414744px;}
.w0_c00091{width:892.500000px;}
.x0_c00091{left:0.000000px;}
.x7_c00091{left:1.541954px;}
.x8_c00091{left:112.753050px;}
.x2_c00091{left:126.215172px;}
.xb_c00091{left:139.471103px;}
.x4_c00091{left:252.504495px;}
.x3_c00091{left:270.140236px;}
.x9_c00091{left:284.464432px;}
.xf_c00091{left:320.088818px;}
.xc_c00091{left:361.592956px;}
.x17_c00091{left:370.064457px;}
.xa_c00091{left:372.992430px;}
.x6_c00091{left:374.872776px;}
.x16_c00091{left:381.999298px;}
.x10_c00091{left:397.335600px;}
.x22_c00091{left:401.240183px;}
.xe_c00091{left:408.262081px;}
.x1a_c00091{left:415.131131px;}
.x5_c00091{left:420.296029px;}
.x13_c00091{left:421.900716px;}
.x1f_c00091{left:423.503174px;}
.x20_c00091{left:424.928408px;}
.x19_c00091{left:431.341655px;}
.x15_c00091{left:434.189443px;}
.x18_c00091{left:441.672667px;}
.x1c_c00091{left:449.154684px;}
.x12_c00091{left:451.469163px;}
.x1_c00091{left:458.594160px;}
.x14_c00091{left:468.923156px;}
.x1d_c00091{left:472.310155px;}
.x21_c00091{left:478.368652px;}
.x1b_c00091{left:483.534650px;}
.x1e_c00091{left:489.052925px;}
.x11_c00091{left:513.992138px;}
.xd_c00091{left:516.382339px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls2_c00091{letter-spacing:0.000000pt;}
.ls1_c00091{letter-spacing:44.772515pt;}
.ls0_c00091{letter-spacing:44.777849pt;}
.ws1_c00091{word-spacing:-15.819060pt;}
.ws3_c00091{word-spacing:-15.817194pt;}
.ws0_c00091{word-spacing:-14.566794pt;}
.ws2_c00091{word-spacing:-9.227743pt;}
.ws4_c00091{word-spacing:-9.226476pt;}
.ws5_c00091{word-spacing:-6.590584pt;}
.ws6_c00091{word-spacing:0.000000pt;}
._5_c00091{margin-left:-366.848222pt;}
._a_c00091{margin-left:-166.610867pt;}
._6_c00091{margin-left:-126.889613pt;}
._d_c00091{margin-left:-119.858779pt;}
._c_c00091{margin-left:-114.853531pt;}
._b_c00091{margin-left:-106.618868pt;}
._3_c00091{margin-left:-79.191835pt;}
._10_c00091{margin-left:-71.482158pt;}
._9_c00091{margin-left:-48.954274pt;}
._7_c00091{margin-left:-47.686221pt;}
._4_c00091{margin-left:-46.165160pt;}
._8_c00091{margin-left:-29.506631pt;}
._f_c00091{margin-left:-21.800097pt;}
._e_c00091{margin-left:-20.152767pt;}
._0_c00091{margin-left:-1.222774pt;}
._1_c00091{width:0.938922pt;}
._2_c00091{width:174.279964pt;}
.fs8_c00091{font-size:26.362336pt;}
.fs7_c00091{font-size:36.905905pt;}
.fs5_c00091{font-size:36.910972pt;}
.fs2_c00091{font-size:52.566166pt;}
.fs0_c00091{font-size:58.267177pt;}
.fs6_c00091{font-size:63.268775pt;}
.fs3_c00091{font-size:63.276241pt;}
.fs1_c00091{font-size:63.333308pt;}
.fs4_c00091{font-size:94.915162pt;}
.y0_c00091{bottom:0.000000pt;}
.y1_c00091{bottom:0.107500pt;}
.y21_c00091{bottom:5.217641pt;}
.y8_c00091{bottom:6.068128pt;}
.yb_c00091{bottom:51.247476pt;}
.ya_c00091{bottom:64.389977pt;}
.y3_c00091{bottom:74.146196pt;}
.y2_c00091{bottom:74.938070pt;}
.y1d_c00091{bottom:127.089819pt;}
.y1c_c00091{bottom:161.447938pt;}
.y1b_c00091{bottom:195.644858pt;}
.y1a_c00091{bottom:229.847911pt;}
.y19_c00091{bottom:263.887231pt;}
.y18_c00091{bottom:298.085350pt;}
.y30_c00091{bottom:322.571038pt;}
.y32_c00091{bottom:323.362904pt;}
.y29_c00091{bottom:334.764366pt;}
.y36_c00091{bottom:335.552366pt;}
.y2b_c00091{bottom:335.557486pt;}
.y35_c00091{bottom:344.417696pt;}
.y2c_c00091{bottom:344.420362pt;}
.y31_c00091{bottom:344.578495pt;}
.y2a_c00091{bottom:344.579362pt;}
.y33_c00091{bottom:345.370362pt;}
.y2e_c00091{bottom:348.539027pt;}
.y34_c00091{bottom:358.668356pt;}
.y2d_c00091{bottom:358.671023pt;}
.y2f_c00091{bottom:362.789688pt;}
.y17_c00091{bottom:386.592782pt;}
.y16_c00091{bottom:433.936496pt;}
.y15_c00091{bottom:468.133416pt;}
.y14_c00091{bottom:502.176469pt;}
.y20_c00091{bottom:558.596800pt;}
.y27_c00091{bottom:563.235341pt;}
.y25_c00091{bottom:568.144139pt;}
.y1e_c00091{bottom:577.542305pt;}
.y24_c00091{bottom:577.959069pt;}
.y26_c00091{bottom:583.185333pt;}
.y22_c00091{bottom:583.502933pt;}
.y1f_c00091{bottom:587.517301pt;}
.y28_c00091{bottom:598.387861pt;}
.y23_c00091{bottom:609.150923pt;}
.y13_c00091{bottom:642.140413pt;}
.y12_c00091{bottom:689.479194pt;}
.y11_c00091{bottom:723.679847pt;}
.y10_c00091{bottom:757.722900pt;}
.yf_c00091{bottom:791.922219pt;}
.ye_c00091{bottom:825.646339pt;}
.yd_c00091{bottom:869.347522pt;}
.yc_c00091{bottom:918.742169pt;}
.y9_c00091{bottom:973.211480pt;}
.y7_c00091{bottom:1000.229433pt;}
.y6_c00091{bottom:1018.754492pt;}
.y5_c00091{bottom:1036.963819pt;}
.y4_c00091{bottom:1055.170745pt;}
.h14_c00091{height:23.620653pt;}
.h17_c00091{height:24.874580pt;}
.hc_c00091{height:26.440000pt;}
.h16_c00091{height:33.030785pt;}
.h13_c00091{height:33.067691pt;}
.hf_c00091{height:33.072231pt;}
.h7_c00091{height:33.221817pt;}
.h6_c00091{height:36.824856pt;}
.h18_c00091{height:42.643154pt;}
.h10_c00091{height:42.648187pt;}
.h8_c00091{height:47.256983pt;}
.h2_c00091{height:52.149123pt;}
.h15_c00091{height:56.625553pt;}
.hb_c00091{height:56.632236pt;}
.h3_c00091{height:56.683311pt;}
.h12_c00091{height:56.688822pt;}
.he_c00091{height:56.695512pt;}
.h9_c00091{height:56.746644pt;}
.ha_c00091{height:56.809977pt;}
.h4_c00091{height:56.936644pt;}
.h11_c00091{height:58.593799pt;}
.hd_c00091{height:84.949070pt;}
.h5_c00091{height:1110.960672pt;}
.h1_c00091{height:1122.559167pt;}
.h0_c00091{height:1122.666667pt;}
.w3_c00091{width:13.772800pt;}
.w2_c00091{width:785.062974pt;}
.w1_c00091{width:793.257550pt;}
.w0_c00091{width:793.333333pt;}
.x0_c00091{left:0.000000pt;}
.x7_c00091{left:1.370626pt;}
.x8_c00091{left:100.224934pt;}
.x2_c00091{left:112.191264pt;}
.xb_c00091{left:123.974314pt;}
.x4_c00091{left:224.448440pt;}
.x3_c00091{left:240.124654pt;}
.x9_c00091{left:252.857273pt;}
.xf_c00091{left:284.523393pt;}
.xc_c00091{left:321.415961pt;}
.x17_c00091{left:328.946184pt;}
.xa_c00091{left:331.548827pt;}
.x6_c00091{left:333.220246pt;}
.x16_c00091{left:339.554931pt;}
.x10_c00091{left:353.187200pt;}
.x22_c00091{left:356.657941pt;}
.xe_c00091{left:362.899627pt;}
.x1a_c00091{left:369.005450pt;}
.x5_c00091{left:373.596470pt;}
.x13_c00091{left:375.022859pt;}
.x1f_c00091{left:376.447266pt;}
.x20_c00091{left:377.714140pt;}
.x19_c00091{left:383.414805pt;}
.x15_c00091{left:385.946171pt;}
.x18_c00091{left:392.597926pt;}
.x1c_c00091{left:399.248608pt;}
.x12_c00091{left:401.305923pt;}
.x1_c00091{left:407.639254pt;}
.x14_c00091{left:416.820583pt;}
.x1d_c00091{left:419.831249pt;}
.x21_c00091{left:425.216580pt;}
.x1b_c00091{left:429.808578pt;}
.x1e_c00091{left:434.713711pt;}
.x11_c00091{left:456.881901pt;}
.xd_c00091{left:459.006524pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00092;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00092;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00092{font-family:ff6_c00092;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00092;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff7_c00092{font-family:ff7_c00092;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00092{transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6_c00092{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7_c00092{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.v1_c00092{vertical-align:-61.984775px;}
.v0_c00092{vertical-align:0.000000px;}
.ls4_c00092{letter-spacing:0.000000px;}
.ls2_c00092{letter-spacing:0.022260px;}
.ls1_c00092{letter-spacing:0.241350px;}
.ls0_c00092{letter-spacing:50.375080px;}
.ls3_c00092{letter-spacing:414.242315px;}
.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;}
}
.ws3_c00092{word-spacing:-17.832743px;}
.ws1_c00092{word-spacing:-17.812493px;}
.ws4_c00092{word-spacing:-17.788793px;}
.ws0_c00092{word-spacing:-16.387643px;}
.ws5_c00092{word-spacing:0.000000px;}
.ws2_c00092{word-spacing:511.667349px;}
._b_c00092{margin-left:-382.966788px;}
._8_c00092{margin-left:-260.788714px;}
._9_c00092{margin-left:-230.292808px;}
._a_c00092{margin-left:-211.122657px;}
._7_c00092{margin-left:-163.283335px;}
._4_c00092{margin-left:-156.169138px;}
._6_c00092{margin-left:-144.584360px;}
._5_c00092{margin-left:-138.542768px;}
._d_c00092{margin-left:-131.328629px;}
._c_c00092{margin-left:-122.556551px;}
._0_c00092{margin-left:-1.375620px;}
._1_c00092{width:1.056287px;}
._2_c00092{width:2.198588px;}
._3_c00092{width:13.305645px;}
.fc1_c00092{color:rgb(105,148,45);}
.fc0_c00092{color:rgb(35,31,32);}
.fs6_c00092{font-size:41.608183px;}
.fs3_c00092{font-size:47.737061px;}
.fs2_c00092{font-size:59.136936px;}
.fs0_c00092{font-size:65.550574px;}
.fs8_c00092{font-size:71.155172px;}
.fs1_c00092{font-size:71.249972px;}
.fs7_c00092{font-size:71.330971px;}
.fs4_c00092{font-size:94.177162px;}
.fs5_c00092{font-size:97.521561px;}
.y0_c00092{bottom:0.000000px;}
.y1_c00092{bottom:0.120938px;}
.y31_c00092{bottom:3.741443px;}
.y2c_c00092{bottom:3.915883px;}
.y35_c00092{bottom:3.917833px;}
.y25_c00092{bottom:5.166883px;}
.y27_c00092{bottom:5.337883px;}
.y8_c00092{bottom:6.826644px;}
.yb_c00092{bottom:57.653410px;}
.ya_c00092{bottom:72.438724px;}
.y3_c00092{bottom:83.414470px;}
.y2_c00092{bottom:84.305329px;}
.y23_c00092{bottom:147.604294px;}
.y22_c00092{bottom:188.747778px;}
.y21_c00092{bottom:212.261018px;}
.y20_c00092{bottom:250.736753px;}
.y1e_c00092{bottom:250.740503px;}
.y1f_c00092{bottom:258.934250px;}
.y1d_c00092{bottom:289.033388px;}
.y1a_c00092{bottom:327.510472px;}
.y1c_c00092{bottom:327.511222px;}
.y1b_c00092{bottom:335.702719px;}
.y19_c00092{bottom:365.806207px;}
.y30_c00092{bottom:389.021400px;}
.y36_c00092{bottom:406.711900px;}
.y33_c00092{bottom:406.712140px;}
.y34_c00092{bottom:414.135000px;}
.y32_c00092{bottom:417.931895px;}
.y17_c00092{bottom:465.554367px;}
.y18_c00092{bottom:473.747664px;}
.y16_c00092{bottom:489.068958px;}
.y15_c00092{bottom:557.645480px;}
.y14_c00092{bottom:627.111352px;}
.y13_c00092{bottom:672.711034px;}
.y12_c00092{bottom:703.524022px;}
.y28_c00092{bottom:765.094756px;}
.y29_c00092{bottom:774.355753px;}
.y2f_c00092{bottom:780.589690px;}
.y2d_c00092{bottom:780.589750px;}
.y26_c00092{bottom:786.772800px;}
.y24_c00092{bottom:786.943800px;}
.y2b_c00092{bottom:788.194800px;}
.y2e_c00092{bottom:791.987346px;}
.y2a_c00092{bottom:791.988546px;}
.y11_c00092{bottom:860.450959px;}
.y10_c00092{bottom:928.139332px;}
.yf_c00092{bottom:974.095564px;}
.ye_c00092{bottom:1004.910051px;}
.yd_c00092{bottom:1035.547239px;}
.yc_c00092{bottom:1073.667924px;}
.y9_c00092{bottom:1094.862915px;}
.y7_c00092{bottom:1125.258112px;}
.y6_c00092{bottom:1146.098804px;}
.y5_c00092{bottom:1166.584296px;}
.y4_c00092{bottom:1187.067088px;}
.h14_c00092{height:19.769400px;}
.h12_c00092{height:20.840400px;}
.h17_c00092{height:20.842200px;}
.hb_c00092{height:22.091400px;}
.hd_c00092{height:22.262400px;}
.hf_c00092{height:37.280932px;}
.h7_c00092{height:37.374544px;}
.h6_c00092{height:41.427963px;}
.ha_c00092{height:42.772407px;}
.h18_c00092{height:47.958586px;}
.h11_c00092{height:48.077075px;}
.h2_c00092{height:58.667764px;}
.hc_c00092{height:63.475407px;}
.h16_c00092{height:63.683879px;}
.h15_c00092{height:63.755034px;}
.h3_c00092{height:63.768724px;}
.h9_c00092{height:63.839974px;}
.h13_c00092{height:63.841219px;}
.h8_c00092{height:63.911224px;}
.h10_c00092{height:63.912550px;}
.h4_c00092{height:64.053724px;}
.he_c00092{height:65.729532px;}
.h5_c00092{height:1249.830756px;}
.h1_c00092{height:1262.879062px;}
.h0_c00092{height:1263.000000px;}
.w3_c00092{width:5.875200px;}
.w4_c00092{width:5.877000px;}
.w6_c00092{width:5.880600px;}
.w5_c00092{width:5.882400px;}
.w8_c00092{width:8.901000px;}
.wb_c00092{width:8.904600px;}
.wa_c00092{width:8.908200px;}
.w9_c00092{width:9.795600px;}
.w7_c00092{width:9.799200px;}
.w2_c00092{width:883.195846px;}
.w1_c00092{width:892.414744px;}
.w0_c00092{width:892.500000px;}
.x0_c00092{left:0.000000px;}
.x7_c00092{left:1.541954px;}
.x8_c00092{left:112.753050px;}
.x2_c00092{left:126.215172px;}
.xb_c00092{left:139.473688px;}
.x4_c00092{left:252.504495px;}
.xd_c00092{left:255.965943px;}
.x3_c00092{left:270.140236px;}
.x22_c00092{left:289.559165px;}
.x20_c00092{left:307.014721px;}
.x14_c00092{left:322.344000px;}
.x12_c00092{left:326.321915px;}
.x9_c00092{left:358.736902px;}
.x6_c00092{left:374.872776px;}
.xa_c00092{left:381.006068px;}
.x13_c00092{left:386.469000px;}
.x1f_c00092{left:394.484400px;}
.x10_c00092{left:397.214887px;}
.x11_c00092{left:403.270384px;}
.xc_c00092{left:407.729967px;}
.x15_c00092{left:413.542800px;}
.x5_c00092{left:420.296029px;}
.x18_c00092{left:431.001000px;}
.x26_c00092{left:433.674000px;}
.x16_c00092{left:435.630600px;}
.x23_c00092{left:444.002400px;}
.x1d_c00092{left:449.688843px;}
.x25_c00092{left:455.581800px;}
.x1_c00092{left:458.594160px;}
.x1b_c00092{left:461.445659px;}
.x24_c00092{left:467.145657px;}
.x21_c00092{left:474.627872px;}
.x1a_c00092{left:483.354650px;}
.x1e_c00092{left:504.208800px;}
.x1c_c00092{left:517.729366px;}
.x17_c00092{left:535.559400px;}
.x19_c00092{left:540.365400px;}
.xe_c00092{left:555.035824px;}
.xf_c00092{left:561.088321px;}
@media print{
.v1_c00092{vertical-align:-55.097578pt;}
.v0_c00092{vertical-align:0.000000pt;}
.ls4_c00092{letter-spacing:0.000000pt;}
.ls2_c00092{letter-spacing:0.019787pt;}
.ls1_c00092{letter-spacing:0.214533pt;}
.ls0_c00092{letter-spacing:44.777849pt;}
.ls3_c00092{letter-spacing:368.215391pt;}
.ws3_c00092{word-spacing:-15.851327pt;}
.ws1_c00092{word-spacing:-15.833327pt;}
.ws4_c00092{word-spacing:-15.812260pt;}
.ws0_c00092{word-spacing:-14.566794pt;}
.ws5_c00092{word-spacing:0.000000pt;}
.ws2_c00092{word-spacing:454.815422pt;}
._b_c00092{margin-left:-340.414923pt;}
._8_c00092{margin-left:-231.812190pt;}
._9_c00092{margin-left:-204.704718pt;}
._a_c00092{margin-left:-187.664584pt;}
._7_c00092{margin-left:-145.140742pt;}
._4_c00092{margin-left:-138.817011pt;}
._6_c00092{margin-left:-128.519431pt;}
._5_c00092{margin-left:-123.149127pt;}
._d_c00092{margin-left:-116.736559pt;}
._c_c00092{margin-left:-108.939156pt;}
._0_c00092{margin-left:-1.222774pt;}
._1_c00092{width:0.938922pt;}
._2_c00092{width:1.954301pt;}
._3_c00092{width:11.827240pt;}
.fs6_c00092{font-size:36.985052pt;}
.fs3_c00092{font-size:42.432943pt;}
.fs2_c00092{font-size:52.566166pt;}
.fs0_c00092{font-size:58.267177pt;}
.fs8_c00092{font-size:63.249041pt;}
.fs1_c00092{font-size:63.333308pt;}
.fs7_c00092{font-size:63.405308pt;}
.fs4_c00092{font-size:83.713033pt;}
.fs5_c00092{font-size:86.685832pt;}
.y0_c00092{bottom:0.000000pt;}
.y1_c00092{bottom:0.107500pt;}
.y31_c00092{bottom:3.325727pt;}
.y2c_c00092{bottom:3.480785pt;}
.y35_c00092{bottom:3.482518pt;}
.y25_c00092{bottom:4.592785pt;}
.y27_c00092{bottom:4.744785pt;}
.y8_c00092{bottom:6.068128pt;}
.yb_c00092{bottom:51.247476pt;}
.ya_c00092{bottom:64.389977pt;}
.y3_c00092{bottom:74.146196pt;}
.y2_c00092{bottom:74.938070pt;}
.y23_c00092{bottom:131.203817pt;}
.y22_c00092{bottom:167.775802pt;}
.y21_c00092{bottom:188.676461pt;}
.y20_c00092{bottom:222.877114pt;}
.y1e_c00092{bottom:222.880447pt;}
.y1f_c00092{bottom:230.163778pt;}
.y1d_c00092{bottom:256.918567pt;}
.y1a_c00092{bottom:291.120420pt;}
.y1c_c00092{bottom:291.121086pt;}
.y1b_c00092{bottom:298.402417pt;}
.y19_c00092{bottom:325.161073pt;}
.y30_c00092{bottom:345.796800pt;}
.y36_c00092{bottom:361.521689pt;}
.y33_c00092{bottom:361.521902pt;}
.y34_c00092{bottom:368.120000pt;}
.y32_c00092{bottom:371.495018pt;}
.y17_c00092{bottom:413.826104pt;}
.y18_c00092{bottom:421.109034pt;}
.y16_c00092{bottom:434.727962pt;}
.y15_c00092{bottom:495.684871pt;}
.y14_c00092{bottom:557.432313pt;}
.y13_c00092{bottom:597.965364pt;}
.y12_c00092{bottom:625.354686pt;}
.y28_c00092{bottom:680.084228pt;}
.y29_c00092{bottom:688.316225pt;}
.y2f_c00092{bottom:693.857502pt;}
.y2d_c00092{bottom:693.857556pt;}
.y26_c00092{bottom:699.353600pt;}
.y24_c00092{bottom:699.505600pt;}
.y2b_c00092{bottom:700.617600pt;}
.y2e_c00092{bottom:703.988752pt;}
.y2a_c00092{bottom:703.989818pt;}
.y11_c00092{bottom:764.845297pt;}
.y10_c00092{bottom:825.012740pt;}
.yf_c00092{bottom:865.862723pt;}
.ye_c00092{bottom:893.253379pt;}
.yd_c00092{bottom:920.486435pt;}
.yc_c00092{bottom:954.371488pt;}
.y9_c00092{bottom:973.211480pt;}
.y7_c00092{bottom:1000.229433pt;}
.y6_c00092{bottom:1018.754492pt;}
.y5_c00092{bottom:1036.963819pt;}
.y4_c00092{bottom:1055.170745pt;}
.h14_c00092{height:17.572800pt;}
.h12_c00092{height:18.524800pt;}
.h17_c00092{height:18.526400pt;}
.hb_c00092{height:19.636800pt;}
.hd_c00092{height:19.788800pt;}
.hf_c00092{height:33.138606pt;}
.h7_c00092{height:33.221817pt;}
.h6_c00092{height:36.824856pt;}
.ha_c00092{height:38.019917pt;}
.h18_c00092{height:42.629854pt;}
.h11_c00092{height:42.735178pt;}
.h2_c00092{height:52.149123pt;}
.hc_c00092{height:56.422584pt;}
.h16_c00092{height:56.607892pt;}
.h15_c00092{height:56.671141pt;}
.h3_c00092{height:56.683311pt;}
.h9_c00092{height:56.746644pt;}
.h13_c00092{height:56.747751pt;}
.h8_c00092{height:56.809977pt;}
.h10_c00092{height:56.811156pt;}
.h4_c00092{height:56.936644pt;}
.he_c00092{height:58.426251pt;}
.h5_c00092{height:1110.960672pt;}
.h1_c00092{height:1122.559167pt;}
.h0_c00092{height:1122.666667pt;}
.w3_c00092{width:5.222400pt;}
.w4_c00092{width:5.224000pt;}
.w6_c00092{width:5.227200pt;}
.w5_c00092{width:5.228800pt;}
.w8_c00092{width:7.912000pt;}
.wb_c00092{width:7.915200pt;}
.wa_c00092{width:7.918400pt;}
.w9_c00092{width:8.707200pt;}
.w7_c00092{width:8.710400pt;}
.w2_c00092{width:785.062974pt;}
.w1_c00092{width:793.257550pt;}
.w0_c00092{width:793.333333pt;}
.x0_c00092{left:0.000000pt;}
.x7_c00092{left:1.370626pt;}
.x8_c00092{left:100.224934pt;}
.x2_c00092{left:112.191264pt;}
.xb_c00092{left:123.976611pt;}
.x4_c00092{left:224.448440pt;}
.xd_c00092{left:227.525283pt;}
.x3_c00092{left:240.124654pt;}
.x22_c00092{left:257.385925pt;}
.x20_c00092{left:272.901974pt;}
.x14_c00092{left:286.528000pt;}
.x12_c00092{left:290.063924pt;}
.x9_c00092{left:318.877246pt;}
.x6_c00092{left:333.220246pt;}
.xa_c00092{left:338.672061pt;}
.x13_c00092{left:343.528000pt;}
.x1f_c00092{left:350.652800pt;}
.x10_c00092{left:353.079899pt;}
.x11_c00092{left:358.462564pt;}
.xc_c00092{left:362.426637pt;}
.x15_c00092{left:367.593600pt;}
.x5_c00092{left:373.596470pt;}
.x18_c00092{left:383.112000pt;}
.x26_c00092{left:385.488000pt;}
.x16_c00092{left:387.227200pt;}
.x23_c00092{left:394.668800pt;}
.x1d_c00092{left:399.723416pt;}
.x25_c00092{left:404.961600pt;}
.x1_c00092{left:407.639254pt;}
.x1b_c00092{left:410.173919pt;}
.x24_c00092{left:415.240584pt;}
.x21_c00092{left:421.891441pt;}
.x1a_c00092{left:429.648578pt;}
.x1e_c00092{left:448.185600pt;}
.x1c_c00092{left:460.203881pt;}
.x17_c00092{left:476.052800pt;}
.x19_c00092{left:480.324800pt;}
.xe_c00092{left:493.365177pt;}
.xf_c00092{left:498.745174pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00093;src:url('chunks/assets/font_91fd308cd518be6c87954b64.woff2')format("woff");}.ff6_c00093{font-family:ff6_c00093;line-height:1.014000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00093;src:url('chunks/assets/font_6f2a638d39f76c704084a165.woff2')format("woff");}.ff7_c00093{font-family:ff7_c00093;line-height:0.800000;font-style:normal;font-weight: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_c00093;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff8_c00093{font-family:ff8_c00093;line-height:0.865062;font-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_c00093{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls2_c00093{letter-spacing:0.000000px;}
.ls1_c00093{letter-spacing:74.158170px;}
.ls0_c00093{letter-spacing:74.166570px;}
.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;}
}
.ws1_c00093{word-spacing:-20.717884px;}
.ws0_c00093{word-spacing:-16.387643px;}
.ws2_c00093{word-spacing:0.000000px;}
._0_c00093{margin-left:-1.375620px;}
._1_c00093{width:1.056287px;}
._6_c00093{width:2.515533px;}
._7_c00093{width:3.577660px;}
._3_c00093{width:4.778361px;}
._2_c00093{width:5.818776px;}
._5_c00093{width:6.907871px;}
._4_c00093{width:15.340921px;}
.fc2_c00093{color:rgb(237,30,36);}
.fc1_c00093{color:rgb(105,148,45);}
.fc0_c00093{color:rgb(35,31,32);}
.fs3_c00093{font-size:47.737061px;}
.fs2_c00093{font-size:59.136936px;}
.fs0_c00093{font-size:65.550574px;}
.fs1_c00093{font-size:71.249972px;}
.y0_c00093{bottom:0.000000px;}
.y1_c00093{bottom:0.120938px;}
.y8_c00093{bottom:6.826644px;}
.yb_c00093{bottom:57.653410px;}
.ya_c00093{bottom:72.438724px;}
.y3_c00093{bottom:83.414470px;}
.y2_c00093{bottom:84.305329px;}
.y23_c00093{bottom:232.567260px;}
.y22_c00093{bottom:273.713744px;}
.y21_c00093{bottom:312.187978px;}
.y20_c00093{bottom:350.485063px;}
.y1f_c00093{bottom:388.956598px;}
.y1e_c00093{bottom:434.377780px;}
.y1d_c00093{bottom:465.194367px;}
.y1c_c00093{bottom:495.836505px;}
.y1b_c00093{bottom:526.647393px;}
.y1a_c00093{bottom:557.285330px;}
.y19_c00093{bottom:595.758215px;}
.y18_c00093{bottom:635.480599px;}
.y17_c00093{bottom:658.992340px;}
.y16_c00093{bottom:698.713974px;}
.y15_c00093{bottom:738.437708px;}
.y14_c00093{bottom:777.978592px;}
.y13_c00093{bottom:817.702326px;}
.y12_c00093{bottom:857.421110px;}
.y11_c00093{bottom:899.639493px;}
.yf_c00093{bottom:899.641443px;}
.y10_c00093{bottom:907.832490px;}
.ye_c00093{bottom:948.625274px;}
.yd_c00093{bottom:979.262462px;}
.yc_c00093{bottom:1046.589515px;}
.y9_c00093{bottom:1094.862915px;}
.y7_c00093{bottom:1125.258112px;}
.y6_c00093{bottom:1146.098804px;}
.y5_c00093{bottom:1166.584296px;}
.y4_c00093{bottom:1187.067088px;}
.h7_c00093{height:37.374544px;}
.hb_c00093{height:38.189649px;}
.h6_c00093{height:41.427963px;}
.h8_c00093{height:53.045832px;}
.ha_c00093{height:56.999977px;}
.h2_c00093{height:58.667764px;}
.h3_c00093{height:63.768724px;}
.h9_c00093{height:63.839974px;}
.hc_c00093{height:63.911224px;}
.h4_c00093{height:64.053724px;}
.h5_c00093{height:1249.830756px;}
.h1_c00093{height:1262.879062px;}
.h0_c00093{height:1263.000000px;}
.w2_c00093{width:883.195846px;}
.w1_c00093{width:892.414744px;}
.w0_c00093{width:892.500000px;}
.x0_c00093{left:0.000000px;}
.x7_c00093{left:1.541954px;}
.x8_c00093{left:112.753050px;}
.x2_c00093{left:126.215172px;}
.xe_c00093{left:139.469546px;}
.xf_c00093{left:166.188947px;}
.x4_c00093{left:252.504495px;}
.x3_c00093{left:270.140236px;}
.x14_c00093{left:292.123429px;}
.x11_c00093{left:322.580257px;}
.x6_c00093{left:374.872776px;}
.x9_c00093{left:393.471968px;}
.x13_c00093{left:412.174471px;}
.x12_c00093{left:414.134788px;}
.x10_c00093{left:415.204247px;}
.x5_c00093{left:420.296029px;}
.x1_c00093{left:458.594160px;}
.xa_c00093{left:515.486839px;}
.xb_c00093{left:536.150831px;}
.xc_c00093{left:558.953822px;}
.xd_c00093{left:579.433314px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls2_c00093{letter-spacing:0.000000pt;}
.ls1_c00093{letter-spacing:65.918374pt;}
.ls0_c00093{letter-spacing:65.925840pt;}
.ws1_c00093{word-spacing:-18.415897pt;}
.ws0_c00093{word-spacing:-14.566794pt;}
.ws2_c00093{word-spacing:0.000000pt;}
._0_c00093{margin-left:-1.222774pt;}
._1_c00093{width:0.938922pt;}
._6_c00093{width:2.236029pt;}
._7_c00093{width:3.180142pt;}
._3_c00093{width:4.247432pt;}
._2_c00093{width:5.172245pt;}
._5_c00093{width:6.140330pt;}
._4_c00093{width:13.636374pt;}
.fs3_c00093{font-size:42.432943pt;}
.fs2_c00093{font-size:52.566166pt;}
.fs0_c00093{font-size:58.267177pt;}
.fs1_c00093{font-size:63.333308pt;}
.y0_c00093{bottom:0.000000pt;}
.y1_c00093{bottom:0.107500pt;}
.y8_c00093{bottom:6.068128pt;}
.yb_c00093{bottom:51.247476pt;}
.ya_c00093{bottom:64.389977pt;}
.y3_c00093{bottom:74.146196pt;}
.y2_c00093{bottom:74.938070pt;}
.y23_c00093{bottom:206.726454pt;}
.y22_c00093{bottom:243.301106pt;}
.y21_c00093{bottom:277.500425pt;}
.y20_c00093{bottom:311.542278pt;}
.y1f_c00093{bottom:345.739198pt;}
.y1e_c00093{bottom:386.113582pt;}
.y1d_c00093{bottom:413.506104pt;}
.y1c_c00093{bottom:440.743560pt;}
.y1b_c00093{bottom:468.131016pt;}
.y1a_c00093{bottom:495.364738pt;}
.y19_c00093{bottom:529.562858pt;}
.y18_c00093{bottom:564.871644pt;}
.y17_c00093{bottom:585.770969pt;}
.y16_c00093{bottom:621.079088pt;}
.y15_c00093{bottom:656.389074pt;}
.y14_c00093{bottom:691.536526pt;}
.y13_c00093{bottom:726.846512pt;}
.y12_c00093{bottom:762.152098pt;}
.y11_c00093{bottom:799.679550pt;}
.yf_c00093{bottom:799.681283pt;}
.y10_c00093{bottom:806.962213pt;}
.ye_c00093{bottom:843.222466pt;}
.yd_c00093{bottom:870.455521pt;}
.yc_c00093{bottom:930.301791pt;}
.y9_c00093{bottom:973.211480pt;}
.y7_c00093{bottom:1000.229433pt;}
.y6_c00093{bottom:1018.754492pt;}
.y5_c00093{bottom:1036.963819pt;}
.y4_c00093{bottom:1055.170745pt;}
.h7_c00093{height:33.221817pt;}
.hb_c00093{height:33.946354pt;}
.h6_c00093{height:36.824856pt;}
.h8_c00093{height:47.151851pt;}
.ha_c00093{height:50.666646pt;}
.h2_c00093{height:52.149123pt;}
.h3_c00093{height:56.683311pt;}
.h9_c00093{height:56.746644pt;}
.hc_c00093{height:56.809977pt;}
.h4_c00093{height:56.936644pt;}
.h5_c00093{height:1110.960672pt;}
.h1_c00093{height:1122.559167pt;}
.h0_c00093{height:1122.666667pt;}
.w2_c00093{width:785.062974pt;}
.w1_c00093{width:793.257550pt;}
.w0_c00093{width:793.333333pt;}
.x0_c00093{left:0.000000pt;}
.x7_c00093{left:1.370626pt;}
.x8_c00093{left:100.224934pt;}
.x2_c00093{left:112.191264pt;}
.xe_c00093{left:123.972929pt;}
.xf_c00093{left:147.723509pt;}
.x4_c00093{left:224.448440pt;}
.x3_c00093{left:240.124654pt;}
.x14_c00093{left:259.665270pt;}
.x11_c00093{left:286.738006pt;}
.x6_c00093{left:333.220246pt;}
.x9_c00093{left:349.752860pt;}
.x13_c00093{left:366.377308pt;}
.x12_c00093{left:368.119811pt;}
.x10_c00093{left:369.070442pt;}
.x5_c00093{left:373.596470pt;}
.x1_c00093{left:407.639254pt;}
.xa_c00093{left:458.210524pt;}
.xb_c00093{left:476.578517pt;}
.xc_c00093{left:496.847842pt;}
.xd_c00093{left:515.051834pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00094;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00094;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00094{font-family:ff6_c00094;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00094;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff7_c00094{font-family:ff7_c00094;line-height:0.865062;font-style:normal;font-weight: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_c00094;src:url('chunks/assets/font_e930b46f28399f75a928e611.woff2')format("woff");}.ff8_c00094{font-family:ff8_c00094;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00094{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.v1_c00094{vertical-align:22.087191px;}
.ls2_c00094{letter-spacing:0.000000px;}
.ls1_c00094{letter-spacing:50.369080px;}
.ls0_c00094{letter-spacing:50.375080px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00094{word-spacing:-17.812493px;}
.ws4_c00094{word-spacing:-17.794343px;}
.ws0_c00094{word-spacing:-16.387643px;}
.ws2_c00094{word-spacing:-10.390286px;}
.ws5_c00094{word-spacing:-10.379786px;}
.ws6_c00094{word-spacing:-7.414407px;}
.ws7_c00094{word-spacing:0.000000px;}
.ws3_c00094{word-spacing:186.251872px;}
._5_c00094{margin-left:-407.058887px;}
._9_c00094{margin-left:-186.048526px;}
._6_c00094{margin-left:-140.641594px;}
._c_c00094{margin-left:-134.841126px;}
._b_c00094{margin-left:-129.210223px;}
._a_c00094{margin-left:-119.946226px;}
._3_c00094{margin-left:-89.109864px;}
._f_c00094{margin-left:-80.417427px;}
._7_c00094{margin-left:-53.686239px;}
._4_c00094{margin-left:-51.990669px;}
._8_c00094{margin-left:-33.204444px;}
._e_c00094{margin-left:-24.525109px;}
._d_c00094{margin-left:-22.671863px;}
._0_c00094{margin-left:-1.375620px;}
._1_c00094{width:1.056287px;}
._2_c00094{width:196.064959px;}
.fc1_c00094{color:rgb(105,148,45);}
.fc0_c00094{color:rgb(35,31,32);}
.fs7_c00094{font-size:29.657628px;}
.fs6_c00094{font-size:41.519143px;}
.fs4_c00094{font-size:41.561143px;}
.fs2_c00094{font-size:59.136936px;}
.fs0_c00094{font-size:65.550574px;}
.fs5_c00094{font-size:71.177372px;}
.fs1_c00094{font-size:71.249972px;}
.fs3_c00094{font-size:106.873757px;}
.y0_c00094{bottom:0.000000px;}
.y1_c00094{bottom:0.120938px;}
.y22_c00094{bottom:4.988730px;}
.y8_c00094{bottom:6.826644px;}
.yb_c00094{bottom:57.653410px;}
.ya_c00094{bottom:72.438724px;}
.y3_c00094{bottom:83.414470px;}
.y2_c00094{bottom:84.305329px;}
.y1e_c00094{bottom:146.358095px;}
.y1d_c00094{bottom:184.832329px;}
.y1c_c00094{bottom:223.485214px;}
.y1b_c00094{bottom:261.958098px;}
.y1a_c00094{bottom:300.435933px;}
.y19_c00094{bottom:338.730168px;}
.y18_c00094{bottom:377.205902px;}
.y31_c00094{bottom:404.749901px;}
.y33_c00094{bottom:405.639250px;}
.y2a_c00094{bottom:418.465895px;}
.y2c_c00094{bottom:419.359565px;}
.y37_c00094{bottom:419.359895px;}
.y2d_c00094{bottom:429.328891px;}
.y36_c00094{bottom:429.336391px;}
.y32_c00094{bottom:429.508291px;}
.y2b_c00094{bottom:429.509176px;}
.y34_c00094{bottom:430.399140px;}
.y2f_c00094{bottom:433.963889px;}
.y2e_c00094{bottom:445.360884px;}
.y35_c00094{bottom:445.368384px;}
.y30_c00094{bottom:449.996482px;}
.y17_c00094{bottom:476.776763px;}
.y16_c00094{bottom:530.037691px;}
.y15_c00094{bottom:568.509226px;}
.y14_c00094{bottom:606.806311px;}
.y21_c00094{bottom:670.455000px;}
.y28_c00094{bottom:674.782343px;}
.y26_c00094{bottom:678.881541px;}
.y1f_c00094{bottom:690.344577px;}
.y25_c00094{bottom:691.528486px;}
.y27_c00094{bottom:695.981534px;}
.y23_c00094{bottom:697.050284px;}
.y20_c00094{bottom:701.743643px;}
.y29_c00094{bottom:713.082277px;}
.y24_c00094{bottom:725.194772px;}
.y13_c00094{bottom:762.836248px;}
.y12_c00094{bottom:816.099427px;}
.y11_c00094{bottom:854.573661px;}
.y10_c00094{bottom:892.869396px;}
.yf_c00094{bottom:931.346481px;}
.ye_c00094{bottom:969.281616px;}
.yd_c00094{bottom:1018.445446px;}
.yc_c00094{bottom:1074.024924px;}
.y9_c00094{bottom:1094.862915px;}
.y7_c00094{bottom:1125.258112px;}
.y6_c00094{bottom:1146.098804px;}
.y5_c00094{bottom:1166.584296px;}
.y4_c00094{bottom:1187.067088px;}
.h13_c00094{height:26.573235px;}
.h16_c00094{height:27.983903px;}
.hb_c00094{height:28.855800px;}
.h15_c00094{height:37.159633px;}
.h12_c00094{height:37.201152px;}
.hd_c00094{height:37.238784px;}
.h7_c00094{height:37.374544px;}
.h6_c00094{height:41.427963px;}
.h17_c00094{height:47.973548px;}
.h10_c00094{height:48.022481px;}
.h8_c00094{height:53.164106px;}
.h2_c00094{height:58.667764px;}
.h14_c00094{height:63.703748px;}
.h3_c00094{height:63.768724px;}
.h11_c00094{height:63.774925px;}
.h9_c00094{height:63.839974px;}
.ha_c00094{height:63.911224px;}
.h4_c00094{height:64.053724px;}
.hf_c00094{height:65.977474px;}
.he_c00094{height:70.109672px;}
.hc_c00094{height:95.652013px;}
.h5_c00094{height:1249.830756px;}
.h1_c00094{height:1262.879062px;}
.h0_c00094{height:1263.000000px;}
.w3_c00094{width:15.494400px;}
.w2_c00094{width:883.195846px;}
.w1_c00094{width:892.414744px;}
.w0_c00094{width:892.500000px;}
.x0_c00094{left:0.000000px;}
.x7_c00094{left:1.541954px;}
.x8_c00094{left:112.753050px;}
.x2_c00094{left:126.215172px;}
.xb_c00094{left:139.471103px;}
.x4_c00094{left:252.504495px;}
.x3_c00094{left:270.140236px;}
.x9_c00094{left:297.823426px;}
.x10_c00094{left:320.088336px;}
.xd_c00094{left:358.743192px;}
.xc_c00094{left:361.592956px;}
.x17_c00094{left:369.708178px;}
.xa_c00094{left:372.991231px;}
.x6_c00094{left:374.872776px;}
.x16_c00094{left:381.290048px;}
.x11_c00094{left:396.622800px;}
.x22_c00094{left:401.240183px;}
.xf_c00094{left:407.726462px;}
.x1a_c00094{left:415.131131px;}
.x5_c00094{left:420.296029px;}
.x14_c00094{left:421.367203px;}
.x1f_c00094{left:423.503174px;}
.x20_c00094{left:424.928408px;}
.x19_c00094{left:431.341655px;}
.x15_c00094{left:433.832388px;}
.x18_c00094{left:441.672667px;}
.x1c_c00094{left:449.154684px;}
.x13_c00094{left:450.222664px;}
.x1_c00094{left:458.594160px;}
.x1d_c00094{left:472.310155px;}
.x21_c00094{left:478.368652px;}
.x1b_c00094{left:483.534650px;}
.x1e_c00094{left:489.052925px;}
.x12_c00094{left:511.856139px;}
.xe_c00094{left:514.066340px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.v1_c00094{vertical-align:19.633059pt;}
.ls2_c00094{letter-spacing:0.000000pt;}
.ls1_c00094{letter-spacing:44.772515pt;}
.ls0_c00094{letter-spacing:44.777849pt;}
.ws1_c00094{word-spacing:-15.833327pt;}
.ws4_c00094{word-spacing:-15.817194pt;}
.ws0_c00094{word-spacing:-14.566794pt;}
.ws2_c00094{word-spacing:-9.235810pt;}
.ws5_c00094{word-spacing:-9.226476pt;}
.ws6_c00094{word-spacing:-6.590584pt;}
.ws7_c00094{word-spacing:0.000000pt;}
.ws3_c00094{word-spacing:165.557220pt;}
._5_c00094{margin-left:-361.830122pt;}
._9_c00094{margin-left:-165.376467pt;}
._6_c00094{margin-left:-125.014750pt;}
._c_c00094{margin-left:-119.858779pt;}
._b_c00094{margin-left:-114.853531pt;}
._a_c00094{margin-left:-106.618868pt;}
._3_c00094{margin-left:-79.208768pt;}
._f_c00094{margin-left:-71.482158pt;}
._7_c00094{margin-left:-47.721101pt;}
._4_c00094{margin-left:-46.213928pt;}
._8_c00094{margin-left:-29.515062pt;}
._e_c00094{margin-left:-21.800097pt;}
._d_c00094{margin-left:-20.152767pt;}
._0_c00094{margin-left:-1.222774pt;}
._1_c00094{width:0.938922pt;}
._2_c00094{width:174.279964pt;}
.fs7_c00094{font-size:26.362336pt;}
.fs6_c00094{font-size:36.905905pt;}
.fs4_c00094{font-size:36.943239pt;}
.fs2_c00094{font-size:52.566166pt;}
.fs0_c00094{font-size:58.267177pt;}
.fs5_c00094{font-size:63.268775pt;}
.fs1_c00094{font-size:63.333308pt;}
.fs3_c00094{font-size:94.998895pt;}
.y0_c00094{bottom:0.000000pt;}
.y1_c00094{bottom:0.107500pt;}
.y22_c00094{bottom:4.434427pt;}
.y8_c00094{bottom:6.068128pt;}
.yb_c00094{bottom:51.247476pt;}
.ya_c00094{bottom:64.389977pt;}
.y3_c00094{bottom:74.146196pt;}
.y2_c00094{bottom:74.938070pt;}
.y1e_c00094{bottom:130.096084pt;}
.y1d_c00094{bottom:164.295404pt;}
.y1c_c00094{bottom:198.653523pt;}
.y1b_c00094{bottom:232.851643pt;}
.y1a_c00094{bottom:267.054163pt;}
.y19_c00094{bottom:301.093482pt;}
.y18_c00094{bottom:335.294135pt;}
.y31_c00094{bottom:359.777689pt;}
.y33_c00094{bottom:360.568222pt;}
.y2a_c00094{bottom:371.969685pt;}
.y2c_c00094{bottom:372.764058pt;}
.y37_c00094{bottom:372.764351pt;}
.y2d_c00094{bottom:381.625681pt;}
.y36_c00094{bottom:381.632347pt;}
.y32_c00094{bottom:381.785147pt;}
.y2b_c00094{bottom:381.785934pt;}
.y34_c00094{bottom:382.577014pt;}
.y2f_c00094{bottom:385.745679pt;}
.y2e_c00094{bottom:395.876342pt;}
.y35_c00094{bottom:395.883008pt;}
.y30_c00094{bottom:399.996873pt;}
.y17_c00094{bottom:423.801567pt;}
.y16_c00094{bottom:471.144614pt;}
.y15_c00094{bottom:505.341534pt;}
.y14_c00094{bottom:539.383387pt;}
.y21_c00094{bottom:595.960000pt;}
.y28_c00094{bottom:599.806527pt;}
.y26_c00094{bottom:603.450259pt;}
.y1f_c00094{bottom:613.639624pt;}
.y25_c00094{bottom:614.691987pt;}
.y27_c00094{bottom:618.650252pt;}
.y23_c00094{bottom:619.600252pt;}
.y20_c00094{bottom:623.772127pt;}
.y29_c00094{bottom:633.850913pt;}
.y24_c00094{bottom:644.617575pt;}
.y13_c00094{bottom:678.076665pt;}
.y12_c00094{bottom:725.421713pt;}
.y11_c00094{bottom:759.621032pt;}
.y10_c00094{bottom:793.661685pt;}
.yf_c00094{bottom:827.863538pt;}
.ye_c00094{bottom:861.583658pt;}
.yd_c00094{bottom:905.284841pt;}
.yc_c00094{bottom:954.688821pt;}
.y9_c00094{bottom:973.211480pt;}
.y7_c00094{bottom:1000.229433pt;}
.y6_c00094{bottom:1018.754492pt;}
.y5_c00094{bottom:1036.963819pt;}
.y4_c00094{bottom:1055.170745pt;}
.h13_c00094{height:23.620653pt;}
.h16_c00094{height:24.874580pt;}
.hb_c00094{height:25.649600pt;}
.h15_c00094{height:33.030785pt;}
.h12_c00094{height:33.067691pt;}
.hd_c00094{height:33.101142pt;}
.h7_c00094{height:33.221817pt;}
.h6_c00094{height:36.824856pt;}
.h17_c00094{height:42.643154pt;}
.h10_c00094{height:42.686650pt;}
.h8_c00094{height:47.256983pt;}
.h2_c00094{height:52.149123pt;}
.h14_c00094{height:56.625553pt;}
.h3_c00094{height:56.683311pt;}
.h11_c00094{height:56.688822pt;}
.h9_c00094{height:56.746644pt;}
.ha_c00094{height:56.809977pt;}
.h4_c00094{height:56.936644pt;}
.hf_c00094{height:58.646643pt;}
.he_c00094{height:62.319708pt;}
.hc_c00094{height:85.024011pt;}
.h5_c00094{height:1110.960672pt;}
.h1_c00094{height:1122.559167pt;}
.h0_c00094{height:1122.666667pt;}
.w3_c00094{width:13.772800pt;}
.w2_c00094{width:785.062974pt;}
.w1_c00094{width:793.257550pt;}
.w0_c00094{width:793.333333pt;}
.x0_c00094{left:0.000000pt;}
.x7_c00094{left:1.370626pt;}
.x8_c00094{left:100.224934pt;}
.x2_c00094{left:112.191264pt;}
.xb_c00094{left:123.974314pt;}
.x4_c00094{left:224.448440pt;}
.x3_c00094{left:240.124654pt;}
.x9_c00094{left:264.731935pt;}
.x10_c00094{left:284.522965pt;}
.xd_c00094{left:318.882837pt;}
.xc_c00094{left:321.415961pt;}
.x17_c00094{left:328.629492pt;}
.xa_c00094{left:331.547761pt;}
.x6_c00094{left:333.220246pt;}
.x16_c00094{left:338.924487pt;}
.x11_c00094{left:352.553600pt;}
.x22_c00094{left:356.657941pt;}
.xf_c00094{left:362.423522pt;}
.x1a_c00094{left:369.005450pt;}
.x5_c00094{left:373.596470pt;}
.x14_c00094{left:374.548625pt;}
.x1f_c00094{left:376.447266pt;}
.x20_c00094{left:377.714140pt;}
.x19_c00094{left:383.414805pt;}
.x15_c00094{left:385.628789pt;}
.x18_c00094{left:392.597926pt;}
.x1c_c00094{left:399.248608pt;}
.x13_c00094{left:400.197923pt;}
.x1_c00094{left:407.639254pt;}
.x1d_c00094{left:419.831249pt;}
.x21_c00094{left:425.216580pt;}
.x1b_c00094{left:429.808578pt;}
.x1e_c00094{left:434.713711pt;}
.x12_c00094{left:454.983235pt;}
.xe_c00094{left:456.947858pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00095;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00095;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00095{font-family:ff6_c00095;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00095;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff7_c00095{font-family:ff7_c00095;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00095{transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.v1_c00095{vertical-align:-61.993175px;}
.v0_c00095{vertical-align:0.000000px;}
.ls4_c00095{letter-spacing:0.000000px;}
.ls2_c00095{letter-spacing:0.022260px;}
.ls1_c00095{letter-spacing:0.241350px;}
.ls0_c00095{letter-spacing:50.366680px;}
.ls3_c00095{letter-spacing:414.242315px;}
.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;}
}
.ws3_c00095{word-spacing:-17.832743px;}
.ws1_c00095{word-spacing:-17.812493px;}
.ws4_c00095{word-spacing:-17.788793px;}
.ws0_c00095{word-spacing:-16.387643px;}
.ws5_c00095{word-spacing:0.000000px;}
.ws2_c00095{word-spacing:511.667349px;}
._c_c00095{margin-left:-382.966788px;}
._9_c00095{margin-left:-260.788714px;}
._a_c00095{margin-left:-230.292808px;}
._b_c00095{margin-left:-211.122657px;}
._8_c00095{margin-left:-163.283335px;}
._5_c00095{margin-left:-156.169138px;}
._7_c00095{margin-left:-144.584360px;}
._6_c00095{margin-left:-138.542768px;}
._e_c00095{margin-left:-131.328629px;}
._d_c00095{margin-left:-122.556551px;}
._0_c00095{margin-left:-1.375620px;}
._1_c00095{width:1.056287px;}
._2_c00095{width:2.198591px;}
._3_c00095{width:13.305645px;}
._4_c00095{width:16.729106px;}
.fc1_c00095{color:rgb(105,148,45);}
.fc0_c00095{color:rgb(35,31,32);}
.fs6_c00095{font-size:41.608183px;}
.fs3_c00095{font-size:47.737061px;}
.fs2_c00095{font-size:59.136936px;}
.fs0_c00095{font-size:65.550574px;}
.fs8_c00095{font-size:71.155172px;}
.fs1_c00095{font-size:71.249972px;}
.fs7_c00095{font-size:71.330971px;}
.fs4_c00095{font-size:94.177162px;}
.fs5_c00095{font-size:97.521561px;}
.y0_c00095{bottom:0.000000px;}
.y1_c00095{bottom:0.120938px;}
.y31_c00095{bottom:3.733628px;}
.y2c_c00095{bottom:3.919168px;}
.y35_c00095{bottom:3.919317px;}
.y25_c00095{bottom:5.164768px;}
.y27_c00095{bottom:5.341168px;}
.y8_c00095{bottom:6.826644px;}
.yb_c00095{bottom:57.653410px;}
.ya_c00095{bottom:72.438724px;}
.y3_c00095{bottom:83.414470px;}
.y2_c00095{bottom:84.305329px;}
.y22_c00095{bottom:171.829285px;}
.y23_c00095{bottom:180.025281px;}
.y21_c00095{bottom:219.920315px;}
.y20_c00095{bottom:250.737503px;}
.y1d_c00095{bottom:289.032638px;}
.y1f_c00095{bottom:289.033238px;}
.y1e_c00095{bottom:297.227734px;}
.y1c_c00095{bottom:327.508972px;}
.y1b_c00095{bottom:365.983207px;}
.y19_c00095{bottom:365.985457px;}
.y1a_c00095{bottom:374.177704px;}
.y18_c00095{bottom:404.281192px;}
.y30_c00095{bottom:427.498200px;}
.y33_c00095{bottom:445.187919px;}
.y36_c00095{bottom:445.188384px;}
.y34_c00095{bottom:452.610000px;}
.y32_c00095{bottom:456.408380px;}
.y16_c00095{bottom:504.030702px;}
.y17_c00095{bottom:512.224148px;}
.y15_c00095{bottom:527.542442px;}
.y14_c00095{bottom:596.120315px;}
.y13_c00095{bottom:665.586187px;}
.y12_c00095{bottom:711.185869px;}
.y11_c00095{bottom:741.825307px;}
.y28_c00095{bottom:803.568241px;}
.y29_c00095{bottom:812.832237px;}
.y2d_c00095{bottom:819.066235px;}
.y2f_c00095{bottom:819.066265px;}
.y26_c00095{bottom:825.246000px;}
.y24_c00095{bottom:825.422400px;}
.y2b_c00095{bottom:826.668000px;}
.y2a_c00095{bottom:830.462030px;}
.y2e_c00095{bottom:830.465330px;}
.y10_c00095{bottom:898.929244px;}
.yf_c00095{bottom:966.616267px;}
.ye_c00095{bottom:1012.568298px;}
.yd_c00095{bottom:1043.206236px;}
.yc_c00095{bottom:1074.024924px;}
.y9_c00095{bottom:1094.862915px;}
.y7_c00095{bottom:1125.258112px;}
.y6_c00095{bottom:1146.098804px;}
.y5_c00095{bottom:1166.584296px;}
.y4_c00095{bottom:1187.067088px;}
.h15_c00095{height:19.765800px;}
.h13_c00095{height:20.840400px;}
.hc_c00095{height:22.086000px;}
.he_c00095{height:22.262400px;}
.h10_c00095{height:37.280932px;}
.h7_c00095{height:37.374544px;}
.h6_c00095{height:41.427963px;}
.ha_c00095{height:42.772407px;}
.hb_c00095{height:42.820144px;}
.h18_c00095{height:47.958586px;}
.h12_c00095{height:48.077075px;}
.h2_c00095{height:58.667764px;}
.hd_c00095{height:63.475407px;}
.h17_c00095{height:63.683879px;}
.h16_c00095{height:63.755034px;}
.h3_c00095{height:63.768724px;}
.h8_c00095{height:63.839974px;}
.h14_c00095{height:63.841219px;}
.h9_c00095{height:63.911224px;}
.h11_c00095{height:63.912550px;}
.h4_c00095{height:64.053724px;}
.hf_c00095{height:65.729532px;}
.h5_c00095{height:1249.830756px;}
.h1_c00095{height:1262.879062px;}
.h0_c00095{height:1263.000000px;}
.w3_c00095{width:5.875200px;}
.w4_c00095{width:5.877000px;}
.w6_c00095{width:5.880600px;}
.w5_c00095{width:5.882400px;}
.w8_c00095{width:8.901000px;}
.wb_c00095{width:8.904600px;}
.wa_c00095{width:8.908200px;}
.w9_c00095{width:9.795600px;}
.w7_c00095{width:9.799200px;}
.w2_c00095{width:883.195846px;}
.w1_c00095{width:892.414744px;}
.w0_c00095{width:892.500000px;}
.x0_c00095{left:0.000000px;}
.x7_c00095{left:1.541954px;}
.x8_c00095{left:112.753050px;}
.x2_c00095{left:126.215172px;}
.xa_c00095{left:139.470053px;}
.x4_c00095{left:252.504495px;}
.xc_c00095{left:255.965943px;}
.x3_c00095{left:270.140236px;}
.x23_c00095{left:289.559165px;}
.x21_c00095{left:307.014721px;}
.x15_c00095{left:322.344000px;}
.x11_c00095{left:327.925414px;}
.x6_c00095{left:374.872776px;}
.x9_c00095{left:381.008430px;}
.x14_c00095{left:386.469000px;}
.x20_c00095{left:394.484400px;}
.xf_c00095{left:397.214887px;}
.x10_c00095{left:403.270384px;}
.xb_c00095{left:407.721236px;}
.x16_c00095{left:413.542800px;}
.x5_c00095{left:420.296029px;}
.x19_c00095{left:431.001000px;}
.x27_c00095{left:433.674000px;}
.x17_c00095{left:435.630600px;}
.x24_c00095{left:444.002400px;}
.x1e_c00095{left:449.688843px;}
.x26_c00095{left:455.581800px;}
.x1_c00095{left:458.594160px;}
.x1c_c00095{left:461.445659px;}
.x25_c00095{left:467.145657px;}
.x22_c00095{left:474.627872px;}
.x1b_c00095{left:483.354650px;}
.x1f_c00095{left:504.208800px;}
.x1d_c00095{left:517.729366px;}
.x12_c00095{left:519.230838px;}
.x13_c00095{left:525.290835px;}
.x18_c00095{left:535.559400px;}
.x1a_c00095{left:540.365400px;}
.xd_c00095{left:555.035824px;}
.xe_c00095{left:561.088321px;}
@media print{
.v1_c00095{vertical-align:-55.105045pt;}
.v0_c00095{vertical-align:0.000000pt;}
.ls4_c00095{letter-spacing:0.000000pt;}
.ls2_c00095{letter-spacing:0.019787pt;}
.ls1_c00095{letter-spacing:0.214533pt;}
.ls0_c00095{letter-spacing:44.770382pt;}
.ls3_c00095{letter-spacing:368.215391pt;}
.ws3_c00095{word-spacing:-15.851327pt;}
.ws1_c00095{word-spacing:-15.833327pt;}
.ws4_c00095{word-spacing:-15.812260pt;}
.ws0_c00095{word-spacing:-14.566794pt;}
.ws5_c00095{word-spacing:0.000000pt;}
.ws2_c00095{word-spacing:454.815422pt;}
._c_c00095{margin-left:-340.414923pt;}
._9_c00095{margin-left:-231.812190pt;}
._a_c00095{margin-left:-204.704718pt;}
._b_c00095{margin-left:-187.664584pt;}
._8_c00095{margin-left:-145.140742pt;}
._5_c00095{margin-left:-138.817011pt;}
._7_c00095{margin-left:-128.519431pt;}
._6_c00095{margin-left:-123.149127pt;}
._e_c00095{margin-left:-116.736559pt;}
._d_c00095{margin-left:-108.939156pt;}
._0_c00095{margin-left:-1.222774pt;}
._1_c00095{width:0.938922pt;}
._2_c00095{width:1.954303pt;}
._3_c00095{width:11.827240pt;}
._4_c00095{width:14.870317pt;}
.fs6_c00095{font-size:36.985052pt;}
.fs3_c00095{font-size:42.432943pt;}
.fs2_c00095{font-size:52.566166pt;}
.fs0_c00095{font-size:58.267177pt;}
.fs8_c00095{font-size:63.249041pt;}
.fs1_c00095{font-size:63.333308pt;}
.fs7_c00095{font-size:63.405308pt;}
.fs4_c00095{font-size:83.713033pt;}
.fs5_c00095{font-size:86.685832pt;}
.y0_c00095{bottom:0.000000pt;}
.y1_c00095{bottom:0.107500pt;}
.y31_c00095{bottom:3.318780pt;}
.y2c_c00095{bottom:3.483705pt;}
.y35_c00095{bottom:3.483838pt;}
.y25_c00095{bottom:4.590905pt;}
.y27_c00095{bottom:4.747705pt;}
.y8_c00095{bottom:6.068128pt;}
.yb_c00095{bottom:51.247476pt;}
.ya_c00095{bottom:64.389977pt;}
.y3_c00095{bottom:74.146196pt;}
.y2_c00095{bottom:74.938070pt;}
.y22_c00095{bottom:152.737142pt;}
.y23_c00095{bottom:160.022472pt;}
.y21_c00095{bottom:195.484725pt;}
.y20_c00095{bottom:222.877780pt;}
.y1d_c00095{bottom:256.917900pt;}
.y1f_c00095{bottom:256.918433pt;}
.y1e_c00095{bottom:264.202431pt;}
.y1c_c00095{bottom:291.119086pt;}
.y1b_c00095{bottom:325.318406pt;}
.y19_c00095{bottom:325.320406pt;}
.y1a_c00095{bottom:332.602403pt;}
.y18_c00095{bottom:359.361059pt;}
.y30_c00095{bottom:379.998400pt;}
.y33_c00095{bottom:395.722595pt;}
.y36_c00095{bottom:395.723008pt;}
.y34_c00095{bottom:402.320000pt;}
.y32_c00095{bottom:405.696338pt;}
.y16_c00095{bottom:448.027290pt;}
.y17_c00095{bottom:455.310354pt;}
.y15_c00095{bottom:468.926615pt;}
.y14_c00095{bottom:529.884724pt;}
.y13_c00095{bottom:591.632166pt;}
.y12_c00095{bottom:632.165217pt;}
.y11_c00095{bottom:659.400272pt;}
.y28_c00095{bottom:714.282881pt;}
.y29_c00095{bottom:722.517544pt;}
.y2d_c00095{bottom:728.058875pt;}
.y2f_c00095{bottom:728.058902pt;}
.y26_c00095{bottom:733.552000pt;}
.y24_c00095{bottom:733.708800pt;}
.y2b_c00095{bottom:734.816000pt;}
.y2a_c00095{bottom:738.188471pt;}
.y2e_c00095{bottom:738.191405pt;}
.y10_c00095{bottom:799.048217pt;}
.yf_c00095{bottom:859.214459pt;}
.ye_c00095{bottom:900.060710pt;}
.yd_c00095{bottom:927.294432pt;}
.yc_c00095{bottom:954.688821pt;}
.y9_c00095{bottom:973.211480pt;}
.y7_c00095{bottom:1000.229433pt;}
.y6_c00095{bottom:1018.754492pt;}
.y5_c00095{bottom:1036.963819pt;}
.y4_c00095{bottom:1055.170745pt;}
.h15_c00095{height:17.569600pt;}
.h13_c00095{height:18.524800pt;}
.hc_c00095{height:19.632000pt;}
.he_c00095{height:19.788800pt;}
.h10_c00095{height:33.138606pt;}
.h7_c00095{height:33.221817pt;}
.h6_c00095{height:36.824856pt;}
.ha_c00095{height:38.019917pt;}
.hb_c00095{height:38.062350pt;}
.h18_c00095{height:42.629854pt;}
.h12_c00095{height:42.735178pt;}
.h2_c00095{height:52.149123pt;}
.hd_c00095{height:56.422584pt;}
.h17_c00095{height:56.607892pt;}
.h16_c00095{height:56.671141pt;}
.h3_c00095{height:56.683311pt;}
.h8_c00095{height:56.746644pt;}
.h14_c00095{height:56.747751pt;}
.h9_c00095{height:56.809977pt;}
.h11_c00095{height:56.811156pt;}
.h4_c00095{height:56.936644pt;}
.hf_c00095{height:58.426251pt;}
.h5_c00095{height:1110.960672pt;}
.h1_c00095{height:1122.559167pt;}
.h0_c00095{height:1122.666667pt;}
.w3_c00095{width:5.222400pt;}
.w4_c00095{width:5.224000pt;}
.w6_c00095{width:5.227200pt;}
.w5_c00095{width:5.228800pt;}
.w8_c00095{width:7.912000pt;}
.wb_c00095{width:7.915200pt;}
.wa_c00095{width:7.918400pt;}
.w9_c00095{width:8.707200pt;}
.w7_c00095{width:8.710400pt;}
.w2_c00095{width:785.062974pt;}
.w1_c00095{width:793.257550pt;}
.w0_c00095{width:793.333333pt;}
.x0_c00095{left:0.000000pt;}
.x7_c00095{left:1.370626pt;}
.x8_c00095{left:100.224934pt;}
.x2_c00095{left:112.191264pt;}
.xa_c00095{left:123.973381pt;}
.x4_c00095{left:224.448440pt;}
.xc_c00095{left:227.525283pt;}
.x3_c00095{left:240.124654pt;}
.x23_c00095{left:257.385925pt;}
.x21_c00095{left:272.901974pt;}
.x15_c00095{left:286.528000pt;}
.x11_c00095{left:291.489257pt;}
.x6_c00095{left:333.220246pt;}
.x9_c00095{left:338.674160pt;}
.x14_c00095{left:343.528000pt;}
.x20_c00095{left:350.652800pt;}
.xf_c00095{left:353.079899pt;}
.x10_c00095{left:358.462564pt;}
.xb_c00095{left:362.418876pt;}
.x16_c00095{left:367.593600pt;}
.x5_c00095{left:373.596470pt;}
.x19_c00095{left:383.112000pt;}
.x27_c00095{left:385.488000pt;}
.x17_c00095{left:387.227200pt;}
.x24_c00095{left:394.668800pt;}
.x1e_c00095{left:399.723416pt;}
.x26_c00095{left:404.961600pt;}
.x1_c00095{left:407.639254pt;}
.x1c_c00095{left:410.173919pt;}
.x25_c00095{left:415.240584pt;}
.x22_c00095{left:421.891441pt;}
.x1b_c00095{left:429.648578pt;}
.x1f_c00095{left:448.185600pt;}
.x1d_c00095{left:460.203881pt;}
.x12_c00095{left:461.538523pt;}
.x13_c00095{left:466.925187pt;}
.x18_c00095{left:476.052800pt;}
.x1a_c00095{left:480.324800pt;}
.xd_c00095{left:493.365177pt;}
.xe_c00095{left:498.745174pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00096;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00096;src:url('chunks/assets/font_91fd308cd518be6c87954b64.woff2')format("woff");}.ff6_c00096{font-family:ff6_c00096;line-height:1.014000;font-style:normal;font-weight: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_c00096;src:url('chunks/assets/font_6f2a638d39f76c704084a165.woff2')format("woff");}.ff7_c00096{font-family:ff7_c00096;line-height:0.800000;font-style:normal;font-weight: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_c00096;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff8_c00096{font-family:ff8_c00096;line-height:0.865062;font-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_c00096{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00096{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls2_c00096{letter-spacing:0.000000px;}
.ls1_c00096{letter-spacing:74.158170px;}
.ls0_c00096{letter-spacing:74.166570px;}
.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:-20.717884px;}
.ws0_c00096{word-spacing:-16.387643px;}
.ws2_c00096{word-spacing:0.000000px;}
._0_c00096{margin-left:-1.375620px;}
._1_c00096{width:1.056287px;}
._3_c00096{width:4.778361px;}
._2_c00096{width:5.818776px;}
._5_c00096{width:6.907871px;}
._4_c00096{width:15.340921px;}
.fc2_c00096{color:rgb(237,30,36);}
.fc1_c00096{color:rgb(105,148,45);}
.fc0_c00096{color:rgb(35,31,32);}
.fs3_c00096{font-size:47.737061px;}
.fs2_c00096{font-size:59.136936px;}
.fs0_c00096{font-size:65.550574px;}
.fs1_c00096{font-size:71.249972px;}
.y0_c00096{bottom:0.000000px;}
.y1_c00096{bottom:0.120938px;}
.y8_c00096{bottom:6.826644px;}
.yb_c00096{bottom:57.653410px;}
.ya_c00096{bottom:72.438724px;}
.y3_c00096{bottom:83.414470px;}
.y2_c00096{bottom:84.305329px;}
.y22_c00096{bottom:210.125769px;}
.y21_c00096{bottom:289.571587px;}
.y20_c00096{bottom:328.043122px;}
.y1f_c00096{bottom:366.340207px;}
.y1e_c00096{bottom:404.814441px;}
.y1d_c00096{bottom:450.413523px;}
.y1c_c00096{bottom:481.053561px;}
.y1b_c00096{bottom:511.868649px;}
.y1a_c00096{bottom:542.505836px;}
.y19_c00096{bottom:580.978721px;}
.y18_c00096{bottom:620.521105px;}
.y17_c00096{bottom:644.211496px;}
.y16_c00096{bottom:683.934480px;}
.y15_c00096{bottom:723.476864px;}
.y14_c00096{bottom:763.197748px;}
.y13_c00096{bottom:802.918632px;}
.y12_c00096{bottom:842.463716px;}
.yf_c00096{bottom:884.675799px;}
.y11_c00096{bottom:884.679999px;}
.y10_c00096{bottom:892.871496px;}
.ye_c00096{bottom:933.661130px;}
.yd_c00096{bottom:964.476967px;}
.yc_c00096{bottom:1031.805521px;}
.y9_c00096{bottom:1094.862915px;}
.y7_c00096{bottom:1125.258112px;}
.y6_c00096{bottom:1146.098804px;}
.y5_c00096{bottom:1166.584296px;}
.y4_c00096{bottom:1187.067088px;}
.h7_c00096{height:37.374544px;}
.hb_c00096{height:38.189649px;}
.h6_c00096{height:41.427963px;}
.h8_c00096{height:53.045832px;}
.ha_c00096{height:56.999977px;}
.h2_c00096{height:58.667764px;}
.h3_c00096{height:63.768724px;}
.h9_c00096{height:63.839974px;}
.hc_c00096{height:63.911224px;}
.h4_c00096{height:64.053724px;}
.h5_c00096{height:1249.830756px;}
.h1_c00096{height:1262.879062px;}
.h0_c00096{height:1263.000000px;}
.w2_c00096{width:883.195846px;}
.w1_c00096{width:892.414744px;}
.w0_c00096{width:892.500000px;}
.x0_c00096{left:0.000000px;}
.x7_c00096{left:1.541954px;}
.x8_c00096{left:112.753050px;}
.x2_c00096{left:126.215172px;}
.xe_c00096{left:139.469546px;}
.xf_c00096{left:166.188947px;}
.x4_c00096{left:252.504495px;}
.x3_c00096{left:270.140236px;}
.x14_c00096{left:287.671431px;}
.x11_c00096{left:322.579057px;}
.x6_c00096{left:374.872776px;}
.x9_c00096{left:393.471968px;}
.x10_c00096{left:406.296581px;}
.x13_c00096{left:412.174621px;}
.x12_c00096{left:414.134938px;}
.x5_c00096{left:420.296029px;}
.x1_c00096{left:458.594160px;}
.xa_c00096{left:515.486839px;}
.xb_c00096{left:536.150831px;}
.xc_c00096{left:558.953822px;}
.xd_c00096{left:579.433314px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls2_c00096{letter-spacing:0.000000pt;}
.ls1_c00096{letter-spacing:65.918374pt;}
.ls0_c00096{letter-spacing:65.925840pt;}
.ws1_c00096{word-spacing:-18.415897pt;}
.ws0_c00096{word-spacing:-14.566794pt;}
.ws2_c00096{word-spacing:0.000000pt;}
._0_c00096{margin-left:-1.222774pt;}
._1_c00096{width:0.938922pt;}
._3_c00096{width:4.247432pt;}
._2_c00096{width:5.172245pt;}
._5_c00096{width:6.140330pt;}
._4_c00096{width:13.636374pt;}
.fs3_c00096{font-size:42.432943pt;}
.fs2_c00096{font-size:52.566166pt;}
.fs0_c00096{font-size:58.267177pt;}
.fs1_c00096{font-size:63.333308pt;}
.y0_c00096{bottom:0.000000pt;}
.y1_c00096{bottom:0.107500pt;}
.y8_c00096{bottom:6.068128pt;}
.yb_c00096{bottom:51.247476pt;}
.ya_c00096{bottom:64.389977pt;}
.y3_c00096{bottom:74.146196pt;}
.y2_c00096{bottom:74.938070pt;}
.y22_c00096{bottom:186.778462pt;}
.y21_c00096{bottom:257.396967pt;}
.y20_c00096{bottom:291.593886pt;}
.y1f_c00096{bottom:325.635739pt;}
.y1e_c00096{bottom:359.835059pt;}
.y1d_c00096{bottom:400.367576pt;}
.y1c_c00096{bottom:427.603165pt;}
.y1b_c00096{bottom:454.994354pt;}
.y1a_c00096{bottom:482.227410pt;}
.y19_c00096{bottom:516.425530pt;}
.y18_c00096{bottom:551.574316pt;}
.y17_c00096{bottom:572.632441pt;}
.y16_c00096{bottom:607.941760pt;}
.y15_c00096{bottom:643.090546pt;}
.y14_c00096{bottom:678.397998pt;}
.y13_c00096{bottom:713.705451pt;}
.y12_c00096{bottom:748.856637pt;}
.yf_c00096{bottom:786.378488pt;}
.y11_c00096{bottom:786.382222pt;}
.y10_c00096{bottom:793.663552pt;}
.ye_c00096{bottom:829.921004pt;}
.yd_c00096{bottom:857.312860pt;}
.yc_c00096{bottom:917.160463pt;}
.y9_c00096{bottom:973.211480pt;}
.y7_c00096{bottom:1000.229433pt;}
.y6_c00096{bottom:1018.754492pt;}
.y5_c00096{bottom:1036.963819pt;}
.y4_c00096{bottom:1055.170745pt;}
.h7_c00096{height:33.221817pt;}
.hb_c00096{height:33.946354pt;}
.h6_c00096{height:36.824856pt;}
.h8_c00096{height:47.151851pt;}
.ha_c00096{height:50.666646pt;}
.h2_c00096{height:52.149123pt;}
.h3_c00096{height:56.683311pt;}
.h9_c00096{height:56.746644pt;}
.hc_c00096{height:56.809977pt;}
.h4_c00096{height:56.936644pt;}
.h5_c00096{height:1110.960672pt;}
.h1_c00096{height:1122.559167pt;}
.h0_c00096{height:1122.666667pt;}
.w2_c00096{width:785.062974pt;}
.w1_c00096{width:793.257550pt;}
.w0_c00096{width:793.333333pt;}
.x0_c00096{left:0.000000pt;}
.x7_c00096{left:1.370626pt;}
.x8_c00096{left:100.224934pt;}
.x2_c00096{left:112.191264pt;}
.xe_c00096{left:123.972929pt;}
.xf_c00096{left:147.723509pt;}
.x4_c00096{left:224.448440pt;}
.x3_c00096{left:240.124654pt;}
.x14_c00096{left:255.707938pt;}
.x11_c00096{left:286.736940pt;}
.x6_c00096{left:333.220246pt;}
.x9_c00096{left:349.752860pt;}
.x10_c00096{left:361.152516pt;}
.x13_c00096{left:366.377441pt;}
.x12_c00096{left:368.119944pt;}
.x5_c00096{left:373.596470pt;}
.x1_c00096{left:407.639254pt;}
.xa_c00096{left:458.210524pt;}
.xb_c00096{left:476.578517pt;}
.xc_c00096{left:496.847842pt;}
.xd_c00096{left:515.051834pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00097;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00097;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00097{font-family:ff6_c00097;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00097;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff7_c00097{font-family:ff7_c00097;line-height:0.865062;font-style:normal;font-weight: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_c00097;src:url('chunks/assets/font_e930b46f28399f75a928e611.woff2')format("woff");}.ff8_c00097{font-family:ff8_c00097;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00097{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00097{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.v1_c00097{vertical-align:22.078791px;}
.ls2_c00097{letter-spacing:0.000000px;}
.ls1_c00097{letter-spacing:50.369080px;}
.ls0_c00097{letter-spacing:50.375080px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00097{word-spacing:-17.812493px;}
.ws4_c00097{word-spacing:-17.794343px;}
.ws0_c00097{word-spacing:-16.387643px;}
.ws2_c00097{word-spacing:-10.390286px;}
.ws5_c00097{word-spacing:-10.379786px;}
.ws6_c00097{word-spacing:-7.414407px;}
.ws7_c00097{word-spacing:0.000000px;}
.ws3_c00097{word-spacing:186.259075px;}
._6_c00097{margin-left:-399.921613px;}
._b_c00097{margin-left:-186.037126px;}
._7_c00097{margin-left:-140.652394px;}
._e_c00097{margin-left:-134.841126px;}
._d_c00097{margin-left:-129.210223px;}
._3_c00097{margin-left:-124.751650px;}
._4_c00097{margin-left:-123.276011px;}
._c_c00097{margin-left:-119.946226px;}
._11_c00097{margin-left:-80.417427px;}
._9_c00097{margin-left:-54.407018px;}
._8_c00097{margin-left:-52.022454px;}
._5_c00097{margin-left:-47.042509px;}
._a_c00097{margin-left:-32.490881px;}
._10_c00097{margin-left:-24.525109px;}
._f_c00097{margin-left:-22.671863px;}
._0_c00097{margin-left:-1.375620px;}
._1_c00097{width:1.056287px;}
._2_c00097{width:196.064959px;}
.fc1_c00097{color:rgb(105,148,45);}
.fc0_c00097{color:rgb(35,31,32);}
.fs7_c00097{font-size:29.657628px;}
.fs6_c00097{font-size:41.519143px;}
.fs4_c00097{font-size:41.561143px;}
.fs2_c00097{font-size:59.136936px;}
.fs0_c00097{font-size:65.550574px;}
.fs5_c00097{font-size:71.177372px;}
.fs1_c00097{font-size:71.249972px;}
.fs3_c00097{font-size:106.873757px;}
.y0_c00097{bottom:0.000000px;}
.y1_c00097{bottom:0.120938px;}
.y22_c00097{bottom:4.987842px;}
.y8_c00097{bottom:6.826644px;}
.yb_c00097{bottom:57.653410px;}
.ya_c00097{bottom:72.438724px;}
.y3_c00097{bottom:83.414470px;}
.y2_c00097{bottom:84.305329px;}
.y1e_c00097{bottom:116.794007px;}
.y1d_c00097{bottom:155.089741px;}
.y1c_c00097{bottom:193.921276px;}
.y1b_c00097{bottom:232.215510px;}
.y1a_c00097{bottom:270.691245px;}
.y19_c00097{bottom:308.990430px;}
.y18_c00097{bottom:347.461964px;}
.y32_c00097{bottom:375.183412px;}
.y34_c00097{bottom:376.072762px;}
.y2b_c00097{bottom:388.897907px;}
.y2d_c00097{bottom:389.788772px;}
.y38_c00097{bottom:389.790407px;}
.y37_c00097{bottom:399.762403px;}
.y2e_c00097{bottom:399.763903px;}
.y2c_c00097{bottom:399.939777px;}
.y33_c00097{bottom:399.941802px;}
.y35_c00097{bottom:400.834002px;}
.y30_c00097{bottom:404.395901px;}
.y36_c00097{bottom:415.792896px;}
.y2f_c00097{bottom:415.794396px;}
.y31_c00097{bottom:420.427894px;}
.y17_c00097{bottom:447.214324px;}
.y16_c00097{bottom:500.293903px;}
.y15_c00097{bottom:538.766788px;}
.y14_c00097{bottom:577.239672px;}
.y21_c00097{bottom:640.706400px;}
.y28_c00097{bottom:645.035704px;}
.y26_c00097{bottom:649.132803px;}
.y1f_c00097{bottom:660.596589px;}
.y25_c00097{bottom:661.782598px;}
.y27_c00097{bottom:666.232796px;}
.y23_c00097{bottom:667.302296px;}
.y20_c00097{bottom:671.995654px;}
.y2a_c00097{bottom:683.332789px;}
.y29_c00097{bottom:683.334139px;}
.y24_c00097{bottom:695.448284px;}
.y13_c00097{bottom:733.095610px;}
.y12_c00097{bottom:786.353839px;}
.y11_c00097{bottom:824.828073px;}
.y10_c00097{bottom:863.302308px;}
.yf_c00097{bottom:901.601493px;}
.ye_c00097{bottom:939.714977px;}
.yd_c00097{bottom:988.877458px;}
.yc_c00097{bottom:1044.278436px;}
.y9_c00097{bottom:1094.862915px;}
.y7_c00097{bottom:1125.258112px;}
.y6_c00097{bottom:1146.098804px;}
.y5_c00097{bottom:1166.584296px;}
.y4_c00097{bottom:1187.067088px;}
.h13_c00097{height:26.573235px;}
.h16_c00097{height:27.983903px;}
.hb_c00097{height:28.861200px;}
.h15_c00097{height:37.159633px;}
.h12_c00097{height:37.201152px;}
.hd_c00097{height:37.238784px;}
.h7_c00097{height:37.374544px;}
.h6_c00097{height:41.427963px;}
.h17_c00097{height:47.973548px;}
.h10_c00097{height:48.022481px;}
.h8_c00097{height:53.164106px;}
.h2_c00097{height:58.667764px;}
.h14_c00097{height:63.703748px;}
.h3_c00097{height:63.768724px;}
.h11_c00097{height:63.774925px;}
.h9_c00097{height:63.839974px;}
.ha_c00097{height:63.911224px;}
.h4_c00097{height:64.053724px;}
.hf_c00097{height:65.977474px;}
.he_c00097{height:70.101272px;}
.hc_c00097{height:95.652013px;}
.h5_c00097{height:1249.830756px;}
.h1_c00097{height:1262.879062px;}
.h0_c00097{height:1263.000000px;}
.w3_c00097{width:15.494400px;}
.w2_c00097{width:883.195846px;}
.w1_c00097{width:892.414744px;}
.w0_c00097{width:892.500000px;}
.x0_c00097{left:0.000000px;}
.x7_c00097{left:1.541954px;}
.x8_c00097{left:112.753050px;}
.x2_c00097{left:126.215172px;}
.xb_c00097{left:139.471103px;}
.x9_c00097{left:176.165975px;}
.x4_c00097{left:252.504495px;}
.x3_c00097{left:270.140236px;}
.x10_c00097{left:320.088745px;}
.xd_c00097{left:358.743192px;}
.xc_c00097{left:361.592956px;}
.x17_c00097{left:369.708043px;}
.xa_c00097{left:372.991231px;}
.x6_c00097{left:374.872776px;}
.x16_c00097{left:381.287800px;}
.x11_c00097{left:396.442800px;}
.x22_c00097{left:401.240183px;}
.xf_c00097{left:407.545480px;}
.x1a_c00097{left:415.131131px;}
.x5_c00097{left:420.296029px;}
.x14_c00097{left:421.367158px;}
.x1f_c00097{left:423.503174px;}
.x20_c00097{left:424.928408px;}
.x19_c00097{left:431.341655px;}
.x15_c00097{left:433.654445px;}
.x18_c00097{left:441.672667px;}
.x1c_c00097{left:449.154684px;}
.x13_c00097{left:450.222664px;}
.x1_c00097{left:458.594160px;}
.x1d_c00097{left:472.310155px;}
.x21_c00097{left:478.368652px;}
.x1b_c00097{left:483.534650px;}
.x1e_c00097{left:489.052925px;}
.x12_c00097{left:517.374637px;}
.xe_c00097{left:519.764838px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.v1_c00097{vertical-align:19.625592pt;}
.ls2_c00097{letter-spacing:0.000000pt;}
.ls1_c00097{letter-spacing:44.772515pt;}
.ls0_c00097{letter-spacing:44.777849pt;}
.ws1_c00097{word-spacing:-15.833327pt;}
.ws4_c00097{word-spacing:-15.817194pt;}
.ws0_c00097{word-spacing:-14.566794pt;}
.ws2_c00097{word-spacing:-9.235810pt;}
.ws5_c00097{word-spacing:-9.226476pt;}
.ws6_c00097{word-spacing:-6.590584pt;}
.ws7_c00097{word-spacing:0.000000pt;}
.ws3_c00097{word-spacing:165.563622pt;}
._6_c00097{margin-left:-355.485878pt;}
._b_c00097{margin-left:-165.366334pt;}
._7_c00097{margin-left:-125.024350pt;}
._e_c00097{margin-left:-119.858779pt;}
._d_c00097{margin-left:-114.853531pt;}
._3_c00097{margin-left:-110.890356pt;}
._4_c00097{margin-left:-109.578676pt;}
._c_c00097{margin-left:-106.618868pt;}
._11_c00097{margin-left:-71.482158pt;}
._9_c00097{margin-left:-48.361794pt;}
._8_c00097{margin-left:-46.242182pt;}
._5_c00097{margin-left:-41.815563pt;}
._a_c00097{margin-left:-28.880783pt;}
._10_c00097{margin-left:-21.800097pt;}
._f_c00097{margin-left:-20.152767pt;}
._0_c00097{margin-left:-1.222774pt;}
._1_c00097{width:0.938922pt;}
._2_c00097{width:174.279964pt;}
.fs7_c00097{font-size:26.362336pt;}
.fs6_c00097{font-size:36.905905pt;}
.fs4_c00097{font-size:36.943239pt;}
.fs2_c00097{font-size:52.566166pt;}
.fs0_c00097{font-size:58.267177pt;}
.fs5_c00097{font-size:63.268775pt;}
.fs1_c00097{font-size:63.333308pt;}
.fs3_c00097{font-size:94.998895pt;}
.y0_c00097{bottom:0.000000pt;}
.y1_c00097{bottom:0.107500pt;}
.y22_c00097{bottom:4.433637pt;}
.y8_c00097{bottom:6.068128pt;}
.yb_c00097{bottom:51.247476pt;}
.ya_c00097{bottom:64.389977pt;}
.y3_c00097{bottom:74.146196pt;}
.y2_c00097{bottom:74.938070pt;}
.y1e_c00097{bottom:103.816895pt;}
.y1d_c00097{bottom:137.857548pt;}
.y1c_c00097{bottom:172.374467pt;}
.y1b_c00097{bottom:206.413787pt;}
.y1a_c00097{bottom:240.614440pt;}
.y19_c00097{bottom:274.658160pt;}
.y18_c00097{bottom:308.855079pt;}
.y32_c00097{bottom:333.496367pt;}
.y34_c00097{bottom:334.286900pt;}
.y2b_c00097{bottom:345.687028pt;}
.y2d_c00097{bottom:346.478908pt;}
.y38_c00097{bottom:346.480361pt;}
.y37_c00097{bottom:355.344358pt;}
.y2e_c00097{bottom:355.345691pt;}
.y2c_c00097{bottom:355.502024pt;}
.y33_c00097{bottom:355.503824pt;}
.y35_c00097{bottom:356.296891pt;}
.y30_c00097{bottom:359.463023pt;}
.y36_c00097{bottom:369.593685pt;}
.y2f_c00097{bottom:369.595019pt;}
.y31_c00097{bottom:373.713684pt;}
.y17_c00097{bottom:397.523844pt;}
.y16_c00097{bottom:444.705692pt;}
.y15_c00097{bottom:478.903811pt;}
.y14_c00097{bottom:513.101931pt;}
.y21_c00097{bottom:569.516800pt;}
.y28_c00097{bottom:573.365071pt;}
.y26_c00097{bottom:577.006936pt;}
.y1f_c00097{bottom:587.196968pt;}
.y25_c00097{bottom:588.251198pt;}
.y27_c00097{bottom:592.206930pt;}
.y23_c00097{bottom:593.157596pt;}
.y20_c00097{bottom:597.329471pt;}
.y2a_c00097{bottom:607.406924pt;}
.y29_c00097{bottom:607.408124pt;}
.y24_c00097{bottom:618.176253pt;}
.y13_c00097{bottom:651.640542pt;}
.y12_c00097{bottom:698.981190pt;}
.y11_c00097{bottom:733.180510pt;}
.y10_c00097{bottom:767.379829pt;}
.yf_c00097{bottom:801.423549pt;}
.ye_c00097{bottom:835.302202pt;}
.yd_c00097{bottom:879.002185pt;}
.yc_c00097{bottom:928.247498pt;}
.y9_c00097{bottom:973.211480pt;}
.y7_c00097{bottom:1000.229433pt;}
.y6_c00097{bottom:1018.754492pt;}
.y5_c00097{bottom:1036.963819pt;}
.y4_c00097{bottom:1055.170745pt;}
.h13_c00097{height:23.620653pt;}
.h16_c00097{height:24.874580pt;}
.hb_c00097{height:25.654400pt;}
.h15_c00097{height:33.030785pt;}
.h12_c00097{height:33.067691pt;}
.hd_c00097{height:33.101142pt;}
.h7_c00097{height:33.221817pt;}
.h6_c00097{height:36.824856pt;}
.h17_c00097{height:42.643154pt;}
.h10_c00097{height:42.686650pt;}
.h8_c00097{height:47.256983pt;}
.h2_c00097{height:52.149123pt;}
.h14_c00097{height:56.625553pt;}
.h3_c00097{height:56.683311pt;}
.h11_c00097{height:56.688822pt;}
.h9_c00097{height:56.746644pt;}
.ha_c00097{height:56.809977pt;}
.h4_c00097{height:56.936644pt;}
.hf_c00097{height:58.646643pt;}
.he_c00097{height:62.312242pt;}
.hc_c00097{height:85.024011pt;}
.h5_c00097{height:1110.960672pt;}
.h1_c00097{height:1122.559167pt;}
.h0_c00097{height:1122.666667pt;}
.w3_c00097{width:13.772800pt;}
.w2_c00097{width:785.062974pt;}
.w1_c00097{width:793.257550pt;}
.w0_c00097{width:793.333333pt;}
.x0_c00097{left:0.000000pt;}
.x7_c00097{left:1.370626pt;}
.x8_c00097{left:100.224934pt;}
.x2_c00097{left:112.191264pt;}
.xb_c00097{left:123.974314pt;}
.x9_c00097{left:156.591978pt;}
.x4_c00097{left:224.448440pt;}
.x3_c00097{left:240.124654pt;}
.x10_c00097{left:284.523329pt;}
.xd_c00097{left:318.882837pt;}
.xc_c00097{left:321.415961pt;}
.x17_c00097{left:328.629372pt;}
.xa_c00097{left:331.547761pt;}
.x6_c00097{left:333.220246pt;}
.x16_c00097{left:338.922488pt;}
.x11_c00097{left:352.393600pt;}
.x22_c00097{left:356.657941pt;}
.xf_c00097{left:362.262649pt;}
.x1a_c00097{left:369.005450pt;}
.x5_c00097{left:373.596470pt;}
.x14_c00097{left:374.548585pt;}
.x1f_c00097{left:376.447266pt;}
.x20_c00097{left:377.714140pt;}
.x19_c00097{left:383.414805pt;}
.x15_c00097{left:385.470617pt;}
.x18_c00097{left:392.597926pt;}
.x1c_c00097{left:399.248608pt;}
.x13_c00097{left:400.197923pt;}
.x1_c00097{left:407.639254pt;}
.x1d_c00097{left:419.831249pt;}
.x21_c00097{left:425.216580pt;}
.x1b_c00097{left:429.808578pt;}
.x1e_c00097{left:434.713711pt;}
.x12_c00097{left:459.888566pt;}
.xe_c00097{left:462.013189pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00098;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00098;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00098{font-family:ff6_c00098;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00098;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff7_c00098{font-family:ff7_c00098;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00098{transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.v1_c00098{vertical-align:-61.993175px;}
.v0_c00098{vertical-align:0.000000px;}
.ls4_c00098{letter-spacing:0.000000px;}
.ls2_c00098{letter-spacing:0.022260px;}
.ls1_c00098{letter-spacing:0.241350px;}
.ls0_c00098{letter-spacing:50.366680px;}
.ls3_c00098{letter-spacing:414.242315px;}
.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;}
}
.ws3_c00098{word-spacing:-17.832743px;}
.ws1_c00098{word-spacing:-17.812493px;}
.ws4_c00098{word-spacing:-17.788793px;}
.ws0_c00098{word-spacing:-16.387643px;}
.ws5_c00098{word-spacing:0.000000px;}
.ws2_c00098{word-spacing:511.667349px;}
._f_c00098{margin-left:-382.966788px;}
._c_c00098{margin-left:-260.788714px;}
._d_c00098{margin-left:-230.292808px;}
._e_c00098{margin-left:-211.122657px;}
._b_c00098{margin-left:-163.283335px;}
._8_c00098{margin-left:-156.169138px;}
._a_c00098{margin-left:-144.584360px;}
._9_c00098{margin-left:-138.542768px;}
._11_c00098{margin-left:-131.328629px;}
._10_c00098{margin-left:-122.556551px;}
._0_c00098{margin-left:-1.375620px;}
._1_c00098{width:1.056287px;}
._2_c00098{width:2.198591px;}
._6_c00098{width:3.364134px;}
._4_c00098{width:4.571605px;}
._5_c00098{width:6.318680px;}
._3_c00098{width:13.305645px;}
._7_c00098{width:16.729106px;}
.fc1_c00098{color:rgb(105,148,45);}
.fc0_c00098{color:rgb(35,31,32);}
.fs6_c00098{font-size:41.608183px;}
.fs3_c00098{font-size:47.737061px;}
.fs2_c00098{font-size:59.136936px;}
.fs0_c00098{font-size:65.550574px;}
.fs8_c00098{font-size:71.155172px;}
.fs1_c00098{font-size:71.249972px;}
.fs7_c00098{font-size:71.330971px;}
.fs4_c00098{font-size:94.177162px;}
.fs5_c00098{font-size:97.521561px;}
.y0_c00098{bottom:0.000000px;}
.y1_c00098{bottom:0.120938px;}
.y30_c00098{bottom:3.739033px;}
.y2b_c00098{bottom:3.919168px;}
.y34_c00098{bottom:3.919323px;}
.y24_c00098{bottom:5.164768px;}
.y26_c00098{bottom:5.341168px;}
.y8_c00098{bottom:6.826644px;}
.yb_c00098{bottom:57.653410px;}
.ya_c00098{bottom:72.438724px;}
.y3_c00098{bottom:83.414470px;}
.y2_c00098{bottom:84.305329px;}
.y21_c00098{bottom:157.577790px;}
.y22_c00098{bottom:165.775287px;}
.y20_c00098{bottom:205.672571px;}
.y1f_c00098{bottom:236.490509px;}
.y1c_c00098{bottom:274.786093px;}
.y1e_c00098{bottom:274.786243px;}
.y1d_c00098{bottom:282.974740px;}
.y1b_c00098{bottom:313.261828px;}
.y18_c00098{bottom:351.733813px;}
.y1a_c00098{bottom:351.734713px;}
.y19_c00098{bottom:359.926209px;}
.y17_c00098{bottom:390.032247px;}
.y2f_c00098{bottom:413.065800px;}
.y35_c00098{bottom:430.755390px;}
.y32_c00098{bottom:430.760925px;}
.y33_c00098{bottom:438.183000px;}
.y31_c00098{bottom:441.981386px;}
.y16_c00098{bottom:496.727955px;}
.y15_c00098{bottom:527.542442px;}
.y14_c00098{bottom:596.120315px;}
.y13_c00098{bottom:665.586187px;}
.y12_c00098{bottom:711.185869px;}
.y11_c00098{bottom:741.825307px;}
.y27_c00098{bottom:803.568241px;}
.y28_c00098{bottom:812.832237px;}
.y2c_c00098{bottom:819.066235px;}
.y2e_c00098{bottom:819.066265px;}
.y25_c00098{bottom:825.246000px;}
.y23_c00098{bottom:825.422400px;}
.y2a_c00098{bottom:826.668000px;}
.y29_c00098{bottom:830.462030px;}
.y2d_c00098{bottom:830.465330px;}
.y10_c00098{bottom:898.929244px;}
.yf_c00098{bottom:966.616267px;}
.ye_c00098{bottom:1012.568298px;}
.yd_c00098{bottom:1043.206236px;}
.yc_c00098{bottom:1074.024924px;}
.y9_c00098{bottom:1094.862915px;}
.y7_c00098{bottom:1125.258112px;}
.y6_c00098{bottom:1146.098804px;}
.y5_c00098{bottom:1166.584296px;}
.y4_c00098{bottom:1187.067088px;}
.h15_c00098{height:19.776600px;}
.h13_c00098{height:20.840400px;}
.hc_c00098{height:22.086000px;}
.he_c00098{height:22.262400px;}
.h10_c00098{height:37.280932px;}
.h7_c00098{height:37.374544px;}
.h6_c00098{height:41.427963px;}
.ha_c00098{height:42.772407px;}
.hb_c00098{height:42.820144px;}
.h18_c00098{height:47.958586px;}
.h12_c00098{height:48.077075px;}
.h2_c00098{height:58.667764px;}
.hd_c00098{height:63.475407px;}
.h17_c00098{height:63.683879px;}
.h16_c00098{height:63.755034px;}
.h3_c00098{height:63.768724px;}
.h8_c00098{height:63.839974px;}
.h14_c00098{height:63.841219px;}
.h9_c00098{height:63.911224px;}
.h11_c00098{height:63.912550px;}
.h4_c00098{height:64.053724px;}
.hf_c00098{height:65.729532px;}
.h5_c00098{height:1249.830756px;}
.h1_c00098{height:1262.879062px;}
.h0_c00098{height:1263.000000px;}
.w3_c00098{width:5.875200px;}
.w4_c00098{width:5.877000px;}
.w6_c00098{width:5.880600px;}
.w5_c00098{width:5.882400px;}
.w8_c00098{width:8.901000px;}
.wb_c00098{width:8.904600px;}
.wa_c00098{width:8.908200px;}
.w9_c00098{width:9.795600px;}
.w7_c00098{width:9.799200px;}
.w2_c00098{width:883.195846px;}
.w1_c00098{width:892.414744px;}
.w0_c00098{width:892.500000px;}
.x0_c00098{left:0.000000px;}
.x7_c00098{left:1.541954px;}
.x8_c00098{left:112.753050px;}
.x2_c00098{left:126.215172px;}
.xa_c00098{left:139.470053px;}
.x4_c00098{left:252.504495px;}
.x3_c00098{left:270.140236px;}
.x23_c00098{left:289.559165px;}
.x21_c00098{left:307.014721px;}
.x15_c00098{left:322.344000px;}
.x10_c00098{left:325.609415px;}
.x13_c00098{left:326.977200px;}
.x6_c00098{left:374.872776px;}
.x9_c00098{left:381.008430px;}
.x14_c00098{left:386.469000px;}
.x20_c00098{left:394.484400px;}
.xe_c00098{left:397.214887px;}
.xf_c00098{left:403.270384px;}
.xb_c00098{left:407.721236px;}
.x16_c00098{left:413.542800px;}
.x5_c00098{left:420.296029px;}
.x19_c00098{left:431.001000px;}
.x27_c00098{left:433.674000px;}
.x17_c00098{left:435.630600px;}
.x24_c00098{left:444.002400px;}
.x1e_c00098{left:449.688843px;}
.x26_c00098{left:455.581800px;}
.x1_c00098{left:458.594160px;}
.x1c_c00098{left:461.445659px;}
.x25_c00098{left:467.145657px;}
.x22_c00098{left:474.627872px;}
.x1b_c00098{left:483.354650px;}
.x1f_c00098{left:504.208800px;}
.x1d_c00098{left:517.729366px;}
.x11_c00098{left:521.366837px;}
.x12_c00098{left:527.423835px;}
.x18_c00098{left:535.559400px;}
.x1a_c00098{left:540.365400px;}
.xc_c00098{left:555.035824px;}
.xd_c00098{left:561.088321px;}
@media print{
.v1_c00098{vertical-align:-55.105045pt;}
.v0_c00098{vertical-align:0.000000pt;}
.ls4_c00098{letter-spacing:0.000000pt;}
.ls2_c00098{letter-spacing:0.019787pt;}
.ls1_c00098{letter-spacing:0.214533pt;}
.ls0_c00098{letter-spacing:44.770382pt;}
.ls3_c00098{letter-spacing:368.215391pt;}
.ws3_c00098{word-spacing:-15.851327pt;}
.ws1_c00098{word-spacing:-15.833327pt;}
.ws4_c00098{word-spacing:-15.812260pt;}
.ws0_c00098{word-spacing:-14.566794pt;}
.ws5_c00098{word-spacing:0.000000pt;}
.ws2_c00098{word-spacing:454.815422pt;}
._f_c00098{margin-left:-340.414923pt;}
._c_c00098{margin-left:-231.812190pt;}
._d_c00098{margin-left:-204.704718pt;}
._e_c00098{margin-left:-187.664584pt;}
._b_c00098{margin-left:-145.140742pt;}
._8_c00098{margin-left:-138.817011pt;}
._a_c00098{margin-left:-128.519431pt;}
._9_c00098{margin-left:-123.149127pt;}
._11_c00098{margin-left:-116.736559pt;}
._10_c00098{margin-left:-108.939156pt;}
._0_c00098{margin-left:-1.222774pt;}
._1_c00098{width:0.938922pt;}
._2_c00098{width:1.954303pt;}
._6_c00098{width:2.990341pt;}
._4_c00098{width:4.063648pt;}
._5_c00098{width:5.616604pt;}
._3_c00098{width:11.827240pt;}
._7_c00098{width:14.870317pt;}
.fs6_c00098{font-size:36.985052pt;}
.fs3_c00098{font-size:42.432943pt;}
.fs2_c00098{font-size:52.566166pt;}
.fs0_c00098{font-size:58.267177pt;}
.fs8_c00098{font-size:63.249041pt;}
.fs1_c00098{font-size:63.333308pt;}
.fs7_c00098{font-size:63.405308pt;}
.fs4_c00098{font-size:83.713033pt;}
.fs5_c00098{font-size:86.685832pt;}
.y0_c00098{bottom:0.000000pt;}
.y1_c00098{bottom:0.107500pt;}
.y30_c00098{bottom:3.323585pt;}
.y2b_c00098{bottom:3.483705pt;}
.y34_c00098{bottom:3.483843pt;}
.y24_c00098{bottom:4.590905pt;}
.y26_c00098{bottom:4.747705pt;}
.y8_c00098{bottom:6.068128pt;}
.yb_c00098{bottom:51.247476pt;}
.ya_c00098{bottom:64.389977pt;}
.y3_c00098{bottom:74.146196pt;}
.y2_c00098{bottom:74.938070pt;}
.y21_c00098{bottom:140.069147pt;}
.y22_c00098{bottom:147.355811pt;}
.y20_c00098{bottom:182.820063pt;}
.y1f_c00098{bottom:210.213785pt;}
.y1c_c00098{bottom:244.254305pt;}
.y1e_c00098{bottom:244.254439pt;}
.y1d_c00098{bottom:251.533102pt;}
.y1b_c00098{bottom:278.454958pt;}
.y18_c00098{bottom:312.652278pt;}
.y1a_c00098{bottom:312.653078pt;}
.y19_c00098{bottom:319.934408pt;}
.y17_c00098{bottom:346.695331pt;}
.y2f_c00098{bottom:367.169600pt;}
.y35_c00098{bottom:382.893680pt;}
.y32_c00098{bottom:382.898600pt;}
.y33_c00098{bottom:389.496000pt;}
.y31_c00098{bottom:392.872343pt;}
.y16_c00098{bottom:441.535960pt;}
.y15_c00098{bottom:468.926615pt;}
.y14_c00098{bottom:529.884724pt;}
.y13_c00098{bottom:591.632166pt;}
.y12_c00098{bottom:632.165217pt;}
.y11_c00098{bottom:659.400272pt;}
.y27_c00098{bottom:714.282881pt;}
.y28_c00098{bottom:722.517544pt;}
.y2c_c00098{bottom:728.058875pt;}
.y2e_c00098{bottom:728.058902pt;}
.y25_c00098{bottom:733.552000pt;}
.y23_c00098{bottom:733.708800pt;}
.y2a_c00098{bottom:734.816000pt;}
.y29_c00098{bottom:738.188471pt;}
.y2d_c00098{bottom:738.191405pt;}
.y10_c00098{bottom:799.048217pt;}
.yf_c00098{bottom:859.214459pt;}
.ye_c00098{bottom:900.060710pt;}
.yd_c00098{bottom:927.294432pt;}
.yc_c00098{bottom:954.688821pt;}
.y9_c00098{bottom:973.211480pt;}
.y7_c00098{bottom:1000.229433pt;}
.y6_c00098{bottom:1018.754492pt;}
.y5_c00098{bottom:1036.963819pt;}
.y4_c00098{bottom:1055.170745pt;}
.h15_c00098{height:17.579200pt;}
.h13_c00098{height:18.524800pt;}
.hc_c00098{height:19.632000pt;}
.he_c00098{height:19.788800pt;}
.h10_c00098{height:33.138606pt;}
.h7_c00098{height:33.221817pt;}
.h6_c00098{height:36.824856pt;}
.ha_c00098{height:38.019917pt;}
.hb_c00098{height:38.062350pt;}
.h18_c00098{height:42.629854pt;}
.h12_c00098{height:42.735178pt;}
.h2_c00098{height:52.149123pt;}
.hd_c00098{height:56.422584pt;}
.h17_c00098{height:56.607892pt;}
.h16_c00098{height:56.671141pt;}
.h3_c00098{height:56.683311pt;}
.h8_c00098{height:56.746644pt;}
.h14_c00098{height:56.747751pt;}
.h9_c00098{height:56.809977pt;}
.h11_c00098{height:56.811156pt;}
.h4_c00098{height:56.936644pt;}
.hf_c00098{height:58.426251pt;}
.h5_c00098{height:1110.960672pt;}
.h1_c00098{height:1122.559167pt;}
.h0_c00098{height:1122.666667pt;}
.w3_c00098{width:5.222400pt;}
.w4_c00098{width:5.224000pt;}
.w6_c00098{width:5.227200pt;}
.w5_c00098{width:5.228800pt;}
.w8_c00098{width:7.912000pt;}
.wb_c00098{width:7.915200pt;}
.wa_c00098{width:7.918400pt;}
.w9_c00098{width:8.707200pt;}
.w7_c00098{width:8.710400pt;}
.w2_c00098{width:785.062974pt;}
.w1_c00098{width:793.257550pt;}
.w0_c00098{width:793.333333pt;}
.x0_c00098{left:0.000000pt;}
.x7_c00098{left:1.370626pt;}
.x8_c00098{left:100.224934pt;}
.x2_c00098{left:112.191264pt;}
.xa_c00098{left:123.973381pt;}
.x4_c00098{left:224.448440pt;}
.x3_c00098{left:240.124654pt;}
.x23_c00098{left:257.385925pt;}
.x21_c00098{left:272.901974pt;}
.x15_c00098{left:286.528000pt;}
.x10_c00098{left:289.430591pt;}
.x13_c00098{left:290.646400pt;}
.x6_c00098{left:333.220246pt;}
.x9_c00098{left:338.674160pt;}
.x14_c00098{left:343.528000pt;}
.x20_c00098{left:350.652800pt;}
.xe_c00098{left:353.079899pt;}
.xf_c00098{left:358.462564pt;}
.xb_c00098{left:362.418876pt;}
.x16_c00098{left:367.593600pt;}
.x5_c00098{left:373.596470pt;}
.x19_c00098{left:383.112000pt;}
.x27_c00098{left:385.488000pt;}
.x17_c00098{left:387.227200pt;}
.x24_c00098{left:394.668800pt;}
.x1e_c00098{left:399.723416pt;}
.x26_c00098{left:404.961600pt;}
.x1_c00098{left:407.639254pt;}
.x1c_c00098{left:410.173919pt;}
.x25_c00098{left:415.240584pt;}
.x22_c00098{left:421.891441pt;}
.x1b_c00098{left:429.648578pt;}
.x1f_c00098{left:448.185600pt;}
.x1d_c00098{left:460.203881pt;}
.x11_c00098{left:463.437188pt;}
.x12_c00098{left:468.821186pt;}
.x18_c00098{left:476.052800pt;}
.x1a_c00098{left:480.324800pt;}
.xc_c00098{left:493.365177pt;}
.xd_c00098{left:498.745174pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00099;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00099{font-family:ff5_c00099;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00099;src:url('chunks/assets/font_91fd308cd518be6c87954b64.woff2')format("woff");}.ff6_c00099{font-family:ff6_c00099;line-height:1.014000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00099;src:url('chunks/assets/font_6f2a638d39f76c704084a165.woff2')format("woff");}.ff7_c00099{font-family:ff7_c00099;line-height:0.800000;font-style:normal;font-weight: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_c00099;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff8_c00099{font-family:ff8_c00099;line-height:0.865062;font-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_c00099{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls2_c00099{letter-spacing:0.000000px;}
.ls1_c00099{letter-spacing:74.158170px;}
.ls0_c00099{letter-spacing:74.166570px;}
.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;}
}
.ws1_c00099{word-spacing:-20.717884px;}
.ws0_c00099{word-spacing:-16.387643px;}
.ws2_c00099{word-spacing:0.000000px;}
._0_c00099{margin-left:-1.375620px;}
._1_c00099{width:1.056287px;}
._3_c00099{width:4.777741px;}
._2_c00099{width:5.818776px;}
._5_c00099{width:6.907871px;}
._4_c00099{width:15.340921px;}
.fc1_c00099{color:rgb(105,148,45);}
.fc0_c00099{color:rgb(35,31,32);}
.fs3_c00099{font-size:47.737061px;}
.fs2_c00099{font-size:59.136936px;}
.fs0_c00099{font-size:65.550574px;}
.fs1_c00099{font-size:71.249972px;}
.y0_c00099{bottom:0.000000px;}
.y1_c00099{bottom:0.120938px;}
.y8_c00099{bottom:6.826644px;}
.yb_c00099{bottom:57.653410px;}
.ya_c00099{bottom:72.438724px;}
.y3_c00099{bottom:83.414470px;}
.y2_c00099{bottom:84.305329px;}
.y21_c00099{bottom:259.643899px;}
.y20_c00099{bottom:298.119634px;}
.y1f_c00099{bottom:336.592519px;}
.y1e_c00099{bottom:374.886753px;}
.y1d_c00099{bottom:420.486435px;}
.y1c_c00099{bottom:451.124373px;}
.y1b_c00099{bottom:481.938860px;}
.y1a_c00099{bottom:512.578298px;}
.y19_c00099{bottom:551.052533px;}
.y18_c00099{bottom:590.772817px;}
.y17_c00099{bottom:614.286058px;}
.y16_c00099{bottom:654.006942px;}
.y15_c00099{bottom:693.729326px;}
.y14_c00099{bottom:733.273060px;}
.y13_c00099{bottom:772.993344px;}
.y12_c00099{bottom:812.714228px;}
.y11_c00099{bottom:854.932011px;}
.yf_c00099{bottom:854.933811px;}
.y10_c00099{bottom:863.122008px;}
.ye_c00099{bottom:903.919142px;}
.yd_c00099{bottom:934.554979px;}
.yc_c00099{bottom:1016.844527px;}
.y9_c00099{bottom:1094.862915px;}
.y7_c00099{bottom:1125.258112px;}
.y6_c00099{bottom:1146.098804px;}
.y5_c00099{bottom:1166.584296px;}
.y4_c00099{bottom:1187.067088px;}
.h7_c00099{height:37.374544px;}
.hb_c00099{height:38.189649px;}
.h6_c00099{height:41.427963px;}
.h8_c00099{height:53.045832px;}
.ha_c00099{height:56.999977px;}
.h2_c00099{height:58.667764px;}
.h3_c00099{height:63.768724px;}
.h9_c00099{height:63.839974px;}
.h4_c00099{height:64.053724px;}
.h5_c00099{height:1249.830756px;}
.h1_c00099{height:1262.879062px;}
.h0_c00099{height:1263.000000px;}
.w2_c00099{width:883.195846px;}
.w1_c00099{width:892.414744px;}
.w0_c00099{width:892.500000px;}
.x0_c00099{left:0.000000px;}
.x7_c00099{left:1.541954px;}
.x8_c00099{left:112.753050px;}
.x2_c00099{left:126.215172px;}
.xe_c00099{left:139.469546px;}
.xf_c00099{left:166.188947px;}
.x4_c00099{left:252.504495px;}
.x3_c00099{left:270.140236px;}
.x11_c00099{left:322.579057px;}
.x6_c00099{left:374.872776px;}
.x9_c00099{left:393.471968px;}
.x10_c00099{left:406.296581px;}
.x13_c00099{left:407.722437px;}
.x12_c00099{left:414.134938px;}
.x5_c00099{left:420.296029px;}
.x1_c00099{left:458.594160px;}
.xa_c00099{left:515.486839px;}
.xb_c00099{left:536.150831px;}
.xc_c00099{left:558.953822px;}
.xd_c00099{left:579.433314px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls2_c00099{letter-spacing:0.000000pt;}
.ls1_c00099{letter-spacing:65.918374pt;}
.ls0_c00099{letter-spacing:65.925840pt;}
.ws1_c00099{word-spacing:-18.415897pt;}
.ws0_c00099{word-spacing:-14.566794pt;}
.ws2_c00099{word-spacing:0.000000pt;}
._0_c00099{margin-left:-1.222774pt;}
._1_c00099{width:0.938922pt;}
._3_c00099{width:4.246881pt;}
._2_c00099{width:5.172245pt;}
._5_c00099{width:6.140330pt;}
._4_c00099{width:13.636374pt;}
.fs3_c00099{font-size:42.432943pt;}
.fs2_c00099{font-size:52.566166pt;}
.fs0_c00099{font-size:58.267177pt;}
.fs1_c00099{font-size:63.333308pt;}
.y0_c00099{bottom:0.000000pt;}
.y1_c00099{bottom:0.107500pt;}
.y8_c00099{bottom:6.068128pt;}
.yb_c00099{bottom:51.247476pt;}
.ya_c00099{bottom:64.389977pt;}
.y3_c00099{bottom:74.146196pt;}
.y2_c00099{bottom:74.938070pt;}
.y21_c00099{bottom:230.794577pt;}
.y20_c00099{bottom:264.995230pt;}
.y1f_c00099{bottom:299.193350pt;}
.y1e_c00099{bottom:333.232670pt;}
.y1d_c00099{bottom:373.765720pt;}
.y1c_c00099{bottom:400.999443pt;}
.y1b_c00099{bottom:428.390098pt;}
.y1a_c00099{bottom:455.625154pt;}
.y19_c00099{bottom:489.824474pt;}
.y18_c00099{bottom:525.131393pt;}
.y17_c00099{bottom:546.032051pt;}
.y16_c00099{bottom:581.339504pt;}
.y15_c00099{bottom:616.648290pt;}
.y14_c00099{bottom:651.798276pt;}
.y13_c00099{bottom:687.105195pt;}
.y12_c00099{bottom:722.412647pt;}
.y11_c00099{bottom:759.939566pt;}
.yf_c00099{bottom:759.941166pt;}
.y10_c00099{bottom:767.219563pt;}
.ye_c00099{bottom:803.483682pt;}
.yd_c00099{bottom:830.715537pt;}
.yc_c00099{bottom:903.861801pt;}
.y9_c00099{bottom:973.211480pt;}
.y7_c00099{bottom:1000.229433pt;}
.y6_c00099{bottom:1018.754492pt;}
.y5_c00099{bottom:1036.963819pt;}
.y4_c00099{bottom:1055.170745pt;}
.h7_c00099{height:33.221817pt;}
.hb_c00099{height:33.946354pt;}
.h6_c00099{height:36.824856pt;}
.h8_c00099{height:47.151851pt;}
.ha_c00099{height:50.666646pt;}
.h2_c00099{height:52.149123pt;}
.h3_c00099{height:56.683311pt;}
.h9_c00099{height:56.746644pt;}
.h4_c00099{height:56.936644pt;}
.h5_c00099{height:1110.960672pt;}
.h1_c00099{height:1122.559167pt;}
.h0_c00099{height:1122.666667pt;}
.w2_c00099{width:785.062974pt;}
.w1_c00099{width:793.257550pt;}
.w0_c00099{width:793.333333pt;}
.x0_c00099{left:0.000000pt;}
.x7_c00099{left:1.370626pt;}
.x8_c00099{left:100.224934pt;}
.x2_c00099{left:112.191264pt;}
.xe_c00099{left:123.972929pt;}
.xf_c00099{left:147.723509pt;}
.x4_c00099{left:224.448440pt;}
.x3_c00099{left:240.124654pt;}
.x11_c00099{left:286.736940pt;}
.x6_c00099{left:333.220246pt;}
.x9_c00099{left:349.752860pt;}
.x10_c00099{left:361.152516pt;}
.x13_c00099{left:362.419944pt;}
.x12_c00099{left:368.119944pt;}
.x5_c00099{left:373.596470pt;}
.x1_c00099{left:407.639254pt;}
.xa_c00099{left:458.210524pt;}
.xb_c00099{left:476.578517pt;}
.xc_c00099{left:496.847842pt;}
.xd_c00099{left:515.051834pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00100;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00100;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00100{font-family:ff6_c00100;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00100;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff7_c00100{font-family:ff7_c00100;line-height:0.865062;font-style:normal;font-weight: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_c00100;src:url('chunks/assets/font_e930b46f28399f75a928e611.woff2')format("woff");}.ff8_c00100{font-family:ff8_c00100;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00100{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.v1_c00100{vertical-align:22.078791px;}
.ls2_c00100{letter-spacing:0.000000px;}
.ls1_c00100{letter-spacing:50.369080px;}
.ls0_c00100{letter-spacing:50.375080px;}
.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;}
}
.ws1_c00100{word-spacing:-17.812493px;}
.ws4_c00100{word-spacing:-17.794343px;}
.ws0_c00100{word-spacing:-16.387643px;}
.ws2_c00100{word-spacing:-10.390286px;}
.ws5_c00100{word-spacing:-10.379786px;}
.ws6_c00100{word-spacing:-7.414407px;}
.ws7_c00100{word-spacing:0.000000px;}
.ws3_c00100{word-spacing:186.259075px;}
._5_c00100{margin-left:-399.912369px;}
._a_c00100{margin-left:-186.037126px;}
._6_c00100{margin-left:-140.652394px;}
._d_c00100{margin-left:-134.841126px;}
._c_c00100{margin-left:-129.210223px;}
._b_c00100{margin-left:-119.946226px;}
._3_c00100{margin-left:-89.109864px;}
._10_c00100{margin-left:-80.417427px;}
._8_c00100{margin-left:-54.407018px;}
._7_c00100{margin-left:-52.022454px;}
._4_c00100{margin-left:-47.010952px;}
._9_c00100{margin-left:-32.490881px;}
._f_c00100{margin-left:-24.525109px;}
._e_c00100{margin-left:-22.671863px;}
._0_c00100{margin-left:-1.375620px;}
._1_c00100{width:1.056287px;}
._2_c00100{width:196.064959px;}
.fc1_c00100{color:rgb(105,148,45);}
.fc0_c00100{color:rgb(35,31,32);}
.fs7_c00100{font-size:29.657628px;}
.fs6_c00100{font-size:41.519143px;}
.fs4_c00100{font-size:41.561143px;}
.fs2_c00100{font-size:59.136936px;}
.fs0_c00100{font-size:65.550574px;}
.fs5_c00100{font-size:71.177372px;}
.fs1_c00100{font-size:71.249972px;}
.fs3_c00100{font-size:106.873757px;}
.y0_c00100{bottom:0.000000px;}
.y1_c00100{bottom:0.120938px;}
.y22_c00100{bottom:4.987842px;}
.y8_c00100{bottom:6.826644px;}
.yb_c00100{bottom:57.653410px;}
.ya_c00100{bottom:72.438724px;}
.y3_c00100{bottom:83.414470px;}
.y2_c00100{bottom:84.305329px;}
.y1e_c00100{bottom:116.794007px;}
.y1d_c00100{bottom:155.089741px;}
.y1c_c00100{bottom:193.921276px;}
.y1b_c00100{bottom:232.215510px;}
.y1a_c00100{bottom:270.691245px;}
.y19_c00100{bottom:308.990430px;}
.y18_c00100{bottom:347.461964px;}
.y32_c00100{bottom:375.183412px;}
.y34_c00100{bottom:376.072762px;}
.y2b_c00100{bottom:388.897907px;}
.y2d_c00100{bottom:389.788772px;}
.y38_c00100{bottom:389.790407px;}
.y37_c00100{bottom:399.762403px;}
.y2e_c00100{bottom:399.763903px;}
.y2c_c00100{bottom:399.939777px;}
.y33_c00100{bottom:399.941802px;}
.y35_c00100{bottom:400.834002px;}
.y30_c00100{bottom:404.395901px;}
.y36_c00100{bottom:415.792896px;}
.y2f_c00100{bottom:415.794396px;}
.y31_c00100{bottom:420.427894px;}
.y17_c00100{bottom:447.214324px;}
.y16_c00100{bottom:500.293903px;}
.y15_c00100{bottom:538.766788px;}
.y14_c00100{bottom:577.239672px;}
.y21_c00100{bottom:640.706400px;}
.y28_c00100{bottom:645.035704px;}
.y26_c00100{bottom:649.132803px;}
.y1f_c00100{bottom:660.596589px;}
.y25_c00100{bottom:661.782598px;}
.y27_c00100{bottom:666.232796px;}
.y23_c00100{bottom:667.302296px;}
.y20_c00100{bottom:671.995654px;}
.y2a_c00100{bottom:683.332789px;}
.y29_c00100{bottom:683.334139px;}
.y24_c00100{bottom:695.448284px;}
.y13_c00100{bottom:733.095610px;}
.y12_c00100{bottom:786.353839px;}
.y11_c00100{bottom:824.828073px;}
.y10_c00100{bottom:863.302308px;}
.yf_c00100{bottom:901.601493px;}
.ye_c00100{bottom:939.714977px;}
.yd_c00100{bottom:988.877458px;}
.yc_c00100{bottom:1044.278436px;}
.y9_c00100{bottom:1094.862915px;}
.y7_c00100{bottom:1125.258112px;}
.y6_c00100{bottom:1146.098804px;}
.y5_c00100{bottom:1166.584296px;}
.y4_c00100{bottom:1187.067088px;}
.h13_c00100{height:26.573235px;}
.h16_c00100{height:27.983903px;}
.hb_c00100{height:28.861200px;}
.h15_c00100{height:37.159633px;}
.h12_c00100{height:37.201152px;}
.hd_c00100{height:37.238784px;}
.h7_c00100{height:37.374544px;}
.h6_c00100{height:41.427963px;}
.h17_c00100{height:47.973548px;}
.h10_c00100{height:48.022481px;}
.h8_c00100{height:53.164106px;}
.h2_c00100{height:58.667764px;}
.h14_c00100{height:63.703748px;}
.h3_c00100{height:63.768724px;}
.h11_c00100{height:63.774925px;}
.h9_c00100{height:63.839974px;}
.ha_c00100{height:63.911224px;}
.h4_c00100{height:64.053724px;}
.hf_c00100{height:65.977474px;}
.he_c00100{height:70.101272px;}
.hc_c00100{height:95.652013px;}
.h5_c00100{height:1249.830756px;}
.h1_c00100{height:1262.879062px;}
.h0_c00100{height:1263.000000px;}
.w3_c00100{width:15.494400px;}
.w2_c00100{width:883.195846px;}
.w1_c00100{width:892.414744px;}
.w0_c00100{width:892.500000px;}
.x0_c00100{left:0.000000px;}
.x7_c00100{left:1.541954px;}
.x8_c00100{left:112.753050px;}
.x2_c00100{left:126.215172px;}
.xb_c00100{left:139.471103px;}
.x4_c00100{left:252.504495px;}
.x3_c00100{left:270.140236px;}
.x9_c00100{left:293.725428px;}
.x10_c00100{left:320.089673px;}
.xd_c00100{left:358.743192px;}
.xc_c00100{left:361.592956px;}
.x17_c00100{left:369.708043px;}
.xa_c00100{left:372.991231px;}
.x6_c00100{left:374.872776px;}
.x16_c00100{left:381.287800px;}
.x11_c00100{left:396.442800px;}
.x22_c00100{left:401.240183px;}
.xf_c00100{left:407.547757px;}
.x1a_c00100{left:415.131131px;}
.x5_c00100{left:420.296029px;}
.x14_c00100{left:421.367158px;}
.x1f_c00100{left:423.503174px;}
.x20_c00100{left:424.928408px;}
.x19_c00100{left:431.341655px;}
.x15_c00100{left:433.654445px;}
.x18_c00100{left:441.672667px;}
.x1c_c00100{left:449.154684px;}
.x13_c00100{left:450.222664px;}
.x1_c00100{left:458.594160px;}
.x1d_c00100{left:472.310155px;}
.x21_c00100{left:478.368652px;}
.x1b_c00100{left:483.534650px;}
.x1e_c00100{left:489.052925px;}
.x12_c00100{left:508.827640px;}
.xe_c00100{left:511.037841px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.v1_c00100{vertical-align:19.625592pt;}
.ls2_c00100{letter-spacing:0.000000pt;}
.ls1_c00100{letter-spacing:44.772515pt;}
.ls0_c00100{letter-spacing:44.777849pt;}
.ws1_c00100{word-spacing:-15.833327pt;}
.ws4_c00100{word-spacing:-15.817194pt;}
.ws0_c00100{word-spacing:-14.566794pt;}
.ws2_c00100{word-spacing:-9.235810pt;}
.ws5_c00100{word-spacing:-9.226476pt;}
.ws6_c00100{word-spacing:-6.590584pt;}
.ws7_c00100{word-spacing:0.000000pt;}
.ws3_c00100{word-spacing:165.563622pt;}
._5_c00100{margin-left:-355.477661pt;}
._a_c00100{margin-left:-165.366334pt;}
._6_c00100{margin-left:-125.024350pt;}
._d_c00100{margin-left:-119.858779pt;}
._c_c00100{margin-left:-114.853531pt;}
._b_c00100{margin-left:-106.618868pt;}
._3_c00100{margin-left:-79.208768pt;}
._10_c00100{margin-left:-71.482158pt;}
._8_c00100{margin-left:-48.361794pt;}
._7_c00100{margin-left:-46.242182pt;}
._4_c00100{margin-left:-41.787513pt;}
._9_c00100{margin-left:-28.880783pt;}
._f_c00100{margin-left:-21.800097pt;}
._e_c00100{margin-left:-20.152767pt;}
._0_c00100{margin-left:-1.222774pt;}
._1_c00100{width:0.938922pt;}
._2_c00100{width:174.279964pt;}
.fs7_c00100{font-size:26.362336pt;}
.fs6_c00100{font-size:36.905905pt;}
.fs4_c00100{font-size:36.943239pt;}
.fs2_c00100{font-size:52.566166pt;}
.fs0_c00100{font-size:58.267177pt;}
.fs5_c00100{font-size:63.268775pt;}
.fs1_c00100{font-size:63.333308pt;}
.fs3_c00100{font-size:94.998895pt;}
.y0_c00100{bottom:0.000000pt;}
.y1_c00100{bottom:0.107500pt;}
.y22_c00100{bottom:4.433637pt;}
.y8_c00100{bottom:6.068128pt;}
.yb_c00100{bottom:51.247476pt;}
.ya_c00100{bottom:64.389977pt;}
.y3_c00100{bottom:74.146196pt;}
.y2_c00100{bottom:74.938070pt;}
.y1e_c00100{bottom:103.816895pt;}
.y1d_c00100{bottom:137.857548pt;}
.y1c_c00100{bottom:172.374467pt;}
.y1b_c00100{bottom:206.413787pt;}
.y1a_c00100{bottom:240.614440pt;}
.y19_c00100{bottom:274.658160pt;}
.y18_c00100{bottom:308.855079pt;}
.y32_c00100{bottom:333.496367pt;}
.y34_c00100{bottom:334.286900pt;}
.y2b_c00100{bottom:345.687028pt;}
.y2d_c00100{bottom:346.478908pt;}
.y38_c00100{bottom:346.480361pt;}
.y37_c00100{bottom:355.344358pt;}
.y2e_c00100{bottom:355.345691pt;}
.y2c_c00100{bottom:355.502024pt;}
.y33_c00100{bottom:355.503824pt;}
.y35_c00100{bottom:356.296891pt;}
.y30_c00100{bottom:359.463023pt;}
.y36_c00100{bottom:369.593685pt;}
.y2f_c00100{bottom:369.595019pt;}
.y31_c00100{bottom:373.713684pt;}
.y17_c00100{bottom:397.523844pt;}
.y16_c00100{bottom:444.705692pt;}
.y15_c00100{bottom:478.903811pt;}
.y14_c00100{bottom:513.101931pt;}
.y21_c00100{bottom:569.516800pt;}
.y28_c00100{bottom:573.365071pt;}
.y26_c00100{bottom:577.006936pt;}
.y1f_c00100{bottom:587.196968pt;}
.y25_c00100{bottom:588.251198pt;}
.y27_c00100{bottom:592.206930pt;}
.y23_c00100{bottom:593.157596pt;}
.y20_c00100{bottom:597.329471pt;}
.y2a_c00100{bottom:607.406924pt;}
.y29_c00100{bottom:607.408124pt;}
.y24_c00100{bottom:618.176253pt;}
.y13_c00100{bottom:651.640542pt;}
.y12_c00100{bottom:698.981190pt;}
.y11_c00100{bottom:733.180510pt;}
.y10_c00100{bottom:767.379829pt;}
.yf_c00100{bottom:801.423549pt;}
.ye_c00100{bottom:835.302202pt;}
.yd_c00100{bottom:879.002185pt;}
.yc_c00100{bottom:928.247498pt;}
.y9_c00100{bottom:973.211480pt;}
.y7_c00100{bottom:1000.229433pt;}
.y6_c00100{bottom:1018.754492pt;}
.y5_c00100{bottom:1036.963819pt;}
.y4_c00100{bottom:1055.170745pt;}
.h13_c00100{height:23.620653pt;}
.h16_c00100{height:24.874580pt;}
.hb_c00100{height:25.654400pt;}
.h15_c00100{height:33.030785pt;}
.h12_c00100{height:33.067691pt;}
.hd_c00100{height:33.101142pt;}
.h7_c00100{height:33.221817pt;}
.h6_c00100{height:36.824856pt;}
.h17_c00100{height:42.643154pt;}
.h10_c00100{height:42.686650pt;}
.h8_c00100{height:47.256983pt;}
.h2_c00100{height:52.149123pt;}
.h14_c00100{height:56.625553pt;}
.h3_c00100{height:56.683311pt;}
.h11_c00100{height:56.688822pt;}
.h9_c00100{height:56.746644pt;}
.ha_c00100{height:56.809977pt;}
.h4_c00100{height:56.936644pt;}
.hf_c00100{height:58.646643pt;}
.he_c00100{height:62.312242pt;}
.hc_c00100{height:85.024011pt;}
.h5_c00100{height:1110.960672pt;}
.h1_c00100{height:1122.559167pt;}
.h0_c00100{height:1122.666667pt;}
.w3_c00100{width:13.772800pt;}
.w2_c00100{width:785.062974pt;}
.w1_c00100{width:793.257550pt;}
.w0_c00100{width:793.333333pt;}
.x0_c00100{left:0.000000pt;}
.x7_c00100{left:1.370626pt;}
.x8_c00100{left:100.224934pt;}
.x2_c00100{left:112.191264pt;}
.xb_c00100{left:123.974314pt;}
.x4_c00100{left:224.448440pt;}
.x3_c00100{left:240.124654pt;}
.x9_c00100{left:261.089269pt;}
.x10_c00100{left:284.524154pt;}
.xd_c00100{left:318.882837pt;}
.xc_c00100{left:321.415961pt;}
.x17_c00100{left:328.629372pt;}
.xa_c00100{left:331.547761pt;}
.x6_c00100{left:333.220246pt;}
.x16_c00100{left:338.922488pt;}
.x11_c00100{left:352.393600pt;}
.x22_c00100{left:356.657941pt;}
.xf_c00100{left:362.264673pt;}
.x1a_c00100{left:369.005450pt;}
.x5_c00100{left:373.596470pt;}
.x14_c00100{left:374.548585pt;}
.x1f_c00100{left:376.447266pt;}
.x20_c00100{left:377.714140pt;}
.x19_c00100{left:383.414805pt;}
.x15_c00100{left:385.470617pt;}
.x18_c00100{left:392.597926pt;}
.x1c_c00100{left:399.248608pt;}
.x13_c00100{left:400.197923pt;}
.x1_c00100{left:407.639254pt;}
.x1d_c00100{left:419.831249pt;}
.x21_c00100{left:425.216580pt;}
.x1b_c00100{left:429.808578pt;}
.x1e_c00100{left:434.713711pt;}
.x12_c00100{left:452.291236pt;}
.xe_c00100{left:454.255859pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00101;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff7_c00101{font-family:ff7_c00101;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00101{transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179835,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186226,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.v1_c00101{vertical-align:-61.993175px;}
.v0_c00101{vertical-align:0.000000px;}
.ls4_c00101{letter-spacing:0.000000px;}
.ls2_c00101{letter-spacing:0.022260px;}
.ls1_c00101{letter-spacing:0.241350px;}
.ls0_c00101{letter-spacing:50.366680px;}
.ls3_c00101{letter-spacing:414.242315px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00101{word-spacing:-17.832743px;}
.ws1_c00101{word-spacing:-17.812493px;}
.ws4_c00101{word-spacing:-17.788793px;}
.ws0_c00101{word-spacing:-16.387643px;}
.ws5_c00101{word-spacing:0.000000px;}
.ws2_c00101{word-spacing:511.667349px;}
._f_c00101{margin-left:-382.966788px;}
._c_c00101{margin-left:-260.788714px;}
._d_c00101{margin-left:-230.292808px;}
._e_c00101{margin-left:-211.122657px;}
._b_c00101{margin-left:-163.283335px;}
._8_c00101{margin-left:-156.169138px;}
._a_c00101{margin-left:-144.584360px;}
._9_c00101{margin-left:-138.542768px;}
._11_c00101{margin-left:-131.328629px;}
._10_c00101{margin-left:-122.556551px;}
._0_c00101{margin-left:-1.375620px;}
._1_c00101{width:1.056287px;}
._2_c00101{width:2.198591px;}
._6_c00101{width:3.364134px;}
._4_c00101{width:4.571605px;}
._5_c00101{width:6.318680px;}
._3_c00101{width:13.305645px;}
._7_c00101{width:16.729106px;}
.fc1_c00101{color:rgb(105,148,45);}
.fc0_c00101{color:rgb(35,31,32);}
.fs6_c00101{font-size:41.608183px;}
.fs3_c00101{font-size:47.737061px;}
.fs2_c00101{font-size:59.136936px;}
.fs0_c00101{font-size:65.550574px;}
.fs8_c00101{font-size:71.155172px;}
.fs1_c00101{font-size:71.249972px;}
.fs7_c00101{font-size:71.330971px;}
.fs4_c00101{font-size:94.177162px;}
.fs5_c00101{font-size:97.521561px;}
.y0_c00101{bottom:0.000000px;}
.y1_c00101{bottom:0.120938px;}
.y30_c00101{bottom:3.739033px;}
.y2b_c00101{bottom:3.919168px;}
.y34_c00101{bottom:3.919323px;}
.y24_c00101{bottom:5.164768px;}
.y26_c00101{bottom:5.341168px;}
.y8_c00101{bottom:6.826644px;}
.yb_c00101{bottom:57.653410px;}
.ya_c00101{bottom:72.438724px;}
.y3_c00101{bottom:83.414470px;}
.y2_c00101{bottom:84.305329px;}
.y21_c00101{bottom:157.577790px;}
.y22_c00101{bottom:165.775287px;}
.y20_c00101{bottom:205.672571px;}
.y1f_c00101{bottom:236.490509px;}
.y1c_c00101{bottom:274.786093px;}
.y1e_c00101{bottom:274.786243px;}
.y1d_c00101{bottom:282.974740px;}
.y1b_c00101{bottom:313.261828px;}
.y18_c00101{bottom:351.733813px;}
.y1a_c00101{bottom:351.734713px;}
.y19_c00101{bottom:359.926209px;}
.y17_c00101{bottom:390.032247px;}
.y2f_c00101{bottom:413.065800px;}
.y35_c00101{bottom:430.755390px;}
.y32_c00101{bottom:430.760925px;}
.y33_c00101{bottom:438.183000px;}
.y31_c00101{bottom:441.981386px;}
.y16_c00101{bottom:496.727955px;}
.y15_c00101{bottom:527.542442px;}
.y14_c00101{bottom:596.120315px;}
.y13_c00101{bottom:665.586187px;}
.y12_c00101{bottom:711.185869px;}
.y11_c00101{bottom:741.825307px;}
.y27_c00101{bottom:803.568241px;}
.y28_c00101{bottom:812.832237px;}
.y2c_c00101{bottom:819.066235px;}
.y2e_c00101{bottom:819.066265px;}
.y25_c00101{bottom:825.246000px;}
.y23_c00101{bottom:825.422400px;}
.y2a_c00101{bottom:826.668000px;}
.y29_c00101{bottom:830.462030px;}
.y2d_c00101{bottom:830.465330px;}
.y10_c00101{bottom:898.929244px;}
.yf_c00101{bottom:966.616267px;}
.ye_c00101{bottom:1012.568298px;}
.yd_c00101{bottom:1043.206236px;}
.yc_c00101{bottom:1074.024924px;}
.y9_c00101{bottom:1094.862915px;}
.y7_c00101{bottom:1125.258112px;}
.y6_c00101{bottom:1146.098804px;}
.y5_c00101{bottom:1166.584296px;}
.y4_c00101{bottom:1187.067088px;}
.h15_c00101{height:19.776600px;}
.h13_c00101{height:20.840400px;}
.hc_c00101{height:22.086000px;}
.he_c00101{height:22.262400px;}
.h10_c00101{height:37.280932px;}
.h7_c00101{height:37.374544px;}
.h6_c00101{height:41.427963px;}
.ha_c00101{height:42.772407px;}
.hb_c00101{height:42.820144px;}
.h18_c00101{height:47.958586px;}
.h12_c00101{height:48.077075px;}
.h2_c00101{height:58.667764px;}
.hd_c00101{height:63.475407px;}
.h17_c00101{height:63.683879px;}
.h16_c00101{height:63.755034px;}
.h3_c00101{height:63.768724px;}
.h8_c00101{height:63.839974px;}
.h14_c00101{height:63.841219px;}
.h9_c00101{height:63.911224px;}
.h11_c00101{height:63.912550px;}
.h4_c00101{height:64.053724px;}
.hf_c00101{height:65.729532px;}
.h5_c00101{height:1249.830756px;}
.h1_c00101{height:1262.879062px;}
.h0_c00101{height:1263.000000px;}
.w3_c00101{width:5.875200px;}
.w4_c00101{width:5.877000px;}
.w6_c00101{width:5.880600px;}
.w5_c00101{width:5.882400px;}
.w8_c00101{width:8.901000px;}
.wb_c00101{width:8.904600px;}
.wa_c00101{width:8.908200px;}
.w9_c00101{width:9.795600px;}
.w7_c00101{width:9.799200px;}
.w2_c00101{width:883.195846px;}
.w1_c00101{width:892.414744px;}
.w0_c00101{width:892.500000px;}
.x0_c00101{left:0.000000px;}
.x7_c00101{left:1.541954px;}
.x8_c00101{left:112.753050px;}
.x2_c00101{left:126.215172px;}
.xa_c00101{left:139.470053px;}
.x4_c00101{left:252.504495px;}
.x3_c00101{left:270.140236px;}
.x22_c00101{left:289.559165px;}
.x20_c00101{left:307.014721px;}
.x15_c00101{left:322.344000px;}
.x13_c00101{left:326.977200px;}
.x10_c00101{left:330.062914px;}
.x6_c00101{left:374.872776px;}
.x9_c00101{left:381.008430px;}
.x14_c00101{left:386.469000px;}
.x1f_c00101{left:394.484400px;}
.xe_c00101{left:397.214887px;}
.xf_c00101{left:403.270384px;}
.xb_c00101{left:407.721236px;}
.x16_c00101{left:413.542800px;}
.x5_c00101{left:420.296029px;}
.x19_c00101{left:431.001000px;}
.x26_c00101{left:433.674000px;}
.x17_c00101{left:435.630600px;}
.x23_c00101{left:444.002400px;}
.x1d_c00101{left:449.688843px;}
.x25_c00101{left:455.581800px;}
.x1_c00101{left:458.594160px;}
.x1c_c00101{left:461.445659px;}
.x24_c00101{left:467.145657px;}
.x21_c00101{left:474.627872px;}
.x1b_c00101{left:483.354650px;}
.x1e_c00101{left:504.208800px;}
.x11_c00101{left:516.914839px;}
.x12_c00101{left:522.973336px;}
.x18_c00101{left:535.559400px;}
.x1a_c00101{left:540.365400px;}
.xc_c00101{left:555.035824px;}
.xd_c00101{left:561.088321px;}
@media print{
.v1_c00101{vertical-align:-55.105045pt;}
.v0_c00101{vertical-align:0.000000pt;}
.ls4_c00101{letter-spacing:0.000000pt;}
.ls2_c00101{letter-spacing:0.019787pt;}
.ls1_c00101{letter-spacing:0.214533pt;}
.ls0_c00101{letter-spacing:44.770382pt;}
.ls3_c00101{letter-spacing:368.215391pt;}
.ws3_c00101{word-spacing:-15.851327pt;}
.ws1_c00101{word-spacing:-15.833327pt;}
.ws4_c00101{word-spacing:-15.812260pt;}
.ws0_c00101{word-spacing:-14.566794pt;}
.ws5_c00101{word-spacing:0.000000pt;}
.ws2_c00101{word-spacing:454.815422pt;}
._f_c00101{margin-left:-340.414923pt;}
._c_c00101{margin-left:-231.812190pt;}
._d_c00101{margin-left:-204.704718pt;}
._e_c00101{margin-left:-187.664584pt;}
._b_c00101{margin-left:-145.140742pt;}
._8_c00101{margin-left:-138.817011pt;}
._a_c00101{margin-left:-128.519431pt;}
._9_c00101{margin-left:-123.149127pt;}
._11_c00101{margin-left:-116.736559pt;}
._10_c00101{margin-left:-108.939156pt;}
._0_c00101{margin-left:-1.222774pt;}
._1_c00101{width:0.938922pt;}
._2_c00101{width:1.954303pt;}
._6_c00101{width:2.990341pt;}
._4_c00101{width:4.063648pt;}
._5_c00101{width:5.616604pt;}
._3_c00101{width:11.827240pt;}
._7_c00101{width:14.870317pt;}
.fs6_c00101{font-size:36.985052pt;}
.fs3_c00101{font-size:42.432943pt;}
.fs2_c00101{font-size:52.566166pt;}
.fs0_c00101{font-size:58.267177pt;}
.fs8_c00101{font-size:63.249041pt;}
.fs1_c00101{font-size:63.333308pt;}
.fs7_c00101{font-size:63.405308pt;}
.fs4_c00101{font-size:83.713033pt;}
.fs5_c00101{font-size:86.685832pt;}
.y0_c00101{bottom:0.000000pt;}
.y1_c00101{bottom:0.107500pt;}
.y30_c00101{bottom:3.323585pt;}
.y2b_c00101{bottom:3.483705pt;}
.y34_c00101{bottom:3.483843pt;}
.y24_c00101{bottom:4.590905pt;}
.y26_c00101{bottom:4.747705pt;}
.y8_c00101{bottom:6.068128pt;}
.yb_c00101{bottom:51.247476pt;}
.ya_c00101{bottom:64.389977pt;}
.y3_c00101{bottom:74.146196pt;}
.y2_c00101{bottom:74.938070pt;}
.y21_c00101{bottom:140.069147pt;}
.y22_c00101{bottom:147.355811pt;}
.y20_c00101{bottom:182.820063pt;}
.y1f_c00101{bottom:210.213785pt;}
.y1c_c00101{bottom:244.254305pt;}
.y1e_c00101{bottom:244.254439pt;}
.y1d_c00101{bottom:251.533102pt;}
.y1b_c00101{bottom:278.454958pt;}
.y18_c00101{bottom:312.652278pt;}
.y1a_c00101{bottom:312.653078pt;}
.y19_c00101{bottom:319.934408pt;}
.y17_c00101{bottom:346.695331pt;}
.y2f_c00101{bottom:367.169600pt;}
.y35_c00101{bottom:382.893680pt;}
.y32_c00101{bottom:382.898600pt;}
.y33_c00101{bottom:389.496000pt;}
.y31_c00101{bottom:392.872343pt;}
.y16_c00101{bottom:441.535960pt;}
.y15_c00101{bottom:468.926615pt;}
.y14_c00101{bottom:529.884724pt;}
.y13_c00101{bottom:591.632166pt;}
.y12_c00101{bottom:632.165217pt;}
.y11_c00101{bottom:659.400272pt;}
.y27_c00101{bottom:714.282881pt;}
.y28_c00101{bottom:722.517544pt;}
.y2c_c00101{bottom:728.058875pt;}
.y2e_c00101{bottom:728.058902pt;}
.y25_c00101{bottom:733.552000pt;}
.y23_c00101{bottom:733.708800pt;}
.y2a_c00101{bottom:734.816000pt;}
.y29_c00101{bottom:738.188471pt;}
.y2d_c00101{bottom:738.191405pt;}
.y10_c00101{bottom:799.048217pt;}
.yf_c00101{bottom:859.214459pt;}
.ye_c00101{bottom:900.060710pt;}
.yd_c00101{bottom:927.294432pt;}
.yc_c00101{bottom:954.688821pt;}
.y9_c00101{bottom:973.211480pt;}
.y7_c00101{bottom:1000.229433pt;}
.y6_c00101{bottom:1018.754492pt;}
.y5_c00101{bottom:1036.963819pt;}
.y4_c00101{bottom:1055.170745pt;}
.h15_c00101{height:17.579200pt;}
.h13_c00101{height:18.524800pt;}
.hc_c00101{height:19.632000pt;}
.he_c00101{height:19.788800pt;}
.h10_c00101{height:33.138606pt;}
.h7_c00101{height:33.221817pt;}
.h6_c00101{height:36.824856pt;}
.ha_c00101{height:38.019917pt;}
.hb_c00101{height:38.062350pt;}
.h18_c00101{height:42.629854pt;}
.h12_c00101{height:42.735178pt;}
.h2_c00101{height:52.149123pt;}
.hd_c00101{height:56.422584pt;}
.h17_c00101{height:56.607892pt;}
.h16_c00101{height:56.671141pt;}
.h3_c00101{height:56.683311pt;}
.h8_c00101{height:56.746644pt;}
.h14_c00101{height:56.747751pt;}
.h9_c00101{height:56.809977pt;}
.h11_c00101{height:56.811156pt;}
.h4_c00101{height:56.936644pt;}
.hf_c00101{height:58.426251pt;}
.h5_c00101{height:1110.960672pt;}
.h1_c00101{height:1122.559167pt;}
.h0_c00101{height:1122.666667pt;}
.w3_c00101{width:5.222400pt;}
.w4_c00101{width:5.224000pt;}
.w6_c00101{width:5.227200pt;}
.w5_c00101{width:5.228800pt;}
.w8_c00101{width:7.912000pt;}
.wb_c00101{width:7.915200pt;}
.wa_c00101{width:7.918400pt;}
.w9_c00101{width:8.707200pt;}
.w7_c00101{width:8.710400pt;}
.w2_c00101{width:785.062974pt;}
.w1_c00101{width:793.257550pt;}
.w0_c00101{width:793.333333pt;}
.x0_c00101{left:0.000000pt;}
.x7_c00101{left:1.370626pt;}
.x8_c00101{left:100.224934pt;}
.x2_c00101{left:112.191264pt;}
.xa_c00101{left:123.973381pt;}
.x4_c00101{left:224.448440pt;}
.x3_c00101{left:240.124654pt;}
.x22_c00101{left:257.385925pt;}
.x20_c00101{left:272.901974pt;}
.x15_c00101{left:286.528000pt;}
.x13_c00101{left:290.646400pt;}
.x10_c00101{left:293.389256pt;}
.x6_c00101{left:333.220246pt;}
.x9_c00101{left:338.674160pt;}
.x14_c00101{left:343.528000pt;}
.x1f_c00101{left:350.652800pt;}
.xe_c00101{left:353.079899pt;}
.xf_c00101{left:358.462564pt;}
.xb_c00101{left:362.418876pt;}
.x16_c00101{left:367.593600pt;}
.x5_c00101{left:373.596470pt;}
.x19_c00101{left:383.112000pt;}
.x26_c00101{left:385.488000pt;}
.x17_c00101{left:387.227200pt;}
.x23_c00101{left:394.668800pt;}
.x1d_c00101{left:399.723416pt;}
.x25_c00101{left:404.961600pt;}
.x1_c00101{left:407.639254pt;}
.x1c_c00101{left:410.173919pt;}
.x24_c00101{left:415.240584pt;}
.x21_c00101{left:421.891441pt;}
.x1b_c00101{left:429.648578pt;}
.x1e_c00101{left:448.185600pt;}
.x11_c00101{left:459.479857pt;}
.x12_c00101{left:464.865188pt;}
.x18_c00101{left:476.052800pt;}
.x1a_c00101{left:480.324800pt;}
.xc_c00101{left:493.365177pt;}
.xd_c00101{left:498.745174pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00102;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00102;src:url('chunks/assets/font_91fd308cd518be6c87954b64.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:1.014000;font-style:normal;font-weight: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_c00102;src:url('chunks/assets/font_6f2a638d39f76c704084a165.woff2')format("woff");}.ff7_c00102{font-family:ff7_c00102;line-height:0.800000;font-style:normal;font-weight: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_c00102;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff8_c00102{font-family:ff8_c00102;line-height:0.865062;font-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_c00102{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls2_c00102{letter-spacing:0.000000px;}
.ls1_c00102{letter-spacing:74.158170px;}
.ls0_c00102{letter-spacing:74.166570px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00102{word-spacing:-20.717884px;}
.ws0_c00102{word-spacing:-16.387643px;}
.ws2_c00102{word-spacing:0.000000px;}
._0_c00102{margin-left:-1.375620px;}
._1_c00102{width:1.056287px;}
._3_c00102{width:4.778361px;}
._2_c00102{width:5.818776px;}
._5_c00102{width:6.907871px;}
._4_c00102{width:15.340921px;}
.fc2_c00102{color:rgb(237,30,36);}
.fc1_c00102{color:rgb(105,148,45);}
.fc0_c00102{color:rgb(35,31,32);}
.fs3_c00102{font-size:47.737061px;}
.fs2_c00102{font-size:59.136936px;}
.fs0_c00102{font-size:65.550574px;}
.fs1_c00102{font-size:71.249972px;}
.y0_c00102{bottom:0.000000px;}
.y1_c00102{bottom:0.120938px;}
.y8_c00102{bottom:6.826644px;}
.yb_c00102{bottom:57.653410px;}
.ya_c00102{bottom:72.438724px;}
.y3_c00102{bottom:83.414470px;}
.y2_c00102{bottom:84.305329px;}
.y23_c00102{bottom:159.358290px;}
.y22_c00102{bottom:224.909763px;}
.y21_c00102{bottom:304.351232px;}
.y20_c00102{bottom:342.825466px;}
.y1f_c00102{bottom:381.299701px;}
.y1e_c00102{bottom:419.593935px;}
.y1d_c00102{bottom:465.194367px;}
.y1c_c00102{bottom:495.836505px;}
.y1b_c00102{bottom:526.647393px;}
.y1a_c00102{bottom:557.285330px;}
.y19_c00102{bottom:595.758215px;}
.y18_c00102{bottom:635.480599px;}
.y17_c00102{bottom:658.992340px;}
.y16_c00102{bottom:698.713974px;}
.y15_c00102{bottom:738.437708px;}
.y14_c00102{bottom:777.978592px;}
.y13_c00102{bottom:817.702326px;}
.y12_c00102{bottom:857.421110px;}
.y11_c00102{bottom:899.639493px;}
.yf_c00102{bottom:899.641443px;}
.y10_c00102{bottom:907.832490px;}
.ye_c00102{bottom:948.625274px;}
.yd_c00102{bottom:979.262462px;}
.yc_c00102{bottom:1046.589515px;}
.y9_c00102{bottom:1094.862915px;}
.y7_c00102{bottom:1125.258112px;}
.y6_c00102{bottom:1146.098804px;}
.y5_c00102{bottom:1166.584296px;}
.y4_c00102{bottom:1187.067088px;}
.h7_c00102{height:37.374544px;}
.hb_c00102{height:38.189649px;}
.h6_c00102{height:41.427963px;}
.h8_c00102{height:53.045832px;}
.ha_c00102{height:56.999977px;}
.h2_c00102{height:58.667764px;}
.h3_c00102{height:63.768724px;}
.h9_c00102{height:63.839974px;}
.hc_c00102{height:63.911224px;}
.h4_c00102{height:64.053724px;}
.h5_c00102{height:1249.830756px;}
.h1_c00102{height:1262.879062px;}
.h0_c00102{height:1263.000000px;}
.w2_c00102{width:883.195846px;}
.w1_c00102{width:892.414744px;}
.w0_c00102{width:892.500000px;}
.x0_c00102{left:0.000000px;}
.x7_c00102{left:1.541954px;}
.x8_c00102{left:112.753050px;}
.x2_c00102{left:126.215172px;}
.xe_c00102{left:139.469546px;}
.xf_c00102{left:166.188947px;}
.x4_c00102{left:252.504495px;}
.x3_c00102{left:270.140236px;}
.x14_c00102{left:292.123429px;}
.x11_c00102{left:322.578158px;}
.x6_c00102{left:374.872776px;}
.x9_c00102{left:393.471968px;}
.x10_c00102{left:410.753412px;}
.x13_c00102{left:412.175221px;}
.x12_c00102{left:414.135537px;}
.x5_c00102{left:420.296029px;}
.x1_c00102{left:458.594160px;}
.xa_c00102{left:515.486839px;}
.xb_c00102{left:536.150831px;}
.xc_c00102{left:558.953822px;}
.xd_c00102{left:579.433314px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls2_c00102{letter-spacing:0.000000pt;}
.ls1_c00102{letter-spacing:65.918374pt;}
.ls0_c00102{letter-spacing:65.925840pt;}
.ws1_c00102{word-spacing:-18.415897pt;}
.ws0_c00102{word-spacing:-14.566794pt;}
.ws2_c00102{word-spacing:0.000000pt;}
._0_c00102{margin-left:-1.222774pt;}
._1_c00102{width:0.938922pt;}
._3_c00102{width:4.247432pt;}
._2_c00102{width:5.172245pt;}
._5_c00102{width:6.140330pt;}
._4_c00102{width:13.636374pt;}
.fs3_c00102{font-size:42.432943pt;}
.fs2_c00102{font-size:52.566166pt;}
.fs0_c00102{font-size:58.267177pt;}
.fs1_c00102{font-size:63.333308pt;}
.y0_c00102{bottom:0.000000pt;}
.y1_c00102{bottom:0.107500pt;}
.y8_c00102{bottom:6.068128pt;}
.yb_c00102{bottom:51.247476pt;}
.ya_c00102{bottom:64.389977pt;}
.y3_c00102{bottom:74.146196pt;}
.y2_c00102{bottom:74.938070pt;}
.y23_c00102{bottom:141.651813pt;}
.y22_c00102{bottom:199.919790pt;}
.y21_c00102{bottom:270.534428pt;}
.y20_c00102{bottom:304.733748pt;}
.y1f_c00102{bottom:338.933067pt;}
.y1e_c00102{bottom:372.972387pt;}
.y1d_c00102{bottom:413.506104pt;}
.y1c_c00102{bottom:440.743560pt;}
.y1b_c00102{bottom:468.131016pt;}
.y1a_c00102{bottom:495.364738pt;}
.y19_c00102{bottom:529.562858pt;}
.y18_c00102{bottom:564.871644pt;}
.y17_c00102{bottom:585.770969pt;}
.y16_c00102{bottom:621.079088pt;}
.y15_c00102{bottom:656.389074pt;}
.y14_c00102{bottom:691.536526pt;}
.y13_c00102{bottom:726.846512pt;}
.y12_c00102{bottom:762.152098pt;}
.y11_c00102{bottom:799.679550pt;}
.yf_c00102{bottom:799.681283pt;}
.y10_c00102{bottom:806.962213pt;}
.ye_c00102{bottom:843.222466pt;}
.yd_c00102{bottom:870.455521pt;}
.yc_c00102{bottom:930.301791pt;}
.y9_c00102{bottom:973.211480pt;}
.y7_c00102{bottom:1000.229433pt;}
.y6_c00102{bottom:1018.754492pt;}
.y5_c00102{bottom:1036.963819pt;}
.y4_c00102{bottom:1055.170745pt;}
.h7_c00102{height:33.221817pt;}
.hb_c00102{height:33.946354pt;}
.h6_c00102{height:36.824856pt;}
.h8_c00102{height:47.151851pt;}
.ha_c00102{height:50.666646pt;}
.h2_c00102{height:52.149123pt;}
.h3_c00102{height:56.683311pt;}
.h9_c00102{height:56.746644pt;}
.hc_c00102{height:56.809977pt;}
.h4_c00102{height:56.936644pt;}
.h5_c00102{height:1110.960672pt;}
.h1_c00102{height:1122.559167pt;}
.h0_c00102{height:1122.666667pt;}
.w2_c00102{width:785.062974pt;}
.w1_c00102{width:793.257550pt;}
.w0_c00102{width:793.333333pt;}
.x0_c00102{left:0.000000pt;}
.x7_c00102{left:1.370626pt;}
.x8_c00102{left:100.224934pt;}
.x2_c00102{left:112.191264pt;}
.xe_c00102{left:123.972929pt;}
.xf_c00102{left:147.723509pt;}
.x4_c00102{left:224.448440pt;}
.x3_c00102{left:240.124654pt;}
.x14_c00102{left:259.665270pt;}
.x11_c00102{left:286.736140pt;}
.x6_c00102{left:333.220246pt;}
.x9_c00102{left:349.752860pt;}
.x10_c00102{left:365.114144pt;}
.x13_c00102{left:366.377974pt;}
.x12_c00102{left:368.120477pt;}
.x5_c00102{left:373.596470pt;}
.x1_c00102{left:407.639254pt;}
.xa_c00102{left:458.210524pt;}
.xb_c00102{left:476.578517pt;}
.xc_c00102{left:496.847842pt;}
.xd_c00102{left:515.051834pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:0.000000px;}
._0_c00103{width:1.014449px;}
.fc0_c00103{color:rgb(35,31,32);}
.fs0_c00103{font-size:106.873757px;}
.y0_c00103{bottom:0.000000px;}
.y1_c00103{bottom:0.120938px;}
.y3_c00103{bottom:387.471407px;}
.y2_c00103{bottom:433.606889px;}
.h2_c00103{height:95.865760px;}
.h1_c00103{height:1262.879062px;}
.h0_c00103{height:1263.000000px;}
.w1_c00103{width:892.414744px;}
.w0_c00103{width:892.500000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:108.404900px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.000000pt;}
._0_c00103{width:0.901732pt;}
.fs0_c00103{font-size:94.998895pt;}
.y0_c00103{bottom:0.000000pt;}
.y1_c00103{bottom:0.107500pt;}
.y3_c00103{bottom:344.419029pt;}
.y2_c00103{bottom:385.428346pt;}
.h2_c00103{height:85.214009pt;}
.h1_c00103{height:1122.559167pt;}
.h0_c00103{height:1122.666667pt;}
.w1_c00103{width:793.257550pt;}
.w0_c00103{width:793.333333pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.113000;font-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_c00104{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls0_c00104{letter-spacing:0.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:-20.840692px;}
.ws1_c00104{word-spacing:0.000000px;}
._7_c00104{margin-left:-16.263195px;}
._4_c00104{margin-left:-11.976394px;}
._2_c00104{margin-left:-10.327820px;}
._3_c00104{margin-left:-8.503342px;}
._5_c00104{margin-left:-3.831752px;}
._6_c00104{margin-left:-2.805984px;}
._0_c00104{margin-left:-1.339390px;}
._1_c00104{width:1.056287px;}
.fc1_c00104{color:rgb(105,148,45);}
.fc0_c00104{color:rgb(35,31,32);}
.fs5_c00104{font-size:41.324503px;}
.fs2_c00104{font-size:59.136936px;}
.fs0_c00104{font-size:65.550574px;}
.fs1_c00104{font-size:71.249972px;}
.fs3_c00104{font-size:76.949969px;}
.fs4_c00104{font-size:83.362767px;}
.y0_c00104{bottom:0.000000px;}
.y1_c00104{bottom:0.120938px;}
.y8_c00104{bottom:6.826644px;}
.ya_c00104{bottom:65.133277px;}
.y3_c00104{bottom:83.414442px;}
.y2_c00104{bottom:84.131629px;}
.y19_c00104{bottom:677.521082px;}
.y18_c00104{bottom:693.195026px;}
.y17_c00104{bottom:731.317061px;}
.y16_c00104{bottom:771.035545px;}
.y15_c00104{bottom:800.073433px;}
.y14_c00104{bottom:827.679572px;}
.y13_c00104{bottom:855.467811px;}
.y12_c00104{bottom:883.077400px;}
.y11_c00104{bottom:921.374485px;}
.y10_c00104{bottom:960.914469px;}
.yf_c00104{bottom:988.523458px;}
.ye_c00104{bottom:1001.348453px;}
.yd_c00104{bottom:1026.642943px;}
.yc_c00104{bottom:1045.167065px;}
.yb_c00104{bottom:1059.952379px;}
.y9_c00104{bottom:1094.153416px;}
.y7_c00104{bottom:1125.436612px;}
.y6_c00104{bottom:1146.276554px;}
.y5_c00104{bottom:1166.762796px;}
.y4_c00104{bottom:1187.245588px;}
.ha_c00104{height:26.117086px;}
.h7_c00104{height:37.374544px;}
.h6_c00104{height:41.427963px;}
.h8_c00104{height:48.632381px;}
.h2_c00104{height:58.667764px;}
.hb_c00104{height:58.929966px;}
.h3_c00104{height:63.768724px;}
.h4_c00104{height:64.053724px;}
.h9_c00104{height:74.943127px;}
.h5_c00104{height:1249.830756px;}
.h1_c00104{height:1262.879062px;}
.h0_c00104{height:1263.000000px;}
.w2_c00104{width:883.195846px;}
.w1_c00104{width:892.414744px;}
.w0_c00104{width:892.500000px;}
.x0_c00104{left:0.000000px;}
.x7_c00104{left:1.541954px;}
.x8_c00104{left:112.753050px;}
.x2_c00104{left:126.215308px;}
.xb_c00104{left:127.537178px;}
.x4_c00104{left:252.504495px;}
.x3_c00104{left:270.140236px;}
.x6_c00104{left:298.282885px;}
.x9_c00104{left:405.586383px;}
.x5_c00104{left:420.296029px;}
.x1_c00104{left:505.976141px;}
.xa_c00104{left:767.354739px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:-18.525059pt;}
.ws1_c00104{word-spacing:0.000000pt;}
._7_c00104{margin-left:-14.456173pt;}
._4_c00104{margin-left:-10.645684pt;}
._2_c00104{margin-left:-9.180284pt;}
._3_c00104{margin-left:-7.558526pt;}
._5_c00104{margin-left:-3.406002pt;}
._6_c00104{margin-left:-2.494208pt;}
._0_c00104{margin-left:-1.190569pt;}
._1_c00104{width:0.938922pt;}
.fs5_c00104{font-size:36.732892pt;}
.fs2_c00104{font-size:52.566166pt;}
.fs0_c00104{font-size:58.267177pt;}
.fs1_c00104{font-size:63.333308pt;}
.fs3_c00104{font-size:68.399973pt;}
.fs4_c00104{font-size:74.100237pt;}
.y0_c00104{bottom:0.000000pt;}
.y1_c00104{bottom:0.107500pt;}
.y8_c00104{bottom:6.068128pt;}
.ya_c00104{bottom:57.896246pt;}
.y3_c00104{bottom:74.146170pt;}
.y2_c00104{bottom:74.783670pt;}
.y19_c00104{bottom:602.240962pt;}
.y18_c00104{bottom:616.173356pt;}
.y17_c00104{bottom:650.059610pt;}
.y16_c00104{bottom:685.364929pt;}
.y15_c00104{bottom:711.176385pt;}
.y14_c00104{bottom:735.715175pt;}
.y13_c00104{bottom:760.415832pt;}
.y12_c00104{bottom:784.957689pt;}
.y11_c00104{bottom:818.999542pt;}
.y10_c00104{bottom:854.146195pt;}
.yf_c00104{bottom:878.687518pt;}
.ye_c00104{bottom:890.087514pt;}
.yd_c00104{bottom:912.571505pt;}
.yc_c00104{bottom:929.037391pt;}
.yb_c00104{bottom:942.179893pt;}
.y9_c00104{bottom:972.580814pt;}
.y7_c00104{bottom:1000.388100pt;}
.y6_c00104{bottom:1018.912492pt;}
.y5_c00104{bottom:1037.122485pt;}
.y4_c00104{bottom:1055.329411pt;}
.ha_c00104{height:23.215188pt;}
.h7_c00104{height:33.221817pt;}
.h6_c00104{height:36.824856pt;}
.h8_c00104{height:43.228783pt;}
.h2_c00104{height:52.149123pt;}
.hb_c00104{height:52.382192pt;}
.h3_c00104{height:56.683311pt;}
.h4_c00104{height:56.936644pt;}
.h9_c00104{height:66.616113pt;}
.h5_c00104{height:1110.960672pt;}
.h1_c00104{height:1122.559167pt;}
.h0_c00104{height:1122.666667pt;}
.w2_c00104{width:785.062974pt;}
.w1_c00104{width:793.257550pt;}
.w0_c00104{width:793.333333pt;}
.x0_c00104{left:0.000000pt;}
.x7_c00104{left:1.370626pt;}
.x8_c00104{left:100.224934pt;}
.x2_c00104{left:112.191384pt;}
.xb_c00104{left:113.366381pt;}
.x4_c00104{left:224.448440pt;}
.x3_c00104{left:240.124654pt;}
.x6_c00104{left:265.140342pt;}
.x9_c00104{left:360.521230pt;}
.x5_c00104{left:373.596470pt;}
.x1_c00104{left:449.756570pt;}
.xa_c00104{left:682.093101pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00105;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.112000;font-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_c00105{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls0_c00105{letter-spacing:0.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:0.000000px;}
._a_c00105{margin-left:-2.499482px;}
._0_c00105{margin-left:-1.339390px;}
._1_c00105{width:1.056287px;}
._4_c00105{width:2.084188px;}
._3_c00105{width:3.812640px;}
._7_c00105{width:9.874703px;}
._5_c00105{width:11.166742px;}
._2_c00105{width:19.364111px;}
._6_c00105{width:25.177554px;}
._9_c00105{width:26.895240px;}
._8_c00105{width:27.918990px;}
._c_c00105{width:30.675822px;}
._b_c00105{width:32.128904px;}
._d_c00105{width:121.715272px;}
.fc1_c00105{color:rgb(105,148,45);}
.fc0_c00105{color:rgb(35,31,32);}
.fs3_c00105{font-size:50.586940px;}
.fs2_c00105{font-size:59.136936px;}
.fs0_c00105{font-size:65.550574px;}
.fs1_c00105{font-size:71.249972px;}
.y0_c00105{bottom:0.000000px;}
.y1_c00105{bottom:0.120938px;}
.y8_c00105{bottom:6.826644px;}
.ya_c00105{bottom:65.133277px;}
.y3_c00105{bottom:83.414442px;}
.y2_c00105{bottom:84.131629px;}
.y24_c00105{bottom:344.430615px;}
.y23_c00105{bottom:360.463209px;}
.y22_c00105{bottom:386.823599px;}
.y21_c00105{bottom:417.638686px;}
.y20_c00105{bottom:448.275874px;}
.y1f_c00105{bottom:479.095312px;}
.y1e_c00105{bottom:540.545637px;}
.y1c_c00105{bottom:571.179075px;}
.y1d_c00105{bottom:571.181625px;}
.y1b_c00105{bottom:601.994912px;}
.y1a_c00105{bottom:632.631500px;}
.y19_c00105{bottom:663.445988px;}
.y18_c00105{bottom:694.085426px;}
.y17_c00105{bottom:724.896313px;}
.y16_c00105{bottom:755.537101px;}
.y15_c00105{bottom:786.352939px;}
.y14_c00105{bottom:816.989526px;}
.y13_c00105{bottom:847.804014px;}
.y12_c00105{bottom:878.442702px;}
.y11_c00105{bottom:909.259290px;}
.y10_c00105{bottom:939.893777px;}
.yf_c00105{bottom:970.710965px;}
.ye_c00105{bottom:989.769957px;}
.yd_c00105{bottom:1004.373952px;}
.yc_c00105{bottom:1022.901494px;}
.yb_c00105{bottom:1059.953429px;}
.y9_c00105{bottom:1094.153416px;}
.y7_c00105{bottom:1125.436612px;}
.y6_c00105{bottom:1146.276554px;}
.y5_c00105{bottom:1166.762796px;}
.y4_c00105{bottom:1187.245588px;}
.ha_c00105{height:31.970946px;}
.h7_c00105{height:37.374544px;}
.h6_c00105{height:41.427963px;}
.h8_c00105{height:45.029982px;}
.h2_c00105{height:58.667764px;}
.h3_c00105{height:63.768724px;}
.hb_c00105{height:63.839974px;}
.h9_c00105{height:63.911224px;}
.h4_c00105{height:64.053724px;}
.h5_c00105{height:1249.830756px;}
.h1_c00105{height:1262.879062px;}
.h0_c00105{height:1263.000000px;}
.w2_c00105{width:883.195846px;}
.w1_c00105{width:892.414744px;}
.w0_c00105{width:892.500000px;}
.x0_c00105{left:0.000000px;}
.x7_c00105{left:1.541954px;}
.x8_c00105{left:112.753050px;}
.x2_c00105{left:126.215308px;}
.x9_c00105{left:178.837474px;}
.xa_c00105{left:183.292472px;}
.xb_c00105{left:219.626401px;}
.x4_c00105{left:252.504495px;}
.x3_c00105{left:270.140236px;}
.x6_c00105{left:298.282885px;}
.x5_c00105{left:420.296029px;}
.x1_c00105{left:505.976141px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws0_c00105{word-spacing:0.000000pt;}
._a_c00105{margin-left:-2.221762pt;}
._0_c00105{margin-left:-1.190569pt;}
._1_c00105{width:0.938922pt;}
._4_c00105{width:1.852611pt;}
._3_c00105{width:3.389013pt;}
._7_c00105{width:8.777514pt;}
._5_c00105{width:9.925993pt;}
._2_c00105{width:17.212543pt;}
._6_c00105{width:22.380048pt;}
._9_c00105{width:23.906880pt;}
._8_c00105{width:24.816880pt;}
._c_c00105{width:27.267398pt;}
._b_c00105{width:28.559026pt;}
._d_c00105{width:108.191353pt;}
.fs3_c00105{font-size:44.966169pt;}
.fs2_c00105{font-size:52.566166pt;}
.fs0_c00105{font-size:58.267177pt;}
.fs1_c00105{font-size:63.333308pt;}
.y0_c00105{bottom:0.000000pt;}
.y1_c00105{bottom:0.107500pt;}
.y8_c00105{bottom:6.068128pt;}
.ya_c00105{bottom:57.896246pt;}
.y3_c00105{bottom:74.146170pt;}
.y2_c00105{bottom:74.783670pt;}
.y24_c00105{bottom:306.160547pt;}
.y23_c00105{bottom:320.411741pt;}
.y22_c00105{bottom:343.843199pt;}
.y21_c00105{bottom:371.234388pt;}
.y20_c00105{bottom:398.467444pt;}
.y1f_c00105{bottom:425.862499pt;}
.y1e_c00105{bottom:480.485011pt;}
.y1c_c00105{bottom:507.714733pt;}
.y1d_c00105{bottom:507.717000pt;}
.y1b_c00105{bottom:535.106589pt;}
.y1a_c00105{bottom:562.339111pt;}
.y19_c00105{bottom:589.729767pt;}
.y18_c00105{bottom:616.964823pt;}
.y17_c00105{bottom:644.352278pt;}
.y16_c00105{bottom:671.588534pt;}
.y15_c00105{bottom:698.980390pt;}
.y14_c00105{bottom:726.212912pt;}
.y13_c00105{bottom:753.603568pt;}
.y12_c00105{bottom:780.837957pt;}
.y11_c00105{bottom:808.230480pt;}
.y10_c00105{bottom:835.461135pt;}
.yf_c00105{bottom:862.854191pt;}
.ye_c00105{bottom:879.795518pt;}
.yd_c00105{bottom:892.776846pt;}
.yc_c00105{bottom:909.245773pt;}
.yb_c00105{bottom:942.180826pt;}
.y9_c00105{bottom:972.580814pt;}
.y7_c00105{bottom:1000.388100pt;}
.y6_c00105{bottom:1018.912492pt;}
.y5_c00105{bottom:1037.122485pt;}
.y4_c00105{bottom:1055.329411pt;}
.ha_c00105{height:28.418619pt;}
.h7_c00105{height:33.221817pt;}
.h6_c00105{height:36.824856pt;}
.h8_c00105{height:40.026651pt;}
.h2_c00105{height:52.149123pt;}
.h3_c00105{height:56.683311pt;}
.hb_c00105{height:56.746644pt;}
.h9_c00105{height:56.809977pt;}
.h4_c00105{height:56.936644pt;}
.h5_c00105{height:1110.960672pt;}
.h1_c00105{height:1122.559167pt;}
.h0_c00105{height:1122.666667pt;}
.w2_c00105{width:785.062974pt;}
.w1_c00105{width:793.257550pt;}
.w0_c00105{width:793.333333pt;}
.x0_c00105{left:0.000000pt;}
.x7_c00105{left:1.370626pt;}
.x8_c00105{left:100.224934pt;}
.x2_c00105{left:112.191384pt;}
.x9_c00105{left:158.966644pt;}
.xa_c00105{left:162.926642pt;}
.xb_c00105{left:195.223468pt;}
.x4_c00105{left:224.448440pt;}
.x3_c00105{left:240.124654pt;}
.x6_c00105{left:265.140342pt;}
.x5_c00105{left:373.596470pt;}
.x1_c00105{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00106;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;line-height:0.865062;font-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_c00106{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls1_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:23.539611px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00106{word-spacing:-17.812493px;}
.ws1_c00106{word-spacing:0.000000px;}
._0_c00106{margin-left:-1.339390px;}
._1_c00106{width:1.056812px;}
._8_c00106{width:2.338992px;}
._5_c00106{width:3.562935px;}
._9_c00106{width:4.675873px;}
._6_c00106{width:5.924984px;}
._7_c00106{width:7.368181px;}
._e_c00106{width:8.384136px;}
._d_c00106{width:9.432676px;}
._a_c00106{width:13.947796px;}
._b_c00106{width:15.264736px;}
._c_c00106{width:16.441871px;}
._4_c00106{width:19.739044px;}
._2_c00106{width:21.355859px;}
._3_c00106{width:22.595392px;}
._f_c00106{width:32.105963px;}
.fc1_c00106{color:rgb(105,148,45);}
.fc0_c00106{color:rgb(35,31,32);}
.fs4_c00106{font-size:47.737061px;}
.fs3_c00106{font-size:50.586940px;}
.fs2_c00106{font-size:59.136936px;}
.fs0_c00106{font-size:65.550574px;}
.fs1_c00106{font-size:71.249972px;}
.y0_c00106{bottom:0.000000px;}
.y1_c00106{bottom:0.120938px;}
.y8_c00106{bottom:6.826644px;}
.ya_c00106{bottom:65.133277px;}
.y3_c00106{bottom:83.414442px;}
.y2_c00106{bottom:84.131629px;}
.y28_c00106{bottom:87.221218px;}
.y27_c00106{bottom:103.609012px;}
.y26_c00106{bottom:131.038601px;}
.y25_c00106{bottom:162.207988px;}
.y24_c00106{bottom:192.845926px;}
.y23_c00106{bottom:223.661764px;}
.y22_c00106{bottom:272.648294px;}
.y21_c00106{bottom:334.457119px;}
.y20_c00106{bottom:365.093707px;}
.y1f_c00106{bottom:395.908195px;}
.y1e_c00106{bottom:444.892175px;}
.y1d_c00106{bottom:505.631651px;}
.y1c_c00106{bottom:536.267489px;}
.y1b_c00106{bottom:567.081976px;}
.y1a_c00106{bottom:597.721414px;}
.y19_c00106{bottom:628.357252px;}
.y18_c00106{bottom:659.173840px;}
.y17_c00106{bottom:688.741678px;}
.y16_c00106{bottom:718.310116px;}
.y15_c00106{bottom:779.941791px;}
.y14_c00106{bottom:811.824279px;}
.y13_c00106{bottom:843.889616px;}
.y12_c00106{bottom:904.272542px;}
.y11_c00106{bottom:934.018880px;}
.yf_c00106{bottom:963.765968px;}
.y10_c00106{bottom:971.957464px;}
.ye_c00106{bottom:985.317959px;}
.yd_c00106{bottom:999.923453px;}
.yc_c00106{bottom:1018.446046px;}
.yb_c00106{bottom:1056.210931px;}
.y9_c00106{bottom:1094.153416px;}
.y7_c00106{bottom:1125.436612px;}
.y6_c00106{bottom:1146.276554px;}
.y5_c00106{bottom:1166.762796px;}
.y4_c00106{bottom:1187.245588px;}
.ha_c00106{height:31.970946px;}
.h7_c00106{height:37.374544px;}
.h6_c00106{height:41.427963px;}
.hc_c00106{height:42.772407px;}
.h8_c00106{height:45.029982px;}
.h2_c00106{height:58.667764px;}
.h3_c00106{height:63.768724px;}
.hb_c00106{height:63.839974px;}
.h9_c00106{height:63.911224px;}
.h4_c00106{height:64.053724px;}
.h5_c00106{height:1249.830756px;}
.h1_c00106{height:1262.879062px;}
.h0_c00106{height:1263.000000px;}
.w2_c00106{width:883.195846px;}
.w1_c00106{width:892.414744px;}
.w0_c00106{width:892.500000px;}
.x0_c00106{left:0.000000px;}
.x7_c00106{left:1.541954px;}
.x8_c00106{left:109.903352px;}
.xc_c00106{left:123.438663px;}
.x2_c00106{left:126.215308px;}
.x9_c00106{left:175.987475px;}
.xe_c00106{left:197.537967px;}
.xd_c00106{left:202.705351px;}
.x4_c00106{left:249.654346px;}
.x3_c00106{left:267.288737px;}
.x6_c00106{left:295.431086px;}
.xf_c00106{left:301.385925px;}
.x5_c00106{left:417.442881px;}
.xa_c00106{left:484.493852px;}
.xb_c00106{left:490.553849px;}
.x1_c00106{left:505.976141px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls1_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:20.924098pt;}
.ws0_c00106{word-spacing:-15.833327pt;}
.ws1_c00106{word-spacing:0.000000pt;}
._0_c00106{margin-left:-1.190569pt;}
._1_c00106{width:0.939388pt;}
._8_c00106{width:2.079104pt;}
._5_c00106{width:3.167053pt;}
._9_c00106{width:4.156332pt;}
._6_c00106{width:5.266653pt;}
._7_c00106{width:6.549495pt;}
._e_c00106{width:7.452565pt;}
._d_c00106{width:8.384601pt;}
._a_c00106{width:12.398041pt;}
._b_c00106{width:13.568654pt;}
._c_c00106{width:14.614996pt;}
._4_c00106{width:17.545817pt;}
._2_c00106{width:18.982986pt;}
._3_c00106{width:20.084793pt;}
._f_c00106{width:28.538634pt;}
.fs4_c00106{font-size:42.432943pt;}
.fs3_c00106{font-size:44.966169pt;}
.fs2_c00106{font-size:52.566166pt;}
.fs0_c00106{font-size:58.267177pt;}
.fs1_c00106{font-size:63.333308pt;}
.y0_c00106{bottom:0.000000pt;}
.y1_c00106{bottom:0.107500pt;}
.y8_c00106{bottom:6.068128pt;}
.ya_c00106{bottom:57.896246pt;}
.y3_c00106{bottom:74.146170pt;}
.y2_c00106{bottom:74.783670pt;}
.y28_c00106{bottom:77.529972pt;}
.y27_c00106{bottom:92.096899pt;}
.y26_c00106{bottom:116.478756pt;}
.y25_c00106{bottom:144.184879pt;}
.y24_c00106{bottom:171.418601pt;}
.y23_c00106{bottom:198.810457pt;}
.y22_c00106{bottom:242.354039pt;}
.y21_c00106{bottom:297.295217pt;}
.y20_c00106{bottom:324.527740pt;}
.y1f_c00106{bottom:351.918395pt;}
.y1e_c00106{bottom:395.459711pt;}
.y1d_c00106{bottom:449.450356pt;}
.y1c_c00106{bottom:476.682212pt;}
.y1b_c00106{bottom:504.072868pt;}
.y1a_c00106{bottom:531.307924pt;}
.y19_c00106{bottom:558.539779pt;}
.y18_c00106{bottom:585.932302pt;}
.y17_c00106{bottom:612.214825pt;}
.y16_c00106{bottom:638.497881pt;}
.y15_c00106{bottom:693.281592pt;}
.y14_c00106{bottom:721.621581pt;}
.y13_c00106{bottom:750.124103pt;}
.y12_c00106{bottom:803.797815pt;}
.y11_c00106{bottom:830.239004pt;}
.yf_c00106{bottom:856.680860pt;}
.y10_c00106{bottom:863.962191pt;}
.ye_c00106{bottom:875.838186pt;}
.yd_c00106{bottom:888.820847pt;}
.yc_c00106{bottom:905.285374pt;}
.yb_c00106{bottom:938.854161pt;}
.y9_c00106{bottom:972.580814pt;}
.y7_c00106{bottom:1000.388100pt;}
.y6_c00106{bottom:1018.912492pt;}
.y5_c00106{bottom:1037.122485pt;}
.y4_c00106{bottom:1055.329411pt;}
.ha_c00106{height:28.418619pt;}
.h7_c00106{height:33.221817pt;}
.h6_c00106{height:36.824856pt;}
.hc_c00106{height:38.019917pt;}
.h8_c00106{height:40.026651pt;}
.h2_c00106{height:52.149123pt;}
.h3_c00106{height:56.683311pt;}
.hb_c00106{height:56.746644pt;}
.h9_c00106{height:56.809977pt;}
.h4_c00106{height:56.936644pt;}
.h5_c00106{height:1110.960672pt;}
.h1_c00106{height:1122.559167pt;}
.h0_c00106{height:1122.666667pt;}
.w2_c00106{width:785.062974pt;}
.w1_c00106{width:793.257550pt;}
.w0_c00106{width:793.333333pt;}
.x0_c00106{left:0.000000pt;}
.x7_c00106{left:1.370626pt;}
.x8_c00106{left:97.691868pt;}
.xc_c00106{left:109.723256pt;}
.x2_c00106{left:112.191384pt;}
.x9_c00106{left:156.433311pt;}
.xe_c00106{left:175.589304pt;}
.xd_c00106{left:180.182534pt;}
.x4_c00106{left:221.914974pt;}
.x3_c00106{left:237.589988pt;}
.x6_c00106{left:262.605410pt;}
.xf_c00106{left:267.898600pt;}
.x5_c00106{left:371.060339pt;}
.xa_c00106{left:430.661202pt;}
.xb_c00106{left:436.047866pt;}
.x1_c00106{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00107;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:1.113000;font-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_c00107{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00107{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls0_c00107{letter-spacing:0.000000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00107{word-spacing:0.000000px;}
._9_c00107{margin-left:-3.795550px;}
._7_c00107{margin-left:-2.373424px;}
._0_c00107{margin-left:-1.339390px;}
._1_c00107{width:1.056812px;}
._5_c00107{width:2.147235px;}
._6_c00107{width:3.189579px;}
._8_c00107{width:5.700738px;}
._3_c00107{width:9.065746px;}
._4_c00107{width:11.538835px;}
._2_c00107{width:13.527367px;}
._a_c00107{width:15.798407px;}
.fc1_c00107{color:rgb(105,148,45);}
.fc0_c00107{color:rgb(35,31,32);}
.fs4_c00107{font-size:32.774747px;}
.fs5_c00107{font-size:35.624626px;}
.fs3_c00107{font-size:41.324503px;}
.fs2_c00107{font-size:59.136936px;}
.fs0_c00107{font-size:65.550574px;}
.fs1_c00107{font-size:71.249972px;}
.y0_c00107{bottom:0.000000px;}
.y1_c00107{bottom:0.120938px;}
.y8_c00107{bottom:6.826644px;}
.ya_c00107{bottom:65.133277px;}
.y3_c00107{bottom:83.414442px;}
.y2_c00107{bottom:84.131629px;}
.y30_c00107{bottom:101.054397px;}
.y2f_c00107{bottom:116.015481px;}
.y2e_c00107{bottom:130.801485px;}
.y2d_c00107{bottom:145.587489px;}
.y2c_c00107{bottom:160.547178px;}
.y2b_c00107{bottom:175.332492px;}
.y2a_c00107{bottom:190.113576px;}
.y29_c00107{bottom:205.077480px;}
.y28_c00107{bottom:221.464974px;}
.y27_c00107{bottom:239.272967px;}
.y26_c00107{bottom:468.581051px;}
.y25_c00107{bottom:483.365660px;}
.y24_c00107{bottom:497.083154px;}
.y23_c00107{bottom:507.769150px;}
.y22_c00107{bottom:525.406143px;}
.y21_c00107{bottom:540.368637px;}
.y20_c00107{bottom:554.260132px;}
.y1f_c00107{bottom:567.086026px;}
.y1e_c00107{bottom:589.531117px;}
.y1d_c00107{bottom:611.974108px;}
.y1c_c00107{bottom:647.773094px;}
.y1b_c00107{bottom:674.137084px;}
.y1a_c00107{bottom:704.951571px;}
.y19_c00107{bottom:724.009064px;}
.y18_c00107{bottom:744.139056px;}
.y17_c00107{bottom:779.942541px;}
.y16_c00107{bottom:806.302181px;}
.y15_c00107{bottom:837.118018px;}
.y14_c00107{bottom:856.714011px;}
.y13_c00107{bottom:872.566004px;}
.y12_c00107{bottom:898.925044px;}
.y11_c00107{bottom:929.564481px;}
.y10_c00107{bottom:948.624974px;}
.yf_c00107{bottom:976.588263px;}
.ye_c00107{bottom:1007.225450px;}
.yd_c00107{bottom:1026.287443px;}
.yc_c00107{bottom:1040.358937px;}
.yb_c00107{bottom:1056.744931px;}
.y9_c00107{bottom:1094.153416px;}
.y7_c00107{bottom:1125.436612px;}
.y6_c00107{bottom:1146.276554px;}
.y5_c00107{bottom:1166.762796px;}
.y4_c00107{bottom:1187.245588px;}
.hd_c00107{height:20.713640px;}
.he_c00107{height:22.514763px;}
.h9_c00107{height:26.117086px;}
.h7_c00107{height:37.374544px;}
.h6_c00107{height:41.427963px;}
.hb_c00107{height:45.029982px;}
.h2_c00107{height:58.667764px;}
.h8_c00107{height:58.929966px;}
.h3_c00107{height:63.768724px;}
.ha_c00107{height:63.839974px;}
.hc_c00107{height:63.911224px;}
.h4_c00107{height:64.053724px;}
.h5_c00107{height:1249.830756px;}
.h1_c00107{height:1262.879062px;}
.h0_c00107{height:1263.000000px;}
.w2_c00107{width:883.195846px;}
.w1_c00107{width:892.414744px;}
.w0_c00107{width:892.500000px;}
.x0_c00107{left:0.000000px;}
.x7_c00107{left:1.541954px;}
.x8_c00107{left:109.903352px;}
.xb_c00107{left:111.432649px;}
.xa_c00107{left:123.443936px;}
.x2_c00107{left:126.215308px;}
.x9_c00107{left:175.987475px;}
.xc_c00107{left:177.516773px;}
.x4_c00107{left:249.654346px;}
.x3_c00107{left:267.288737px;}
.x6_c00107{left:295.431086px;}
.x5_c00107{left:417.442881px;}
.x1_c00107{left:505.976141px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws0_c00107{word-spacing:0.000000pt;}
._9_c00107{margin-left:-3.373822pt;}
._7_c00107{margin-left:-2.109710pt;}
._0_c00107{margin-left:-1.190569pt;}
._1_c00107{width:0.939388pt;}
._5_c00107{width:1.908653pt;}
._6_c00107{width:2.835181pt;}
._8_c00107{width:5.067323pt;}
._3_c00107{width:8.058441pt;}
._4_c00107{width:10.256742pt;}
._2_c00107{width:12.024326pt;}
._a_c00107{width:14.043028pt;}
.fs4_c00107{font-size:29.133108pt;}
.fs5_c00107{font-size:31.666334pt;}
.fs3_c00107{font-size:36.732892pt;}
.fs2_c00107{font-size:52.566166pt;}
.fs0_c00107{font-size:58.267177pt;}
.fs1_c00107{font-size:63.333308pt;}
.y0_c00107{bottom:0.000000pt;}
.y1_c00107{bottom:0.107500pt;}
.y8_c00107{bottom:6.068128pt;}
.ya_c00107{bottom:57.896246pt;}
.y3_c00107{bottom:74.146170pt;}
.y2_c00107{bottom:74.783670pt;}
.y30_c00107{bottom:89.826131pt;}
.y2f_c00107{bottom:103.124872pt;}
.y2e_c00107{bottom:116.267987pt;}
.y2d_c00107{bottom:129.411102pt;}
.y2c_c00107{bottom:142.708603pt;}
.y2b_c00107{bottom:155.851104pt;}
.y2a_c00107{bottom:168.989846pt;}
.y29_c00107{bottom:182.291094pt;}
.y28_c00107{bottom:196.857755pt;}
.y27_c00107{bottom:212.687082pt;}
.y26_c00107{bottom:416.516490pt;}
.y25_c00107{bottom:429.658364pt;}
.y24_c00107{bottom:441.851693pt;}
.y23_c00107{bottom:451.350356pt;}
.y22_c00107{bottom:467.027683pt;}
.y21_c00107{bottom:480.327677pt;}
.y20_c00107{bottom:492.675673pt;}
.y1f_c00107{bottom:504.076468pt;}
.y1e_c00107{bottom:524.027660pt;}
.y1d_c00107{bottom:543.976985pt;}
.y1c_c00107{bottom:575.798306pt;}
.y1b_c00107{bottom:599.232963pt;}
.y1a_c00107{bottom:626.623619pt;}
.y19_c00107{bottom:643.563612pt;}
.y18_c00107{bottom:661.456938pt;}
.y17_c00107{bottom:693.282259pt;}
.y16_c00107{bottom:716.713050pt;}
.y15_c00107{bottom:744.104905pt;}
.y14_c00107{bottom:761.523565pt;}
.y13_c00107{bottom:775.614226pt;}
.y12_c00107{bottom:799.044483pt;}
.y11_c00107{bottom:826.279539pt;}
.y10_c00107{bottom:843.222199pt;}
.yf_c00107{bottom:868.078456pt;}
.ye_c00107{bottom:895.311511pt;}
.yd_c00107{bottom:912.255505pt;}
.yc_c00107{bottom:924.763500pt;}
.yb_c00107{bottom:939.328827pt;}
.y9_c00107{bottom:972.580814pt;}
.y7_c00107{bottom:1000.388100pt;}
.y6_c00107{bottom:1018.912492pt;}
.y5_c00107{bottom:1037.122485pt;}
.y4_c00107{bottom:1055.329411pt;}
.hd_c00107{height:18.412124pt;}
.he_c00107{height:20.013123pt;}
.h9_c00107{height:23.215188pt;}
.h7_c00107{height:33.221817pt;}
.h6_c00107{height:36.824856pt;}
.hb_c00107{height:40.026651pt;}
.h2_c00107{height:52.149123pt;}
.h8_c00107{height:52.382192pt;}
.h3_c00107{height:56.683311pt;}
.ha_c00107{height:56.746644pt;}
.hc_c00107{height:56.809977pt;}
.h4_c00107{height:56.936644pt;}
.h5_c00107{height:1110.960672pt;}
.h1_c00107{height:1122.559167pt;}
.h0_c00107{height:1122.666667pt;}
.w2_c00107{width:785.062974pt;}
.w1_c00107{width:793.257550pt;}
.w0_c00107{width:793.333333pt;}
.x0_c00107{left:0.000000pt;}
.x7_c00107{left:1.370626pt;}
.x8_c00107{left:97.691868pt;}
.xb_c00107{left:99.051244pt;}
.xa_c00107{left:109.727943pt;}
.x2_c00107{left:112.191384pt;}
.x9_c00107{left:156.433311pt;}
.xc_c00107{left:157.792687pt;}
.x4_c00107{left:221.914974pt;}
.x3_c00107{left:237.589988pt;}
.x6_c00107{left:262.605410pt;}
.x5_c00107{left:371.060339pt;}
.x1_c00107{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:1.112000;font-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_c00108{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:0.000000px;}
._8_c00108{margin-left:-3.269035px;}
._0_c00108{margin-left:-1.339390px;}
._1_c00108{width:1.056812px;}
._2_c00108{width:2.768282px;}
._4_c00108{width:3.834865px;}
._3_c00108{width:5.463398px;}
._6_c00108{width:6.594527px;}
._5_c00108{width:7.905697px;}
._7_c00108{width:9.741436px;}
._9_c00108{width:15.178750px;}
._b_c00108{width:16.381305px;}
._a_c00108{width:18.933679px;}
.fc1_c00108{color:rgb(105,148,45);}
.fc0_c00108{color:rgb(35,31,32);}
.fs3_c00108{font-size:35.624626px;}
.fs4_c00108{font-size:38.474625px;}
.fs5_c00108{font-size:41.324503px;}
.fs6_c00108{font-size:53.436999px;}
.fs2_c00108{font-size:59.136936px;}
.fs0_c00108{font-size:65.550574px;}
.fs1_c00108{font-size:71.249972px;}
.y0_c00108{bottom:0.000000px;}
.y1_c00108{bottom:0.120938px;}
.ya_c00108{bottom:6.826644px;}
.y9_c00108{bottom:71.838984px;}
.y3_c00108{bottom:83.414442px;}
.y2_c00108{bottom:84.131629px;}
.y37_c00108{bottom:119.753195px;}
.y36_c00108{bottom:134.538509px;}
.y35_c00108{bottom:149.499593px;}
.y34_c00108{bottom:164.283497px;}
.y33_c00108{bottom:178.890491px;}
.y32_c00108{bottom:193.137590px;}
.y31_c00108{bottom:208.455884px;}
.y30_c00108{bottom:223.419788px;}
.y2f_c00108{bottom:238.200872px;}
.y2e_c00108{bottom:252.983366px;}
.y2d_c00108{bottom:267.949370px;}
.y2c_c00108{bottom:282.731864px;}
.y2b_c00108{bottom:297.512948px;}
.y2a_c00108{bottom:312.476852px;}
.y29_c00108{bottom:327.260757px;}
.y28_c00108{bottom:342.046761px;}
.y27_c00108{bottom:357.010665px;}
.y26_c00108{bottom:371.794569px;}
.y25_c00108{bottom:386.577063px;}
.y24_c00108{bottom:401.541672px;}
.y23_c00108{bottom:416.326986px;}
.y22_c00108{bottom:431.110890px;}
.y21_c00108{bottom:447.142884px;}
.y20_c00108{bottom:466.024876px;}
.y1f_c00108{bottom:482.236870px;}
.y1e_c00108{bottom:508.597709px;}
.y1d_c00108{bottom:539.232197px;}
.y1c_c00108{bottom:569.872985px;}
.y1b_c00108{bottom:600.508822px;}
.y1a_c00108{bottom:619.744905px;}
.y19_c00108{bottom:634.528809px;}
.y18_c00108{bottom:648.420303px;}
.y17_c00108{bottom:661.423198px;}
.y16_c00108{bottom:683.868289px;}
.y15_c00108{bottom:871.142505px;}
.y14_c00108{bottom:884.144500px;}
.y13_c00108{bottom:903.204992px;}
.y12_c00108{bottom:930.811131px;}
.y11_c00108{bottom:961.626969px;}
.y10_c00108{bottom:979.617961px;}
.yf_c00108{bottom:992.441456px;}
.ye_c00108{bottom:1013.463948px;}
.yd_c00108{bottom:1027.355442px;}
.yc_c00108{bottom:1038.753938px;}
.yb_c00108{bottom:1059.953429px;}
.y8_c00108{bottom:1100.859122px;}
.y7_c00108{bottom:1125.436612px;}
.y6_c00108{bottom:1146.276554px;}
.y5_c00108{bottom:1166.762796px;}
.y4_c00108{bottom:1187.245588px;}
.h9_c00108{height:22.514763px;}
.hb_c00108{height:24.315963px;}
.hc_c00108{height:26.117086px;}
.he_c00108{height:33.772183px;}
.h6_c00108{height:37.374544px;}
.h5_c00108{height:41.427963px;}
.hd_c00108{height:45.029982px;}
.h2_c00108{height:58.667764px;}
.h3_c00108{height:63.768724px;}
.ha_c00108{height:63.839974px;}
.h8_c00108{height:63.911224px;}
.h4_c00108{height:64.053724px;}
.h7_c00108{height:1249.830756px;}
.h1_c00108{height:1262.879062px;}
.h0_c00108{height:1263.000000px;}
.w2_c00108{width:883.195846px;}
.w1_c00108{width:892.414744px;}
.w0_c00108{width:892.500000px;}
.x0_c00108{left:0.000000px;}
.x8_c00108{left:1.541954px;}
.x9_c00108{left:109.903352px;}
.x7_c00108{left:111.432649px;}
.xa_c00108{left:123.441296px;}
.xc_c00108{left:124.971313px;}
.x2_c00108{left:126.215308px;}
.xb_c00108{left:175.987475px;}
.xd_c00108{left:177.516773px;}
.x4_c00108{left:249.654346px;}
.x3_c00108{left:267.288737px;}
.x6_c00108{left:295.431086px;}
.x5_c00108{left:417.442881px;}
.x1_c00108{left:505.976141px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:0.000000pt;}
._8_c00108{margin-left:-2.905809pt;}
._0_c00108{margin-left:-1.190569pt;}
._1_c00108{width:0.939388pt;}
._2_c00108{width:2.460695pt;}
._4_c00108{width:3.408769pt;}
._3_c00108{width:4.856353pt;}
._6_c00108{width:5.861802pt;}
._5_c00108{width:7.027286pt;}
._7_c00108{width:8.659054pt;}
._9_c00108{width:13.492222pt;}
._b_c00108{width:14.561160pt;}
._a_c00108{width:16.829937pt;}
.fs3_c00108{font-size:31.666334pt;}
.fs4_c00108{font-size:34.199666pt;}
.fs5_c00108{font-size:36.732892pt;}
.fs6_c00108{font-size:47.499554pt;}
.fs2_c00108{font-size:52.566166pt;}
.fs0_c00108{font-size:58.267177pt;}
.fs1_c00108{font-size:63.333308pt;}
.y0_c00108{bottom:0.000000pt;}
.y1_c00108{bottom:0.107500pt;}
.ya_c00108{bottom:6.068128pt;}
.y9_c00108{bottom:63.856874pt;}
.y3_c00108{bottom:74.146170pt;}
.y2_c00108{bottom:74.783670pt;}
.y37_c00108{bottom:106.447284pt;}
.y36_c00108{bottom:119.589785pt;}
.y35_c00108{bottom:132.888527pt;}
.y34_c00108{bottom:146.029775pt;}
.y33_c00108{bottom:159.013770pt;}
.y32_c00108{bottom:171.677858pt;}
.y31_c00108{bottom:185.294119pt;}
.y30_c00108{bottom:198.595367pt;}
.y2f_c00108{bottom:211.734109pt;}
.y2e_c00108{bottom:224.874103pt;}
.y2d_c00108{bottom:238.177218pt;}
.y2c_c00108{bottom:251.317213pt;}
.y2b_c00108{bottom:264.455954pt;}
.y2a_c00108{bottom:277.757202pt;}
.y29_c00108{bottom:290.898450pt;}
.y28_c00108{bottom:304.041565pt;}
.y27_c00108{bottom:317.342813pt;}
.y26_c00108{bottom:330.484061pt;}
.y25_c00108{bottom:343.624056pt;}
.y24_c00108{bottom:356.925931pt;}
.y23_c00108{bottom:370.068432pt;}
.y22_c00108{bottom:383.209680pt;}
.y21_c00108{bottom:397.460341pt;}
.y20_c00108{bottom:414.244334pt;}
.y1f_c00108{bottom:428.654995pt;}
.y1e_c00108{bottom:452.086852pt;}
.y1d_c00108{bottom:479.317508pt;}
.y1c_c00108{bottom:506.553764pt;}
.y1b_c00108{bottom:533.785620pt;}
.y1a_c00108{bottom:550.884360pt;}
.y19_c00108{bottom:564.025608pt;}
.y18_c00108{bottom:576.373603pt;}
.y17_c00108{bottom:587.931731pt;}
.y16_c00108{bottom:607.882923pt;}
.y15_c00108{bottom:774.348893pt;}
.y14_c00108{bottom:785.906222pt;}
.y13_c00108{bottom:802.848882pt;}
.y12_c00108{bottom:827.387672pt;}
.y11_c00108{bottom:854.779528pt;}
.y10_c00108{bottom:870.771521pt;}
.yf_c00108{bottom:882.170183pt;}
.ye_c00108{bottom:900.856843pt;}
.yd_c00108{bottom:913.204838pt;}
.yc_c00108{bottom:923.336834pt;}
.yb_c00108{bottom:942.180826pt;}
.y8_c00108{bottom:978.541442pt;}
.y7_c00108{bottom:1000.388100pt;}
.y6_c00108{bottom:1018.912492pt;}
.y5_c00108{bottom:1037.122485pt;}
.y4_c00108{bottom:1055.329411pt;}
.h9_c00108{height:20.013123pt;}
.hb_c00108{height:21.614189pt;}
.hc_c00108{height:23.215188pt;}
.he_c00108{height:30.019718pt;}
.h6_c00108{height:33.221817pt;}
.h5_c00108{height:36.824856pt;}
.hd_c00108{height:40.026651pt;}
.h2_c00108{height:52.149123pt;}
.h3_c00108{height:56.683311pt;}
.ha_c00108{height:56.746644pt;}
.h8_c00108{height:56.809977pt;}
.h4_c00108{height:56.936644pt;}
.h7_c00108{height:1110.960672pt;}
.h1_c00108{height:1122.559167pt;}
.h0_c00108{height:1122.666667pt;}
.w2_c00108{width:785.062974pt;}
.w1_c00108{width:793.257550pt;}
.w0_c00108{width:793.333333pt;}
.x0_c00108{left:0.000000pt;}
.x8_c00108{left:1.370626pt;}
.x9_c00108{left:97.691868pt;}
.x7_c00108{left:99.051244pt;}
.xa_c00108{left:109.725597pt;}
.xc_c00108{left:111.085611pt;}
.x2_c00108{left:112.191384pt;}
.xb_c00108{left:156.433311pt;}
.xd_c00108{left:157.792687pt;}
.x4_c00108{left:221.914974pt;}
.x3_c00108{left:237.589988pt;}
.x6_c00108{left:262.605410pt;}
.x5_c00108{left:371.060339pt;}
.x1_c00108{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00109{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls0_c00109{letter-spacing:0.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00109{word-spacing:-17.812493px;}
.ws1_c00109{word-spacing:-14.784234px;}
.ws2_c00109{word-spacing:0.000000px;}
._b_c00109{margin-left:-3.511466px;}
._7_c00109{margin-left:-2.373265px;}
._0_c00109{margin-left:-1.339390px;}
._1_c00109{width:1.056812px;}
._9_c00109{width:2.362070px;}
._5_c00109{width:3.830987px;}
._6_c00109{width:5.538628px;}
._d_c00109{width:7.089746px;}
._e_c00109{width:8.206471px;}
._3_c00109{width:11.391857px;}
._2_c00109{width:12.521803px;}
._4_c00109{width:14.421549px;}
._c_c00109{width:15.947192px;}
._a_c00109{width:22.663015px;}
._8_c00109{width:23.716683px;}
.fc1_c00109{color:rgb(105,148,45);}
.fc0_c00109{color:rgb(35,31,32);}
.fs6_c00109{font-size:29.924628px;}
.fs8_c00109{font-size:32.774747px;}
.fs7_c00109{font-size:41.324503px;}
.fs4_c00109{font-size:47.737061px;}
.fs5_c00109{font-size:53.436999px;}
.fs2_c00109{font-size:59.136936px;}
.fs0_c00109{font-size:65.550574px;}
.fs1_c00109{font-size:71.249972px;}
.fs3_c00109{font-size:76.949969px;}
.y0_c00109{bottom:0.000000px;}
.y1_c00109{bottom:0.120938px;}
.y36_c00109{bottom:0.485156px;}
.y2f_c00109{bottom:2.842851px;}
.y1b_c00109{bottom:2.846980px;}
.y2b_c00109{bottom:2.850936px;}
.y44_c00109{bottom:3.202620px;}
.y40_c00109{bottom:3.204409px;}
.y53_c00109{bottom:3.206219px;}
.y21_c00109{bottom:3.556797px;}
.y24_c00109{bottom:3.559807px;}
.y32_c00109{bottom:3.560757px;}
.y27_c00109{bottom:3.561917px;}
.y35_c00109{bottom:3.564368px;}
.y1e_c00109{bottom:3.566087px;}
.y8_c00109{bottom:6.826644px;}
.ya_c00109{bottom:65.133277px;}
.y3_c00109{bottom:83.414442px;}
.y2_c00109{bottom:84.131629px;}
.y5f_c00109{bottom:244.617465px;}
.y51_c00109{bottom:270.617236px;}
.y5e_c00109{bottom:283.984949px;}
.y50_c00109{bottom:285.756730px;}
.y4f_c00109{bottom:296.265575px;}
.y5d_c00109{bottom:298.947443px;}
.y5c_c00109{bottom:309.631939px;}
.y4e_c00109{bottom:322.273465px;}
.y5b_c00109{bottom:324.595933px;}
.y5a_c00109{bottom:335.106428px;}
.y4d_c00109{bottom:347.744205px;}
.y59_c00109{bottom:350.067422px;}
.y58_c00109{bottom:360.754768px;}
.y4c_c00109{bottom:362.708199px;}
.y4b_c00109{bottom:373.395695px;}
.y57_c00109{bottom:386.762658px;}
.y4a_c00109{bottom:388.355189px;}
.y49_c00109{bottom:399.039684px;}
.y56_c00109{bottom:412.233398px;}
.y48_c00109{bottom:414.005178px;}
.y47_c00109{bottom:424.515674px;}
.y55_c00109{bottom:427.191392px;}
.y54_c00109{bottom:437.704887px;}
.y46_c00109{bottom:439.656668px;}
.y43_c00109{bottom:447.091200px;}
.y45_c00109{bottom:449.808664px;}
.y42_c00109{bottom:449.995882px;}
.y52_c00109{bottom:450.471600px;}
.y3f_c00109{bottom:473.450400px;}
.y3e_c00109{bottom:475.992654px;}
.y41_c00109{bottom:476.533872px;}
.y3a_c00109{bottom:502.178143px;}
.y3d_c00109{bottom:502.890643px;}
.y39_c00109{bottom:517.494637px;}
.y3c_c00109{bottom:518.031637px;}
.y38_c00109{bottom:528.003633px;}
.y3b_c00109{bottom:528.182583px;}
.y37_c00109{bottom:555.075622px;}
.y34_c00109{bottom:577.472400px;}
.y33_c00109{bottom:580.915830px;}
.y31_c00109{bottom:602.946000px;}
.y30_c00109{bottom:606.385820px;}
.y2d_c00109{bottom:617.070316px;}
.y2e_c00109{bottom:619.160400px;}
.y2c_c00109{bottom:643.792805px;}
.y29_c00109{bottom:654.478801px;}
.y2a_c00109{bottom:656.560800px;}
.y28_c00109{bottom:681.553790px;}
.y26_c00109{bottom:703.585800px;}
.y25_c00109{bottom:707.026780px;}
.y23_c00109{bottom:729.059400px;}
.y22_c00109{bottom:732.498269px;}
.y20_c00109{bottom:754.709400px;}
.y1f_c00109{bottom:758.145259px;}
.y1d_c00109{bottom:780.177600px;}
.y1c_c00109{bottom:783.622749px;}
.y19_c00109{bottom:787.601538px;}
.y1a_c00109{bottom:796.390200px;}
.y18_c00109{bottom:813.073028px;}
.y17_c00109{bottom:836.227619px;}
.y16_c00109{bottom:859.208510px;}
.y15_c00109{bottom:872.926004px;}
.y13_c00109{bottom:880.580501px;}
.y14_c00109{bottom:882.004000px;}
.y12_c00109{bottom:909.080490px;}
.y11_c00109{bottom:929.205472px;}
.y10_c00109{bottom:943.991476px;}
.yf_c00109{bottom:958.239970px;}
.ye_c00109{bottom:982.469760px;}
.yd_c00109{bottom:1013.106948px;}
.yc_c00109{bottom:1033.235440px;}
.yb_c00109{bottom:1056.744931px;}
.y9_c00109{bottom:1094.153416px;}
.y7_c00109{bottom:1125.436612px;}
.y6_c00109{bottom:1146.276554px;}
.y5_c00109{bottom:1166.762796px;}
.y4_c00109{bottom:1187.245588px;}
.h17_c00109{height:11.399400px;}
.h16_c00109{height:11.403000px;}
.hf_c00109{height:11.581200px;}
.h1b_c00109{height:13.006800px;}
.h1a_c00109{height:16.387200px;}
.h13_c00109{height:16.740000px;}
.h14_c00109{height:16.741800px;}
.h15_c00109{height:16.745400px;}
.h12_c00109{height:16.747200px;}
.he_c00109{height:18.912365px;}
.h19_c00109{height:20.713640px;}
.h10_c00109{height:26.117086px;}
.hb_c00109{height:30.169822px;}
.h7_c00109{height:37.374544px;}
.h6_c00109{height:41.427963px;}
.hd_c00109{height:47.879551px;}
.h9_c00109{height:48.632381px;}
.h1c_c00109{height:52.927558px;}
.h11_c00109{height:52.986695px;}
.hc_c00109{height:53.045832px;}
.h2_c00109{height:58.667764px;}
.h8_c00109{height:58.929966px;}
.h3_c00109{height:63.768724px;}
.ha_c00109{height:63.839974px;}
.h4_c00109{height:64.053724px;}
.h5_c00109{height:1249.830756px;}
.h18_c00109{height:1262.514600px;}
.h1_c00109{height:1262.879062px;}
.h0_c00109{height:1263.000000px;}
.wf_c00109{width:4.096800px;}
.w14_c00109{width:5.878800px;}
.w3_c00109{width:6.057000px;}
.w11_c00109{width:6.593400px;}
.w17_c00109{width:6.942600px;}
.w10_c00109{width:7.479000px;}
.w16_c00109{width:7.480800px;}
.we_c00109{width:7.482600px;}
.wc_c00109{width:7.484400px;}
.wa_c00109{width:9.084600px;}
.w12_c00109{width:9.797400px;}
.w8_c00109{width:10.332000px;}
.wd_c00109{width:10.690200px;}
.w7_c00109{width:11.217600px;}
.w4_c00109{width:13.890600px;}
.w13_c00109{width:14.781600px;}
.w15_c00109{width:18.880200px;}
.w5_c00109{width:19.771200px;}
.wb_c00109{width:21.371400px;}
.w6_c00109{width:21.547800px;}
.w2_c00109{width:883.195846px;}
.w9_c00109{width:892.161000px;}
.w1_c00109{width:892.414744px;}
.w0_c00109{width:892.500000px;}
.x0_c00109{left:0.000000px;}
.x7_c00109{left:1.541954px;}
.x8_c00109{left:109.903352px;}
.x15_c00109{left:118.875177px;}
.xc_c00109{left:125.042996px;}
.x2_c00109{left:126.215308px;}
.x26_c00109{left:127.998193px;}
.x9_c00109{left:179.015974px;}
.x4_c00109{left:249.654346px;}
.x3_c00109{left:267.288737px;}
.xe_c00109{left:280.721933px;}
.xf_c00109{left:282.267000px;}
.xd_c00109{left:284.285932px;}
.x10_c00109{left:285.815229px;}
.x16_c00109{left:289.696526px;}
.x6_c00109{left:295.431086px;}
.x17_c00109{left:298.832400px;}
.x18_c00109{left:320.203800px;}
.x1f_c00109{left:322.880400px;}
.x19_c00109{left:327.675713px;}
.x20_c00109{left:341.402400px;}
.x21_c00109{left:347.281200px;}
.x22_c00109{left:366.161400px;}
.x23_c00109{left:373.596226px;}
.xa_c00109{left:375.482895px;}
.x1a_c00109{left:399.468600px;}
.x1b_c00109{left:410.158800px;}
.x5_c00109{left:417.442881px;}
.x1c_c00109{left:421.738200px;}
.xb_c00109{left:428.030874px;}
.x1d_c00109{left:429.217200px;}
.x1e_c00109{left:435.795669px;}
.x1_c00109{left:505.976141px;}
.x24_c00109{left:521.132400px;}
.x25_c00109{left:528.777632px;}
.x13_c00109{left:743.608800px;}
.x12_c00109{left:745.385400px;}
.x11_c00109{left:751.266000px;}
.x14_c00109{left:753.939000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:-15.833327pt;}
.ws1_c00109{word-spacing:-13.141541pt;}
.ws2_c00109{word-spacing:0.000000pt;}
._b_c00109{margin-left:-3.121303pt;}
._7_c00109{margin-left:-2.109569pt;}
._0_c00109{margin-left:-1.190569pt;}
._1_c00109{width:0.939388pt;}
._9_c00109{width:2.099618pt;}
._5_c00109{width:3.405321pt;}
._6_c00109{width:4.923225pt;}
._d_c00109{width:6.301996pt;}
._e_c00109{width:7.294640pt;}
._3_c00109{width:10.126095pt;}
._2_c00109{width:11.130492pt;}
._4_c00109{width:12.819154pt;}
._c_c00109{width:14.175282pt;}
._a_c00109{width:20.144902pt;}
._8_c00109{width:21.081496pt;}
.fs6_c00109{font-size:26.599669pt;}
.fs8_c00109{font-size:29.133108pt;}
.fs7_c00109{font-size:36.732892pt;}
.fs4_c00109{font-size:42.432943pt;}
.fs5_c00109{font-size:47.499554pt;}
.fs2_c00109{font-size:52.566166pt;}
.fs0_c00109{font-size:58.267177pt;}
.fs1_c00109{font-size:63.333308pt;}
.fs3_c00109{font-size:68.399973pt;}
.y0_c00109{bottom:0.000000pt;}
.y1_c00109{bottom:0.107500pt;}
.y36_c00109{bottom:0.431250pt;}
.y2f_c00109{bottom:2.526979pt;}
.y1b_c00109{bottom:2.530649pt;}
.y2b_c00109{bottom:2.534166pt;}
.y44_c00109{bottom:2.846773pt;}
.y40_c00109{bottom:2.848364pt;}
.y53_c00109{bottom:2.849972pt;}
.y21_c00109{bottom:3.161597pt;}
.y24_c00109{bottom:3.164273pt;}
.y32_c00109{bottom:3.165118pt;}
.y27_c00109{bottom:3.166149pt;}
.y35_c00109{bottom:3.168327pt;}
.y1e_c00109{bottom:3.169855pt;}
.y8_c00109{bottom:6.068128pt;}
.ya_c00109{bottom:57.896246pt;}
.y3_c00109{bottom:74.146170pt;}
.y2_c00109{bottom:74.783670pt;}
.y5f_c00109{bottom:217.437746pt;}
.y51_c00109{bottom:240.548654pt;}
.y5e_c00109{bottom:252.431066pt;}
.y50_c00109{bottom:254.005982pt;}
.y4f_c00109{bottom:263.347178pt;}
.y5d_c00109{bottom:265.731060pt;}
.y5c_c00109{bottom:275.228390pt;}
.y4e_c00109{bottom:286.465302pt;}
.y5b_c00109{bottom:288.529718pt;}
.y5a_c00109{bottom:297.872381pt;}
.y4d_c00109{bottom:309.105960pt;}
.y59_c00109{bottom:311.171042pt;}
.y58_c00109{bottom:320.670905pt;}
.y4c_c00109{bottom:322.407288pt;}
.y4b_c00109{bottom:331.907284pt;}
.y57_c00109{bottom:343.789029pt;}
.y4a_c00109{bottom:345.204612pt;}
.y49_c00109{bottom:354.701942pt;}
.y56_c00109{bottom:366.429687pt;}
.y48_c00109{bottom:368.004603pt;}
.y47_c00109{bottom:377.347266pt;}
.y55_c00109{bottom:379.725681pt;}
.y54_c00109{bottom:389.071011pt;}
.y46_c00109{bottom:390.805927pt;}
.y43_c00109{bottom:397.414400pt;}
.y45_c00109{bottom:399.829924pt;}
.y42_c00109{bottom:399.996340pt;}
.y52_c00109{bottom:400.419200pt;}
.y3f_c00109{bottom:420.844800pt;}
.y3e_c00109{bottom:423.104581pt;}
.y41_c00109{bottom:423.585664pt;}
.y3a_c00109{bottom:446.380572pt;}
.y3d_c00109{bottom:447.013905pt;}
.y39_c00109{bottom:459.995233pt;}
.y3c_c00109{bottom:460.472566pt;}
.y38_c00109{bottom:469.336562pt;}
.y3b_c00109{bottom:469.495629pt;}
.y37_c00109{bottom:493.400553pt;}
.y34_c00109{bottom:513.308800pt;}
.y33_c00109{bottom:516.369627pt;}
.y31_c00109{bottom:535.952000pt;}
.y30_c00109{bottom:539.009618pt;}
.y2d_c00109{bottom:548.506947pt;}
.y2e_c00109{bottom:550.364800pt;}
.y2c_c00109{bottom:572.260271pt;}
.y29_c00109{bottom:581.758934pt;}
.y2a_c00109{bottom:583.609600pt;}
.y28_c00109{bottom:605.825591pt;}
.y26_c00109{bottom:625.409600pt;}
.y25_c00109{bottom:628.468249pt;}
.y23_c00109{bottom:648.052800pt;}
.y22_c00109{bottom:651.109573pt;}
.y20_c00109{bottom:670.852800pt;}
.y1f_c00109{bottom:673.906897pt;}
.y1d_c00109{bottom:693.491200pt;}
.y1c_c00109{bottom:696.553555pt;}
.y19_c00109{bottom:700.090256pt;}
.y1a_c00109{bottom:707.902400pt;}
.y18_c00109{bottom:722.731580pt;}
.y17_c00109{bottom:743.313439pt;}
.y16_c00109{bottom:763.740897pt;}
.y15_c00109{bottom:775.934226pt;}
.y13_c00109{bottom:782.738223pt;}
.y14_c00109{bottom:784.003556pt;}
.y12_c00109{bottom:808.071546pt;}
.y11_c00109{bottom:825.960419pt;}
.y10_c00109{bottom:839.103534pt;}
.yf_c00109{bottom:851.768862pt;}
.ye_c00109{bottom:873.306454pt;}
.yd_c00109{bottom:900.539509pt;}
.yc_c00109{bottom:918.431502pt;}
.yb_c00109{bottom:939.328827pt;}
.y9_c00109{bottom:972.580814pt;}
.y7_c00109{bottom:1000.388100pt;}
.y6_c00109{bottom:1018.912492pt;}
.y5_c00109{bottom:1037.122485pt;}
.y4_c00109{bottom:1055.329411pt;}
.h17_c00109{height:10.132800pt;}
.h16_c00109{height:10.136000pt;}
.hf_c00109{height:10.294400pt;}
.h1b_c00109{height:11.561600pt;}
.h1a_c00109{height:14.566400pt;}
.h13_c00109{height:14.880000pt;}
.h14_c00109{height:14.881600pt;}
.h15_c00109{height:14.884800pt;}
.h12_c00109{height:14.886400pt;}
.he_c00109{height:16.810991pt;}
.h19_c00109{height:18.412124pt;}
.h10_c00109{height:23.215188pt;}
.hb_c00109{height:26.817620pt;}
.h7_c00109{height:33.221817pt;}
.h6_c00109{height:36.824856pt;}
.hd_c00109{height:42.559601pt;}
.h9_c00109{height:43.228783pt;}
.h1c_c00109{height:47.046718pt;}
.h11_c00109{height:47.099284pt;}
.hc_c00109{height:47.151851pt;}
.h2_c00109{height:52.149123pt;}
.h8_c00109{height:52.382192pt;}
.h3_c00109{height:56.683311pt;}
.ha_c00109{height:56.746644pt;}
.h4_c00109{height:56.936644pt;}
.h5_c00109{height:1110.960672pt;}
.h18_c00109{height:1122.235200pt;}
.h1_c00109{height:1122.559167pt;}
.h0_c00109{height:1122.666667pt;}
.wf_c00109{width:3.641600pt;}
.w14_c00109{width:5.225600pt;}
.w3_c00109{width:5.384000pt;}
.w11_c00109{width:5.860800pt;}
.w17_c00109{width:6.171200pt;}
.w10_c00109{width:6.648000pt;}
.w16_c00109{width:6.649600pt;}
.we_c00109{width:6.651200pt;}
.wc_c00109{width:6.652800pt;}
.wa_c00109{width:8.075200pt;}
.w12_c00109{width:8.708800pt;}
.w8_c00109{width:9.184000pt;}
.wd_c00109{width:9.502400pt;}
.w7_c00109{width:9.971200pt;}
.w4_c00109{width:12.347200pt;}
.w13_c00109{width:13.139200pt;}
.w15_c00109{width:16.782400pt;}
.w5_c00109{width:17.574400pt;}
.wb_c00109{width:18.996800pt;}
.w6_c00109{width:19.153600pt;}
.w2_c00109{width:785.062974pt;}
.w9_c00109{width:793.032000pt;}
.w1_c00109{width:793.257550pt;}
.w0_c00109{width:793.333333pt;}
.x0_c00109{left:0.000000pt;}
.x7_c00109{left:1.370626pt;}
.x8_c00109{left:97.691868pt;}
.x15_c00109{left:105.666824pt;}
.xc_c00109{left:111.149329pt;}
.x2_c00109{left:112.191384pt;}
.x26_c00109{left:113.776171pt;}
.x9_c00109{left:159.125310pt;}
.x4_c00109{left:221.914974pt;}
.x3_c00109{left:237.589988pt;}
.xe_c00109{left:249.530607pt;}
.xf_c00109{left:250.904000pt;}
.xd_c00109{left:252.698606pt;}
.x10_c00109{left:254.057982pt;}
.x16_c00109{left:257.508023pt;}
.x6_c00109{left:262.605410pt;}
.x17_c00109{left:265.628800pt;}
.x18_c00109{left:284.625600pt;}
.x1f_c00109{left:287.004800pt;}
.x19_c00109{left:291.267300pt;}
.x20_c00109{left:303.468800pt;}
.x21_c00109{left:308.694400pt;}
.x22_c00109{left:325.476800pt;}
.x23_c00109{left:332.085534pt;}
.xa_c00109{left:333.762574pt;}
.x1a_c00109{left:355.083200pt;}
.x1b_c00109{left:364.585600pt;}
.x5_c00109{left:371.060339pt;}
.x1c_c00109{left:374.878400pt;}
.xb_c00109{left:380.471888pt;}
.x1d_c00109{left:381.526400pt;}
.x1e_c00109{left:387.373928pt;}
.x1_c00109{left:449.756570pt;}
.x24_c00109{left:463.228800pt;}
.x25_c00109{left:470.024562pt;}
.x13_c00109{left:660.985600pt;}
.x12_c00109{left:662.564800pt;}
.x11_c00109{left:667.792000pt;}
.x14_c00109{left:670.168000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:1.112000;font-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_c00110{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00110{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00110{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls0_c00110{letter-spacing:0.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:-17.812493px;}
.ws4_c00110{word-spacing:-14.784234px;}
.ws7_c00110{word-spacing:0.000000px;}
.ws6_c00110{word-spacing:48.187054px;}
.ws1_c00110{word-spacing:207.873110px;}
.ws5_c00110{word-spacing:260.624464px;}
.ws3_c00110{word-spacing:344.743615px;}
.ws2_c00110{word-spacing:349.729889px;}
._6_c00110{margin-left:-3.511466px;}
._3_c00110{margin-left:-2.457728px;}
._0_c00110{margin-left:-1.339390px;}
._1_c00110{width:1.056812px;}
._2_c00110{width:2.517497px;}
._8_c00110{width:3.894321px;}
._9_c00110{width:5.574443px;}
._a_c00110{width:6.645026px;}
._e_c00110{width:8.361089px;}
._7_c00110{width:9.598802px;}
._f_c00110{width:10.617934px;}
._5_c00110{width:11.709105px;}
._4_c00110{width:13.767645px;}
._d_c00110{width:15.789488px;}
._b_c00110{width:24.466993px;}
._c_c00110{width:26.007108px;}
.fc1_c00110{color:rgb(105,148,45);}
.fc0_c00110{color:rgb(35,31,32);}
.fs4_c00110{font-size:32.774747px;}
.fs5_c00110{font-size:41.324503px;}
.fs3_c00110{font-size:53.436999px;}
.fs2_c00110{font-size:59.136936px;}
.fs0_c00110{font-size:65.550574px;}
.fs1_c00110{font-size:71.249972px;}
.y0_c00110{bottom:0.000000px;}
.y1_c00110{bottom:0.120938px;}
.y24_c00110{bottom:2.852757px;}
.y34_c00110{bottom:3.558114px;}
.y31_c00110{bottom:3.560804px;}
.y3b_c00110{bottom:3.561456px;}
.y2e_c00110{bottom:3.562294px;}
.y8_c00110{bottom:6.826644px;}
.ya_c00110{bottom:65.133277px;}
.y3_c00110{bottom:83.414442px;}
.y2_c00110{bottom:84.131629px;}
.y47_c00110{bottom:128.304061px;}
.y46_c00110{bottom:154.841751px;}
.y45_c00110{bottom:180.490990px;}
.y44_c00110{bottom:195.454984px;}
.y43_c00110{bottom:205.964580px;}
.y42_c00110{bottom:231.969020px;}
.y41_c00110{bottom:257.442459px;}
.y40_c00110{bottom:272.583453px;}
.y3f_c00110{bottom:283.093949px;}
.y3e_c00110{bottom:298.234943px;}
.y3d_c00110{bottom:308.208439px;}
.y3c_c00110{bottom:335.286428px;}
.y3a_c00110{bottom:357.314400px;}
.y39_c00110{bottom:360.754018px;}
.y38_c00110{bottom:386.401908px;}
.y37_c00110{bottom:401.365902px;}
.y36_c00110{bottom:411.342398px;}
.y35_c00110{bottom:438.417387px;}
.y33_c00110{bottom:460.627200px;}
.y32_c00110{bottom:464.064377px;}
.y30_c00110{bottom:486.099000px;}
.y2f_c00110{bottom:489.538867px;}
.y2d_c00110{bottom:511.569000px;}
.y29_c00110{bottom:514.297857px;}
.y2c_c00110{bottom:515.010356px;}
.y28_c00110{bottom:529.792851px;}
.y2b_c00110{bottom:530.149850px;}
.y27_c00110{bottom:540.123346px;}
.y2a_c00110{bottom:540.302296px;}
.y26_c00110{bottom:567.200586px;}
.y25_c00110{bottom:592.671325px;}
.y22_c00110{bottom:596.474615px;}
.y23_c00110{bottom:605.259000px;}
.y21_c00110{bottom:623.549604px;}
.y20_c00110{bottom:649.198244px;}
.y1f_c00110{bottom:674.670333px;}
.y1e_c00110{bottom:700.321073px;}
.y1d_c00110{bottom:715.283567px;}
.y1c_c00110{bottom:725.257063px;}
.y1b_c00110{bottom:752.334302px;}
.y1a_c00110{bottom:777.805042px;}
.y19_c00110{bottom:792.769036px;}
.y18_c00110{bottom:802.739532px;}
.y17_c00110{bottom:829.456921px;}
.y16_c00110{bottom:855.110361px;}
.y15_c00110{bottom:881.114801px;}
.y14_c00110{bottom:906.585541px;}
.y13_c00110{bottom:932.058980px;}
.y12_c00110{bottom:947.199974px;}
.y11_c00110{bottom:957.707470px;}
.y10_c00110{bottom:972.849964px;}
.yf_c00110{bottom:982.826460px;}
.ye_c00110{bottom:1011.146449px;}
.yd_c00110{bottom:1031.273441px;}
.yc_c00110{bottom:1046.235935px;}
.yb_c00110{bottom:1060.844429px;}
.y9_c00110{bottom:1094.153416px;}
.y7_c00110{bottom:1125.436612px;}
.y6_c00110{bottom:1146.276554px;}
.y5_c00110{bottom:1166.762796px;}
.y4_c00110{bottom:1187.245588px;}
.hf_c00110{height:11.401200px;}
.h11_c00110{height:16.743600px;}
.h12_c00110{height:16.745400px;}
.ha_c00110{height:20.713640px;}
.h10_c00110{height:26.117086px;}
.h8_c00110{height:33.772183px;}
.h7_c00110{height:37.374544px;}
.h6_c00110{height:41.427963px;}
.h13_c00110{height:52.927558px;}
.hb_c00110{height:52.986695px;}
.he_c00110{height:53.045832px;}
.hc_c00110{height:53.692631px;}
.h9_c00110{height:53.698259px;}
.hd_c00110{height:53.706695px;}
.h2_c00110{height:58.667764px;}
.h3_c00110{height:63.768724px;}
.h4_c00110{height:64.053724px;}
.h5_c00110{height:1249.830756px;}
.h1_c00110{height:1262.879062px;}
.h0_c00110{height:1263.000000px;}
.w3_c00110{width:6.057000px;}
.w7_c00110{width:10.503000px;}
.w4_c00110{width:11.395800px;}
.w6_c00110{width:13.890600px;}
.w5_c00110{width:19.945800px;}
.w2_c00110{width:883.195846px;}
.w1_c00110{width:892.414744px;}
.w0_c00110{width:892.500000px;}
.x0_c00110{left:0.000000px;}
.x7_c00110{left:1.541954px;}
.x8_c00110{left:109.903352px;}
.x10_c00110{left:118.913146px;}
.xb_c00110{left:125.042996px;}
.x2_c00110{left:126.215308px;}
.x15_c00110{left:127.998193px;}
.x4_c00110{left:249.654346px;}
.x3_c00110{left:267.288737px;}
.xc_c00110{left:280.721933px;}
.xe_c00110{left:282.267000px;}
.xf_c00110{left:285.815229px;}
.xd_c00110{left:288.205430px;}
.x11_c00110{left:289.734495px;}
.x6_c00110{left:295.431086px;}
.x9_c00110{left:359.272402px;}
.x5_c00110{left:417.442881px;}
.xa_c00110{left:431.593373px;}
.x1_c00110{left:505.976141px;}
.x13_c00110{left:745.210800px;}
.x14_c00110{left:751.266000px;}
.x12_c00110{left:753.760800px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws0_c00110{word-spacing:-15.833327pt;}
.ws4_c00110{word-spacing:-13.141541pt;}
.ws7_c00110{word-spacing:0.000000pt;}
.ws6_c00110{word-spacing:42.832937pt;}
.ws1_c00110{word-spacing:184.776097pt;}
.ws5_c00110{word-spacing:231.666191pt;}
.ws3_c00110{word-spacing:306.438769pt;}
.ws2_c00110{word-spacing:310.871012pt;}
._6_c00110{margin-left:-3.121303pt;}
._3_c00110{margin-left:-2.184647pt;}
._0_c00110{margin-left:-1.190569pt;}
._1_c00110{width:0.939388pt;}
._2_c00110{width:2.237775pt;}
._8_c00110{width:3.461619pt;}
._9_c00110{width:4.955060pt;}
._a_c00110{width:5.906689pt;}
._e_c00110{width:7.432079pt;}
._7_c00110{width:8.532268pt;}
._f_c00110{width:9.438164pt;}
._5_c00110{width:10.408093pt;}
._4_c00110{width:12.237907pt;}
._d_c00110{width:14.035100pt;}
._b_c00110{width:21.748438pt;}
._c_c00110{width:23.117430pt;}
.fs4_c00110{font-size:29.133108pt;}
.fs5_c00110{font-size:36.732892pt;}
.fs3_c00110{font-size:47.499554pt;}
.fs2_c00110{font-size:52.566166pt;}
.fs0_c00110{font-size:58.267177pt;}
.fs1_c00110{font-size:63.333308pt;}
.y0_c00110{bottom:0.000000pt;}
.y1_c00110{bottom:0.107500pt;}
.y24_c00110{bottom:2.535784pt;}
.y34_c00110{bottom:3.162768pt;}
.y31_c00110{bottom:3.165159pt;}
.y3b_c00110{bottom:3.165738pt;}
.y2e_c00110{bottom:3.166484pt;}
.y8_c00110{bottom:6.068128pt;}
.ya_c00110{bottom:57.896246pt;}
.y3_c00110{bottom:74.146170pt;}
.y2_c00110{bottom:74.783670pt;}
.y47_c00110{bottom:114.048054pt;}
.y46_c00110{bottom:137.637112pt;}
.y45_c00110{bottom:160.436436pt;}
.y44_c00110{bottom:173.737764pt;}
.y43_c00110{bottom:183.079627pt;}
.y42_c00110{bottom:206.194684pt;}
.y41_c00110{bottom:228.837742pt;}
.y40_c00110{bottom:242.296403pt;}
.y3f_c00110{bottom:251.639066pt;}
.y3e_c00110{bottom:265.097727pt;}
.y3d_c00110{bottom:273.963057pt;}
.y3c_c00110{bottom:298.032381pt;}
.y3a_c00110{bottom:317.612800pt;}
.y39_c00110{bottom:320.670238pt;}
.y38_c00110{bottom:343.468363pt;}
.y37_c00110{bottom:356.769691pt;}
.y36_c00110{bottom:365.637687pt;}
.y35_c00110{bottom:389.704344pt;}
.y33_c00110{bottom:409.446400pt;}
.y32_c00110{bottom:412.501668pt;}
.y30_c00110{bottom:432.088000pt;}
.y2f_c00110{bottom:435.145659pt;}
.y2d_c00110{bottom:454.728000pt;}
.y29_c00110{bottom:457.153650pt;}
.y2c_c00110{bottom:457.786984pt;}
.y28_c00110{bottom:470.926978pt;}
.y2b_c00110{bottom:471.244311pt;}
.y27_c00110{bottom:480.109641pt;}
.y2a_c00110{bottom:480.268708pt;}
.y26_c00110{bottom:504.178298pt;}
.y25_c00110{bottom:526.818956pt;}
.y22_c00110{bottom:530.199657pt;}
.y23_c00110{bottom:538.008000pt;}
.y21_c00110{bottom:554.266315pt;}
.y20_c00110{bottom:577.065105pt;}
.y1f_c00110{bottom:599.706963pt;}
.y1e_c00110{bottom:622.507621pt;}
.y1d_c00110{bottom:635.807615pt;}
.y1c_c00110{bottom:644.672945pt;}
.y1b_c00110{bottom:668.741602pt;}
.y1a_c00110{bottom:691.382260pt;}
.y19_c00110{bottom:704.683588pt;}
.y18_c00110{bottom:713.546251pt;}
.y17_c00110{bottom:737.295041pt;}
.y16_c00110{bottom:760.098099pt;}
.y15_c00110{bottom:783.213156pt;}
.y14_c00110{bottom:805.853814pt;}
.y13_c00110{bottom:828.496872pt;}
.y12_c00110{bottom:841.955533pt;}
.y11_c00110{bottom:851.295529pt;}
.y10_c00110{bottom:864.755524pt;}
.yf_c00110{bottom:873.623520pt;}
.ye_c00110{bottom:898.796843pt;}
.yd_c00110{bottom:916.687503pt;}
.yc_c00110{bottom:929.987498pt;}
.yb_c00110{bottom:942.972826pt;}
.y9_c00110{bottom:972.580814pt;}
.y7_c00110{bottom:1000.388100pt;}
.y6_c00110{bottom:1018.912492pt;}
.y5_c00110{bottom:1037.122485pt;}
.y4_c00110{bottom:1055.329411pt;}
.hf_c00110{height:10.134400pt;}
.h11_c00110{height:14.883200pt;}
.h12_c00110{height:14.884800pt;}
.ha_c00110{height:18.412124pt;}
.h10_c00110{height:23.215188pt;}
.h8_c00110{height:30.019718pt;}
.h7_c00110{height:33.221817pt;}
.h6_c00110{height:36.824856pt;}
.h13_c00110{height:47.046718pt;}
.hb_c00110{height:47.099284pt;}
.he_c00110{height:47.151851pt;}
.hc_c00110{height:47.726783pt;}
.h9_c00110{height:47.731785pt;}
.hd_c00110{height:47.739284pt;}
.h2_c00110{height:52.149123pt;}
.h3_c00110{height:56.683311pt;}
.h4_c00110{height:56.936644pt;}
.h5_c00110{height:1110.960672pt;}
.h1_c00110{height:1122.559167pt;}
.h0_c00110{height:1122.666667pt;}
.w3_c00110{width:5.384000pt;}
.w7_c00110{width:9.336000pt;}
.w4_c00110{width:10.129600pt;}
.w6_c00110{width:12.347200pt;}
.w5_c00110{width:17.729600pt;}
.w2_c00110{width:785.062974pt;}
.w1_c00110{width:793.257550pt;}
.w0_c00110{width:793.333333pt;}
.x0_c00110{left:0.000000pt;}
.x7_c00110{left:1.370626pt;}
.x8_c00110{left:97.691868pt;}
.x10_c00110{left:105.700574pt;}
.xb_c00110{left:111.149329pt;}
.x2_c00110{left:112.191384pt;}
.x15_c00110{left:113.776171pt;}
.x4_c00110{left:221.914974pt;}
.x3_c00110{left:237.589988pt;}
.xc_c00110{left:249.530607pt;}
.xe_c00110{left:250.904000pt;}
.xf_c00110{left:254.057982pt;}
.xd_c00110{left:256.182605pt;}
.x11_c00110{left:257.541773pt;}
.x6_c00110{left:262.605410pt;}
.x9_c00110{left:319.353246pt;}
.x5_c00110{left:371.060339pt;}
.xa_c00110{left:383.638554pt;}
.x1_c00110{left:449.756570pt;}
.x13_c00110{left:662.409600pt;}
.x14_c00110{left:667.792000pt;}
.x12_c00110{left:670.009600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00111;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.112000;font-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_c00111{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls0_c00111{letter-spacing:0.000000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:0.000000px;}
._0_c00111{margin-left:-1.339390px;}
._1_c00111{width:1.056287px;}
._6_c00111{width:2.186358px;}
._7_c00111{width:3.594079px;}
._9_c00111{width:16.038677px;}
._8_c00111{width:20.170675px;}
._2_c00111{width:58.979415px;}
._3_c00111{width:82.709104px;}
._4_c00111{width:148.298266px;}
._5_c00111{width:196.064959px;}
.fc1_c00111{color:rgb(105,148,45);}
.fc0_c00111{color:rgb(35,31,32);}
.fs4_c00111{font-size:38.474625px;}
.fs3_c00111{font-size:41.324503px;}
.fs6_c00111{font-size:44.887062px;}
.fs5_c00111{font-size:47.737061px;}
.fs2_c00111{font-size:59.136936px;}
.fs0_c00111{font-size:65.550574px;}
.fs1_c00111{font-size:71.249972px;}
.y0_c00111{bottom:0.000000px;}
.y1_c00111{bottom:0.120938px;}
.y8_c00111{bottom:6.826644px;}
.ya_c00111{bottom:65.133277px;}
.y3_c00111{bottom:83.414442px;}
.y2_c00111{bottom:84.131629px;}
.y21_c00111{bottom:483.545660px;}
.y20_c00111{bottom:500.641243px;}
.y1f_c00111{bottom:515.603737px;}
.y1e_c00111{bottom:530.387641px;}
.y1d_c00111{bottom:587.567468px;}
.y1c_c00111{bottom:618.204656px;}
.y1b_c00111{bottom:649.020494px;}
.y1a_c00111{bottom:679.657081px;}
.y19_c00111{bottom:729.532061px;}
.y18_c00111{bottom:749.660553px;}
.y17_c00111{bottom:785.462029px;}
.y16_c00111{bottom:800.248033px;}
.y15_c00111{bottom:814.496527px;}
.y14_c00111{bottom:831.953520px;}
.y13_c00111{bottom:868.648006px;}
.y12_c00111{bottom:887.351498px;}
.y11_c00111{bottom:911.040989px;}
.y10_c00111{bottom:941.855477px;}
.yf_c00111{bottom:972.849964px;}
.ye_c00111{bottom:992.083946px;}
.yd_c00111{bottom:1006.869951px;}
.yc_c00111{bottom:1020.762945px;}
.yb_c00111{bottom:1037.685938px;}
.y9_c00111{bottom:1094.153416px;}
.y7_c00111{bottom:1125.436612px;}
.y6_c00111{bottom:1146.276554px;}
.y5_c00111{bottom:1166.762796px;}
.y4_c00111{bottom:1187.245588px;}
.ha_c00111{height:24.315963px;}
.h9_c00111{height:26.117086px;}
.hc_c00111{height:28.368623px;}
.hb_c00111{height:30.169822px;}
.h7_c00111{height:37.374544px;}
.h6_c00111{height:41.427963px;}
.h2_c00111{height:58.667764px;}
.hd_c00111{height:58.929966px;}
.h3_c00111{height:63.768724px;}
.he_c00111{height:63.839974px;}
.h8_c00111{height:63.911224px;}
.h4_c00111{height:64.053724px;}
.h5_c00111{height:1249.830756px;}
.h1_c00111{height:1262.879062px;}
.h0_c00111{height:1263.000000px;}
.w2_c00111{width:883.195846px;}
.w1_c00111{width:892.414744px;}
.w0_c00111{width:892.500000px;}
.x0_c00111{left:0.000000px;}
.x7_c00111{left:1.541954px;}
.x8_c00111{left:112.753050px;}
.x2_c00111{left:126.215308px;}
.x9_c00111{left:153.008984px;}
.xa_c00111{left:178.837474px;}
.x4_c00111{left:252.504495px;}
.x3_c00111{left:270.140236px;}
.x6_c00111{left:298.282885px;}
.x5_c00111{left:420.296029px;}
.x1_c00111{left:505.976141px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:0.000000pt;}
._0_c00111{margin-left:-1.190569pt;}
._1_c00111{width:0.938922pt;}
._6_c00111{width:1.943429pt;}
._7_c00111{width:3.194737pt;}
._9_c00111{width:14.256602pt;}
._8_c00111{width:17.929489pt;}
._2_c00111{width:52.426146pt;}
._3_c00111{width:73.519204pt;}
._4_c00111{width:131.820681pt;}
._5_c00111{width:174.279964pt;}
.fs4_c00111{font-size:34.199666pt;}
.fs3_c00111{font-size:36.732892pt;}
.fs6_c00111{font-size:39.899611pt;}
.fs5_c00111{font-size:42.432943pt;}
.fs2_c00111{font-size:52.566166pt;}
.fs0_c00111{font-size:58.267177pt;}
.fs1_c00111{font-size:63.333308pt;}
.y0_c00111{bottom:0.000000pt;}
.y1_c00111{bottom:0.107500pt;}
.y8_c00111{bottom:6.068128pt;}
.ya_c00111{bottom:57.896246pt;}
.y3_c00111{bottom:74.146170pt;}
.y2_c00111{bottom:74.783670pt;}
.y21_c00111{bottom:429.818364pt;}
.y20_c00111{bottom:445.014438pt;}
.y1f_c00111{bottom:458.314433pt;}
.y1e_c00111{bottom:471.455681pt;}
.y1d_c00111{bottom:522.282194pt;}
.y1c_c00111{bottom:549.515250pt;}
.y1b_c00111{bottom:576.907105pt;}
.y1a_c00111{bottom:604.139628pt;}
.y19_c00111{bottom:648.472944pt;}
.y18_c00111{bottom:666.364936pt;}
.y17_c00111{bottom:698.188470pt;}
.y16_c00111{bottom:711.331585pt;}
.y15_c00111{bottom:723.996913pt;}
.y14_c00111{bottom:739.514240pt;}
.y13_c00111{bottom:772.131561pt;}
.y12_c00111{bottom:788.756887pt;}
.y11_c00111{bottom:809.814212pt;}
.y10_c00111{bottom:837.204868pt;}
.yf_c00111{bottom:864.755524pt;}
.ye_c00111{bottom:881.852397pt;}
.yd_c00111{bottom:894.995512pt;}
.yc_c00111{bottom:907.344840pt;}
.yb_c00111{bottom:922.387501pt;}
.y9_c00111{bottom:972.580814pt;}
.y7_c00111{bottom:1000.388100pt;}
.y6_c00111{bottom:1018.912492pt;}
.y5_c00111{bottom:1037.122485pt;}
.y4_c00111{bottom:1055.329411pt;}
.ha_c00111{height:21.614189pt;}
.h9_c00111{height:23.215188pt;}
.hc_c00111{height:25.216554pt;}
.hb_c00111{height:26.817620pt;}
.h7_c00111{height:33.221817pt;}
.h6_c00111{height:36.824856pt;}
.h2_c00111{height:52.149123pt;}
.hd_c00111{height:52.382192pt;}
.h3_c00111{height:56.683311pt;}
.he_c00111{height:56.746644pt;}
.h8_c00111{height:56.809977pt;}
.h4_c00111{height:56.936644pt;}
.h5_c00111{height:1110.960672pt;}
.h1_c00111{height:1122.559167pt;}
.h0_c00111{height:1122.666667pt;}
.w2_c00111{width:785.062974pt;}
.w1_c00111{width:793.257550pt;}
.w0_c00111{width:793.333333pt;}
.x0_c00111{left:0.000000pt;}
.x7_c00111{left:1.370626pt;}
.x8_c00111{left:100.224934pt;}
.x2_c00111{left:112.191384pt;}
.x9_c00111{left:136.007986pt;}
.xa_c00111{left:158.966644pt;}
.x4_c00111{left:224.448440pt;}
.x3_c00111{left:240.124654pt;}
.x6_c00111{left:265.140342pt;}
.x5_c00111{left:373.596470pt;}
.x1_c00111{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls0_c00112{letter-spacing:0.000000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:0.000000px;}
._0_c00112{width:1.014975px;}
.fc0_c00112{color:rgb(35,31,32);}
.fs0_c00112{font-size:106.873757px;}
.y0_c00112{bottom:0.000000px;}
.y1_c00112{bottom:0.120938px;}
.y3_c00112{bottom:387.471407px;}
.y2_c00112{bottom:433.606889px;}
.h2_c00112{height:95.865760px;}
.h1_c00112{height:1262.879062px;}
.h0_c00112{height:1263.000000px;}
.w1_c00112{width:892.414744px;}
.w0_c00112{width:892.500000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:108.404900px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws0_c00112{word-spacing:0.000000pt;}
._0_c00112{width:0.902200pt;}
.fs0_c00112{font-size:94.998895pt;}
.y0_c00112{bottom:0.000000pt;}
.y1_c00112{bottom:0.107500pt;}
.y3_c00112{bottom:344.419029pt;}
.y2_c00112{bottom:385.428346pt;}
.h2_c00112{height:85.214009pt;}
.h1_c00112{height:1122.559167pt;}
.h0_c00112{height:1122.666667pt;}
.w1_c00112{width:793.257550pt;}
.w0_c00112{width:793.333333pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00113;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00113;src:url('chunks/assets/font_584b49fd46413cc942e723ef.woff2')format("woff");}.ff6_c00113{font-family:ff6_c00113;line-height:0.841000;font-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_c00113{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls3_c00113{letter-spacing:0.000000px;}
.ls1_c00113{letter-spacing:0.054983px;}
.ls0_c00113{letter-spacing:0.244904px;}
.ls2_c00113{letter-spacing:89.271729px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00113{word-spacing:-20.840692px;}
.ws1_c00113{word-spacing:-16.387643px;}
.ws2_c00113{word-spacing:0.000000px;}
._7_c00113{margin-left:-14.996421px;}
._9_c00113{margin-left:-13.392823px;}
._3_c00113{margin-left:-12.227624px;}
._2_c00113{margin-left:-10.327820px;}
._6_c00113{margin-left:-9.284918px;}
._a_c00113{margin-left:-8.119863px;}
._b_c00113{margin-left:-7.086187px;}
._5_c00113{margin-left:-5.706619px;}
._4_c00113{margin-left:-4.198366px;}
._8_c00113{margin-left:-2.597398px;}
._0_c00113{margin-left:-1.339390px;}
._1_c00113{width:1.056287px;}
.fc1_c00113{color:rgb(105,148,45);}
.fc0_c00113{color:rgb(35,31,32);}
.fs4_c00113{font-size:41.324503px;}
.fs2_c00113{font-size:59.136936px;}
.fs0_c00113{font-size:65.550574px;}
.fs1_c00113{font-size:71.249972px;}
.fs3_c00113{font-size:83.362767px;}
.y0_c00113{bottom:0.000000px;}
.y1_c00113{bottom:0.120938px;}
.y4_c00113{bottom:3.919106px;}
.ya_c00113{bottom:6.826644px;}
.yc_c00113{bottom:65.133277px;}
.y3_c00113{bottom:80.333460px;}
.y3a_c00113{bottom:82.948320px;}
.y5_c00113{bottom:83.062279px;}
.y2_c00113{bottom:84.131629px;}
.y39_c00113{bottom:97.729404px;}
.y38_c00113{bottom:112.693308px;}
.y37_c00113{bottom:127.475802px;}
.y36_c00113{bottom:142.258296px;}
.y35_c00113{bottom:157.933290px;}
.y34_c00113{bottom:175.033283px;}
.y33_c00113{bottom:191.957626px;}
.y32_c00113{bottom:219.743765px;}
.y31_c00113{bottom:236.842259px;}
.y30_c00113{bottom:253.942252px;}
.y2f_c00113{bottom:271.043745px;}
.y2e_c00113{bottom:287.965388px;}
.y2d_c00113{bottom:315.752877px;}
.y2c_c00113{bottom:343.361116px;}
.y2b_c00113{bottom:370.971455px;}
.y2a_c00113{bottom:398.758194px;}
.y29_c00113{bottom:415.858187px;}
.y28_c00113{bottom:432.777580px;}
.y27_c00113{bottom:460.567169px;}
.y26_c00113{bottom:477.667162px;}
.y25_c00113{bottom:494.762055px;}
.y24_c00113{bottom:522.370294px;}
.y23_c00113{bottom:550.160633px;}
.y22_c00113{bottom:567.262126px;}
.y21_c00113{bottom:584.183620px;}
.y20_c00113{bottom:601.285113px;}
.y1f_c00113{bottom:618.383156px;}
.y1e_c00113{bottom:645.992745px;}
.y1d_c00113{bottom:673.600234px;}
.y1c_c00113{bottom:711.898069px;}
.y1b_c00113{bottom:741.110557px;}
.y1a_c00113{bottom:758.209050px;}
.y19_c00113{bottom:775.128293px;}
.y18_c00113{bottom:802.736532px;}
.y17_c00113{bottom:830.524021px;}
.y16_c00113{bottom:847.627014px;}
.y15_c00113{bottom:864.725507px;}
.y14_c00113{bottom:881.827001px;}
.y13_c00113{bottom:898.928494px;}
.y12_c00113{bottom:915.849987px;}
.y11_c00113{bottom:932.948780px;}
.y10_c00113{bottom:971.067965px;}
.yf_c00113{bottom:1010.787949px;}
.ye_c00113{bottom:1038.219938px;}
.yd_c00113{bottom:1051.043433px;}
.yb_c00113{bottom:1094.685915px;}
.y9_c00113{bottom:1125.436612px;}
.y8_c00113{bottom:1146.276554px;}
.y7_c00113{bottom:1166.762796px;}
.y6_c00113{bottom:1187.245588px;}
.h3_c00113{height:18.521640px;}
.ha_c00113{height:26.117086px;}
.h8_c00113{height:37.374544px;}
.h7_c00113{height:41.427963px;}
.hc_c00113{height:52.986695px;}
.h2_c00113{height:58.667764px;}
.hb_c00113{height:58.929966px;}
.h4_c00113{height:63.768724px;}
.h5_c00113{height:64.053724px;}
.h9_c00113{height:74.943127px;}
.h6_c00113{height:1249.830756px;}
.h1_c00113{height:1262.879062px;}
.h0_c00113{height:1263.000000px;}
.w2_c00113{width:1.958400px;}
.w3_c00113{width:883.195846px;}
.w1_c00113{width:892.414744px;}
.w0_c00113{width:892.500000px;}
.x0_c00113{left:0.000000px;}
.x8_c00113{left:1.541954px;}
.x9_c00113{left:112.753050px;}
.x3_c00113{left:126.215743px;}
.xc_c00113{left:127.537178px;}
.xd_c00113{left:142.500139px;}
.x5_c00113{left:252.504495px;}
.x4_c00113{left:270.140236px;}
.x7_c00113{left:295.789578px;}
.xa_c00113{left:405.586383px;}
.x6_c00113{left:420.296029px;}
.x1_c00113{left:505.976141px;}
.x2_c00113{left:750.196800px;}
.xe_c00113{left:765.218739px;}
.xb_c00113{left:767.354739px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls3_c00113{letter-spacing:0.000000pt;}
.ls1_c00113{letter-spacing:0.048874pt;}
.ls0_c00113{letter-spacing:0.217692pt;}
.ls2_c00113{letter-spacing:79.352648pt;}
.ws0_c00113{word-spacing:-18.525059pt;}
.ws1_c00113{word-spacing:-14.566794pt;}
.ws2_c00113{word-spacing:0.000000pt;}
._7_c00113{margin-left:-13.330152pt;}
._9_c00113{margin-left:-11.904732pt;}
._3_c00113{margin-left:-10.868999pt;}
._2_c00113{margin-left:-9.180284pt;}
._6_c00113{margin-left:-8.253260pt;}
._a_c00113{margin-left:-7.217656pt;}
._b_c00113{margin-left:-6.298833pt;}
._5_c00113{margin-left:-5.072550pt;}
._4_c00113{margin-left:-3.731881pt;}
._8_c00113{margin-left:-2.308798pt;}
._0_c00113{margin-left:-1.190569pt;}
._1_c00113{width:0.938922pt;}
.fs4_c00113{font-size:36.732892pt;}
.fs2_c00113{font-size:52.566166pt;}
.fs0_c00113{font-size:58.267177pt;}
.fs1_c00113{font-size:63.333308pt;}
.fs3_c00113{font-size:74.100237pt;}
.y0_c00113{bottom:0.000000pt;}
.y1_c00113{bottom:0.107500pt;}
.y4_c00113{bottom:3.483650pt;}
.ya_c00113{bottom:6.068128pt;}
.yc_c00113{bottom:57.896246pt;}
.y3_c00113{bottom:71.407520pt;}
.y3a_c00113{bottom:73.731840pt;}
.y5_c00113{bottom:73.833137pt;}
.y2_c00113{bottom:74.783670pt;}
.y39_c00113{bottom:86.870581pt;}
.y38_c00113{bottom:100.171830pt;}
.y37_c00113{bottom:113.311824pt;}
.y36_c00113{bottom:126.451819pt;}
.y35_c00113{bottom:140.385147pt;}
.y34_c00113{bottom:155.585141pt;}
.y33_c00113{bottom:170.629001pt;}
.y32_c00113{bottom:195.327791pt;}
.y31_c00113{bottom:210.526452pt;}
.y30_c00113{bottom:225.726446pt;}
.y2f_c00113{bottom:240.927773pt;}
.y2e_c00113{bottom:255.969234pt;}
.y2d_c00113{bottom:280.669224pt;}
.y2c_c00113{bottom:305.209881pt;}
.y2b_c00113{bottom:329.752404pt;}
.y2a_c00113{bottom:354.451728pt;}
.y29_c00113{bottom:369.651722pt;}
.y28_c00113{bottom:384.691182pt;}
.y27_c00113{bottom:409.393039pt;}
.y26_c00113{bottom:424.593033pt;}
.y25_c00113{bottom:439.788494pt;}
.y24_c00113{bottom:464.329151pt;}
.y23_c00113{bottom:489.031674pt;}
.y22_c00113{bottom:504.233001pt;}
.y21_c00113{bottom:519.274329pt;}
.y20_c00113{bottom:534.475656pt;}
.y1f_c00113{bottom:549.673916pt;}
.y1e_c00113{bottom:574.215773pt;}
.y1d_c00113{bottom:598.755763pt;}
.y1c_c00113{bottom:632.798283pt;}
.y1b_c00113{bottom:658.764939pt;}
.y1a_c00113{bottom:673.963600pt;}
.y19_c00113{bottom:689.002927pt;}
.y18_c00113{bottom:713.543584pt;}
.y17_c00113{bottom:738.243574pt;}
.y16_c00113{bottom:753.446235pt;}
.y15_c00113{bottom:768.644895pt;}
.y14_c00113{bottom:783.846223pt;}
.y13_c00113{bottom:799.047550pt;}
.y12_c00113{bottom:814.088877pt;}
.y11_c00113{bottom:829.287805pt;}
.y10_c00113{bottom:863.171524pt;}
.yf_c00113{bottom:898.478177pt;}
.ye_c00113{bottom:922.862167pt;}
.yd_c00113{bottom:934.260829pt;}
.yb_c00113{bottom:973.054147pt;}
.y9_c00113{bottom:1000.388100pt;}
.y8_c00113{bottom:1018.912492pt;}
.y7_c00113{bottom:1037.122485pt;}
.y6_c00113{bottom:1055.329411pt;}
.h3_c00113{height:16.463680pt;}
.ha_c00113{height:23.215188pt;}
.h8_c00113{height:33.221817pt;}
.h7_c00113{height:36.824856pt;}
.hc_c00113{height:47.099284pt;}
.h2_c00113{height:52.149123pt;}
.hb_c00113{height:52.382192pt;}
.h4_c00113{height:56.683311pt;}
.h5_c00113{height:56.936644pt;}
.h9_c00113{height:66.616113pt;}
.h6_c00113{height:1110.960672pt;}
.h1_c00113{height:1122.559167pt;}
.h0_c00113{height:1122.666667pt;}
.w2_c00113{width:1.740800pt;}
.w3_c00113{width:785.062974pt;}
.w1_c00113{width:793.257550pt;}
.w0_c00113{width:793.333333pt;}
.x0_c00113{left:0.000000pt;}
.x8_c00113{left:1.370626pt;}
.x9_c00113{left:100.224934pt;}
.x3_c00113{left:112.191772pt;}
.xc_c00113{left:113.366381pt;}
.xd_c00113{left:126.666790pt;}
.x5_c00113{left:224.448440pt;}
.x4_c00113{left:240.124654pt;}
.x7_c00113{left:262.924069pt;}
.xa_c00113{left:360.521230pt;}
.x6_c00113{left:373.596470pt;}
.x1_c00113{left:449.756570pt;}
.x2_c00113{left:666.841600pt;}
.xe_c00113{left:680.194435pt;}
.xb_c00113{left:682.093101pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.112000;font-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_c00114{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls0_c00114{letter-spacing:0.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:0.000000px;}
._d_c00114{margin-left:-2.771877px;}
._0_c00114{margin-left:-1.339390px;}
._1_c00114{width:1.056287px;}
._b_c00114{width:2.253815px;}
._7_c00114{width:4.302427px;}
._6_c00114{width:5.511911px;}
._e_c00114{width:6.987983px;}
._5_c00114{width:8.812297px;}
._c_c00114{width:10.166946px;}
._9_c00114{width:13.338770px;}
._8_c00114{width:14.373478px;}
._4_c00114{width:23.183494px;}
._a_c00114{width:25.525724px;}
._3_c00114{width:37.246753px;}
._2_c00114{width:39.325859px;}
.fc2_c00114{color:rgb(237,30,36);}
.fc1_c00114{color:rgb(105,148,45);}
.fc0_c00114{color:rgb(35,31,32);}
.fs4_c00114{font-size:38.474625px;}
.fs3_c00114{font-size:47.737061px;}
.fs2_c00114{font-size:59.136936px;}
.fs0_c00114{font-size:65.550574px;}
.fs1_c00114{font-size:71.249972px;}
.y0_c00114{bottom:0.000000px;}
.y1_c00114{bottom:0.120938px;}
.y4_c00114{bottom:3.919106px;}
.ya_c00114{bottom:6.826644px;}
.yc_c00114{bottom:65.133277px;}
.y3_c00114{bottom:80.333460px;}
.y5_c00114{bottom:83.062279px;}
.y2_c00114{bottom:84.131629px;}
.y27_c00114{bottom:504.203652px;}
.y29_c00114{bottom:504.205152px;}
.y28_c00114{bottom:512.399648px;}
.y26_c00114{bottom:535.376639px;}
.y24_c00114{bottom:535.379339px;}
.y25_c00114{bottom:543.568136px;}
.y23_c00114{bottom:566.728127px;}
.y21_c00114{bottom:595.228115px;}
.y22_c00114{bottom:603.421112px;}
.y20_c00114{bottom:616.778607px;}
.y1f_c00114{bottom:631.741101px;}
.y1e_c00114{bottom:645.457095px;}
.y1d_c00114{bottom:661.843089px;}
.y1c_c00114{bottom:699.254574px;}
.y1b_c00114{bottom:715.283567px;}
.y1a_c00114{bottom:741.644257px;}
.y19_c00114{bottom:772.460094px;}
.y18_c00114{bottom:803.098032px;}
.y17_c00114{bottom:822.335524px;}
.y16_c00114{bottom:838.546018px;}
.y15_c00114{bottom:864.902357px;}
.y14_c00114{bottom:895.720295px;}
.y13_c00114{bottom:926.357483px;}
.y12_c00114{bottom:957.171970px;}
.y11_c00114{bottom:976.231848px;}
.y10_c00114{bottom:991.016457px;}
.yf_c00114{bottom:1005.443451px;}
.ye_c00114{bottom:1023.436394px;}
.yd_c00114{bottom:1060.488929px;}
.yb_c00114{bottom:1094.685915px;}
.y9_c00114{bottom:1125.436612px;}
.y8_c00114{bottom:1146.276554px;}
.y7_c00114{bottom:1166.762796px;}
.y6_c00114{bottom:1187.245588px;}
.h3_c00114{height:18.521640px;}
.hd_c00114{height:24.315963px;}
.hb_c00114{height:30.169822px;}
.h8_c00114{height:37.374544px;}
.h7_c00114{height:41.427963px;}
.he_c00114{height:42.772407px;}
.h9_c00114{height:45.029982px;}
.h2_c00114{height:58.667764px;}
.h4_c00114{height:63.768724px;}
.hc_c00114{height:63.839974px;}
.ha_c00114{height:63.911224px;}
.h5_c00114{height:64.053724px;}
.h6_c00114{height:1249.830756px;}
.h1_c00114{height:1262.879062px;}
.h0_c00114{height:1263.000000px;}
.w2_c00114{width:1.958400px;}
.w3_c00114{width:883.195846px;}
.w1_c00114{width:892.414744px;}
.w0_c00114{width:892.500000px;}
.x0_c00114{left:0.000000px;}
.x8_c00114{left:1.541954px;}
.x9_c00114{left:112.753050px;}
.x3_c00114{left:126.215743px;}
.xa_c00114{left:178.837474px;}
.xd_c00114{left:210.010462px;}
.xe_c00114{left:222.478457px;}
.x5_c00114{left:252.504495px;}
.x4_c00114{left:270.140236px;}
.x7_c00114{left:295.789578px;}
.x6_c00114{left:420.296029px;}
.xb_c00114{left:477.373355px;}
.xc_c00114{left:483.424352px;}
.x1_c00114{left:505.976141px;}
.xf_c00114{left:692.545269px;}
.x10_c00114{left:704.120764px;}
.x2_c00114{left:750.196800px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:0.000000pt;}
._d_c00114{margin-left:-2.463891pt;}
._0_c00114{margin-left:-1.190569pt;}
._1_c00114{width:0.938922pt;}
._b_c00114{width:2.003391pt;}
._7_c00114{width:3.824379pt;}
._6_c00114{width:4.899476pt;}
._e_c00114{width:6.211540pt;}
._5_c00114{width:7.833153pt;}
._c_c00114{width:9.037285pt;}
._9_c00114{width:11.856684pt;}
._8_c00114{width:12.776425pt;}
._4_c00114{width:20.607550pt;}
._a_c00114{width:22.689532pt;}
._3_c00114{width:33.108224pt;}
._2_c00114{width:34.956319pt;}
.fs4_c00114{font-size:34.199666pt;}
.fs3_c00114{font-size:42.432943pt;}
.fs2_c00114{font-size:52.566166pt;}
.fs0_c00114{font-size:58.267177pt;}
.fs1_c00114{font-size:63.333308pt;}
.y0_c00114{bottom:0.000000pt;}
.y1_c00114{bottom:0.107500pt;}
.y4_c00114{bottom:3.483650pt;}
.ya_c00114{bottom:6.068128pt;}
.yc_c00114{bottom:57.896246pt;}
.y3_c00114{bottom:71.407520pt;}
.y5_c00114{bottom:73.833137pt;}
.y2_c00114{bottom:74.783670pt;}
.y27_c00114{bottom:448.181024pt;}
.y29_c00114{bottom:448.182357pt;}
.y28_c00114{bottom:455.466354pt;}
.y26_c00114{bottom:475.890346pt;}
.y24_c00114{bottom:475.892746pt;}
.y25_c00114{bottom:483.171676pt;}
.y23_c00114{bottom:503.758335pt;}
.y21_c00114{bottom:529.091658pt;}
.y22_c00114{bottom:536.374322pt;}
.y20_c00114{bottom:548.247650pt;}
.y1f_c00114{bottom:561.547645pt;}
.y1e_c00114{bottom:573.739640pt;}
.y1d_c00114{bottom:588.304968pt;}
.y1c_c00114{bottom:621.559621pt;}
.y1b_c00114{bottom:635.807615pt;}
.y1a_c00114{bottom:659.239339pt;}
.y19_c00114{bottom:686.631195pt;}
.y18_c00114{bottom:713.864917pt;}
.y17_c00114{bottom:730.964911pt;}
.y16_c00114{bottom:745.374238pt;}
.y15_c00114{bottom:768.802095pt;}
.y14_c00114{bottom:796.195818pt;}
.y13_c00114{bottom:823.428874pt;}
.y12_c00114{bottom:850.819529pt;}
.y11_c00114{bottom:867.761642pt;}
.y10_c00114{bottom:880.903517pt;}
.yf_c00114{bottom:893.727512pt;}
.ye_c00114{bottom:909.721239pt;}
.yd_c00114{bottom:942.656826pt;}
.yb_c00114{bottom:973.054147pt;}
.y9_c00114{bottom:1000.388100pt;}
.y8_c00114{bottom:1018.912492pt;}
.y7_c00114{bottom:1037.122485pt;}
.y6_c00114{bottom:1055.329411pt;}
.h3_c00114{height:16.463680pt;}
.hd_c00114{height:21.614189pt;}
.hb_c00114{height:26.817620pt;}
.h8_c00114{height:33.221817pt;}
.h7_c00114{height:36.824856pt;}
.he_c00114{height:38.019917pt;}
.h9_c00114{height:40.026651pt;}
.h2_c00114{height:52.149123pt;}
.h4_c00114{height:56.683311pt;}
.hc_c00114{height:56.746644pt;}
.ha_c00114{height:56.809977pt;}
.h5_c00114{height:56.936644pt;}
.h6_c00114{height:1110.960672pt;}
.h1_c00114{height:1122.559167pt;}
.h0_c00114{height:1122.666667pt;}
.w2_c00114{width:1.740800pt;}
.w3_c00114{width:785.062974pt;}
.w1_c00114{width:793.257550pt;}
.w0_c00114{width:793.333333pt;}
.x0_c00114{left:0.000000pt;}
.x8_c00114{left:1.370626pt;}
.x9_c00114{left:100.224934pt;}
.x3_c00114{left:112.191772pt;}
.xa_c00114{left:158.966644pt;}
.xd_c00114{left:186.675966pt;}
.xe_c00114{left:197.758628pt;}
.x5_c00114{left:224.448440pt;}
.x4_c00114{left:240.124654pt;}
.x7_c00114{left:262.924069pt;}
.x6_c00114{left:373.596470pt;}
.xb_c00114{left:424.331871pt;}
.xc_c00114{left:429.710535pt;}
.x1_c00114{left:449.756570pt;}
.xf_c00114{left:615.595794pt;}
.x10_c00114{left:625.885123pt;}
.x2_c00114{left:666.841600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00115{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00115{word-spacing:-17.812493px;}
.ws1_c00115{word-spacing:0.000000px;}
._f_c00115{margin-left:-3.647494px;}
._9_c00115{margin-left:-2.501110px;}
._0_c00115{margin-left:-1.339390px;}
._1_c00115{width:1.056287px;}
._5_c00115{width:2.168259px;}
._3_c00115{width:3.739195px;}
._4_c00115{width:4.816309px;}
._2_c00115{width:5.818597px;}
._8_c00115{width:7.014982px;}
._6_c00115{width:8.639720px;}
._b_c00115{width:9.742035px;}
._7_c00115{width:11.354008px;}
._10_c00115{width:12.795977px;}
._d_c00115{width:14.159783px;}
._a_c00115{width:15.243397px;}
._c_c00115{width:16.569632px;}
._e_c00115{width:19.524984px;}
._17_c00115{width:160.460978px;}
._16_c00115{width:166.184581px;}
._13_c00115{width:167.587937px;}
._12_c00115{width:171.065220px;}
._14_c00115{width:190.425246px;}
._15_c00115{width:207.981254px;}
._11_c00115{width:210.984626px;}
.fc2_c00115{color:transparent;}
.fc1_c00115{color:rgb(105,148,45);}
.fc0_c00115{color:rgb(35,31,32);}
.fs6_c00115{font-size:29.924628px;}
.fs3_c00115{font-size:38.474625px;}
.fs7_c00115{font-size:41.324503px;}
.fs4_c00115{font-size:44.887062px;}
.fs2_c00115{font-size:59.136936px;}
.fs0_c00115{font-size:65.550574px;}
.fs1_c00115{font-size:71.249972px;}
.fs8_c00115{font-size:76.949969px;}
.fs5_c00115{font-size:83.362767px;}
.y0_c00115{bottom:0.000000px;}
.y1_c00115{bottom:0.120938px;}
.y3a_c00115{bottom:5.165575px;}
.ya_c00115{bottom:6.826644px;}
.y9_c00115{bottom:71.838984px;}
.y3_c00115{bottom:83.062176px;}
.y2_c00115{bottom:84.131629px;}
.y37_c00115{bottom:87.043348px;}
.y36_c00115{bottom:101.827253px;}
.y35_c00115{bottom:116.611157px;}
.y34_c00115{bottom:131.573651px;}
.y33_c00115{bottom:145.466795px;}
.y32_c00115{bottom:157.934640px;}
.y31_c00115{bottom:175.031183px;}
.y30_c00115{bottom:192.129826px;}
.y3f_c00115{bottom:200.265482px;}
.y2f_c00115{bottom:226.152663px;}
.y3e_c00115{bottom:236.425968px;}
.y2e_c00115{bottom:243.251306px;}
.y2d_c00115{bottom:260.352649px;}
.y3d_c00115{bottom:274.008453px;}
.y2c_c00115{bottom:277.453992px;}
.y3b_c00115{bottom:292.353446px;}
.y2b_c00115{bottom:294.553235px;}
.y39_c00115{bottom:307.261800px;}
.y2a_c00115{bottom:309.341730px;}
.y3c_c00115{bottom:311.236938px;}
.y29_c00115{bottom:319.849225px;}
.y28_c00115{bottom:339.443192px;}
.y38_c00115{bottom:339.980717px;}
.y27_c00115{bottom:354.227097px;}
.y26_c00115{bottom:369.189591px;}
.y25_c00115{bottom:383.974200px;}
.y24_c00115{bottom:410.337439px;}
.y23_c00115{bottom:441.151927px;}
.y22_c00115{bottom:462.883468px;}
.y21_c00115{bottom:492.808456px;}
.y20_c00115{bottom:523.444294px;}
.y1f_c00115{bottom:554.260132px;}
.y1e_c00115{bottom:572.249624px;}
.y1d_c00115{bottom:585.074619px;}
.y1c_c00115{bottom:603.244112px;}
.y1b_c00115{bottom:616.778607px;}
.y1a_c00115{bottom:647.593094px;}
.y19_c00115{bottom:678.408932px;}
.y18_c00115{bottom:709.048370px;}
.y17_c00115{bottom:739.864207px;}
.y16_c00115{bottom:770.500045px;}
.y15_c00115{bottom:789.737537px;}
.y14_c00115{bottom:816.098677px;}
.y13_c00115{bottom:846.913165px;}
.y12_c00115{bottom:877.553202px;}
.y11_c00115{bottom:908.368290px;}
.y10_c00115{bottom:939.005478px;}
.yf_c00115{bottom:969.819965px;}
.ye_c00115{bottom:987.810958px;}
.yd_c00115{bottom:1000.635953px;}
.yc_c00115{bottom:1019.514945px;}
.yb_c00115{bottom:1039.466437px;}
.y8_c00115{bottom:1101.391622px;}
.y7_c00115{bottom:1125.436612px;}
.y6_c00115{bottom:1146.276554px;}
.y5_c00115{bottom:1166.762796px;}
.y4_c00115{bottom:1187.245588px;}
.he_c00115{height:18.912365px;}
.h12_c00115{height:21.909600px;}
.ha_c00115{height:24.315963px;}
.h10_c00115{height:26.117086px;}
.hb_c00115{height:28.368623px;}
.h6_c00115{height:37.374544px;}
.h5_c00115{height:41.427963px;}
.hc_c00115{height:45.029982px;}
.h13_c00115{height:48.632381px;}
.hd_c00115{height:52.685269px;}
.hf_c00115{height:52.927558px;}
.h2_c00115{height:58.667764px;}
.h8_c00115{height:58.929966px;}
.h3_c00115{height:63.768724px;}
.h9_c00115{height:63.839974px;}
.h11_c00115{height:63.911224px;}
.h4_c00115{height:64.053724px;}
.h7_c00115{height:1249.830756px;}
.h1_c00115{height:1262.879062px;}
.h0_c00115{height:1263.000000px;}
.w3_c00115{width:11.219400px;}
.w2_c00115{width:883.195846px;}
.w1_c00115{width:892.414744px;}
.w0_c00115{width:892.500000px;}
.x0_c00115{left:0.000000px;}
.x8_c00115{left:1.541954px;}
.x9_c00115{left:112.753050px;}
.x7_c00115{left:114.282348px;}
.x2_c00115{left:126.215308px;}
.xa_c00115{left:165.296979px;}
.x4_c00115{left:252.504495px;}
.x3_c00115{left:270.140236px;}
.x6_c00115{left:295.789578px;}
.xb_c00115{left:386.173391px;}
.xd_c00115{left:389.129188px;}
.x5_c00115{left:420.296029px;}
.x10_c00115{left:427.244173px;}
.x12_c00115{left:428.313672px;}
.xe_c00115{left:504.728142px;}
.x1_c00115{left:505.976141px;}
.xc_c00115{left:511.037841px;}
.x11_c00115{left:526.283133px;}
.xf_c00115{left:529.845632px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:-15.833327pt;}
.ws1_c00115{word-spacing:0.000000pt;}
._f_c00115{margin-left:-3.242217pt;}
._9_c00115{margin-left:-2.223209pt;}
._0_c00115{margin-left:-1.190569pt;}
._1_c00115{width:0.938922pt;}
._5_c00115{width:1.927342pt;}
._3_c00115{width:3.323729pt;}
._4_c00115{width:4.281163pt;}
._2_c00115{width:5.172086pt;}
._8_c00115{width:6.235539pt;}
._6_c00115{width:7.679751pt;}
._b_c00115{width:8.659587pt;}
._7_c00115{width:10.092451pt;}
._10_c00115{width:11.374202pt;}
._d_c00115{width:12.586474pt;}
._a_c00115{width:13.549686pt;}
._c_c00115{width:14.728561pt;}
._e_c00115{width:17.355541pt;}
._17_c00115{width:142.631981pt;}
._16_c00115{width:147.719627pt;}
._13_c00115{width:148.967055pt;}
._12_c00115{width:152.057973pt;}
._14_c00115{width:169.266885pt;}
._15_c00115{width:184.872226pt;}
._11_c00115{width:187.541890pt;}
.fs6_c00115{font-size:26.599669pt;}
.fs3_c00115{font-size:34.199666pt;}
.fs7_c00115{font-size:36.732892pt;}
.fs4_c00115{font-size:39.899611pt;}
.fs2_c00115{font-size:52.566166pt;}
.fs0_c00115{font-size:58.267177pt;}
.fs1_c00115{font-size:63.333308pt;}
.fs8_c00115{font-size:68.399973pt;}
.fs5_c00115{font-size:74.100237pt;}
.y0_c00115{bottom:0.000000pt;}
.y1_c00115{bottom:0.107500pt;}
.y3a_c00115{bottom:4.591622pt;}
.ya_c00115{bottom:6.068128pt;}
.y9_c00115{bottom:63.856874pt;}
.y3_c00115{bottom:73.833045pt;}
.y2_c00115{bottom:74.783670pt;}
.y37_c00115{bottom:77.371865pt;}
.y36_c00115{bottom:90.513113pt;}
.y35_c00115{bottom:103.654361pt;}
.y34_c00115{bottom:116.954356pt;}
.y33_c00115{bottom:129.303818pt;}
.y32_c00115{bottom:140.386347pt;}
.y31_c00115{bottom:155.583274pt;}
.y30_c00115{bottom:170.782068pt;}
.y3f_c00115{bottom:178.013762pt;}
.y2f_c00115{bottom:201.024589pt;}
.y3e_c00115{bottom:210.156416pt;}
.y2e_c00115{bottom:216.223383pt;}
.y2d_c00115{bottom:231.424577pt;}
.y3d_c00115{bottom:243.563069pt;}
.y2c_c00115{bottom:246.625771pt;}
.y3b_c00115{bottom:259.869729pt;}
.y2b_c00115{bottom:261.825098pt;}
.y39_c00115{bottom:273.121600pt;}
.y2a_c00115{bottom:274.970426pt;}
.y3c_c00115{bottom:276.655056pt;}
.y29_c00115{bottom:284.310423pt;}
.y28_c00115{bottom:301.727282pt;}
.y38_c00115{bottom:302.205082pt;}
.y27_c00115{bottom:314.868530pt;}
.y26_c00115{bottom:328.168525pt;}
.y25_c00115{bottom:341.310400pt;}
.y24_c00115{bottom:364.744390pt;}
.y23_c00115{bottom:392.135046pt;}
.y22_c00115{bottom:411.451972pt;}
.y21_c00115{bottom:438.051961pt;}
.y20_c00115{bottom:465.283817pt;}
.y1f_c00115{bottom:492.675673pt;}
.y1e_c00115{bottom:508.666333pt;}
.y1d_c00115{bottom:520.066328pt;}
.y1c_c00115{bottom:536.216988pt;}
.y1b_c00115{bottom:548.247650pt;}
.y1a_c00115{bottom:575.638306pt;}
.y19_c00115{bottom:603.030162pt;}
.y18_c00115{bottom:630.265217pt;}
.y17_c00115{bottom:657.657073pt;}
.y16_c00115{bottom:684.888929pt;}
.y15_c00115{bottom:701.988922pt;}
.y14_c00115{bottom:725.421046pt;}
.y13_c00115{bottom:752.811702pt;}
.y12_c00115{bottom:780.047291pt;}
.y11_c00115{bottom:807.438480pt;}
.y10_c00115{bottom:834.671536pt;}
.yf_c00115{bottom:862.062191pt;}
.ye_c00115{bottom:878.054185pt;}
.yd_c00115{bottom:889.454180pt;}
.yc_c00115{bottom:906.235507pt;}
.yb_c00115{bottom:923.970167pt;}
.y8_c00115{bottom:979.014775pt;}
.y7_c00115{bottom:1000.388100pt;}
.y6_c00115{bottom:1018.912492pt;}
.y5_c00115{bottom:1037.122485pt;}
.y4_c00115{bottom:1055.329411pt;}
.he_c00115{height:16.810991pt;}
.h12_c00115{height:19.475200pt;}
.ha_c00115{height:21.614189pt;}
.h10_c00115{height:23.215188pt;}
.hb_c00115{height:25.216554pt;}
.h6_c00115{height:33.221817pt;}
.h5_c00115{height:36.824856pt;}
.hc_c00115{height:40.026651pt;}
.h13_c00115{height:43.228783pt;}
.hd_c00115{height:46.831350pt;}
.hf_c00115{height:47.046718pt;}
.h2_c00115{height:52.149123pt;}
.h8_c00115{height:52.382192pt;}
.h3_c00115{height:56.683311pt;}
.h9_c00115{height:56.746644pt;}
.h11_c00115{height:56.809977pt;}
.h4_c00115{height:56.936644pt;}
.h7_c00115{height:1110.960672pt;}
.h1_c00115{height:1122.559167pt;}
.h0_c00115{height:1122.666667pt;}
.w3_c00115{width:9.972800pt;}
.w2_c00115{width:785.062974pt;}
.w1_c00115{width:793.257550pt;}
.w0_c00115{width:793.333333pt;}
.x0_c00115{left:0.000000pt;}
.x8_c00115{left:1.370626pt;}
.x9_c00115{left:100.224934pt;}
.x7_c00115{left:101.584309pt;}
.x2_c00115{left:112.191384pt;}
.xa_c00115{left:146.930648pt;}
.x4_c00115{left:224.448440pt;}
.x3_c00115{left:240.124654pt;}
.x6_c00115{left:262.924069pt;}
.xb_c00115{left:343.265237pt;}
.xd_c00115{left:345.892612pt;}
.x5_c00115{left:373.596470pt;}
.x10_c00115{left:379.772598pt;}
.x12_c00115{left:380.723264pt;}
.xe_c00115{left:448.647237pt;}
.x1_c00115{left:449.756570pt;}
.xc_c00115{left:454.255859pt;}
.x11_c00115{left:467.807230pt;}
.xf_c00115{left:470.973895pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:1.113000;font-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_c00116{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls0_c00116{letter-spacing:0.000000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:0.000000px;}
._b_c00116{margin-left:-3.215981px;}
._0_c00116{margin-left:-1.339390px;}
._1_c00116{width:1.056287px;}
._5_c00116{width:2.061285px;}
._8_c00116{width:3.719820px;}
._6_c00116{width:4.771588px;}
._7_c00116{width:6.137990px;}
._9_c00116{width:8.026496px;}
._a_c00116{width:9.062747px;}
._3_c00116{width:10.323274px;}
._2_c00116{width:12.167441px;}
._4_c00116{width:13.423188px;}
._f_c00116{width:15.121499px;}
._10_c00116{width:16.156981px;}
._e_c00116{width:19.229635px;}
._c_c00116{width:20.434867px;}
._d_c00116{width:21.661777px;}
.fc1_c00116{color:rgb(105,148,45);}
.fc0_c00116{color:rgb(35,31,32);}
.fs4_c00116{font-size:38.474625px;}
.fs3_c00116{font-size:41.324503px;}
.fs2_c00116{font-size:59.136936px;}
.fs0_c00116{font-size:65.550574px;}
.fs1_c00116{font-size:71.249972px;}
.y0_c00116{bottom:0.000000px;}
.y1_c00116{bottom:0.120938px;}
.y8_c00116{bottom:6.826644px;}
.ya_c00116{bottom:65.133277px;}
.y3_c00116{bottom:83.062176px;}
.y2_c00116{bottom:84.131629px;}
.y31_c00116{bottom:109.131260px;}
.y30_c00116{bottom:126.229393px;}
.y2f_c00116{bottom:141.191887px;}
.y2e_c00116{bottom:155.975791px;}
.y2d_c00116{bottom:182.339330px;}
.y2c_c00116{bottom:213.155168px;}
.y2b_c00116{bottom:243.791756px;}
.y2a_c00116{bottom:261.959748px;}
.y29_c00116{bottom:274.786243px;}
.y28_c00116{bottom:293.663736px;}
.y27_c00116{bottom:307.558230px;}
.y26_c00116{bottom:324.125724px;}
.y25_c00116{bottom:359.926209px;}
.y24_c00116{bottom:386.290349px;}
.y23_c00116{bottom:416.926186px;}
.y22_c00116{bottom:435.983679px;}
.y21_c00116{bottom:462.523618px;}
.y20_c00116{bottom:493.163656px;}
.y1f_c00116{bottom:523.978144px;}
.y1e_c00116{bottom:543.038636px;}
.y1d_c00116{bottom:570.827775px;}
.y1c_c00116{bottom:601.643613px;}
.y1b_c00116{bottom:632.279450px;}
.y1a_c00116{bottom:654.366642px;}
.y19_c00116{bottom:684.112980px;}
.y18_c00116{bottom:714.929567px;}
.y17_c00116{bottom:733.987060px;}
.y16_c00116{bottom:747.880054px;}
.y15_c00116{bottom:764.444547px;}
.y14_c00116{bottom:800.248033px;}
.y13_c00116{bottom:826.787373px;}
.y12_c00116{bottom:857.423960px;}
.y11_c00116{bottom:888.242648px;}
.y10_c00116{bottom:918.878486px;}
.yf_c00116{bottom:937.938978px;}
.ye_c00116{bottom:964.299968px;}
.yd_c00116{bottom:994.935805px;}
.yc_c00116{bottom:1025.573743px;}
.yb_c00116{bottom:1056.210931px;}
.y9_c00116{bottom:1094.685915px;}
.y7_c00116{bottom:1125.436612px;}
.y6_c00116{bottom:1146.276554px;}
.y5_c00116{bottom:1166.762796px;}
.y4_c00116{bottom:1187.245588px;}
.hc_c00116{height:24.315963px;}
.ha_c00116{height:26.117086px;}
.h7_c00116{height:37.374544px;}
.h6_c00116{height:41.427963px;}
.hb_c00116{height:45.029982px;}
.h2_c00116{height:58.667764px;}
.h9_c00116{height:58.798865px;}
.h3_c00116{height:63.768724px;}
.h8_c00116{height:63.839974px;}
.h4_c00116{height:64.053724px;}
.h5_c00116{height:1249.830756px;}
.h1_c00116{height:1262.879062px;}
.h0_c00116{height:1263.000000px;}
.w2_c00116{width:883.195846px;}
.w1_c00116{width:892.414744px;}
.w0_c00116{width:892.500000px;}
.x0_c00116{left:0.000000px;}
.x7_c00116{left:1.541954px;}
.x8_c00116{left:112.753050px;}
.x2_c00116{left:126.215308px;}
.x9_c00116{left:178.837474px;}
.x4_c00116{left:252.504495px;}
.x3_c00116{left:270.140236px;}
.x6_c00116{left:295.789578px;}
.x5_c00116{left:420.296029px;}
.x1_c00116{left:505.976141px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws0_c00116{word-spacing:0.000000pt;}
._b_c00116{margin-left:-2.858650pt;}
._0_c00116{margin-left:-1.190569pt;}
._1_c00116{width:0.938922pt;}
._5_c00116{width:1.832253pt;}
._8_c00116{width:3.306506pt;}
._6_c00116{width:4.241411pt;}
._7_c00116{width:5.455991pt;}
._9_c00116{width:7.134663pt;}
._a_c00116{width:8.055775pt;}
._3_c00116{width:9.176244pt;}
._2_c00116{width:10.815503pt;}
._4_c00116{width:11.931722pt;}
._f_c00116{width:13.441333pt;}
._10_c00116{width:14.361761pt;}
._e_c00116{width:17.093009pt;}
._c_c00116{width:18.164326pt;}
._d_c00116{width:19.254913pt;}
.fs4_c00116{font-size:34.199666pt;}
.fs3_c00116{font-size:36.732892pt;}
.fs2_c00116{font-size:52.566166pt;}
.fs0_c00116{font-size:58.267177pt;}
.fs1_c00116{font-size:63.333308pt;}
.y0_c00116{bottom:0.000000pt;}
.y1_c00116{bottom:0.107500pt;}
.y8_c00116{bottom:6.068128pt;}
.ya_c00116{bottom:57.896246pt;}
.y3_c00116{bottom:73.833045pt;}
.y2_c00116{bottom:74.783670pt;}
.y31_c00116{bottom:97.005564pt;}
.y30_c00116{bottom:112.203905pt;}
.y2f_c00116{bottom:125.503899pt;}
.y2e_c00116{bottom:138.645147pt;}
.y2d_c00116{bottom:162.079405pt;}
.y2c_c00116{bottom:189.471260pt;}
.y2b_c00116{bottom:216.703783pt;}
.y2a_c00116{bottom:232.853110pt;}
.y29_c00116{bottom:244.254439pt;}
.y28_c00116{bottom:261.034432pt;}
.y27_c00116{bottom:273.385094pt;}
.y26_c00116{bottom:288.111754pt;}
.y25_c00116{bottom:319.934408pt;}
.y24_c00116{bottom:343.369199pt;}
.y23_c00116{bottom:370.601055pt;}
.y22_c00116{bottom:387.541048pt;}
.y21_c00116{bottom:411.132105pt;}
.y20_c00116{bottom:438.367694pt;}
.y1f_c00116{bottom:465.758350pt;}
.y1e_c00116{bottom:482.701010pt;}
.y1d_c00116{bottom:507.402467pt;}
.y1c_c00116{bottom:534.794322pt;}
.y1b_c00116{bottom:562.026178pt;}
.y1a_c00116{bottom:581.659237pt;}
.y19_c00116{bottom:608.100426pt;}
.y18_c00116{bottom:635.492949pt;}
.y17_c00116{bottom:652.432942pt;}
.y16_c00116{bottom:664.782270pt;}
.y15_c00116{bottom:679.506264pt;}
.y14_c00116{bottom:711.331585pt;}
.y13_c00116{bottom:734.922109pt;}
.y12_c00116{bottom:762.154631pt;}
.y11_c00116{bottom:789.549020pt;}
.y10_c00116{bottom:816.780876pt;}
.yf_c00116{bottom:833.723536pt;}
.ye_c00116{bottom:857.155527pt;}
.yd_c00116{bottom:884.387382pt;}
.yc_c00116{bottom:911.621105pt;}
.yb_c00116{bottom:938.854161pt;}
.y9_c00116{bottom:973.054147pt;}
.y7_c00116{bottom:1000.388100pt;}
.y6_c00116{bottom:1018.912492pt;}
.y5_c00116{bottom:1037.122485pt;}
.y4_c00116{bottom:1055.329411pt;}
.hc_c00116{height:21.614189pt;}
.ha_c00116{height:23.215188pt;}
.h7_c00116{height:33.221817pt;}
.h6_c00116{height:36.824856pt;}
.hb_c00116{height:40.026651pt;}
.h2_c00116{height:52.149123pt;}
.h9_c00116{height:52.265657pt;}
.h3_c00116{height:56.683311pt;}
.h8_c00116{height:56.746644pt;}
.h4_c00116{height:56.936644pt;}
.h5_c00116{height:1110.960672pt;}
.h1_c00116{height:1122.559167pt;}
.h0_c00116{height:1122.666667pt;}
.w2_c00116{width:785.062974pt;}
.w1_c00116{width:793.257550pt;}
.w0_c00116{width:793.333333pt;}
.x0_c00116{left:0.000000pt;}
.x7_c00116{left:1.370626pt;}
.x8_c00116{left:100.224934pt;}
.x2_c00116{left:112.191384pt;}
.x9_c00116{left:158.966644pt;}
.x4_c00116{left:224.448440pt;}
.x3_c00116{left:240.124654pt;}
.x6_c00116{left:262.924069pt;}
.x5_c00116{left:373.596470pt;}
.x1_c00116{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00117;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00117{font-family:ff5_c00117;line-height:1.112000;font-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_c00117{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls0_c00117{letter-spacing:0.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00117{word-spacing:0.000000px;}
._12_c00117{margin-left:-3.634471px;}
._3_c00117{margin-left:-2.410593px;}
._0_c00117{margin-left:-1.339390px;}
._1_c00117{width:1.056287px;}
._9_c00117{width:2.717450px;}
._b_c00117{width:4.267106px;}
._d_c00117{width:6.128429px;}
._e_c00117{width:8.174490px;}
._c_c00117{width:9.228845px;}
._f_c00117{width:10.396926px;}
._5_c00117{width:11.661772px;}
._6_c00117{width:12.980740px;}
._10_c00117{width:13.996976px;}
._13_c00117{width:15.062612px;}
._a_c00117{width:16.573019px;}
._4_c00117{width:19.383637px;}
._2_c00117{width:20.570675px;}
._11_c00117{width:25.150437px;}
._8_c00117{width:32.145790px;}
._7_c00117{width:33.504130px;}
.fc1_c00117{color:rgb(105,148,45);}
.fc0_c00117{color:rgb(35,31,32);}
.fs4_c00117{font-size:38.474625px;}
.fs3_c00117{font-size:41.324503px;}
.fs5_c00117{font-size:44.887062px;}
.fs2_c00117{font-size:59.136936px;}
.fs0_c00117{font-size:65.550574px;}
.fs1_c00117{font-size:71.249972px;}
.y0_c00117{bottom:0.000000px;}
.y1_c00117{bottom:0.120938px;}
.y8_c00117{bottom:6.826644px;}
.ya_c00117{bottom:65.133277px;}
.y3_c00117{bottom:83.062176px;}
.y2_c00117{bottom:84.131629px;}
.y31_c00117{bottom:108.416210px;}
.y30_c00117{bottom:139.054898px;}
.y2f_c00117{bottom:158.113290px;}
.y2e_c00117{bottom:172.363284px;}
.y2d_c00117{bottom:185.899279px;}
.y2c_c00117{bottom:203.710272px;}
.y2b_c00117{bottom:216.539767px;}
.y2a_c00117{bottom:235.417259px;}
.y29_c00117{bottom:263.383248px;}
.y28_c00117{bottom:294.020436px;}
.y27_c00117{bottom:324.834923px;}
.y26_c00117{bottom:355.474361px;}
.y25_c00117{bottom:386.290199px;}
.y24_c00117{bottom:405.347691px;}
.y23_c00117{bottom:419.240686px;}
.y22_c00117{bottom:435.805179px;}
.y21_c00117{bottom:471.608665px;}
.y20_c00117{bottom:497.973404px;}
.y1f_c00117{bottom:528.789992px;}
.y1e_c00117{bottom:559.425829px;}
.y1d_c00117{bottom:590.238817px;}
.y1c_c00117{bottom:620.876005px;}
.y1b_c00117{bottom:651.692593px;}
.y1a_c00117{bottom:670.748585px;}
.y19_c00117{bottom:684.823079px;}
.y18_c00117{bottom:701.210573px;}
.y17_c00117{bottom:737.011058px;}
.y16_c00117{bottom:763.556548px;}
.y15_c00117{bottom:794.192386px;}
.y14_c00117{bottom:826.968572px;}
.y13_c00117{bottom:857.785160px;}
.y12_c00117{bottom:888.420998px;}
.y11_c00117{bottom:907.653990px;}
.y10_c00117{bottom:934.019180px;}
.yf_c00117{bottom:964.834267px;}
.ye_c00117{bottom:995.471455px;}
.yd_c00117{bottom:1024.860943px;}
.yc_c00117{bottom:1040.891437px;}
.yb_c00117{bottom:1057.280430px;}
.y9_c00117{bottom:1094.685915px;}
.y7_c00117{bottom:1125.436612px;}
.y6_c00117{bottom:1146.276554px;}
.y5_c00117{bottom:1166.762796px;}
.y4_c00117{bottom:1187.245588px;}
.hb_c00117{height:24.315963px;}
.h9_c00117{height:26.117086px;}
.hc_c00117{height:28.368623px;}
.h7_c00117{height:37.374544px;}
.h6_c00117{height:41.427963px;}
.h2_c00117{height:58.667764px;}
.h8_c00117{height:58.798865px;}
.h3_c00117{height:63.768724px;}
.ha_c00117{height:63.839974px;}
.h4_c00117{height:64.053724px;}
.h5_c00117{height:1249.830756px;}
.h1_c00117{height:1262.879062px;}
.h0_c00117{height:1263.000000px;}
.w2_c00117{width:883.195846px;}
.w1_c00117{width:892.414744px;}
.w0_c00117{width:892.500000px;}
.x0_c00117{left:0.000000px;}
.x7_c00117{left:1.541954px;}
.x8_c00117{left:112.753050px;}
.x2_c00117{left:126.215308px;}
.x9_c00117{left:178.837474px;}
.x4_c00117{left:252.504495px;}
.x3_c00117{left:270.140236px;}
.x6_c00117{left:295.789578px;}
.x5_c00117{left:420.296029px;}
.x1_c00117{left:505.976141px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ws0_c00117{word-spacing:0.000000pt;}
._12_c00117{margin-left:-3.230641pt;}
._3_c00117{margin-left:-2.142750pt;}
._0_c00117{margin-left:-1.190569pt;}
._1_c00117{width:0.938922pt;}
._9_c00117{width:2.415511pt;}
._b_c00117{width:3.792984pt;}
._d_c00117{width:5.447492pt;}
._e_c00117{width:7.266213pt;}
._c_c00117{width:8.203418pt;}
._f_c00117{width:9.241712pt;}
._5_c00117{width:10.366020pt;}
._6_c00117{width:11.538436pt;}
._10_c00117{width:12.441756pt;}
._13_c00117{width:13.388988pt;}
._a_c00117{width:14.731573pt;}
._4_c00117{width:17.229900pt;}
._2_c00117{width:18.285045pt;}
._11_c00117{width:22.355944pt;}
._8_c00117{width:28.574035pt;}
._7_c00117{width:29.781449pt;}
.fs4_c00117{font-size:34.199666pt;}
.fs3_c00117{font-size:36.732892pt;}
.fs5_c00117{font-size:39.899611pt;}
.fs2_c00117{font-size:52.566166pt;}
.fs0_c00117{font-size:58.267177pt;}
.fs1_c00117{font-size:63.333308pt;}
.y0_c00117{bottom:0.000000pt;}
.y1_c00117{bottom:0.107500pt;}
.y8_c00117{bottom:6.068128pt;}
.ya_c00117{bottom:57.896246pt;}
.y3_c00117{bottom:73.833045pt;}
.y2_c00117{bottom:74.783670pt;}
.y31_c00117{bottom:96.369964pt;}
.y30_c00117{bottom:123.604353pt;}
.y2f_c00117{bottom:140.545147pt;}
.y2e_c00117{bottom:153.211808pt;}
.y2d_c00117{bottom:165.243803pt;}
.y2c_c00117{bottom:181.075797pt;}
.y2b_c00117{bottom:192.479793pt;}
.y2a_c00117{bottom:209.259786pt;}
.y29_c00117{bottom:234.118443pt;}
.y28_c00117{bottom:261.351498pt;}
.y27_c00117{bottom:288.742154pt;}
.y26_c00117{bottom:315.977210pt;}
.y25_c00117{bottom:343.369066pt;}
.y24_c00117{bottom:360.309059pt;}
.y23_c00117{bottom:372.658387pt;}
.y22_c00117{bottom:387.382381pt;}
.y21_c00117{bottom:419.207702pt;}
.y20_c00117{bottom:442.643026pt;}
.y1f_c00117{bottom:470.035548pt;}
.y1e_c00117{bottom:497.267404pt;}
.y1d_c00117{bottom:524.656726pt;}
.y1c_c00117{bottom:551.889782pt;}
.y1b_c00117{bottom:579.282305pt;}
.y1a_c00117{bottom:596.220964pt;}
.y19_c00117{bottom:608.731626pt;}
.y18_c00117{bottom:623.298287pt;}
.y17_c00117{bottom:655.120941pt;}
.y16_c00117{bottom:678.716931pt;}
.y15_c00117{bottom:705.948787pt;}
.y14_c00117{bottom:735.083176pt;}
.y13_c00117{bottom:762.475698pt;}
.y12_c00117{bottom:789.707554pt;}
.y11_c00117{bottom:806.803547pt;}
.y10_c00117{bottom:830.239271pt;}
.yf_c00117{bottom:857.630460pt;}
.ye_c00117{bottom:884.863516pt;}
.yd_c00117{bottom:910.987505pt;}
.yc_c00117{bottom:925.236833pt;}
.yb_c00117{bottom:939.804827pt;}
.y9_c00117{bottom:973.054147pt;}
.y7_c00117{bottom:1000.388100pt;}
.y6_c00117{bottom:1018.912492pt;}
.y5_c00117{bottom:1037.122485pt;}
.y4_c00117{bottom:1055.329411pt;}
.hb_c00117{height:21.614189pt;}
.h9_c00117{height:23.215188pt;}
.hc_c00117{height:25.216554pt;}
.h7_c00117{height:33.221817pt;}
.h6_c00117{height:36.824856pt;}
.h2_c00117{height:52.149123pt;}
.h8_c00117{height:52.265657pt;}
.h3_c00117{height:56.683311pt;}
.ha_c00117{height:56.746644pt;}
.h4_c00117{height:56.936644pt;}
.h5_c00117{height:1110.960672pt;}
.h1_c00117{height:1122.559167pt;}
.h0_c00117{height:1122.666667pt;}
.w2_c00117{width:785.062974pt;}
.w1_c00117{width:793.257550pt;}
.w0_c00117{width:793.333333pt;}
.x0_c00117{left:0.000000pt;}
.x7_c00117{left:1.370626pt;}
.x8_c00117{left:100.224934pt;}
.x2_c00117{left:112.191384pt;}
.x9_c00117{left:158.966644pt;}
.x4_c00117{left:224.448440pt;}
.x3_c00117{left:240.124654pt;}
.x6_c00117{left:262.924069pt;}
.x5_c00117{left:373.596470pt;}
.x1_c00117{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.112000;font-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_c00118{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00118{word-spacing:-17.812493px;}
.ws1_c00118{word-spacing:0.000000px;}
._a_c00118{margin-left:-4.758930px;}
._7_c00118{margin-left:-2.947587px;}
._0_c00118{margin-left:-1.339390px;}
._1_c00118{width:1.056287px;}
._9_c00118{width:3.264560px;}
._4_c00118{width:4.497051px;}
._3_c00118{width:5.539112px;}
._2_c00118{width:7.244277px;}
._5_c00118{width:8.907261px;}
._6_c00118{width:10.092337px;}
._d_c00118{width:11.232734px;}
._c_c00118{width:12.943227px;}
._b_c00118{width:15.790098px;}
._8_c00118{width:58.979458px;}
.fc1_c00118{color:rgb(105,148,45);}
.fc0_c00118{color:rgb(35,31,32);}
.fs5_c00118{font-size:38.474625px;}
.fs3_c00118{font-size:41.324503px;}
.fs4_c00118{font-size:44.887062px;}
.fs6_c00118{font-size:47.737061px;}
.fs2_c00118{font-size:59.136936px;}
.fs0_c00118{font-size:65.550574px;}
.fs1_c00118{font-size:71.249972px;}
.y0_c00118{bottom:0.000000px;}
.y1_c00118{bottom:0.120938px;}
.y8_c00118{bottom:6.826644px;}
.ya_c00118{bottom:65.133277px;}
.y3_c00118{bottom:83.062176px;}
.y2_c00118{bottom:84.131629px;}
.y33_c00118{bottom:124.274354px;}
.y32_c00118{bottom:143.689746px;}
.y31_c00118{bottom:162.924388px;}
.y30_c00118{bottom:182.162630px;}
.y2f_c00118{bottom:201.578773px;}
.y2e_c00118{bottom:231.679711px;}
.y2d_c00118{bottom:262.495548px;}
.y2c_c00118{bottom:293.132736px;}
.y2b_c00118{bottom:312.370228px;}
.y2a_c00118{bottom:332.318720px;}
.y29_c00118{bottom:368.122206px;}
.y28_c00118{bottom:394.481245px;}
.y27_c00118{bottom:425.119183px;}
.y26_c00118{bottom:450.058173px;}
.y25_c00118{bottom:474.278514px;}
.y24_c00118{bottom:504.917951px;}
.y23_c00118{bottom:535.735139px;}
.y22_c00118{bottom:566.369627px;}
.y21_c00118{bottom:584.540619px;}
.y20_c00118{bottom:601.105113px;}
.y1f_c00118{bottom:636.197599px;}
.y1e_c00118{bottom:653.294592px;}
.y1d_c00118{bottom:689.098168px;}
.y1c_c00118{bottom:703.882072px;}
.y1b_c00118{bottom:720.269565px;}
.y1a_c00118{bottom:738.260558px;}
.y19_c00118{bottom:751.085553px;}
.y18_c00118{bottom:770.143045px;}
.y17_c00118{bottom:784.217540px;}
.y16_c00118{bottom:797.750534px;}
.y15_c00118{bottom:816.634027px;}
.y14_c00118{bottom:830.704021px;}
.y13_c00118{bottom:847.093764px;}
.y12_c00118{bottom:883.430500px;}
.y11_c00118{bottom:912.284038px;}
.y10_c00118{bottom:943.098526px;}
.yf_c00118{bottom:973.737964px;}
.ye_c00118{bottom:992.798456px;}
.yd_c00118{bottom:1006.869951px;}
.yc_c00118{bottom:1023.257444px;}
.yb_c00118{bottom:1059.059880px;}
.y9_c00118{bottom:1094.685915px;}
.y7_c00118{bottom:1125.436612px;}
.y6_c00118{bottom:1146.276554px;}
.y5_c00118{bottom:1166.762796px;}
.y4_c00118{bottom:1187.245588px;}
.hd_c00118{height:24.315963px;}
.h9_c00118{height:26.117086px;}
.hc_c00118{height:28.368623px;}
.he_c00118{height:30.169822px;}
.h7_c00118{height:37.374544px;}
.h6_c00118{height:41.427963px;}
.h2_c00118{height:58.667764px;}
.h8_c00118{height:58.798865px;}
.hb_c00118{height:58.929966px;}
.h3_c00118{height:63.768724px;}
.ha_c00118{height:63.839974px;}
.h4_c00118{height:64.053724px;}
.h5_c00118{height:1249.830756px;}
.h1_c00118{height:1262.879062px;}
.h0_c00118{height:1263.000000px;}
.w2_c00118{width:883.195846px;}
.w1_c00118{width:892.414744px;}
.w0_c00118{width:892.500000px;}
.x0_c00118{left:0.000000px;}
.x7_c00118{left:1.541954px;}
.x8_c00118{left:112.753050px;}
.x2_c00118{left:126.215308px;}
.x9_c00118{left:178.837474px;}
.xa_c00118{left:206.444963px;}
.x4_c00118{left:252.504495px;}
.x3_c00118{left:270.140236px;}
.x6_c00118{left:295.789578px;}
.x5_c00118{left:420.296029px;}
.x1_c00118{left:505.976141px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws0_c00118{word-spacing:-15.833327pt;}
.ws1_c00118{word-spacing:0.000000pt;}
._a_c00118{margin-left:-4.230160pt;}
._7_c00118{margin-left:-2.620077pt;}
._0_c00118{margin-left:-1.190569pt;}
._1_c00118{width:0.938922pt;}
._9_c00118{width:2.901831pt;}
._4_c00118{width:3.997378pt;}
._3_c00118{width:4.923655pt;}
._2_c00118{width:6.439357pt;}
._5_c00118{width:7.917565pt;}
._6_c00118{width:8.970967pt;}
._d_c00118{width:9.984652pt;}
._c_c00118{width:11.505090pt;}
._b_c00118{width:14.035643pt;}
._8_c00118{width:52.426185pt;}
.fs5_c00118{font-size:34.199666pt;}
.fs3_c00118{font-size:36.732892pt;}
.fs4_c00118{font-size:39.899611pt;}
.fs6_c00118{font-size:42.432943pt;}
.fs2_c00118{font-size:52.566166pt;}
.fs0_c00118{font-size:58.267177pt;}
.fs1_c00118{font-size:63.333308pt;}
.y0_c00118{bottom:0.000000pt;}
.y1_c00118{bottom:0.107500pt;}
.y8_c00118{bottom:6.068128pt;}
.ya_c00118{bottom:57.896246pt;}
.y3_c00118{bottom:73.833045pt;}
.y2_c00118{bottom:74.783670pt;}
.y33_c00118{bottom:110.466092pt;}
.y32_c00118{bottom:127.724218pt;}
.y31_c00118{bottom:144.821678pt;}
.y30_c00118{bottom:161.922338pt;}
.y2f_c00118{bottom:179.181131pt;}
.y2e_c00118{bottom:205.937521pt;}
.y2d_c00118{bottom:233.329376pt;}
.y2c_c00118{bottom:260.562432pt;}
.y2b_c00118{bottom:277.662425pt;}
.y2a_c00118{bottom:295.394418pt;}
.y29_c00118{bottom:327.219739pt;}
.y28_c00118{bottom:350.649996pt;}
.y27_c00118{bottom:377.883718pt;}
.y26_c00118{bottom:400.051710pt;}
.y25_c00118{bottom:421.580901pt;}
.y24_c00118{bottom:448.815957pt;}
.y23_c00118{bottom:476.209012pt;}
.y22_c00118{bottom:503.439668pt;}
.y21_c00118{bottom:519.591662pt;}
.y20_c00118{bottom:534.315656pt;}
.y1f_c00118{bottom:565.508977pt;}
.y1e_c00118{bottom:580.706304pt;}
.y1d_c00118{bottom:612.531705pt;}
.y1c_c00118{bottom:625.672953pt;}
.y1b_c00118{bottom:640.239613pt;}
.y1a_c00118{bottom:656.231607pt;}
.y19_c00118{bottom:667.631603pt;}
.y18_c00118{bottom:684.571596pt;}
.y17_c00118{bottom:697.082257pt;}
.y16_c00118{bottom:709.111586pt;}
.y15_c00118{bottom:725.896913pt;}
.y14_c00118{bottom:738.403574pt;}
.y13_c00118{bottom:752.972235pt;}
.y12_c00118{bottom:785.271555pt;}
.y11_c00118{bottom:810.919145pt;}
.y10_c00118{bottom:838.309801pt;}
.yf_c00118{bottom:865.544857pt;}
.ye_c00118{bottom:882.487517pt;}
.yd_c00118{bottom:894.995512pt;}
.yc_c00118{bottom:909.562172pt;}
.yb_c00118{bottom:941.386560pt;}
.y9_c00118{bottom:973.054147pt;}
.y7_c00118{bottom:1000.388100pt;}
.y6_c00118{bottom:1018.912492pt;}
.y5_c00118{bottom:1037.122485pt;}
.y4_c00118{bottom:1055.329411pt;}
.hd_c00118{height:21.614189pt;}
.h9_c00118{height:23.215188pt;}
.hc_c00118{height:25.216554pt;}
.he_c00118{height:26.817620pt;}
.h7_c00118{height:33.221817pt;}
.h6_c00118{height:36.824856pt;}
.h2_c00118{height:52.149123pt;}
.h8_c00118{height:52.265657pt;}
.hb_c00118{height:52.382192pt;}
.h3_c00118{height:56.683311pt;}
.ha_c00118{height:56.746644pt;}
.h4_c00118{height:56.936644pt;}
.h5_c00118{height:1110.960672pt;}
.h1_c00118{height:1122.559167pt;}
.h0_c00118{height:1122.666667pt;}
.w2_c00118{width:785.062974pt;}
.w1_c00118{width:793.257550pt;}
.w0_c00118{width:793.333333pt;}
.x0_c00118{left:0.000000pt;}
.x7_c00118{left:1.370626pt;}
.x8_c00118{left:100.224934pt;}
.x2_c00118{left:112.191384pt;}
.x9_c00118{left:158.966644pt;}
.xa_c00118{left:183.506634pt;}
.x4_c00118{left:224.448440pt;}
.x3_c00118{left:240.124654pt;}
.x6_c00118{left:262.924069pt;}
.x5_c00118{left:373.596470pt;}
.x1_c00118{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00119;src:url('chunks/assets/font_6a5df09709f11ef4b8f8d413.woff2')format("woff");}.ff6_c00119{font-family:ff6_c00119;line-height:1.107000;font-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_c00119{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00119{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.326277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326277,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:0.000000px;}
._5_c00119{margin-left:-5.736283px;}
._6_c00119{margin-left:-3.836649px;}
._2_c00119{margin-left:-2.702966px;}
._0_c00119{margin-left:-1.339390px;}
._1_c00119{width:1.056287px;}
._7_c00119{width:2.395279px;}
._4_c00119{width:14.916372px;}
._3_c00119{width:16.322682px;}
.fc1_c00119{color:rgb(105,148,45);}
.fc0_c00119{color:rgb(35,31,32);}
.fs4_c00119{font-size:41.324503px;}
.fs5_c00119{font-size:47.737061px;}
.fs3_c00119{font-size:50.586940px;}
.fs2_c00119{font-size:59.136936px;}
.fs0_c00119{font-size:65.550574px;}
.fs1_c00119{font-size:71.249972px;}
.y0_c00119{bottom:0.000000px;}
.y1_c00119{bottom:0.120938px;}
.y8_c00119{bottom:6.826644px;}
.ya_c00119{bottom:65.133277px;}
.y3_c00119{bottom:83.062176px;}
.y2_c00119{bottom:84.131629px;}
.y1f_c00119{bottom:607.340610px;}
.y1e_c00119{bottom:637.086798px;}
.y1d_c00119{bottom:665.230087px;}
.y1c_c00119{bottom:682.328490px;}
.y1b_c00119{bottom:695.512075px;}
.y1a_c00119{bottom:712.610193px;}
.y19_c00119{bottom:725.969563px;}
.y18_c00119{bottom:743.066556px;}
.y17_c00119{bottom:756.071551px;}
.y16_c00119{bottom:773.884044px;}
.y15_c00119{bottom:793.835536px;}
.y14_c00119{bottom:830.351521px;}
.y13_c00119{bottom:859.027310px;}
.y12_c00119{bottom:889.664497px;}
.y11_c00119{bottom:908.900490px;}
.y10_c00119{bottom:936.512629px;}
.yf_c00119{bottom:967.328466px;}
.ye_c00119{bottom:985.496459px;}
.yd_c00119{bottom:1002.062452px;}
.yc_c00119{bottom:1037.505938px;}
.yb_c00119{bottom:1056.030931px;}
.y9_c00119{bottom:1094.685915px;}
.y7_c00119{bottom:1125.436612px;}
.y6_c00119{bottom:1146.276554px;}
.y5_c00119{bottom:1166.762796px;}
.y4_c00119{bottom:1187.245588px;}
.hb_c00119{height:26.117086px;}
.hd_c00119{height:30.169822px;}
.h9_c00119{height:31.970946px;}
.h7_c00119{height:37.374544px;}
.h6_c00119{height:41.427963px;}
.h2_c00119{height:58.667764px;}
.hf_c00119{height:58.733314px;}
.he_c00119{height:58.798865px;}
.ha_c00119{height:58.929966px;}
.h3_c00119{height:63.768724px;}
.hc_c00119{height:63.839974px;}
.h8_c00119{height:63.911224px;}
.h4_c00119{height:64.053724px;}
.h5_c00119{height:1249.830756px;}
.h1_c00119{height:1262.879062px;}
.h0_c00119{height:1263.000000px;}
.w2_c00119{width:883.195846px;}
.w1_c00119{width:892.414744px;}
.w0_c00119{width:892.500000px;}
.x0_c00119{left:0.000000px;}
.x7_c00119{left:1.541954px;}
.x8_c00119{left:112.753050px;}
.x2_c00119{left:126.215308px;}
.xa_c00119{left:153.008984px;}
.x9_c00119{left:178.837474px;}
.x4_c00119{left:252.504495px;}
.x3_c00119{left:270.140236px;}
.x6_c00119{left:295.789578px;}
.x5_c00119{left:420.296029px;}
.x1_c00119{left:505.976141px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:0.000000pt;}
._5_c00119{margin-left:-5.098919pt;}
._6_c00119{margin-left:-3.410355pt;}
._2_c00119{margin-left:-2.402636pt;}
._0_c00119{margin-left:-1.190569pt;}
._1_c00119{width:0.938922pt;}
._7_c00119{width:2.129137pt;}
._4_c00119{width:13.258997pt;}
._3_c00119{width:14.509051pt;}
.fs4_c00119{font-size:36.732892pt;}
.fs5_c00119{font-size:42.432943pt;}
.fs3_c00119{font-size:44.966169pt;}
.fs2_c00119{font-size:52.566166pt;}
.fs0_c00119{font-size:58.267177pt;}
.fs1_c00119{font-size:63.333308pt;}
.y0_c00119{bottom:0.000000pt;}
.y1_c00119{bottom:0.107500pt;}
.y8_c00119{bottom:6.068128pt;}
.ya_c00119{bottom:57.896246pt;}
.y3_c00119{bottom:73.833045pt;}
.y2_c00119{bottom:74.783670pt;}
.y1f_c00119{bottom:539.858320pt;}
.y1e_c00119{bottom:566.299376pt;}
.y1d_c00119{bottom:591.315633pt;}
.y1c_c00119{bottom:606.514214pt;}
.y1b_c00119{bottom:618.232956pt;}
.y1a_c00119{bottom:633.431283pt;}
.y19_c00119{bottom:645.306278pt;}
.y18_c00119{bottom:660.503605pt;}
.y17_c00119{bottom:672.063601pt;}
.y16_c00119{bottom:687.896928pt;}
.y15_c00119{bottom:705.631587pt;}
.y14_c00119{bottom:738.090241pt;}
.y13_c00119{bottom:763.579831pt;}
.y12_c00119{bottom:790.812887pt;}
.y11_c00119{bottom:807.911546pt;}
.y10_c00119{bottom:832.455670pt;}
.yf_c00119{bottom:859.847526pt;}
.ye_c00119{bottom:875.996853pt;}
.yd_c00119{bottom:890.722180pt;}
.yc_c00119{bottom:922.227501pt;}
.yb_c00119{bottom:938.694161pt;}
.y9_c00119{bottom:973.054147pt;}
.y7_c00119{bottom:1000.388100pt;}
.y6_c00119{bottom:1018.912492pt;}
.y5_c00119{bottom:1037.122485pt;}
.y4_c00119{bottom:1055.329411pt;}
.hb_c00119{height:23.215188pt;}
.hd_c00119{height:26.817620pt;}
.h9_c00119{height:28.418619pt;}
.h7_c00119{height:33.221817pt;}
.h6_c00119{height:36.824856pt;}
.h2_c00119{height:52.149123pt;}
.hf_c00119{height:52.207390pt;}
.he_c00119{height:52.265657pt;}
.ha_c00119{height:52.382192pt;}
.h3_c00119{height:56.683311pt;}
.hc_c00119{height:56.746644pt;}
.h8_c00119{height:56.809977pt;}
.h4_c00119{height:56.936644pt;}
.h5_c00119{height:1110.960672pt;}
.h1_c00119{height:1122.559167pt;}
.h0_c00119{height:1122.666667pt;}
.w2_c00119{width:785.062974pt;}
.w1_c00119{width:793.257550pt;}
.w0_c00119{width:793.333333pt;}
.x0_c00119{left:0.000000pt;}
.x7_c00119{left:1.370626pt;}
.x8_c00119{left:100.224934pt;}
.x2_c00119{left:112.191384pt;}
.xa_c00119{left:136.007986pt;}
.x9_c00119{left:158.966644pt;}
.x4_c00119{left:224.448440pt;}
.x3_c00119{left:240.124654pt;}
.x6_c00119{left:262.924069pt;}
.x5_c00119{left:373.596470pt;}
.x1_c00119{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_1c91f2d1d3561a6585dc3fb4.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00120;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00120;src:url('chunks/assets/font_6a5df09709f11ef4b8f8d413.woff2')format("woff");}.ff6_c00120{font-family:ff6_c00120;line-height:1.107000;font-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_c00120{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.v1_c00120{vertical-align:61.277975px;}
.ls0_c00120{letter-spacing:0.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;}
}
.ws0_c00120{word-spacing:-17.812493px;}
.ws1_c00120{word-spacing:0.000000px;}
._3_c00120{margin-left:-2.549482px;}
._0_c00120{margin-left:-1.339390px;}
._1_c00120{width:1.056287px;}
._b_c00120{width:2.131342px;}
._12_c00120{width:3.324257px;}
._11_c00120{width:4.527464px;}
._17_c00120{width:5.640541px;}
._a_c00120{width:7.404283px;}
._8_c00120{width:9.413753px;}
._7_c00120{width:10.856156px;}
._9_c00120{width:11.891541px;}
._16_c00120{width:13.575815px;}
._c_c00120{width:14.864667px;}
._d_c00120{width:16.765085px;}
._18_c00120{width:22.884386px;}
._19_c00120{width:24.057593px;}
._e_c00120{width:29.546949px;}
._f_c00120{width:31.032741px;}
._10_c00120{width:32.070150px;}
._15_c00120{width:51.528825px;}
._14_c00120{width:52.739471px;}
._13_c00120{width:55.097540px;}
._6_c00120{width:395.811041px;}
._2_c00120{width:433.074926px;}
._4_c00120{width:475.039010px;}
._5_c00120{width:673.071715px;}
.fc1_c00120{color:rgb(105,148,45);}
.fc0_c00120{color:rgb(35,31,32);}
.fs5_c00120{font-size:38.474625px;}
.fs3_c00120{font-size:44.887062px;}
.fs4_c00120{font-size:47.737061px;}
.fs8_c00120{font-size:50.586940px;}
.fs7_c00120{font-size:53.436999px;}
.fs2_c00120{font-size:59.136936px;}
.fs0_c00120{font-size:65.550574px;}
.fs1_c00120{font-size:71.249972px;}
.fs6_c00120{font-size:83.362767px;}
.y0_c00120{bottom:0.000000px;}
.y1_c00120{bottom:0.120938px;}
.y11_c00120{bottom:3.919427px;}
.y13_c00120{bottom:6.826644px;}
.y9_c00120{bottom:71.838984px;}
.y3_c00120{bottom:83.062176px;}
.y2_c00120{bottom:84.131629px;}
.y40_c00120{bottom:88.825108px;}
.y3f_c00120{bottom:103.609012px;}
.y3e_c00120{bottom:118.215706px;}
.y3d_c00120{bottom:132.820750px;}
.y3c_c00120{bottom:161.851289px;}
.y3b_c00120{bottom:164.170288px;}
.y3a_c00120{bottom:191.599277px;}
.y39_c00120{bottom:215.113267px;}
.y38_c00120{bottom:244.861705px;}
.y37_c00120{bottom:274.786243px;}
.y36_c00120{bottom:277.100742px;}
.y35_c00120{bottom:302.037032px;}
.y34_c00120{bottom:319.670725px;}
.y33_c00120{bottom:321.988224px;}
.y32_c00120{bottom:343.361716px;}
.y31_c00120{bottom:357.076210px;}
.y30_c00120{bottom:376.135203px;}
.y2f_c00120{bottom:390.209697px;}
.y2e_c00120{bottom:402.320692px;}
.y2d_c00120{bottom:404.636691px;}
.y2c_c00120{bottom:426.901183px;}
.y2b_c00120{bottom:453.089072px;}
.y2a_c00120{bottom:483.547010px;}
.y29_c00120{bottom:513.829148px;}
.y28_c00120{bottom:544.289186px;}
.y27_c00120{bottom:573.319124px;}
.y26_c00120{bottom:574.747123px;}
.y25_c00120{bottom:593.803116px;}
.y24_c00120{bottom:607.874610px;}
.y23_c00120{bottom:621.415105px;}
.y22_c00120{bottom:639.935597px;}
.y21_c00120{bottom:653.294592px;}
.y20_c00120{bottom:671.818085px;}
.y1f_c00120{bottom:685.538579px;}
.y1e_c00120{bottom:703.349572px;}
.y1d_c00120{bottom:716.176067px;}
.y1c_c00120{bottom:734.876559px;}
.y1b_c00120{bottom:752.333552px;}
.y1a_c00120{bottom:787.066038px;}
.y19_c00120{bottom:798.820034px;}
.y18_c00120{bottom:827.324522px;}
.y17_c00120{bottom:858.674510px;}
.y16_c00120{bottom:890.024497px;}
.y14_c00120{bottom:905.342491px;}
.y15_c00120{bottom:908.192490px;}
.y12_c00120{bottom:912.048198px;}
.y10_c00120{bottom:927.664200px;}
.yf_c00120{bottom:947.317069px;}
.ye_c00120{bottom:962.101678px;}
.yd_c00120{bottom:976.525672px;}
.yc_c00120{bottom:994.161165px;}
.yb_c00120{bottom:1029.250651px;}
.ya_c00120{bottom:1046.172144px;}
.y8_c00120{bottom:1101.391622px;}
.y7_c00120{bottom:1125.436612px;}
.y6_c00120{bottom:1146.276554px;}
.y5_c00120{bottom:1166.762796px;}
.y4_c00120{bottom:1187.245588px;}
.hb_c00120{height:16.210800px;}
.hf_c00120{height:24.315963px;}
.h8_c00120{height:28.368623px;}
.ha_c00120{height:30.169822px;}
.h16_c00120{height:31.970946px;}
.h6_c00120{height:37.374544px;}
.h5_c00120{height:41.427963px;}
.h12_c00120{height:42.772407px;}
.h15_c00120{height:45.029982px;}
.h14_c00120{height:47.932988px;}
.h11_c00120{height:52.927558px;}
.h2_c00120{height:58.667764px;}
.h9_c00120{height:58.798865px;}
.h7_c00120{height:58.929966px;}
.h3_c00120{height:63.768724px;}
.h10_c00120{height:63.839974px;}
.hc_c00120{height:63.911224px;}
.h4_c00120{height:64.053724px;}
.h13_c00120{height:74.776402px;}
.he_c00120{height:125.189200px;}
.hd_c00120{height:1249.830756px;}
.h1_c00120{height:1262.879062px;}
.h0_c00120{height:1263.000000px;}
.w2_c00120{width:8.728020px;}
.w3_c00120{width:8.728200px;}
.w4_c00120{width:883.195846px;}
.w1_c00120{width:892.414744px;}
.w0_c00120{width:892.500000px;}
.x0_c00120{left:0.000000px;}
.xb_c00120{left:1.541954px;}
.x11_c00120{left:112.753050px;}
.x7_c00120{left:114.282348px;}
.x8_c00120{left:121.954860px;}
.x2_c00120{left:126.215308px;}
.xf_c00120{left:128.072094px;}
.x9_c00120{left:129.601392px;}
.x12_c00120{left:156.035983px;}
.x10_c00120{left:181.864473px;}
.x1d_c00120{left:191.126969px;}
.x15_c00120{left:193.442968px;}
.x1c_c00120{left:200.567965px;}
.x16_c00120{left:204.484464px;}
.x1f_c00120{left:211.255461px;}
.x1e_c00120{left:215.174960px;}
.x17_c00120{left:233.162952px;}
.x18_c00120{left:245.450947px;}
.x4_c00120{left:252.504495px;}
.x19_c00120{left:266.828939px;}
.x3_c00120{left:270.140236px;}
.x1a_c00120{left:277.873434px;}
.x6_c00120{left:295.789578px;}
.x1b_c00120{left:299.425426px;}
.xa_c00120{left:316.287000px;}
.xc_c00120{left:322.405417px;}
.x5_c00120{left:420.296029px;}
.x1_c00120{left:505.976141px;}
.xd_c00120{left:518.516838px;}
.xe_c00120{left:526.177335px;}
.x13_c00120{left:649.084286px;}
.x14_c00120{left:661.016781px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.v1_c00120{vertical-align:54.469312pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:-15.833327pt;}
.ws1_c00120{word-spacing:0.000000pt;}
._3_c00120{margin-left:-2.266206pt;}
._0_c00120{margin-left:-1.190569pt;}
._1_c00120{width:0.938922pt;}
._b_c00120{width:1.894526pt;}
._12_c00120{width:2.954895pt;}
._11_c00120{width:4.024413pt;}
._17_c00120{width:5.013814pt;}
._a_c00120{width:6.581585pt;}
._8_c00120{width:8.367780pt;}
._7_c00120{width:9.649916pt;}
._9_c00120{width:10.570258pt;}
._16_c00120{width:12.067391pt;}
._c_c00120{width:13.213037pt;}
._d_c00120{width:14.902298pt;}
._18_c00120{width:20.341677pt;}
._19_c00120{width:21.384527pt;}
._e_c00120{width:26.263954pt;}
._f_c00120{width:27.584659pt;}
._10_c00120{width:28.506800pt;}
._15_c00120{width:45.803400pt;}
._14_c00120{width:46.879530pt;}
._13_c00120{width:48.975591pt;}
._6_c00120{width:351.832036pt;}
._2_c00120{width:384.955490pt;}
._4_c00120{width:422.256898pt;}
._5_c00120{width:598.285969pt;}
.fs5_c00120{font-size:34.199666pt;}
.fs3_c00120{font-size:39.899611pt;}
.fs4_c00120{font-size:42.432943pt;}
.fs8_c00120{font-size:44.966169pt;}
.fs7_c00120{font-size:47.499554pt;}
.fs2_c00120{font-size:52.566166pt;}
.fs0_c00120{font-size:58.267177pt;}
.fs1_c00120{font-size:63.333308pt;}
.fs6_c00120{font-size:74.100237pt;}
.y0_c00120{bottom:0.000000pt;}
.y1_c00120{bottom:0.107500pt;}
.y11_c00120{bottom:3.483935pt;}
.y13_c00120{bottom:6.068128pt;}
.y9_c00120{bottom:63.856874pt;}
.y3_c00120{bottom:73.833045pt;}
.y2_c00120{bottom:74.783670pt;}
.y40_c00120{bottom:78.955651pt;}
.y3f_c00120{bottom:92.096899pt;}
.y3e_c00120{bottom:105.080628pt;}
.y3d_c00120{bottom:118.062889pt;}
.y3c_c00120{bottom:143.867812pt;}
.y3b_c00120{bottom:145.929145pt;}
.y3a_c00120{bottom:170.310468pt;}
.y39_c00120{bottom:191.211793pt;}
.y38_c00120{bottom:217.654849pt;}
.y37_c00120{bottom:244.254439pt;}
.y36_c00120{bottom:246.311771pt;}
.y35_c00120{bottom:268.477362pt;}
.y34_c00120{bottom:284.151756pt;}
.y33_c00120{bottom:286.211755pt;}
.y32_c00120{bottom:305.210414pt;}
.y31_c00120{bottom:317.401076pt;}
.y30_c00120{bottom:334.342403pt;}
.y2f_c00120{bottom:346.853064pt;}
.y2e_c00120{bottom:357.618393pt;}
.y2d_c00120{bottom:359.677059pt;}
.y2c_c00120{bottom:379.467718pt;}
.y2b_c00120{bottom:402.745842pt;}
.y2a_c00120{bottom:429.819564pt;}
.y29_c00120{bottom:456.737020pt;}
.y28_c00120{bottom:483.812609pt;}
.y27_c00120{bottom:509.616999pt;}
.y26_c00120{bottom:510.886332pt;}
.y25_c00120{bottom:527.824992pt;}
.y24_c00120{bottom:540.332987pt;}
.y23_c00120{bottom:552.368982pt;}
.y22_c00120{bottom:568.831642pt;}
.y21_c00120{bottom:580.706304pt;}
.y20_c00120{bottom:597.171631pt;}
.y1f_c00120{bottom:609.367626pt;}
.y1e_c00120{bottom:625.199619pt;}
.y1d_c00120{bottom:636.600948pt;}
.y1c_c00120{bottom:653.223608pt;}
.y1b_c00120{bottom:668.740935pt;}
.y1a_c00120{bottom:699.614256pt;}
.y19_c00120{bottom:710.062252pt;}
.y18_c00120{bottom:735.399575pt;}
.y17_c00120{bottom:763.266231pt;}
.y16_c00120{bottom:791.132886pt;}
.y14_c00120{bottom:804.748881pt;}
.y15_c00120{bottom:807.282213pt;}
.y12_c00120{bottom:810.709509pt;}
.y10_c00120{bottom:824.590400pt;}
.yf_c00120{bottom:842.059616pt;}
.ye_c00120{bottom:855.201491pt;}
.yd_c00120{bottom:868.022819pt;}
.yc_c00120{bottom:883.698813pt;}
.yb_c00120{bottom:914.889467pt;}
.ya_c00120{bottom:929.930795pt;}
.y8_c00120{bottom:979.014775pt;}
.y7_c00120{bottom:1000.388100pt;}
.y6_c00120{bottom:1018.912492pt;}
.y5_c00120{bottom:1037.122485pt;}
.y4_c00120{bottom:1055.329411pt;}
.hb_c00120{height:14.409600pt;}
.hf_c00120{height:21.614189pt;}
.h8_c00120{height:25.216554pt;}
.ha_c00120{height:26.817620pt;}
.h16_c00120{height:28.418619pt;}
.h6_c00120{height:33.221817pt;}
.h5_c00120{height:36.824856pt;}
.h12_c00120{height:38.019917pt;}
.h15_c00120{height:40.026651pt;}
.h14_c00120{height:42.607100pt;}
.h11_c00120{height:47.046718pt;}
.h2_c00120{height:52.149123pt;}
.h9_c00120{height:52.265657pt;}
.h7_c00120{height:52.382192pt;}
.h3_c00120{height:56.683311pt;}
.h10_c00120{height:56.746644pt;}
.hc_c00120{height:56.809977pt;}
.h4_c00120{height:56.936644pt;}
.h13_c00120{height:66.467913pt;}
.he_c00120{height:111.279289pt;}
.hd_c00120{height:1110.960672pt;}
.h1_c00120{height:1122.559167pt;}
.h0_c00120{height:1122.666667pt;}
.w2_c00120{width:7.758240pt;}
.w3_c00120{width:7.758400pt;}
.w4_c00120{width:785.062974pt;}
.w1_c00120{width:793.257550pt;}
.w0_c00120{width:793.333333pt;}
.x0_c00120{left:0.000000pt;}
.xb_c00120{left:1.370626pt;}
.x11_c00120{left:100.224934pt;}
.x7_c00120{left:101.584309pt;}
.x8_c00120{left:108.404320pt;}
.x2_c00120{left:112.191384pt;}
.xf_c00120{left:113.841862pt;}
.x9_c00120{left:115.201237pt;}
.x12_c00120{left:138.698652pt;}
.x10_c00120{left:161.657309pt;}
.x1d_c00120{left:169.890639pt;}
.x15_c00120{left:171.949305pt;}
.x1c_c00120{left:178.282636pt;}
.x16_c00120{left:181.763968pt;}
.x1f_c00120{left:187.782632pt;}
.x1e_c00120{left:191.266631pt;}
.x17_c00120{left:207.255958pt;}
.x18_c00120{left:218.178620pt;}
.x4_c00120{left:224.448440pt;}
.x19_c00120{left:237.181279pt;}
.x3_c00120{left:240.124654pt;}
.x1a_c00120{left:246.998608pt;}
.x6_c00120{left:262.924069pt;}
.x1b_c00120{left:266.155934pt;}
.xa_c00120{left:281.144000pt;}
.xc_c00120{left:286.582593pt;}
.x5_c00120{left:373.596470pt;}
.x1_c00120{left:449.756570pt;}
.xd_c00120{left:460.903856pt;}
.xe_c00120{left:467.713187pt;}
.x13_c00120{left:576.963810pt;}
.x14_c00120{left:587.570472pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8ea6b08e4571bc8d15576dd.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00121{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.v1_c00121{vertical-align:1.420313px;}
.ls0_c00121{letter-spacing:0.000000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00121{word-spacing:-17.812493px;}
.ws1_c00121{word-spacing:0.000000px;}
._a_c00121{margin-left:-4.012328px;}
._7_c00121{margin-left:-2.385642px;}
._0_c00121{margin-left:-1.339390px;}
._1_c00121{width:1.056287px;}
._c_c00121{width:2.336302px;}
._14_c00121{width:3.615835px;}
._16_c00121{width:5.153913px;}
._15_c00121{width:6.197547px;}
._10_c00121{width:21.910932px;}
._12_c00121{width:23.294913px;}
._11_c00121{width:24.845505px;}
._13_c00121{width:25.947296px;}
._3_c00121{width:98.468746px;}
._4_c00121{width:169.761916px;}
._b_c00121{width:196.882308px;}
._6_c00121{width:267.227867px;}
._5_c00121{width:286.680357px;}
._8_c00121{width:310.968146px;}
._e_c00121{width:630.328580px;}
._f_c00121{width:633.135486px;}
._d_c00121{width:674.284230px;}
._9_c00121{width:680.925142px;}
._2_c00121{width:905.135371px;}
.fc1_c00121{color:rgb(105,148,45);}
.fc0_c00121{color:rgb(35,31,32);}
.fs4_c00121{font-size:35.624626px;}
.fs7_c00121{font-size:38.474625px;}
.fs6_c00121{font-size:41.324503px;}
.fs5_c00121{font-size:44.887062px;}
.fs3_c00121{font-size:47.737061px;}
.fs9_c00121{font-size:53.436999px;}
.fs2_c00121{font-size:59.136936px;}
.fs0_c00121{font-size:65.550574px;}
.fs1_c00121{font-size:71.249972px;}
.fs8_c00121{font-size:83.362767px;}
.y0_c00121{bottom:0.000000px;}
.y1_c00121{bottom:0.120938px;}
.yd_c00121{bottom:0.485156px;}
.y3d_c00121{bottom:1.422422px;}
.y21_c00121{bottom:1.779563px;}
.y35_c00121{bottom:2.312802px;}
.y26_c00121{bottom:2.846682px;}
.y14_c00121{bottom:3.916992px;}
.y38_c00121{bottom:4.272703px;}
.yc_c00121{bottom:4.449781px;}
.y18_c00121{bottom:6.826644px;}
.y9_c00121{bottom:71.838984px;}
.y3_c00121{bottom:83.062176px;}
.y2_c00121{bottom:84.131629px;}
.y4c_c00121{bottom:103.430362px;}
.y4b_c00121{bottom:119.105056px;}
.y4a_c00121{bottom:138.165398px;}
.y49_c00121{bottom:152.057792px;}
.y48_c00121{bottom:168.623786px;}
.y47_c00121{bottom:204.425771px;}
.y46_c00121{bottom:230.791411px;}
.y45_c00121{bottom:261.605899px;}
.y44_c00121{bottom:292.241736px;}
.y43_c00121{bottom:311.479319px;}
.y42_c00121{bottom:326.263223px;}
.y41_c00121{bottom:339.980717px;}
.y40_c00121{bottom:351.377713px;}
.y3f_c00121{bottom:381.478201px;}
.y3e_c00121{bottom:416.572187px;}
.y3c_c00121{bottom:444.416400px;}
.y3a_c00121{bottom:460.319160px;}
.y39_c00121{bottom:460.683378px;}
.y3b_c00121{bottom:475.458654px;}
.y37_c00121{bottom:487.164600px;}
.y36_c00121{bottom:491.316366px;}
.y34_c00121{bottom:491.976000px;}
.y33_c00121{bottom:520.237145px;}
.y32_c00121{bottom:541.970636px;}
.y31_c00121{bottom:563.525628px;}
.y30_c00121{bottom:581.332121px;}
.y2f_c00121{bottom:594.160116px;}
.y2e_c00121{bottom:613.039108px;}
.y2d_c00121{bottom:629.251102px;}
.y2c_c00121{bottom:655.615091px;}
.y2b_c00121{bottom:686.429579px;}
.y2a_c00121{bottom:705.485571px;}
.y29_c00121{bottom:719.560065px;}
.y28_c00121{bottom:731.494061px;}
.y27_c00121{bottom:761.953048px;}
.y25_c00121{bottom:791.046000px;}
.y23_c00121{bottom:807.843239px;}
.y24_c00121{bottom:824.052233px;}
.y22_c00121{bottom:838.479227px;}
.y20_c00121{bottom:840.207600px;}
.y1f_c00121{bottom:871.498005px;}
.y1e_c00121{bottom:892.511496px;}
.y1d_c00121{bottom:906.584491px;}
.y1c_c00121{bottom:919.056986px;}
.y1b_c00121{bottom:947.199974px;}
.y12_c00121{bottom:985.603950px;}
.y1a_c00121{bottom:992.798456px;}
.y19_c00121{bottom:994.224956px;}
.y17_c00121{bottom:999.504163px;}
.y16_c00121{bottom:1000.930662px;}
.y15_c00121{bottom:1001.286162px;}
.y11_c00121{bottom:1003.593443px;}
.y10_c00121{bottom:1014.457938px;}
.yf_c00121{bottom:1015.882938px;}
.y13_c00121{bottom:1016.373600px;}
.yb_c00121{bottom:1043.803800px;}
.ye_c00121{bottom:1046.878925px;}
.ya_c00121{bottom:1067.192086px;}
.y8_c00121{bottom:1101.391622px;}
.y7_c00121{bottom:1125.436612px;}
.y6_c00121{bottom:1146.276554px;}
.y5_c00121{bottom:1166.762796px;}
.y4_c00121{bottom:1187.245588px;}
.hc_c00121{height:16.029000px;}
.h18_c00121{height:16.920000px;}
.h11_c00121{height:17.280000px;}
.h16_c00121{height:17.811000px;}
.h12_c00121{height:18.347400px;}
.h7_c00121{height:19.949400px;}
.h17_c00121{height:20.309400px;}
.hb_c00121{height:22.514763px;}
.h14_c00121{height:24.315963px;}
.h13_c00121{height:26.117086px;}
.h10_c00121{height:28.368623px;}
.h1b_c00121{height:33.772183px;}
.h6_c00121{height:37.374544px;}
.h5_c00121{height:41.427963px;}
.ha_c00121{height:42.724670px;}
.h15_c00121{height:52.685269px;}
.hf_c00121{height:52.927558px;}
.h2_c00121{height:58.667764px;}
.h1a_c00121{height:58.798865px;}
.h3_c00121{height:63.768724px;}
.he_c00121{height:63.839974px;}
.h9_c00121{height:63.911224px;}
.h4_c00121{height:64.053724px;}
.h19_c00121{height:65.260288px;}
.hd_c00121{height:1249.830756px;}
.h8_c00121{height:1262.514600px;}
.h1_c00121{height:1262.879062px;}
.h0_c00121{height:1263.000000px;}
.w8_c00121{width:8.192880px;}
.w2_c00121{width:8.193600px;}
.w9_c00121{width:8.194140px;}
.w6_c00121{width:8.726400px;}
.w5_c00121{width:8.728200px;}
.w4_c00121{width:8.730000px;}
.wb_c00121{width:12.646800px;}
.wa_c00121{width:14.070600px;}
.w7_c00121{width:883.195846px;}
.w3_c00121{width:892.161000px;}
.w1_c00121{width:892.414744px;}
.w0_c00121{width:892.500000px;}
.x0_c00121{left:0.000000px;}
.x1c_c00121{left:1.541954px;}
.x21_c00121{left:112.753050px;}
.x7_c00121{left:114.282348px;}
.x8_c00121{left:121.954860px;}
.x24_c00121{left:125.159760px;}
.x2_c00121{left:126.215308px;}
.x20_c00121{left:128.072094px;}
.xa_c00121{left:129.563423px;}
.xb_c00121{left:138.470570px;}
.x29_c00121{left:178.837474px;}
.xc_c00121{left:182.160000px;}
.x9_c00121{left:189.766799px;}
.x4_c00121{left:252.504495px;}
.xd_c00121{left:260.177400px;}
.xe_c00121{left:267.821237px;}
.x3_c00121{left:270.140236px;}
.xf_c00121{left:275.664733px;}
.x10_c00121{left:286.172229px;}
.x6_c00121{left:295.789578px;}
.x22_c00121{left:352.256203px;}
.x25_c00121{left:361.160199px;}
.x11_c00121{left:367.408800px;}
.x12_c00121{left:375.062194px;}
.x13_c00121{left:382.892191px;}
.x14_c00121{left:393.398186px;}
.x5_c00121{left:420.296029px;}
.x15_c00121{left:475.887600px;}
.x16_c00121{left:483.354650px;}
.x1_c00121{left:505.976141px;}
.x26_c00121{left:546.780600px;}
.x17_c00121{left:553.726800px;}
.x23_c00121{left:557.988621px;}
.x18_c00121{left:561.371119px;}
.x27_c00121{left:563.151618px;}
.x19_c00121{left:569.210116px;}
.x1a_c00121{left:579.717612px;}
.x1b_c00121{left:661.136400px;}
.x1d_c00121{left:667.073779px;}
.x1e_c00121{left:674.908276px;}
.x1f_c00121{left:685.417271px;}
.x28_c00121{left:747.525600px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.v1_c00121{vertical-align:1.262501pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:-15.833327pt;}
.ws1_c00121{word-spacing:0.000000pt;}
._a_c00121{margin-left:-3.566514pt;}
._7_c00121{margin-left:-2.120571pt;}
._0_c00121{margin-left:-1.190569pt;}
._1_c00121{width:0.938922pt;}
._c_c00121{width:2.076713pt;}
._14_c00121{width:3.214075pt;}
._16_c00121{width:4.581256pt;}
._15_c00121{width:5.508931pt;}
._10_c00121{width:19.476384pt;}
._12_c00121{width:20.706590pt;}
._11_c00121{width:22.084893pt;}
._13_c00121{width:23.064263pt;}
._3_c00121{width:87.527774pt;}
._4_c00121{width:150.899481pt;}
._b_c00121{width:175.006496pt;}
._6_c00121{width:237.535882pt;}
._5_c00121{width:254.826984pt;}
._8_c00121{width:276.416130pt;}
._e_c00121{width:560.292071pt;}
._f_c00121{width:562.787098pt;}
._d_c00121{width:599.363760pt;}
._9_c00121{width:605.266793pt;}
._2_c00121{width:804.564774pt;}
.fs4_c00121{font-size:31.666334pt;}
.fs7_c00121{font-size:34.199666pt;}
.fs6_c00121{font-size:36.732892pt;}
.fs5_c00121{font-size:39.899611pt;}
.fs3_c00121{font-size:42.432943pt;}
.fs9_c00121{font-size:47.499554pt;}
.fs2_c00121{font-size:52.566166pt;}
.fs0_c00121{font-size:58.267177pt;}
.fs1_c00121{font-size:63.333308pt;}
.fs8_c00121{font-size:74.100237pt;}
.y0_c00121{bottom:0.000000pt;}
.y1_c00121{bottom:0.107500pt;}
.yd_c00121{bottom:0.431250pt;}
.y3d_c00121{bottom:1.264375pt;}
.y21_c00121{bottom:1.581834pt;}
.y35_c00121{bottom:2.055824pt;}
.y26_c00121{bottom:2.530384pt;}
.y14_c00121{bottom:3.481771pt;}
.y38_c00121{bottom:3.797959pt;}
.yc_c00121{bottom:3.955361pt;}
.y18_c00121{bottom:6.068128pt;}
.y9_c00121{bottom:63.856874pt;}
.y3_c00121{bottom:73.833045pt;}
.y2_c00121{bottom:74.783670pt;}
.y4c_c00121{bottom:91.938099pt;}
.y4b_c00121{bottom:105.871161pt;}
.y4a_c00121{bottom:122.813687pt;}
.y49_c00121{bottom:135.162482pt;}
.y48_c00121{bottom:149.887810pt;}
.y47_c00121{bottom:181.711797pt;}
.y46_c00121{bottom:205.147921pt;}
.y45_c00121{bottom:232.538577pt;}
.y44_c00121{bottom:259.770432pt;}
.y43_c00121{bottom:276.870505pt;}
.y42_c00121{bottom:290.011754pt;}
.y41_c00121{bottom:302.205082pt;}
.y40_c00121{bottom:312.335745pt;}
.y3f_c00121{bottom:339.091734pt;}
.y3e_c00121{bottom:370.286388pt;}
.y3c_c00121{bottom:395.036800pt;}
.y3a_c00121{bottom:409.172587pt;}
.y39_c00121{bottom:409.496336pt;}
.y3b_c00121{bottom:422.629915pt;}
.y37_c00121{bottom:433.035200pt;}
.y36_c00121{bottom:436.725659pt;}
.y34_c00121{bottom:437.312000pt;}
.y33_c00121{bottom:462.433018pt;}
.y32_c00121{bottom:481.751677pt;}
.y31_c00121{bottom:500.911669pt;}
.y30_c00121{bottom:516.739663pt;}
.y2f_c00121{bottom:528.142325pt;}
.y2e_c00121{bottom:544.923652pt;}
.y2d_c00121{bottom:559.334313pt;}
.y2c_c00121{bottom:582.768970pt;}
.y2b_c00121{bottom:610.159626pt;}
.y2a_c00121{bottom:627.098285pt;}
.y29_c00121{bottom:639.608947pt;}
.y28_c00121{bottom:650.216943pt;}
.y27_c00121{bottom:677.291599pt;}
.y25_c00121{bottom:703.152000pt;}
.y23_c00121{bottom:718.082879pt;}
.y24_c00121{bottom:732.490874pt;}
.y22_c00121{bottom:745.314868pt;}
.y20_c00121{bottom:746.851200pt;}
.y1f_c00121{bottom:774.664893pt;}
.y1e_c00121{bottom:793.343552pt;}
.y1d_c00121{bottom:805.852881pt;}
.y1c_c00121{bottom:816.939543pt;}
.y1b_c00121{bottom:841.955533pt;}
.y12_c00121{bottom:876.092400pt;}
.y1a_c00121{bottom:882.487517pt;}
.y19_c00121{bottom:883.755516pt;}
.y17_c00121{bottom:888.448145pt;}
.y16_c00121{bottom:889.716144pt;}
.y15_c00121{bottom:890.032144pt;}
.y11_c00121{bottom:892.083060pt;}
.y10_c00121{bottom:901.740390pt;}
.yf_c00121{bottom:903.007056pt;}
.y13_c00121{bottom:903.443200pt;}
.yb_c00121{bottom:927.825600pt;}
.ye_c00121{bottom:930.559045pt;}
.ya_c00121{bottom:948.615187pt;}
.y8_c00121{bottom:979.014775pt;}
.y7_c00121{bottom:1000.388100pt;}
.y6_c00121{bottom:1018.912492pt;}
.y5_c00121{bottom:1037.122485pt;}
.y4_c00121{bottom:1055.329411pt;}
.hc_c00121{height:14.248000pt;}
.h18_c00121{height:15.040000pt;}
.h11_c00121{height:15.360000pt;}
.h16_c00121{height:15.832000pt;}
.h12_c00121{height:16.308800pt;}
.h7_c00121{height:17.732800pt;}
.h17_c00121{height:18.052800pt;}
.hb_c00121{height:20.013123pt;}
.h14_c00121{height:21.614189pt;}
.h13_c00121{height:23.215188pt;}
.h10_c00121{height:25.216554pt;}
.h1b_c00121{height:30.019718pt;}
.h6_c00121{height:33.221817pt;}
.h5_c00121{height:36.824856pt;}
.ha_c00121{height:37.977484pt;}
.h15_c00121{height:46.831350pt;}
.hf_c00121{height:47.046718pt;}
.h2_c00121{height:52.149123pt;}
.h1a_c00121{height:52.265657pt;}
.h3_c00121{height:56.683311pt;}
.he_c00121{height:56.746644pt;}
.h9_c00121{height:56.809977pt;}
.h4_c00121{height:56.936644pt;}
.h19_c00121{height:58.009145pt;}
.hd_c00121{height:1110.960672pt;}
.h8_c00121{height:1122.235200pt;}
.h1_c00121{height:1122.559167pt;}
.h0_c00121{height:1122.666667pt;}
.w8_c00121{width:7.282560pt;}
.w2_c00121{width:7.283200pt;}
.w9_c00121{width:7.283680pt;}
.w6_c00121{width:7.756800pt;}
.w5_c00121{width:7.758400pt;}
.w4_c00121{width:7.760000pt;}
.wb_c00121{width:11.241600pt;}
.wa_c00121{width:12.507200pt;}
.w7_c00121{width:785.062974pt;}
.w3_c00121{width:793.032000pt;}
.w1_c00121{width:793.257550pt;}
.w0_c00121{width:793.333333pt;}
.x0_c00121{left:0.000000pt;}
.x1c_c00121{left:1.370626pt;}
.x21_c00121{left:100.224934pt;}
.x7_c00121{left:101.584309pt;}
.x8_c00121{left:108.404320pt;}
.x24_c00121{left:111.253120pt;}
.x2_c00121{left:112.191384pt;}
.x20_c00121{left:113.841862pt;}
.xa_c00121{left:115.167487pt;}
.xb_c00121{left:123.084951pt;}
.x29_c00121{left:158.966644pt;}
.xc_c00121{left:161.920000pt;}
.x9_c00121{left:168.681599pt;}
.x4_c00121{left:224.448440pt;}
.xd_c00121{left:231.268800pt;}
.xe_c00121{left:238.063321pt;}
.x3_c00121{left:240.124654pt;}
.xf_c00121{left:245.035319pt;}
.x10_c00121{left:254.375315pt;}
.x6_c00121{left:262.924069pt;}
.x22_c00121{left:313.116625pt;}
.x25_c00121{left:321.031288pt;}
.x11_c00121{left:326.585600pt;}
.x12_c00121{left:333.388617pt;}
.x13_c00121{left:340.348614pt;}
.x14_c00121{left:349.687277pt;}
.x5_c00121{left:373.596470pt;}
.x15_c00121{left:423.011200pt;}
.x16_c00121{left:429.648578pt;}
.x1_c00121{left:449.756570pt;}
.x26_c00121{left:486.027200pt;}
.x17_c00121{left:492.201600pt;}
.x23_c00121{left:495.989885pt;}
.x18_c00121{left:498.996550pt;}
.x27_c00121{left:500.579216pt;}
.x19_c00121{left:505.964548pt;}
.x1a_c00121{left:515.304544pt;}
.x1b_c00121{left:587.676800pt;}
.x1d_c00121{left:592.954470pt;}
.x1e_c00121{left:599.918467pt;}
.x1f_c00121{left:609.259797pt;}
.x28_c00121{left:664.467200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.112000;font-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_c00122{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.v2_c00122{vertical-align:61.273175px;}
.v1_c00122{vertical-align:71.255971px;}
.ls0_c00122{letter-spacing:0.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00122{word-spacing:-17.812493px;}
.ws0_c00122{word-spacing:-16.387643px;}
.ws1_c00122{word-spacing:-14.784234px;}
.ws4_c00122{word-spacing:0.000000px;}
.ws3_c00122{word-spacing:299.483863px;}
._3_c00122{margin-left:-3.898001px;}
._4_c00122{margin-left:-2.570409px;}
._0_c00122{margin-left:-1.339390px;}
._1_c00122{width:1.056287px;}
._8_c00122{width:13.148369px;}
._2_c00122{width:45.295225px;}
._6_c00122{width:116.485706px;}
._5_c00122{width:138.982061px;}
._7_c00122{width:160.189602px;}
.fc1_c00122{color:rgb(105,148,45);}
.fc0_c00122{color:rgb(35,31,32);}
.fs4_c00122{font-size:32.774747px;}
.fs6_c00122{font-size:47.737061px;}
.fs7_c00122{font-size:56.286877px;}
.fs2_c00122{font-size:59.136936px;}
.fs0_c00122{font-size:65.550574px;}
.fs1_c00122{font-size:71.249972px;}
.fs5_c00122{font-size:76.949969px;}
.fs3_c00122{font-size:83.362767px;}
.y0_c00122{bottom:0.000000px;}
.y1_c00122{bottom:0.120938px;}
.y28_c00122{bottom:0.242579px;}
.y10_c00122{bottom:0.485156px;}
.y3d_c00122{bottom:3.203574px;}
.y27_c00122{bottom:3.914149px;}
.y1b_c00122{bottom:4.271063px;}
.y14_c00122{bottom:4.443535px;}
.y18_c00122{bottom:4.454061px;}
.ye_c00122{bottom:4.805607px;}
.y1c_c00122{bottom:6.826644px;}
.y9_c00122{bottom:71.838984px;}
.y3_c00122{bottom:83.062176px;}
.y2_c00122{bottom:84.131629px;}
.y4c_c00122{bottom:134.715809px;}
.y4b_c00122{bottom:167.848095px;}
.y47_c00122{bottom:168.022545px;}
.y46_c00122{bottom:202.754731px;}
.y4a_c00122{bottom:202.761781px;}
.y42_c00122{bottom:237.138468px;}
.y49_c00122{bottom:237.495467px;}
.y45_c00122{bottom:237.668417px;}
.y41_c00122{bottom:256.374460px;}
.y48_c00122{bottom:256.551460px;}
.y40_c00122{bottom:271.335454px;}
.y44_c00122{bottom:272.403453px;}
.y3f_c00122{bottom:286.120948px;}
.y3e_c00122{bottom:300.906442px;}
.y43_c00122{bottom:306.960440px;}
.y3c_c00122{bottom:312.067800px;}
.y3b_c00122{bottom:344.779033px;}
.y3a_c00122{bottom:375.594871px;}
.y39_c00122{bottom:406.231459px;}
.y38_c00122{bottom:437.047296px;}
.y37_c00122{bottom:467.686734px;}
.y31_c00122{bottom:483.358728px;}
.y36_c00122{bottom:498.501222px;}
.y30_c00122{bottom:503.487220px;}
.y2f_c00122{bottom:523.083212px;}
.y35_c00122{bottom:529.137059px;}
.y2e_c00122{bottom:538.044206px;}
.y2d_c00122{bottom:552.829700px;}
.y34_c00122{bottom:559.951547px;}
.y2c_c00122{bottom:567.612194px;}
.y2b_c00122{bottom:582.576188px;}
.y33_c00122{bottom:590.587385px;}
.y2a_c00122{bottom:597.357182px;}
.y29_c00122{bottom:612.145676px;}
.y32_c00122{bottom:621.403973px;}
.y26_c00122{bottom:623.433600px;}
.y25_c00122{bottom:637.442553px;}
.y24_c00122{bottom:652.402242px;}
.y23_c00122{bottom:667.546086px;}
.y22_c00122{bottom:695.510575px;}
.y21_c00122{bottom:721.161315px;}
.y20_c00122{bottom:746.812055px;}
.y1f_c00122{bottom:761.774549px;}
.y1e_c00122{bottom:772.459044px;}
.y1d_c00122{bottom:805.591031px;}
.y19_c00122{bottom:827.793231px;}
.y1a_c00122{bottom:838.785600px;}
.y17_c00122{bottom:842.700600px;}
.y16_c00122{bottom:878.382661px;}
.y15_c00122{bottom:893.880205px;}
.y13_c00122{bottom:908.967600px;}
.y12_c00122{bottom:946.245184px;}
.y11_c00122{bottom:962.977959px;}
.yf_c00122{bottom:963.342177px;}
.yd_c00122{bottom:978.255000px;}
.yc_c00122{bottom:1017.493655px;}
.yb_c00122{bottom:1039.401147px;}
.ya_c00122{bottom:1063.986137px;}
.y8_c00122{bottom:1101.391622px;}
.y7_c00122{bottom:1125.436612px;}
.y6_c00122{bottom:1146.276554px;}
.y5_c00122{bottom:1166.762796px;}
.y4_c00122{bottom:1187.245588px;}
.h1a_c00122{height:12.826800px;}
.h17_c00122{height:15.849000px;}
.h11_c00122{height:18.171000px;}
.hf_c00122{height:18.696600px;}
.h13_c00122{height:20.305800px;}
.ha_c00122{height:20.307600px;}
.h16_c00122{height:20.713640px;}
.h1b_c00122{height:30.169822px;}
.h1c_c00122{height:35.573307px;}
.h6_c00122{height:37.374544px;}
.h5_c00122{height:41.427963px;}
.hb_c00122{height:45.029982px;}
.h19_c00122{height:48.632381px;}
.h8_c00122{height:52.685269px;}
.h15_c00122{height:52.927558px;}
.h2_c00122{height:58.667764px;}
.h7_c00122{height:58.798865px;}
.h3_c00122{height:63.768724px;}
.hc_c00122{height:63.839974px;}
.h9_c00122{height:63.911224px;}
.h4_c00122{height:64.053724px;}
.h12_c00122{height:124.404550px;}
.h10_c00122{height:125.113150px;}
.he_c00122{height:135.095946px;}
.h14_c00122{height:1249.830756px;}
.hd_c00122{height:1262.514600px;}
.h18_c00122{height:1262.757421px;}
.h1_c00122{height:1262.879062px;}
.h0_c00122{height:1263.000000px;}
.wd_c00122{width:6.949080px;}
.wb_c00122{width:8.728560px;}
.w8_c00122{width:9.615600px;}
.w7_c00122{width:9.617400px;}
.w6_c00122{width:9.618840px;}
.w5_c00122{width:10.504800px;}
.w3_c00122{width:10.508400px;}
.w2_c00122{width:10.509660px;}
.w9_c00122{width:11.757600px;}
.wa_c00122{width:883.195846px;}
.w4_c00122{width:892.161000px;}
.wc_c00122{width:892.330200px;}
.w1_c00122{width:892.414744px;}
.w0_c00122{width:892.500000px;}
.x0_c00122{left:0.000000px;}
.x11_c00122{left:1.541954px;}
.x16_c00122{left:112.754999px;}
.x7_c00122{left:114.282348px;}
.x14_c00122{left:123.617696px;}
.x8_c00122{left:125.159760px;}
.x2_c00122{left:126.215308px;}
.x13_c00122{left:129.854544px;}
.x15_c00122{left:178.837474px;}
.x1b_c00122{left:180.366772px;}
.x9_c00122{left:224.910000px;}
.xa_c00122{left:226.462784px;}
.x4_c00122{left:252.504495px;}
.x3_c00122{left:270.140236px;}
.xb_c00122{left:285.652800px;}
.xc_c00122{left:287.240229px;}
.x17_c00122{left:291.684031px;}
.x18_c00122{left:294.008226px;}
.x6_c00122{left:295.789578px;}
.xe_c00122{left:368.479800px;}
.xd_c00122{left:369.711696px;}
.x5_c00122{left:420.296029px;}
.x1a_c00122{left:453.605162px;}
.x19_c00122{left:455.386600px;}
.x1_c00122{left:505.976141px;}
.x12_c00122{left:590.657809px;}
.xf_c00122{left:592.184488px;}
.x10_c00122{left:748.414800px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.v2_c00122{vertical-align:54.465045pt;}
.v1_c00122{vertical-align:63.338641pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws2_c00122{word-spacing:-15.833327pt;}
.ws0_c00122{word-spacing:-14.566794pt;}
.ws1_c00122{word-spacing:-13.141541pt;}
.ws4_c00122{word-spacing:0.000000pt;}
.ws3_c00122{word-spacing:266.207878pt;}
._3_c00122{margin-left:-3.464890pt;}
._4_c00122{margin-left:-2.284808pt;}
._0_c00122{margin-left:-1.190569pt;}
._1_c00122{width:0.938922pt;}
._8_c00122{width:11.687439pt;}
._2_c00122{width:40.262422pt;}
._6_c00122{width:103.542850pt;}
._5_c00122{width:123.539610pt;}
._7_c00122{width:142.390758pt;}
.fs4_c00122{font-size:29.133108pt;}
.fs6_c00122{font-size:42.432943pt;}
.fs7_c00122{font-size:50.032780pt;}
.fs2_c00122{font-size:52.566166pt;}
.fs0_c00122{font-size:58.267177pt;}
.fs1_c00122{font-size:63.333308pt;}
.fs5_c00122{font-size:68.399973pt;}
.fs3_c00122{font-size:74.100237pt;}
.y0_c00122{bottom:0.000000pt;}
.y1_c00122{bottom:0.107500pt;}
.y28_c00122{bottom:0.215626pt;}
.y10_c00122{bottom:0.431250pt;}
.y3d_c00122{bottom:2.847621pt;}
.y27_c00122{bottom:3.479244pt;}
.y1b_c00122{bottom:3.796500pt;}
.y14_c00122{bottom:3.949809pt;}
.y18_c00122{bottom:3.959165pt;}
.ye_c00122{bottom:4.271650pt;}
.y1c_c00122{bottom:6.068128pt;}
.y9_c00122{bottom:63.856874pt;}
.y3_c00122{bottom:73.833045pt;}
.y2_c00122{bottom:74.783670pt;}
.y4c_c00122{bottom:119.747385pt;}
.y4b_c00122{bottom:149.198307pt;}
.y47_c00122{bottom:149.353374pt;}
.y46_c00122{bottom:180.226428pt;}
.y4a_c00122{bottom:180.232695pt;}
.y42_c00122{bottom:210.789749pt;}
.y49_c00122{bottom:211.107082pt;}
.y45_c00122{bottom:211.260815pt;}
.y41_c00122{bottom:227.888409pt;}
.y48_c00122{bottom:228.045742pt;}
.y40_c00122{bottom:241.187070pt;}
.y44_c00122{bottom:242.136403pt;}
.y3f_c00122{bottom:254.329732pt;}
.y3e_c00122{bottom:267.472393pt;}
.y43_c00122{bottom:272.853724pt;}
.y3c_c00122{bottom:277.393600pt;}
.y3b_c00122{bottom:306.470252pt;}
.y3a_c00122{bottom:333.862107pt;}
.y39_c00122{bottom:361.094630pt;}
.y38_c00122{bottom:388.486486pt;}
.y37_c00122{bottom:415.721541pt;}
.y31_c00122{bottom:429.652202pt;}
.y36_c00122{bottom:443.112197pt;}
.y30_c00122{bottom:447.544195pt;}
.y2f_c00122{bottom:464.962855pt;}
.y35_c00122{bottom:470.344053pt;}
.y2e_c00122{bottom:478.261516pt;}
.y2d_c00122{bottom:491.404178pt;}
.y34_c00122{bottom:497.734709pt;}
.y2c_c00122{bottom:504.544172pt;}
.y2b_c00122{bottom:517.845501pt;}
.y33_c00122{bottom:524.966564pt;}
.y2a_c00122{bottom:530.984162pt;}
.y29_c00122{bottom:544.129490pt;}
.y32_c00122{bottom:552.359087pt;}
.y26_c00122{bottom:554.163200pt;}
.y25_c00122{bottom:566.615603pt;}
.y24_c00122{bottom:579.913104pt;}
.y23_c00122{bottom:593.374299pt;}
.y22_c00122{bottom:618.231622pt;}
.y21_c00122{bottom:641.032280pt;}
.y20_c00122{bottom:663.832937pt;}
.y1f_c00122{bottom:677.132932pt;}
.y1e_c00122{bottom:686.630262pt;}
.y1d_c00122{bottom:716.080916pt;}
.y19_c00122{bottom:735.816206pt;}
.y1a_c00122{bottom:745.587200pt;}
.y17_c00122{bottom:749.067200pt;}
.y16_c00122{bottom:780.784588pt;}
.y15_c00122{bottom:794.560182pt;}
.y13_c00122{bottom:807.971200pt;}
.y12_c00122{bottom:841.106830pt;}
.y11_c00122{bottom:855.980408pt;}
.yf_c00122{bottom:856.304157pt;}
.yd_c00122{bottom:869.560000pt;}
.yc_c00122{bottom:904.438805pt;}
.yb_c00122{bottom:923.912130pt;}
.ya_c00122{bottom:945.765455pt;}
.y8_c00122{bottom:979.014775pt;}
.y7_c00122{bottom:1000.388100pt;}
.y6_c00122{bottom:1018.912492pt;}
.y5_c00122{bottom:1037.122485pt;}
.y4_c00122{bottom:1055.329411pt;}
.h1a_c00122{height:11.401600pt;}
.h17_c00122{height:14.088000pt;}
.h11_c00122{height:16.152000pt;}
.hf_c00122{height:16.619200pt;}
.h13_c00122{height:18.049600pt;}
.ha_c00122{height:18.051200pt;}
.h16_c00122{height:18.412124pt;}
.h1b_c00122{height:26.817620pt;}
.h1c_c00122{height:31.620717pt;}
.h6_c00122{height:33.221817pt;}
.h5_c00122{height:36.824856pt;}
.hb_c00122{height:40.026651pt;}
.h19_c00122{height:43.228783pt;}
.h8_c00122{height:46.831350pt;}
.h15_c00122{height:47.046718pt;}
.h2_c00122{height:52.149123pt;}
.h7_c00122{height:52.265657pt;}
.h3_c00122{height:56.683311pt;}
.hc_c00122{height:56.746644pt;}
.h9_c00122{height:56.809977pt;}
.h4_c00122{height:56.936644pt;}
.h12_c00122{height:110.581822pt;}
.h10_c00122{height:111.211689pt;}
.he_c00122{height:120.085285pt;}
.h14_c00122{height:1110.960672pt;}
.hd_c00122{height:1122.235200pt;}
.h18_c00122{height:1122.451041pt;}
.h1_c00122{height:1122.559167pt;}
.h0_c00122{height:1122.666667pt;}
.wd_c00122{width:6.176960pt;}
.wb_c00122{width:7.758720pt;}
.w8_c00122{width:8.547200pt;}
.w7_c00122{width:8.548800pt;}
.w6_c00122{width:8.550080pt;}
.w5_c00122{width:9.337600pt;}
.w3_c00122{width:9.340800pt;}
.w2_c00122{width:9.341920pt;}
.w9_c00122{width:10.451200pt;}
.wa_c00122{width:785.062974pt;}
.w4_c00122{width:793.032000pt;}
.wc_c00122{width:793.182400pt;}
.w1_c00122{width:793.257550pt;}
.w0_c00122{width:793.333333pt;}
.x0_c00122{left:0.000000pt;}
.x11_c00122{left:1.370626pt;}
.x16_c00122{left:100.226665pt;}
.x7_c00122{left:101.584309pt;}
.x14_c00122{left:109.882397pt;}
.x8_c00122{left:111.253120pt;}
.x2_c00122{left:112.191384pt;}
.x13_c00122{left:115.426261pt;}
.x15_c00122{left:158.966644pt;}
.x1b_c00122{left:160.326019pt;}
.x9_c00122{left:199.920000pt;}
.xa_c00122{left:201.300253pt;}
.x4_c00122{left:224.448440pt;}
.x3_c00122{left:240.124654pt;}
.xb_c00122{left:253.913600pt;}
.xc_c00122{left:255.324648pt;}
.x17_c00122{left:259.274694pt;}
.x18_c00122{left:261.340645pt;}
.x6_c00122{left:262.924069pt;}
.xe_c00122{left:327.537600pt;}
.xd_c00122{left:328.632619pt;}
.x5_c00122{left:373.596470pt;}
.x1a_c00122{left:403.204589pt;}
.x19_c00122{left:404.788088pt;}
.x1_c00122{left:449.756570pt;}
.x12_c00122{left:525.029164pt;}
.xf_c00122{left:526.386212pt;}
.x10_c00122{left:665.257600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00123;src:url('chunks/assets/font_a245938468bd6069d0d91170.woff2')format("woff");}.ff6_c00123{font-family:ff6_c00123;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00123;src:url('chunks/assets/font_98bb09970289ca160802b915.woff2')format("woff");}.ff7_c00123{font-family:ff7_c00123;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00123{transform:matrix(0.199508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199508,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.226544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226544,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.238126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238126,0.000000,0.000000,0.250000,0,0);}
.md_c00123{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.mb_c00123{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls1_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:2.107729px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00123{word-spacing:-26.718469px;}
.ws0_c00123{word-spacing:-16.387643px;}
.ws3_c00123{word-spacing:-11.934265px;}
.ws1_c00123{word-spacing:-9.903646px;}
.ws4_c00123{word-spacing:0.000000px;}
._a_c00123{margin-left:-7.495953px;}
._b_c00123{margin-left:-4.098782px;}
._2_c00123{margin-left:-2.570712px;}
._0_c00123{margin-left:-1.339390px;}
._1_c00123{width:1.056287px;}
._3_c00123{width:2.439118px;}
._8_c00123{width:3.578759px;}
._7_c00123{width:11.778885px;}
._6_c00123{width:13.365072px;}
._5_c00123{width:14.542910px;}
._4_c00123{width:16.027647px;}
._9_c00123{width:515.464874px;}
.fc1_c00123{color:rgb(105,148,45);}
.fc0_c00123{color:rgb(35,31,32);}
.fs6_c00123{font-size:32.774747px;}
.fs9_c00123{font-size:35.624626px;}
.fs4_c00123{font-size:38.474625px;}
.fs5_c00123{font-size:41.324503px;}
.fs3_c00123{font-size:44.887062px;}
.fsb_c00123{font-size:47.737061px;}
.fs2_c00123{font-size:59.136936px;}
.fs8_c00123{font-size:62.699375px;}
.fs0_c00123{font-size:65.550574px;}
.fs1_c00123{font-size:71.249972px;}
.fs7_c00123{font-size:91.911563px;}
.fsa_c00123{font-size:94.762762px;}
.y0_c00123{bottom:0.000000px;}
.y1_c00123{bottom:0.120938px;}
.y48_c00123{bottom:2.848405px;}
.yf_c00123{bottom:4.275809px;}
.y10_c00123{bottom:6.826644px;}
.y9_c00123{bottom:71.838984px;}
.y3_c00123{bottom:83.062176px;}
.y2_c00123{bottom:84.131629px;}
.y50_c00123{bottom:93.808766px;}
.y4f_c00123{bottom:108.771260px;}
.y4e_c00123{bottom:122.844254px;}
.y4d_c00123{bottom:135.137049px;}
.y4b_c00123{bottom:194.095276px;}
.y4a_c00123{bottom:196.411275px;}
.y4c_c00123{bottom:196.591275px;}
.y46_c00123{bottom:230.075761px;}
.y45_c00123{bottom:232.391760px;}
.y49_c00123{bottom:232.567260px;}
.y47_c00123{bottom:234.054000px;}
.y43_c00123{bottom:266.057747px;}
.y42_c00123{bottom:268.369246px;}
.y44_c00123{bottom:268.547746px;}
.y40_c00123{bottom:302.035232px;}
.y3f_c00123{bottom:304.352732px;}
.y41_c00123{bottom:304.531231px;}
.y3d_c00123{bottom:338.909718px;}
.y3c_c00123{bottom:340.334717px;}
.y3e_c00123{bottom:340.511717px;}
.y3a_c00123{bottom:375.065703px;}
.y39_c00123{bottom:376.495203px;}
.y3b_c00123{bottom:376.669203px;}
.y37_c00123{bottom:411.226189px;}
.y36_c00123{bottom:412.654188px;}
.y38_c00123{bottom:412.829688px;}
.y35_c00123{bottom:434.563179px;}
.y34_c00123{bottom:448.633174px;}
.y33_c00123{bottom:461.813669px;}
.y32_c00123{bottom:482.476160px;}
.y30_c00123{bottom:494.228701px;}
.y31_c00123{bottom:494.233156px;}
.y2f_c00123{bottom:506.165651px;}
.y2d_c00123{bottom:506.878151px;}
.y2e_c00123{bottom:509.908149px;}
.y2c_c00123{bottom:532.883640px;}
.y2b_c00123{bottom:546.596635px;}
.y2a_c00123{bottom:557.468630px;}
.y29_c00123{bottom:578.662122px;}
.y28_c00123{bottom:592.377741px;}
.y27_c00123{bottom:603.779612px;}
.y25_c00123{bottom:604.490611px;}
.y26_c00123{bottom:607.516110px;}
.y24_c00123{bottom:630.139101px;}
.y23_c00123{bottom:643.855096px;}
.y22_c00123{bottom:654.899591px;}
.y21_c00123{bottom:673.600084px;}
.y20_c00123{bottom:699.964973px;}
.y1f_c00123{bottom:730.781561px;}
.y1e_c00123{bottom:748.948054px;}
.y1d_c00123{bottom:765.509547px;}
.y1c_c00123{bottom:800.423533px;}
.y1b_c00123{bottom:812.540528px;}
.y19_c00123{bottom:843.175016px;}
.y18_c00123{bottom:860.987509px;}
.y1a_c00123{bottom:873.632204px;}
.y17_c00123{bottom:873.635504px;}
.y12_c00123{bottom:909.791339px;}
.y16_c00123{bottom:909.966389px;}
.y11_c00123{bottom:940.962977px;}
.y15_c00123{bottom:971.601965px;}
.ye_c00123{bottom:974.152800px;}
.yd_c00123{bottom:978.304971px;}
.y14_c00123{bottom:989.769957px;}
.y13_c00123{bottom:1002.414652px;}
.yc_c00123{bottom:1008.942159px;}
.yb_c00123{bottom:1029.250651px;}
.ya_c00123{bottom:1046.172144px;}
.y8_c00123{bottom:1101.391622px;}
.y7_c00123{bottom:1125.436612px;}
.y6_c00123{bottom:1146.276554px;}
.y5_c00123{bottom:1166.762796px;}
.y4_c00123{bottom:1187.245588px;}
.h19_c00123{height:13.539600px;}
.ha_c00123{height:20.309400px;}
.h10_c00123{height:20.713640px;}
.hc_c00123{height:24.315963px;}
.he_c00123{height:26.117086px;}
.h8_c00123{height:28.368623px;}
.h16_c00123{height:30.169822px;}
.h13_c00123{height:31.955289px;}
.h6_c00123{height:37.374544px;}
.h5_c00123{height:41.427963px;}
.h17_c00123{height:42.772407px;}
.h12_c00123{height:45.645145px;}
.h18_c00123{height:51.869979px;}
.hd_c00123{height:52.927558px;}
.h14_c00123{height:56.241339px;}
.h2_c00123{height:58.667764px;}
.h7_c00123{height:58.929966px;}
.h3_c00123{height:63.768724px;}
.h9_c00123{height:63.839974px;}
.hf_c00123{height:63.911224px;}
.h4_c00123{height:64.053724px;}
.h11_c00123{height:66.911618px;}
.h15_c00123{height:68.987291px;}
.hb_c00123{height:1249.830756px;}
.h1_c00123{height:1262.879062px;}
.h0_c00123{height:1263.000000px;}
.w5_c00123{width:5.700780px;}
.w4_c00123{width:11.935800px;}
.w2_c00123{width:12.468600px;}
.w3_c00123{width:883.195846px;}
.w1_c00123{width:892.414744px;}
.w0_c00123{width:892.500000px;}
.x0_c00123{left:0.000000px;}
.xa_c00123{left:1.541954px;}
.x10_c00123{left:112.753050px;}
.x7_c00123{left:114.282348px;}
.x2_c00123{left:126.215308px;}
.xb_c00123{left:127.537645px;}
.x8_c00123{left:129.066942px;}
.x2a_c00123{left:130.387969px;}
.x2c_c00123{left:145.706387px;}
.x11_c00123{left:147.308087px;}
.x2e_c00123{left:154.610984px;}
.x12_c00123{left:155.675983px;}
.x2d_c00123{left:158.531982px;}
.x2f_c00123{left:160.667981px;}
.x13_c00123{left:164.051980px;}
.x24_c00123{left:165.296979px;}
.x30_c00123{left:171.116100px;}
.x14_c00123{left:175.274975px;}
.x25_c00123{left:177.233975px;}
.xf_c00123{left:178.837474px;}
.x15_c00123{left:186.137971px;}
.x26_c00123{left:187.919970px;}
.x16_c00123{left:198.077966px;}
.x27_c00123{left:200.030966px;}
.x2b_c00123{left:203.237964px;}
.x17_c00123{left:206.267963px;}
.x18_c00123{left:216.778459px;}
.x28_c00123{left:219.269958px;}
.x29_c00123{left:227.822954px;}
.x19_c00123{left:229.600454px;}
.x1a_c00123{left:237.974950px;}
.x1b_c00123{left:249.373446px;}
.x4_c00123{left:252.504495px;}
.x1c_c00123{left:263.267940px;}
.x3_c00123{left:270.140236px;}
.x1d_c00123{left:275.024936px;}
.x1e_c00123{left:293.905428px;}
.x6_c00123{left:295.789578px;}
.x1f_c00123{left:300.851925px;}
.x20_c00123{left:310.646921px;}
.x21_c00123{left:324.719916px;}
.x22_c00123{left:331.844913px;}
.x23_c00123{left:343.955908px;}
.x9_c00123{left:356.544000px;}
.xd_c00123{left:368.540898px;}
.xc_c00123{left:370.138885px;}
.x5_c00123{left:420.296029px;}
.x1_c00123{left:505.976141px;}
.xe_c00123{left:748.236600px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls1_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:1.873537pt;}
.ws2_c00123{word-spacing:-23.749751pt;}
.ws0_c00123{word-spacing:-14.566794pt;}
.ws3_c00123{word-spacing:-10.608236pt;}
.ws1_c00123{word-spacing:-8.803241pt;}
.ws4_c00123{word-spacing:0.000000pt;}
._a_c00123{margin-left:-6.663069pt;}
._b_c00123{margin-left:-3.643361pt;}
._2_c00123{margin-left:-2.285077pt;}
._0_c00123{margin-left:-1.190569pt;}
._1_c00123{width:0.938922pt;}
._3_c00123{width:2.168105pt;}
._8_c00123{width:3.181119pt;}
._7_c00123{width:10.470120pt;}
._6_c00123{width:11.880064pt;}
._5_c00123{width:12.927031pt;}
._4_c00123{width:14.246797pt;}
._9_c00123{width:458.190999pt;}
.fs6_c00123{font-size:29.133108pt;}
.fs9_c00123{font-size:31.666334pt;}
.fs4_c00123{font-size:34.199666pt;}
.fs5_c00123{font-size:36.732892pt;}
.fs3_c00123{font-size:39.899611pt;}
.fsb_c00123{font-size:42.432943pt;}
.fs2_c00123{font-size:52.566166pt;}
.fs8_c00123{font-size:55.732778pt;}
.fs0_c00123{font-size:58.267177pt;}
.fs1_c00123{font-size:63.333308pt;}
.fs7_c00123{font-size:81.699167pt;}
.fsa_c00123{font-size:84.233566pt;}
.y0_c00123{bottom:0.000000pt;}
.y1_c00123{bottom:0.107500pt;}
.y48_c00123{bottom:2.531916pt;}
.yf_c00123{bottom:3.800719pt;}
.y10_c00123{bottom:6.068128pt;}
.y9_c00123{bottom:63.856874pt;}
.y3_c00123{bottom:73.833045pt;}
.y2_c00123{bottom:74.783670pt;}
.y50_c00123{bottom:83.385570pt;}
.y4f_c00123{bottom:96.685564pt;}
.y4e_c00123{bottom:109.194893pt;}
.y4d_c00123{bottom:120.121822pt;}
.y4b_c00123{bottom:172.529134pt;}
.y4a_c00123{bottom:174.587800pt;}
.y4c_c00123{bottom:174.747800pt;}
.y46_c00123{bottom:204.511788pt;}
.y45_c00123{bottom:206.570454pt;}
.y49_c00123{bottom:206.726454pt;}
.y47_c00123{bottom:208.048000pt;}
.y43_c00123{bottom:236.495775pt;}
.y42_c00123{bottom:238.550441pt;}
.y44_c00123{bottom:238.709107pt;}
.y40_c00123{bottom:268.475762pt;}
.y3f_c00123{bottom:270.535761pt;}
.y41_c00123{bottom:270.694428pt;}
.y3d_c00123{bottom:301.253082pt;}
.y3c_c00123{bottom:302.519749pt;}
.y3e_c00123{bottom:302.677082pt;}
.y3a_c00123{bottom:333.391736pt;}
.y39_c00123{bottom:334.662402pt;}
.y3b_c00123{bottom:334.817069pt;}
.y37_c00123{bottom:365.534390pt;}
.y36_c00123{bottom:366.803723pt;}
.y38_c00123{bottom:366.959723pt;}
.y35_c00123{bottom:386.278382pt;}
.y34_c00123{bottom:398.785043pt;}
.y33_c00123{bottom:410.501039pt;}
.y32_c00123{bottom:428.867698pt;}
.y30_c00123{bottom:439.314401pt;}
.y31_c00123{bottom:439.318361pt;}
.y2f_c00123{bottom:449.925023pt;}
.y2d_c00123{bottom:450.558356pt;}
.y2e_c00123{bottom:453.251688pt;}
.y2c_c00123{bottom:473.674347pt;}
.y2b_c00123{bottom:485.863675pt;}
.y2a_c00123{bottom:495.527671pt;}
.y29_c00123{bottom:514.366330pt;}
.y28_c00123{bottom:526.557992pt;}
.y27_c00123{bottom:536.692988pt;}
.y25_c00123{bottom:537.324988pt;}
.y26_c00123{bottom:540.014320pt;}
.y24_c00123{bottom:560.123646pt;}
.y23_c00123{bottom:572.315641pt;}
.y22_c00123{bottom:582.132970pt;}
.y21_c00123{bottom:598.755630pt;}
.y20_c00123{bottom:622.191087pt;}
.y1f_c00123{bottom:649.583610pt;}
.y1e_c00123{bottom:665.731603pt;}
.y1d_c00123{bottom:680.452931pt;}
.y1c_c00123{bottom:711.487585pt;}
.y1b_c00123{bottom:722.258247pt;}
.y19_c00123{bottom:749.488903pt;}
.y18_c00123{bottom:765.322230pt;}
.y1a_c00123{bottom:776.561959pt;}
.y17_c00123{bottom:776.564892pt;}
.y12_c00123{bottom:808.703413pt;}
.y16_c00123{bottom:808.859013pt;}
.y11_c00123{bottom:836.411535pt;}
.y15_c00123{bottom:863.646191pt;}
.ye_c00123{bottom:865.913600pt;}
.yd_c00123{bottom:869.604419pt;}
.y14_c00123{bottom:879.795518pt;}
.y13_c00123{bottom:891.035246pt;}
.yc_c00123{bottom:896.837475pt;}
.yb_c00123{bottom:914.889467pt;}
.ya_c00123{bottom:929.930795pt;}
.y8_c00123{bottom:979.014775pt;}
.y7_c00123{bottom:1000.388100pt;}
.y6_c00123{bottom:1018.912492pt;}
.y5_c00123{bottom:1037.122485pt;}
.y4_c00123{bottom:1055.329411pt;}
.h19_c00123{height:12.035200pt;}
.ha_c00123{height:18.052800pt;}
.h10_c00123{height:18.412124pt;}
.hc_c00123{height:21.614189pt;}
.he_c00123{height:23.215188pt;}
.h8_c00123{height:25.216554pt;}
.h16_c00123{height:26.817620pt;}
.h13_c00123{height:28.404702pt;}
.h6_c00123{height:33.221817pt;}
.h5_c00123{height:36.824856pt;}
.h17_c00123{height:38.019917pt;}
.h12_c00123{height:40.573462pt;}
.h18_c00123{height:46.106648pt;}
.hd_c00123{height:47.046718pt;}
.h14_c00123{height:49.992302pt;}
.h2_c00123{height:52.149123pt;}
.h7_c00123{height:52.382192pt;}
.h3_c00123{height:56.683311pt;}
.h9_c00123{height:56.746644pt;}
.hf_c00123{height:56.809977pt;}
.h4_c00123{height:56.936644pt;}
.h11_c00123{height:59.476994pt;}
.h15_c00123{height:61.322036pt;}
.hb_c00123{height:1110.960672pt;}
.h1_c00123{height:1122.559167pt;}
.h0_c00123{height:1122.666667pt;}
.w5_c00123{width:5.067360pt;}
.w4_c00123{width:10.609600pt;}
.w2_c00123{width:11.083200pt;}
.w3_c00123{width:785.062974pt;}
.w1_c00123{width:793.257550pt;}
.w0_c00123{width:793.333333pt;}
.x0_c00123{left:0.000000pt;}
.xa_c00123{left:1.370626pt;}
.x10_c00123{left:100.224934pt;}
.x7_c00123{left:101.584309pt;}
.x2_c00123{left:112.191384pt;}
.xb_c00123{left:113.366795pt;}
.x8_c00123{left:114.726171pt;}
.x2a_c00123{left:115.900417pt;}
.x2c_c00123{left:129.516789pt;}
.x11_c00123{left:130.940521pt;}
.x2e_c00123{left:137.431986pt;}
.x12_c00123{left:138.378652pt;}
.x2d_c00123{left:140.917317pt;}
.x2f_c00123{left:142.815983pt;}
.x13_c00123{left:145.823982pt;}
.x24_c00123{left:146.930648pt;}
.x30_c00123{left:152.103200pt;}
.x14_c00123{left:155.799978pt;}
.x25_c00123{left:157.541311pt;}
.xf_c00123{left:158.966644pt;}
.x15_c00123{left:165.455974pt;}
.x26_c00123{left:167.039974pt;}
.x16_c00123{left:176.069303pt;}
.x27_c00123{left:177.805303pt;}
.x2b_c00123{left:180.655968pt;}
.x17_c00123{left:183.349301pt;}
.x18_c00123{left:192.691963pt;}
.x28_c00123{left:194.906629pt;}
.x29_c00123{left:202.509293pt;}
.x19_c00123{left:204.089292pt;}
.x1a_c00123{left:211.533289pt;}
.x1b_c00123{left:221.665285pt;}
.x4_c00123{left:224.448440pt;}
.x1c_c00123{left:234.015947pt;}
.x3_c00123{left:240.124654pt;}
.x1d_c00123{left:244.466609pt;}
.x1e_c00123{left:261.249269pt;}
.x6_c00123{left:262.924069pt;}
.x1f_c00123{left:267.423934pt;}
.x20_c00123{left:276.130597pt;}
.x21_c00123{left:288.639925pt;}
.x22_c00123{left:294.973256pt;}
.x23_c00123{left:305.738585pt;}
.x9_c00123{left:316.928000pt;}
.xd_c00123{left:327.591909pt;}
.xc_c00123{left:329.012342pt;}
.x5_c00123{left:373.596470pt;}
.x1_c00123{left:449.756570pt;}
.xe_c00123{left:665.099200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.113000;font-style:normal;font-weight:normal;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_396b5d56c54d6145c63e1bfe.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:0.841000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:1.112000;font-style:normal;font-weight: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_c00124;src:url('chunks/assets/font_a245938468bd6069d0d91170.woff2')format("woff");}.ff7_c00124{font-family:ff7_c00124;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00124{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls2_c00124{letter-spacing:0.000000px;}
.ls1_c00124{letter-spacing:0.397650px;}
.ls0_c00124{letter-spacing:0.734220px;}
.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;}
}
.ws1_c00124{word-spacing:-50.998346px;}
.ws0_c00124{word-spacing:-16.387643px;}
.ws2_c00124{word-spacing:0.000000px;}
._6_c00124{margin-left:-5.417841px;}
._2_c00124{margin-left:-3.160120px;}
._0_c00124{margin-left:-1.339390px;}
._1_c00124{width:1.056287px;}
._5_c00124{width:11.911056px;}
._7_c00124{width:22.780391px;}
._3_c00124{width:47.292051px;}
._4_c00124{width:63.615559px;}
._8_c00124{width:171.921410px;}
._b_c00124{width:202.147434px;}
._c_c00124{width:237.511345px;}
._9_c00124{width:283.136018px;}
._d_c00124{width:327.368390px;}
._e_c00124{width:351.158537px;}
._a_c00124{width:374.093261px;}
.fc1_c00124{color:rgb(105,148,45);}
.fc0_c00124{color:rgb(35,31,32);}
.fs3_c00124{font-size:41.324503px;}
.fs4_c00124{font-size:44.887062px;}
.fs5_c00124{font-size:47.737061px;}
.fs2_c00124{font-size:59.136936px;}
.fs0_c00124{font-size:65.550574px;}
.fs1_c00124{font-size:71.249972px;}
.y0_c00124{bottom:0.000000px;}
.y1_c00124{bottom:0.120938px;}
.y36_c00124{bottom:2.311303px;}
.y33_c00124{bottom:2.313084px;}
.y1a_c00124{bottom:2.488433px;}
.y1d_c00124{bottom:2.488753px;}
.y30_c00124{bottom:4.274185px;}
.y17_c00124{bottom:4.278234px;}
.y14_c00124{bottom:4.448633px;}
.y2d_c00124{bottom:4.451484px;}
.y8_c00124{bottom:6.826644px;}
.ya_c00124{bottom:65.133277px;}
.y3_c00124{bottom:83.062176px;}
.y2_c00124{bottom:84.131629px;}
.y4c_c00124{bottom:85.262039px;}
.y4b_c00124{bottom:100.045238px;}
.y4a_c00124{bottom:115.007732px;}
.y49_c00124{bottom:129.790226px;}
.y48_c00124{bottom:144.574130px;}
.y47_c00124{bottom:159.538034px;}
.y46_c00124{bottom:174.323349px;}
.y45_c00124{bottom:189.108663px;}
.y44_c00124{bottom:204.069747px;}
.y43_c00124{bottom:218.852241px;}
.y42_c00124{bottom:233.637555px;}
.y41_c00124{bottom:248.598639px;}
.y40_c00124{bottom:263.383248px;}
.y3f_c00124{bottom:277.279242px;}
.y3e_c00124{bottom:289.570237px;}
.y3d_c00124{bottom:319.849225px;}
.y3c_c00124{bottom:356.008211px;}
.y3b_c00124{bottom:391.987196px;}
.y3a_c00124{bottom:427.258182px;}
.y38_c00124{bottom:461.635169px;}
.y39_c00124{bottom:463.061668px;}
.y37_c00124{bottom:463.238668px;}
.y35_c00124{bottom:489.663000px;}
.y31_c00124{bottom:507.172860px;}
.y34_c00124{bottom:522.133854px;}
.y2f_c00124{bottom:533.478600px;}
.y2c_c00124{bottom:536.149800px;}
.y2e_c00124{bottom:537.631847px;}
.y32_c00124{bottom:538.288200px;}
.y2b_c00124{bottom:566.548127px;}
.y2a_c00124{bottom:586.856709px;}
.y29_c00124{bottom:601.640613px;}
.y28_c00124{bottom:615.713607px;}
.y27_c00124{bottom:629.251102px;}
.y26_c00124{bottom:650.624443px;}
.y25_c00124{bottom:665.764087px;}
.y24_c00124{bottom:696.046075px;}
.y23_c00124{bottom:732.028060px;}
.y22_c00124{bottom:768.008546px;}
.y21_c00124{bottom:803.452032px;}
.y1f_c00124{bottom:837.832018px;}
.y20_c00124{bottom:839.257018px;}
.y1e_c00124{bottom:839.434017px;}
.y1c_c00124{bottom:865.679400px;}
.y18_c00124{bottom:883.192709px;}
.y1b_c00124{bottom:898.329203px;}
.y16_c00124{bottom:909.851400px;}
.y13_c00124{bottom:912.528000px;}
.y15_c00124{bottom:914.008697px;}
.y19_c00124{bottom:914.488200px;}
.y12_c00124{bottom:942.567976px;}
.y11_c00124{bottom:963.051968px;}
.y10_c00124{bottom:977.301962px;}
.yf_c00124{bottom:990.837957px;}
.ye_c00124{bottom:1009.008950px;}
.yd_c00124{bottom:1022.900444px;}
.yc_c00124{bottom:1040.891437px;}
.yb_c00124{bottom:1057.280430px;}
.y9_c00124{bottom:1094.685915px;}
.y7_c00124{bottom:1125.436612px;}
.y6_c00124{bottom:1146.276554px;}
.y5_c00124{bottom:1166.762796px;}
.y4_c00124{bottom:1187.245588px;}
.h16_c00124{height:17.811000px;}
.h15_c00124{height:17.814600px;}
.h10_c00124{height:17.987400px;}
.hf_c00124{height:17.989200px;}
.hd_c00124{height:19.949400px;}
.h13_c00124{height:19.953000px;}
.h14_c00124{height:20.307600px;}
.he_c00124{height:20.311200px;}
.h9_c00124{height:26.117086px;}
.hb_c00124{height:28.368623px;}
.h7_c00124{height:37.374544px;}
.h6_c00124{height:41.427963px;}
.h11_c00124{height:42.772407px;}
.h12_c00124{height:52.927558px;}
.h2_c00124{height:58.667764px;}
.h8_c00124{height:58.798865px;}
.h3_c00124{height:63.768724px;}
.ha_c00124{height:63.839974px;}
.hc_c00124{height:63.911224px;}
.h4_c00124{height:64.053724px;}
.h5_c00124{height:1249.830756px;}
.h1_c00124{height:1262.879062px;}
.h0_c00124{height:1263.000000px;}
.w3_c00124{width:8.194140px;}
.w5_c00124{width:8.197200px;}
.w4_c00124{width:19.773000px;}
.w2_c00124{width:883.195846px;}
.w1_c00124{width:892.414744px;}
.w0_c00124{width:892.500000px;}
.x0_c00124{left:0.000000px;}
.x7_c00124{left:1.541954px;}
.x8_c00124{left:112.753050px;}
.xa_c00124{left:125.159760px;}
.x2_c00124{left:126.215308px;}
.x9_c00124{left:178.837474px;}
.x4_c00124{left:252.504495px;}
.x3_c00124{left:270.140236px;}
.xf_c00124{left:288.740930px;}
.xb_c00124{left:290.270228px;}
.x6_c00124{left:295.789578px;}
.x5_c00124{left:420.296029px;}
.xc_c00124{left:470.365200px;}
.xd_c00124{left:491.378400px;}
.xe_c00124{left:492.972647px;}
.x1_c00124{left:505.976141px;}
.x10_c00124{left:580.325813px;}
.x11_c00124{left:586.385811px;}
.x12_c00124{left:745.802747px;}
.x13_c00124{left:751.145745px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls2_c00124{letter-spacing:0.000000pt;}
.ls1_c00124{letter-spacing:0.353467pt;}
.ls0_c00124{letter-spacing:0.652640pt;}
.ws1_c00124{word-spacing:-45.331863pt;}
.ws0_c00124{word-spacing:-14.566794pt;}
.ws2_c00124{word-spacing:0.000000pt;}
._6_c00124{margin-left:-4.815859pt;}
._2_c00124{margin-left:-2.808996pt;}
._0_c00124{margin-left:-1.190569pt;}
._1_c00124{width:0.938922pt;}
._5_c00124{width:10.587606pt;}
._7_c00124{width:20.249237pt;}
._3_c00124{width:42.037379pt;}
._4_c00124{width:56.547164pt;}
._8_c00124{width:152.819031pt;}
._b_c00124{width:179.686608pt;}
._c_c00124{width:211.121196pt;}
._9_c00124{width:251.676461pt;}
._d_c00124{width:290.994125pt;}
._e_c00124{width:312.140922pt;}
._a_c00124{width:332.527344pt;}
.fs3_c00124{font-size:36.732892pt;}
.fs4_c00124{font-size:39.899611pt;}
.fs5_c00124{font-size:42.432943pt;}
.fs2_c00124{font-size:52.566166pt;}
.fs0_c00124{font-size:58.267177pt;}
.fs1_c00124{font-size:63.333308pt;}
.y0_c00124{bottom:0.000000pt;}
.y1_c00124{bottom:0.107500pt;}
.y36_c00124{bottom:2.054492pt;}
.y33_c00124{bottom:2.056074pt;}
.y1a_c00124{bottom:2.211941pt;}
.y1d_c00124{bottom:2.212225pt;}
.y30_c00124{bottom:3.799275pt;}
.y17_c00124{bottom:3.802875pt;}
.y14_c00124{bottom:3.954341pt;}
.y2d_c00124{bottom:3.956874pt;}
.y8_c00124{bottom:6.068128pt;}
.ya_c00124{bottom:57.896246pt;}
.y3_c00124{bottom:73.833045pt;}
.y2_c00124{bottom:74.783670pt;}
.y4c_c00124{bottom:75.788479pt;}
.y4b_c00124{bottom:88.929101pt;}
.y4a_c00124{bottom:102.229095pt;}
.y49_c00124{bottom:115.369090pt;}
.y48_c00124{bottom:128.510338pt;}
.y47_c00124{bottom:141.811586pt;}
.y46_c00124{bottom:154.954088pt;}
.y45_c00124{bottom:168.096589pt;}
.y44_c00124{bottom:181.395330pt;}
.y43_c00124{bottom:194.535325pt;}
.y42_c00124{bottom:207.677827pt;}
.y41_c00124{bottom:220.976568pt;}
.y40_c00124{bottom:234.118443pt;}
.y3f_c00124{bottom:246.470438pt;}
.y3e_c00124{bottom:257.395767pt;}
.y3d_c00124{bottom:284.310423pt;}
.y3c_c00124{bottom:316.451743pt;}
.y3b_c00124{bottom:348.433064pt;}
.y3a_c00124{bottom:379.785051pt;}
.y38_c00124{bottom:410.342372pt;}
.y39_c00124{bottom:411.610372pt;}
.y37_c00124{bottom:411.767705pt;}
.y35_c00124{bottom:435.256000pt;}
.y31_c00124{bottom:450.820320pt;}
.y34_c00124{bottom:464.118981pt;}
.y2f_c00124{bottom:474.203200pt;}
.y2c_c00124{bottom:476.577600pt;}
.y2e_c00124{bottom:477.894975pt;}
.y32_c00124{bottom:478.478400pt;}
.y2b_c00124{bottom:503.598335pt;}
.y2a_c00124{bottom:521.650408pt;}
.y29_c00124{bottom:534.791656pt;}
.y28_c00124{bottom:547.300984pt;}
.y27_c00124{bottom:559.334313pt;}
.y26_c00124{bottom:578.332838pt;}
.y25_c00124{bottom:591.790300pt;}
.y24_c00124{bottom:618.707622pt;}
.y23_c00124{bottom:650.691609pt;}
.y22_c00124{bottom:682.674263pt;}
.y21_c00124{bottom:714.179584pt;}
.y1f_c00124{bottom:744.739572pt;}
.y20_c00124{bottom:746.006238pt;}
.y1e_c00124{bottom:746.163571pt;}
.y1c_c00124{bottom:769.492800pt;}
.y18_c00124{bottom:785.060186pt;}
.y1b_c00124{bottom:798.514847pt;}
.y16_c00124{bottom:808.756800pt;}
.y13_c00124{bottom:811.136000pt;}
.y15_c00124{bottom:812.452175pt;}
.y19_c00124{bottom:812.878400pt;}
.y12_c00124{bottom:837.838201pt;}
.y11_c00124{bottom:856.046194pt;}
.y10_c00124{bottom:868.712855pt;}
.yf_c00124{bottom:880.744851pt;}
.ye_c00124{bottom:896.896844pt;}
.yd_c00124{bottom:909.244839pt;}
.yc_c00124{bottom:925.236833pt;}
.yb_c00124{bottom:939.804827pt;}
.y9_c00124{bottom:973.054147pt;}
.y7_c00124{bottom:1000.388100pt;}
.y6_c00124{bottom:1018.912492pt;}
.y5_c00124{bottom:1037.122485pt;}
.y4_c00124{bottom:1055.329411pt;}
.h16_c00124{height:15.832000pt;}
.h15_c00124{height:15.835200pt;}
.h10_c00124{height:15.988800pt;}
.hf_c00124{height:15.990400pt;}
.hd_c00124{height:17.732800pt;}
.h13_c00124{height:17.736000pt;}
.h14_c00124{height:18.051200pt;}
.he_c00124{height:18.054400pt;}
.h9_c00124{height:23.215188pt;}
.hb_c00124{height:25.216554pt;}
.h7_c00124{height:33.221817pt;}
.h6_c00124{height:36.824856pt;}
.h11_c00124{height:38.019917pt;}
.h12_c00124{height:47.046718pt;}
.h2_c00124{height:52.149123pt;}
.h8_c00124{height:52.265657pt;}
.h3_c00124{height:56.683311pt;}
.ha_c00124{height:56.746644pt;}
.hc_c00124{height:56.809977pt;}
.h4_c00124{height:56.936644pt;}
.h5_c00124{height:1110.960672pt;}
.h1_c00124{height:1122.559167pt;}
.h0_c00124{height:1122.666667pt;}
.w3_c00124{width:7.283680pt;}
.w5_c00124{width:7.286400pt;}
.w4_c00124{width:17.576000pt;}
.w2_c00124{width:785.062974pt;}
.w1_c00124{width:793.257550pt;}
.w0_c00124{width:793.333333pt;}
.x0_c00124{left:0.000000pt;}
.x7_c00124{left:1.370626pt;}
.x8_c00124{left:100.224934pt;}
.xa_c00124{left:111.253120pt;}
.x2_c00124{left:112.191384pt;}
.x9_c00124{left:158.966644pt;}
.x4_c00124{left:224.448440pt;}
.x3_c00124{left:240.124654pt;}
.xf_c00124{left:256.658605pt;}
.xb_c00124{left:258.017980pt;}
.x6_c00124{left:262.924069pt;}
.x5_c00124{left:373.596470pt;}
.xc_c00124{left:418.102400pt;}
.xd_c00124{left:436.780800pt;}
.xe_c00124{left:438.197908pt;}
.x1_c00124{left:449.756570pt;}
.x10_c00124{left:515.845168pt;}
.x11_c00124{left:521.231832pt;}
.x12_c00124{left:662.935775pt;}
.x13_c00124{left:667.685107pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00125;src:url('chunks/assets/font_a245938468bd6069d0d91170.woff2')format("woff");}.ff6_c00125{font-family:ff6_c00125;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00125{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.v1_c00125{vertical-align:1.439999px;}
.ls3_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:0.397650px;}
.ls2_c00125{letter-spacing:0.728580px;}
.ls0_c00125{letter-spacing:0.734220px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00125{word-spacing:-16.387643px;}
.ws1_c00125{word-spacing:0.000000px;}
._7_c00125{margin-left:-5.417841px;}
._3_c00125{margin-left:-4.011626px;}
._2_c00125{margin-left:-2.672101px;}
._0_c00125{margin-left:-1.339390px;}
._1_c00125{width:1.056287px;}
._6_c00125{width:11.911056px;}
._8_c00125{width:22.285693px;}
._4_c00125{width:47.292051px;}
._5_c00125{width:63.615559px;}
._9_c00125{width:171.921410px;}
._c_c00125{width:201.942653px;}
._d_c00125{width:237.511345px;}
._a_c00125{width:283.136018px;}
._11_c00125{width:287.554443px;}
._e_c00125{width:327.936659px;}
._f_c00125{width:351.726806px;}
._b_c00125{width:374.093261px;}
._10_c00125{width:390.931410px;}
._13_c00125{width:484.973902px;}
._12_c00125{width:515.550575px;}
._14_c00125{width:610.965770px;}
._15_c00125{width:634.763042px;}
.fc1_c00125{color:rgb(105,148,45);}
.fc0_c00125{color:rgb(35,31,32);}
.fs5_c00125{font-size:41.324503px;}
.fs3_c00125{font-size:44.887062px;}
.fs4_c00125{font-size:47.737061px;}
.fs2_c00125{font-size:59.136936px;}
.fs0_c00125{font-size:65.550574px;}
.fs1_c00125{font-size:71.249972px;}
.y0_c00125{bottom:0.000000px;}
.y1_c00125{bottom:0.120938px;}
.y26_c00125{bottom:0.485156px;}
.y2c_c00125{bottom:2.313932px;}
.y2f_c00125{bottom:2.487351px;}
.y18_c00125{bottom:2.488426px;}
.y15_c00125{bottom:2.490507px;}
.y43_c00125{bottom:3.914590px;}
.y12_c00125{bottom:4.272808px;}
.y29_c00125{bottom:4.273533px;}
.yf_c00125{bottom:4.447107px;}
.y3d_c00125{bottom:4.449169px;}
.y25_c00125{bottom:4.452332px;}
.y40_c00125{bottom:4.452478px;}
.y19_c00125{bottom:6.826644px;}
.y9_c00125{bottom:71.838984px;}
.y3_c00125{bottom:83.062176px;}
.y2_c00125{bottom:84.131629px;}
.y48_c00125{bottom:112.620199px;}
.y47_c00125{bottom:143.258887px;}
.y46_c00125{bottom:179.058772px;}
.y45_c00125{bottom:215.040758px;}
.y44_c00125{bottom:250.133244px;}
.y42_c00125{bottom:271.459800px;}
.y41_c00125{bottom:287.901447px;}
.y3f_c00125{bottom:301.739400px;}
.y3c_c00125{bottom:322.405200px;}
.y3e_c00125{bottom:323.880433px;}
.y3b_c00125{bottom:352.447212px;}
.y3a_c00125{bottom:372.929704px;}
.y39_c00125{bottom:388.961698px;}
.y38_c00125{bottom:406.769691px;}
.y37_c00125{bottom:419.065186px;}
.y36_c00125{bottom:449.525673px;}
.y35_c00125{bottom:485.501659px;}
.y34_c00125{bottom:521.483645px;}
.y33_c00125{bottom:556.753131px;}
.y31_c00125{bottom:591.131617px;}
.y32_c00125{bottom:592.559616px;}
.y30_c00125{bottom:592.733616px;}
.y2e_c00125{bottom:619.160400px;}
.y2a_c00125{bottom:636.666308px;}
.y2d_c00125{bottom:651.628802px;}
.y28_c00125{bottom:662.974200px;}
.y24_c00125{bottom:665.645400px;}
.y27_c00125{bottom:666.762577px;}
.y2b_c00125{bottom:667.783800px;}
.y23_c00125{bottom:696.046075px;}
.y22_c00125{bottom:716.352917px;}
.y21_c00125{bottom:731.494061px;}
.y20_c00125{bottom:761.774549px;}
.y1f_c00125{bottom:797.750534px;}
.y1e_c00125{bottom:833.734020px;}
.y1d_c00125{bottom:869.182006px;}
.y1b_c00125{bottom:903.560492px;}
.y1c_c00125{bottom:904.985491px;}
.y1a_c00125{bottom:905.163991px;}
.y17_c00125{bottom:931.408200px;}
.y13_c00125{bottom:948.918183px;}
.y16_c00125{bottom:964.054677px;}
.y11_c00125{bottom:975.583800px;}
.ye_c00125{bottom:978.255000px;}
.y10_c00125{bottom:979.735671px;}
.y14_c00125{bottom:980.211600px;}
.yd_c00125{bottom:1015.002156px;}
.yc_c00125{bottom:1035.664648px;}
.yb_c00125{bottom:1049.736143px;}
.ya_c00125{bottom:1063.272137px;}
.y8_c00125{bottom:1101.391622px;}
.y7_c00125{bottom:1125.436612px;}
.y6_c00125{bottom:1146.276554px;}
.y5_c00125{bottom:1166.762796px;}
.y4_c00125{bottom:1187.245588px;}
.h13_c00125{height:17.812800px;}
.hd_c00125{height:17.989200px;}
.hc_c00125{height:17.991000px;}
.h16_c00125{height:19.414800px;}
.h9_c00125{height:19.947600px;}
.h15_c00125{height:19.949400px;}
.h11_c00125{height:19.951200px;}
.hb_c00125{height:20.307600px;}
.h14_c00125{height:26.117086px;}
.h8_c00125{height:28.368623px;}
.h6_c00125{height:37.374544px;}
.h5_c00125{height:41.427963px;}
.hf_c00125{height:42.772407px;}
.h10_c00125{height:52.927558px;}
.h2_c00125{height:58.667764px;}
.h3_c00125{height:63.768724px;}
.ha_c00125{height:63.839974px;}
.h7_c00125{height:63.911224px;}
.h4_c00125{height:64.053724px;}
.h17_c00125{height:65.279974px;}
.he_c00125{height:1249.830756px;}
.h12_c00125{height:1262.514600px;}
.h1_c00125{height:1262.879062px;}
.h0_c00125{height:1263.000000px;}
.w2_c00125{width:8.194140px;}
.w4_c00125{width:8.197200px;}
.w3_c00125{width:19.773000px;}
.w5_c00125{width:883.195846px;}
.w6_c00125{width:892.161000px;}
.w1_c00125{width:892.414744px;}
.w0_c00125{width:892.500000px;}
.x0_c00125{left:0.000000px;}
.xe_c00125{left:1.541954px;}
.x15_c00125{left:112.754999px;}
.x7_c00125{left:114.282348px;}
.x9_c00125{left:125.159760px;}
.x2_c00125{left:126.215308px;}
.x14_c00125{left:178.837474px;}
.x8_c00125{left:180.366772px;}
.x4_c00125{left:252.504495px;}
.x3_c00125{left:270.140236px;}
.xf_c00125{left:288.740930px;}
.xa_c00125{left:290.270228px;}
.x6_c00125{left:295.789578px;}
.x16_c00125{left:360.981699px;}
.x5_c00125{left:420.296029px;}
.xb_c00125{left:470.365200px;}
.xc_c00125{left:491.378400px;}
.xd_c00125{left:492.972647px;}
.x1_c00125{left:505.976141px;}
.x10_c00125{left:580.325813px;}
.x11_c00125{left:586.385811px;}
.x12_c00125{left:745.802747px;}
.x13_c00125{left:751.145745px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.v1_c00125{vertical-align:1.279999pt;}
.ls3_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:0.353467pt;}
.ls2_c00125{letter-spacing:0.647626pt;}
.ls0_c00125{letter-spacing:0.652640pt;}
.ws0_c00125{word-spacing:-14.566794pt;}
.ws1_c00125{word-spacing:0.000000pt;}
._7_c00125{margin-left:-4.815859pt;}
._3_c00125{margin-left:-3.565890pt;}
._2_c00125{margin-left:-2.375201pt;}
._0_c00125{margin-left:-1.190569pt;}
._1_c00125{width:0.938922pt;}
._6_c00125{width:10.587606pt;}
._8_c00125{width:19.809505pt;}
._4_c00125{width:42.037379pt;}
._5_c00125{width:56.547164pt;}
._9_c00125{width:152.819031pt;}
._c_c00125{width:179.504580pt;}
._d_c00125{width:211.121196pt;}
._a_c00125{width:251.676461pt;}
._11_c00125{width:255.603949pt;}
._e_c00125{width:291.499252pt;}
._f_c00125{width:312.646049pt;}
._b_c00125{width:332.527344pt;}
._10_c00125{width:347.494587pt;}
._13_c00125{width:431.087913pt;}
._12_c00125{width:458.267178pt;}
._14_c00125{width:543.080685pt;}
._15_c00125{width:564.233815pt;}
.fs5_c00125{font-size:36.732892pt;}
.fs3_c00125{font-size:39.899611pt;}
.fs4_c00125{font-size:42.432943pt;}
.fs2_c00125{font-size:52.566166pt;}
.fs0_c00125{font-size:58.267177pt;}
.fs1_c00125{font-size:63.333308pt;}
.y0_c00125{bottom:0.000000pt;}
.y1_c00125{bottom:0.107500pt;}
.y26_c00125{bottom:0.431250pt;}
.y2c_c00125{bottom:2.056828pt;}
.y2f_c00125{bottom:2.210979pt;}
.y18_c00125{bottom:2.211935pt;}
.y15_c00125{bottom:2.213784pt;}
.y43_c00125{bottom:3.479635pt;}
.y12_c00125{bottom:3.798052pt;}
.y29_c00125{bottom:3.798696pt;}
.yf_c00125{bottom:3.952984pt;}
.y3d_c00125{bottom:3.954817pt;}
.y25_c00125{bottom:3.957628pt;}
.y40_c00125{bottom:3.957758pt;}
.y19_c00125{bottom:6.068128pt;}
.y9_c00125{bottom:63.856874pt;}
.y3_c00125{bottom:73.833045pt;}
.y2_c00125{bottom:74.783670pt;}
.y48_c00125{bottom:100.106844pt;}
.y47_c00125{bottom:127.341233pt;}
.y46_c00125{bottom:159.163353pt;}
.y45_c00125{bottom:191.147340pt;}
.y44_c00125{bottom:222.340661pt;}
.y42_c00125{bottom:241.297600pt;}
.y41_c00125{bottom:255.912398pt;}
.y3f_c00125{bottom:268.212800pt;}
.y3c_c00125{bottom:286.582400pt;}
.y3e_c00125{bottom:287.893718pt;}
.y3b_c00125{bottom:313.286411pt;}
.y3a_c00125{bottom:331.493070pt;}
.y39_c00125{bottom:345.743731pt;}
.y38_c00125{bottom:361.573058pt;}
.y37_c00125{bottom:372.502387pt;}
.y36_c00125{bottom:399.578376pt;}
.y35_c00125{bottom:431.557030pt;}
.y34_c00125{bottom:463.541017pt;}
.y33_c00125{bottom:494.891672pt;}
.y31_c00125{bottom:525.450326pt;}
.y32_c00125{bottom:526.719659pt;}
.y30_c00125{bottom:526.874325pt;}
.y2e_c00125{bottom:550.364800pt;}
.y2a_c00125{bottom:565.925607pt;}
.y2d_c00125{bottom:579.225602pt;}
.y28_c00125{bottom:589.310400pt;}
.y24_c00125{bottom:591.684800pt;}
.y27_c00125{bottom:592.677846pt;}
.y2b_c00125{bottom:593.585600pt;}
.y23_c00125{bottom:618.707622pt;}
.y22_c00125{bottom:636.758148pt;}
.y21_c00125{bottom:650.216943pt;}
.y20_c00125{bottom:677.132932pt;}
.y1f_c00125{bottom:709.111586pt;}
.y1e_c00125{bottom:741.096906pt;}
.y1d_c00125{bottom:772.606227pt;}
.y1b_c00125{bottom:803.164882pt;}
.y1c_c00125{bottom:804.431548pt;}
.y1a_c00125{bottom:804.590214pt;}
.y17_c00125{bottom:827.918400pt;}
.y13_c00125{bottom:843.482829pt;}
.y16_c00125{bottom:856.937491pt;}
.y11_c00125{bottom:867.185600pt;}
.ye_c00125{bottom:869.560000pt;}
.y10_c00125{bottom:870.876152pt;}
.y14_c00125{bottom:871.299200pt;}
.yd_c00125{bottom:902.224139pt;}
.yc_c00125{bottom:920.590798pt;}
.yb_c00125{bottom:933.098793pt;}
.ya_c00125{bottom:945.130789pt;}
.y8_c00125{bottom:979.014775pt;}
.y7_c00125{bottom:1000.388100pt;}
.y6_c00125{bottom:1018.912492pt;}
.y5_c00125{bottom:1037.122485pt;}
.y4_c00125{bottom:1055.329411pt;}
.h13_c00125{height:15.833600pt;}
.hd_c00125{height:15.990400pt;}
.hc_c00125{height:15.992000pt;}
.h16_c00125{height:17.257600pt;}
.h9_c00125{height:17.731200pt;}
.h15_c00125{height:17.732800pt;}
.h11_c00125{height:17.734400pt;}
.hb_c00125{height:18.051200pt;}
.h14_c00125{height:23.215188pt;}
.h8_c00125{height:25.216554pt;}
.h6_c00125{height:33.221817pt;}
.h5_c00125{height:36.824856pt;}
.hf_c00125{height:38.019917pt;}
.h10_c00125{height:47.046718pt;}
.h2_c00125{height:52.149123pt;}
.h3_c00125{height:56.683311pt;}
.ha_c00125{height:56.746644pt;}
.h7_c00125{height:56.809977pt;}
.h4_c00125{height:56.936644pt;}
.h17_c00125{height:58.026643pt;}
.he_c00125{height:1110.960672pt;}
.h12_c00125{height:1122.235200pt;}
.h1_c00125{height:1122.559167pt;}
.h0_c00125{height:1122.666667pt;}
.w2_c00125{width:7.283680pt;}
.w4_c00125{width:7.286400pt;}
.w3_c00125{width:17.576000pt;}
.w5_c00125{width:785.062974pt;}
.w6_c00125{width:793.032000pt;}
.w1_c00125{width:793.257550pt;}
.w0_c00125{width:793.333333pt;}
.x0_c00125{left:0.000000pt;}
.xe_c00125{left:1.370626pt;}
.x15_c00125{left:100.226665pt;}
.x7_c00125{left:101.584309pt;}
.x9_c00125{left:111.253120pt;}
.x2_c00125{left:112.191384pt;}
.x14_c00125{left:158.966644pt;}
.x8_c00125{left:160.326019pt;}
.x4_c00125{left:224.448440pt;}
.x3_c00125{left:240.124654pt;}
.xf_c00125{left:256.658605pt;}
.xa_c00125{left:258.017980pt;}
.x6_c00125{left:262.924069pt;}
.x16_c00125{left:320.872622pt;}
.x5_c00125{left:373.596470pt;}
.xb_c00125{left:418.102400pt;}
.xc_c00125{left:436.780800pt;}
.xd_c00125{left:438.197908pt;}
.x1_c00125{left:449.756570pt;}
.x10_c00125{left:515.845168pt;}
.x11_c00125{left:521.231832pt;}
.x12_c00125{left:662.935775pt;}
.x13_c00125{left:667.685107pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00126;src:url('chunks/assets/font_a245938468bd6069d0d91170.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00126{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls1_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:0.728580px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00126{word-spacing:-17.812493px;}
.ws0_c00126{word-spacing:-16.387643px;}
.ws2_c00126{word-spacing:0.000000px;}
._2_c00126{margin-left:-4.012156px;}
._3_c00126{margin-left:-3.000981px;}
._0_c00126{margin-left:-1.339390px;}
._1_c00126{width:1.056287px;}
._b_c00126{width:2.212329px;}
._12_c00126{width:18.395063px;}
._11_c00126{width:27.062049px;}
._d_c00126{width:126.176946px;}
._e_c00126{width:178.620306px;}
._f_c00126{width:193.336083px;}
._10_c00126{width:206.995765px;}
._5_c00126{width:286.773041px;}
._13_c00126{width:354.741732px;}
._4_c00126{width:390.931410px;}
._a_c00126{width:438.001244px;}
._c_c00126{width:440.141410px;}
._7_c00126{width:484.974432px;}
._6_c00126{width:515.550751px;}
._8_c00126{width:610.238364px;}
._9_c00126{width:634.035636px;}
.fc1_c00126{color:rgb(105,148,45);}
.fc0_c00126{color:rgb(35,31,32);}
.fs3_c00126{font-size:38.474625px;}
.fs5_c00126{font-size:47.737061px;}
.fs2_c00126{font-size:59.136936px;}
.fs0_c00126{font-size:65.550574px;}
.fs1_c00126{font-size:71.249972px;}
.fs4_c00126{font-size:76.949969px;}
.y0_c00126{bottom:0.000000px;}
.y1_c00126{bottom:0.120938px;}
.yf_c00126{bottom:0.485156px;}
.y15_c00126{bottom:4.097324px;}
.ye_c00126{bottom:4.448603px;}
.y12_c00126{bottom:4.449811px;}
.y16_c00126{bottom:6.826644px;}
.y9_c00126{bottom:71.838984px;}
.y3_c00126{bottom:83.062176px;}
.y2_c00126{bottom:84.131629px;}
.y30_c00126{bottom:209.234770px;}
.y2f_c00126{bottom:225.088263px;}
.y2e_c00126{bottom:250.202753px;}
.y2d_c00126{bottom:281.195741px;}
.y2c_c00126{bottom:312.010228px;}
.y2b_c00126{bottom:342.830716px;}
.y2a_c00126{bottom:373.819204px;}
.y29_c00126{bottom:404.636691px;}
.y28_c00126{bottom:435.454179px;}
.y27_c00126{bottom:466.445667px;}
.y26_c00126{bottom:497.258654px;}
.y25_c00126{bottom:528.073142px;}
.y24_c00126{bottom:559.070630px;}
.y23_c00126{bottom:589.885117px;}
.y22_c00126{bottom:620.701105px;}
.y21_c00126{bottom:651.871093px;}
.y20_c00126{bottom:671.108585px;}
.y1f_c00126{bottom:691.412577px;}
.y1e_c00126{bottom:709.760569px;}
.y1d_c00126{bottom:725.614063px;}
.y1c_c00126{bottom:760.528049px;}
.y1b_c00126{bottom:771.746545px;}
.y1a_c00126{bottom:802.028532px;}
.y19_c00126{bottom:838.010518px;}
.y18_c00126{bottom:873.991004px;}
.y17_c00126{bottom:910.149989px;}
.y14_c00126{bottom:936.748800px;}
.y13_c00126{bottom:953.193181px;}
.y11_c00126{bottom:967.033800px;}
.yd_c00126{bottom:987.696000px;}
.y10_c00126{bottom:988.810948px;}
.yc_c00126{bottom:1024.618653px;}
.yb_c00126{bottom:1044.925644px;}
.ya_c00126{bottom:1060.779138px;}
.y8_c00126{bottom:1101.391622px;}
.y7_c00126{bottom:1125.436612px;}
.y6_c00126{bottom:1146.276554px;}
.y5_c00126{bottom:1166.762796px;}
.y4_c00126{bottom:1187.245588px;}
.hb_c00126{height:19.594800px;}
.h8_c00126{height:19.949400px;}
.he_c00126{height:24.315963px;}
.h12_c00126{height:30.169822px;}
.h6_c00126{height:37.374544px;}
.h5_c00126{height:41.427963px;}
.h10_c00126{height:48.632381px;}
.hd_c00126{height:52.927558px;}
.h11_c00126{height:52.986695px;}
.h2_c00126{height:58.667764px;}
.hf_c00126{height:58.798865px;}
.h3_c00126{height:63.768724px;}
.ha_c00126{height:63.839974px;}
.h7_c00126{height:63.911224px;}
.h4_c00126{height:64.053724px;}
.hc_c00126{height:1249.830756px;}
.h9_c00126{height:1262.514600px;}
.h1_c00126{height:1262.879062px;}
.h0_c00126{height:1263.000000px;}
.w2_c00126{width:8.194140px;}
.w4_c00126{width:883.195846px;}
.w3_c00126{width:892.161000px;}
.w1_c00126{width:892.414744px;}
.w0_c00126{width:892.500000px;}
.x0_c00126{left:0.000000px;}
.xb_c00126{left:1.541954px;}
.xd_c00126{left:112.753050px;}
.x7_c00126{left:114.282348px;}
.x9_c00126{left:125.159760px;}
.x2_c00126{left:126.215308px;}
.xc_c00126{left:178.837474px;}
.x8_c00126{left:180.366772px;}
.xe_c00126{left:184.892972px;}
.x4_c00126{left:252.504495px;}
.x3_c00126{left:270.140236px;}
.x6_c00126{left:295.789578px;}
.xa_c00126{left:360.943731px;}
.x5_c00126{left:420.296029px;}
.x1_c00126{left:505.976141px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls1_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:0.647626pt;}
.ws1_c00126{word-spacing:-15.833327pt;}
.ws0_c00126{word-spacing:-14.566794pt;}
.ws2_c00126{word-spacing:0.000000pt;}
._2_c00126{margin-left:-3.566361pt;}
._3_c00126{margin-left:-2.667539pt;}
._0_c00126{margin-left:-1.190569pt;}
._1_c00126{width:0.938922pt;}
._b_c00126{width:1.966515pt;}
._12_c00126{width:16.351167pt;}
._11_c00126{width:24.055154pt;}
._d_c00126{width:112.157286pt;}
._e_c00126{width:158.773605pt;}
._f_c00126{width:171.854296pt;}
._10_c00126{width:183.996236pt;}
._5_c00126{width:254.909370pt;}
._13_c00126{width:315.325984pt;}
._4_c00126{width:347.494587pt;}
._a_c00126{width:389.334439pt;}
._c_c00126{width:391.236809pt;}
._7_c00126{width:431.088384pt;}
._6_c00126{width:458.267334pt;}
._8_c00126{width:542.434101pt;}
._9_c00126{width:563.587232pt;}
.fs3_c00126{font-size:34.199666pt;}
.fs5_c00126{font-size:42.432943pt;}
.fs2_c00126{font-size:52.566166pt;}
.fs0_c00126{font-size:58.267177pt;}
.fs1_c00126{font-size:63.333308pt;}
.fs4_c00126{font-size:68.399973pt;}
.y0_c00126{bottom:0.000000pt;}
.y1_c00126{bottom:0.107500pt;}
.yf_c00126{bottom:0.431250pt;}
.y15_c00126{bottom:3.642065pt;}
.ye_c00126{bottom:3.954314pt;}
.y12_c00126{bottom:3.955388pt;}
.y16_c00126{bottom:6.068128pt;}
.y9_c00126{bottom:63.856874pt;}
.y3_c00126{bottom:73.833045pt;}
.y2_c00126{bottom:74.783670pt;}
.y30_c00126{bottom:185.986462pt;}
.y2f_c00126{bottom:200.078456pt;}
.y2e_c00126{bottom:222.402447pt;}
.y2d_c00126{bottom:249.951770pt;}
.y2c_c00126{bottom:277.342425pt;}
.y2b_c00126{bottom:304.738414pt;}
.y2a_c00126{bottom:332.283737pt;}
.y29_c00126{bottom:359.677059pt;}
.y28_c00126{bottom:387.070381pt;}
.y27_c00126{bottom:414.618370pt;}
.y26_c00126{bottom:442.007693pt;}
.y25_c00126{bottom:469.398348pt;}
.y24_c00126{bottom:496.951671pt;}
.y23_c00126{bottom:524.342327pt;}
.y22_c00126{bottom:551.734316pt;}
.y21_c00126{bottom:579.440971pt;}
.y20_c00126{bottom:596.540964pt;}
.y1f_c00126{bottom:614.588957pt;}
.y1e_c00126{bottom:630.898284pt;}
.y1d_c00126{bottom:644.990278pt;}
.y1c_c00126{bottom:676.024932pt;}
.y1b_c00126{bottom:685.996929pt;}
.y1a_c00126{bottom:712.914251pt;}
.y19_c00126{bottom:744.898238pt;}
.y18_c00126{bottom:776.880892pt;}
.y17_c00126{bottom:809.022213pt;}
.y14_c00126{bottom:832.665600pt;}
.y13_c00126{bottom:847.282828pt;}
.y11_c00126{bottom:859.585600pt;}
.yd_c00126{bottom:877.952000pt;}
.y10_c00126{bottom:878.943065pt;}
.yc_c00126{bottom:910.772136pt;}
.yb_c00126{bottom:928.822795pt;}
.ya_c00126{bottom:942.914789pt;}
.y8_c00126{bottom:979.014775pt;}
.y7_c00126{bottom:1000.388100pt;}
.y6_c00126{bottom:1018.912492pt;}
.y5_c00126{bottom:1037.122485pt;}
.y4_c00126{bottom:1055.329411pt;}
.hb_c00126{height:17.417600pt;}
.h8_c00126{height:17.732800pt;}
.he_c00126{height:21.614189pt;}
.h12_c00126{height:26.817620pt;}
.h6_c00126{height:33.221817pt;}
.h5_c00126{height:36.824856pt;}
.h10_c00126{height:43.228783pt;}
.hd_c00126{height:47.046718pt;}
.h11_c00126{height:47.099284pt;}
.h2_c00126{height:52.149123pt;}
.hf_c00126{height:52.265657pt;}
.h3_c00126{height:56.683311pt;}
.ha_c00126{height:56.746644pt;}
.h7_c00126{height:56.809977pt;}
.h4_c00126{height:56.936644pt;}
.hc_c00126{height:1110.960672pt;}
.h9_c00126{height:1122.235200pt;}
.h1_c00126{height:1122.559167pt;}
.h0_c00126{height:1122.666667pt;}
.w2_c00126{width:7.283680pt;}
.w4_c00126{width:785.062974pt;}
.w3_c00126{width:793.032000pt;}
.w1_c00126{width:793.257550pt;}
.w0_c00126{width:793.333333pt;}
.x0_c00126{left:0.000000pt;}
.xb_c00126{left:1.370626pt;}
.xd_c00126{left:100.224934pt;}
.x7_c00126{left:101.584309pt;}
.x9_c00126{left:111.253120pt;}
.x2_c00126{left:112.191384pt;}
.xc_c00126{left:158.966644pt;}
.x8_c00126{left:160.326019pt;}
.xe_c00126{left:164.349308pt;}
.x4_c00126{left:224.448440pt;}
.x3_c00126{left:240.124654pt;}
.x6_c00126{left:262.924069pt;}
.xa_c00126{left:320.838872pt;}
.x5_c00126{left:373.596470pt;}
.x1_c00126{left:449.756570pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00127;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:1.112000;font-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_c00127{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00127{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls0_c00127{letter-spacing:0.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:-16.387643px;}
.ws1_c00127{word-spacing:-14.784234px;}
.ws2_c00127{word-spacing:0.000000px;}
._3_c00127{margin-left:-3.354685px;}
._0_c00127{margin-left:-1.339390px;}
._1_c00127{width:1.056287px;}
._1b_c00127{width:4.612265px;}
._1d_c00127{width:10.622336px;}
._f_c00127{width:17.472227px;}
._4_c00127{width:19.142615px;}
._6_c00127{width:28.431427px;}
._12_c00127{width:37.720637px;}
._14_c00127{width:51.778153px;}
._18_c00127{width:62.478141px;}
._19_c00127{width:66.710021px;}
._16_c00127{width:71.793990px;}
._10_c00127{width:95.167887px;}
._15_c00127{width:99.617556px;}
._13_c00127{width:118.578814px;}
._5_c00127{width:136.341932px;}
._e_c00127{width:146.142207px;}
._1c_c00127{width:154.483080px;}
._7_c00127{width:158.886408px;}
._1e_c00127{width:186.637662px;}
._c_c00127{width:218.239666px;}
._11_c00127{width:232.361296px;}
._d_c00127{width:233.830636px;}
._1a_c00127{width:250.726834px;}
._9_c00127{width:271.141795px;}
._a_c00127{width:279.498046px;}
._2_c00127{width:289.917895px;}
._17_c00127{width:322.772456px;}
._b_c00127{width:343.714614px;}
._8_c00127{width:437.054982px;}
.fc2_c00127{color:transparent;}
.fc1_c00127{color:rgb(105,148,45);}
.fc0_c00127{color:rgb(35,31,32);}
.fs6_c00127{font-size:32.774747px;}
.fs3_c00127{font-size:38.474625px;}
.fs4_c00127{font-size:41.324503px;}
.fs5_c00127{font-size:44.887062px;}
.fs2_c00127{font-size:59.136936px;}
.fs0_c00127{font-size:65.550574px;}
.fs1_c00127{font-size:71.249972px;}
.y4_c00127{bottom:-13.536716px;}
.y0_c00127{bottom:0.000000px;}
.y1_c00127{bottom:0.120938px;}
.y38_c00127{bottom:3.559915px;}
.y32_c00127{bottom:3.563012px;}
.y15_c00127{bottom:4.450144px;}
.ya_c00127{bottom:6.826644px;}
.yc_c00127{bottom:65.133277px;}
.y3_c00127{bottom:79.442640px;}
.y5_c00127{bottom:83.062279px;}
.y2_c00127{bottom:84.131629px;}
.y3d_c00127{bottom:95.885774px;}
.y3c_c00127{bottom:107.998569px;}
.y39_c00127{bottom:137.209858px;}
.y3b_c00127{bottom:152.172502px;}
.y36_c00127{bottom:156.152791px;}
.y37_c00127{bottom:159.419520px;}
.y3a_c00127{bottom:162.859097px;}
.y33_c00127{bottom:186.433279px;}
.y35_c00127{bottom:201.400273px;}
.y34_c00127{bottom:212.079818px;}
.y30_c00127{bottom:212.084768px;}
.y31_c00127{bottom:215.348400px;}
.y2f_c00127{bottom:242.188256px;}
.y2e_c00127{bottom:267.658246px;}
.y2d_c00127{bottom:293.132736px;}
.y2c_c00127{bottom:312.370228px;}
.y2b_c00127{bottom:326.263223px;}
.y2a_c00127{bottom:338.731368px;}
.y29_c00127{bottom:369.724355px;}
.y28_c00127{bottom:400.360193px;}
.y27_c00127{bottom:418.706686px;}
.y26_c00127{bottom:435.095679px;}
.y25_c00127{bottom:471.076015px;}
.y24_c00127{bottom:486.215659px;}
.y23_c00127{bottom:516.499147px;}
.y22_c00127{bottom:549.982133px;}
.y21_c00127{bottom:583.291120px;}
.y20_c00127{bottom:616.247607px;}
.y1f_c00127{bottom:649.021094px;}
.y1e_c00127{bottom:669.680585px;}
.y1d_c00127{bottom:685.538579px;}
.y1c_c00127{bottom:703.882072px;}
.y1b_c00127{bottom:717.242716px;}
.y1a_c00127{bottom:748.058554px;}
.y19_c00127{bottom:778.873042px;}
.y18_c00127{bottom:797.042534px;}
.y17_c00127{bottom:813.610028px;}
.y16_c00127{bottom:849.766013px;}
.y13_c00127{bottom:881.116001px;}
.y14_c00127{bottom:885.807000px;}
.y12_c00127{bottom:917.097986px;}
.y11_c00127{bottom:952.544472px;}
.y10_c00127{bottom:987.810958px;}
.yf_c00127{bottom:1009.898449px;}
.ye_c00127{bottom:1023.612944px;}
.yd_c00127{bottom:1039.466437px;}
.yb_c00127{bottom:1094.685915px;}
.y9_c00127{bottom:1125.436612px;}
.y8_c00127{bottom:1146.276554px;}
.y7_c00127{bottom:1166.762796px;}
.y6_c00127{bottom:1187.245588px;}
.h3_c00127{height:1.064520px;}
.h17_c00127{height:16.742880px;}
.h15_c00127{height:16.745400px;}
.hd_c00127{height:19.949400px;}
.h16_c00127{height:20.713640px;}
.ha_c00127{height:24.315963px;}
.h10_c00127{height:26.117086px;}
.h11_c00127{height:28.368623px;}
.h8_c00127{height:37.374544px;}
.h7_c00127{height:41.427963px;}
.he_c00127{height:52.927558px;}
.h14_c00127{height:52.986695px;}
.h13_c00127{height:53.045832px;}
.h2_c00127{height:58.667764px;}
.h12_c00127{height:58.733314px;}
.hf_c00127{height:58.798865px;}
.h9_c00127{height:58.929966px;}
.h4_c00127{height:63.768724px;}
.hc_c00127{height:63.839974px;}
.hb_c00127{height:63.911224px;}
.h5_c00127{height:64.053724px;}
.h6_c00127{height:1249.830756px;}
.h1_c00127{height:1262.879062px;}
.h0_c00127{height:1263.000000px;}
.w2_c00127{width:4.098600px;}
.w5_c00127{width:8.193600px;}
.w4_c00127{width:8.197200px;}
.w6_c00127{width:9.086400px;}
.w3_c00127{width:883.195846px;}
.w1_c00127{width:892.414744px;}
.w0_c00127{width:892.500000px;}
.x0_c00127{left:0.000000px;}
.x7_c00127{left:1.541954px;}
.x8_c00127{left:112.753050px;}
.x1a_c00127{left:114.282348px;}
.x9_c00127{left:124.508546px;}
.x2_c00127{left:126.215743px;}
.xf_c00127{left:128.427894px;}
.xe_c00127{left:178.837474px;}
.x19_c00127{left:180.366772px;}
.x13_c00127{left:210.544461px;}
.x15_c00127{left:212.073759px;}
.x4_c00127{left:252.504495px;}
.x3_c00127{left:270.140236px;}
.x6_c00127{left:295.789578px;}
.x12_c00127{left:349.061400px;}
.x14_c00127{left:358.922046px;}
.x16_c00127{left:360.451344px;}
.xa_c00127{left:390.740400px;}
.x5_c00127{left:420.296029px;}
.x17_c00127{left:422.435175px;}
.xb_c00127{left:473.927400px;}
.x1_c00127{left:505.976141px;}
.x10_c00127{left:563.050320px;}
.x18_c00127{left:564.578112px;}
.xc_c00127{left:595.407600px;}
.x11_c00127{left:620.762797px;}
.xd_c00127{left:685.240271px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws0_c00127{word-spacing:-14.566794pt;}
.ws1_c00127{word-spacing:-13.141541pt;}
.ws2_c00127{word-spacing:0.000000pt;}
._3_c00127{margin-left:-2.981942pt;}
._0_c00127{margin-left:-1.190569pt;}
._1_c00127{width:0.938922pt;}
._1b_c00127{width:4.099791pt;}
._1d_c00127{width:9.442076pt;}
._f_c00127{width:15.530869pt;}
._4_c00127{width:17.015657pt;}
._6_c00127{width:25.272379pt;}
._12_c00127{width:33.529455pt;}
._14_c00127{width:46.025025pt;}
._18_c00127{width:55.536125pt;}
._19_c00127{width:59.297796pt;}
._16_c00127{width:63.816880pt;}
._10_c00127{width:84.593677pt;}
._15_c00127{width:88.548939pt;}
._13_c00127{width:105.403390pt;}
._5_c00127{width:121.192828pt;}
._e_c00127{width:129.904184pt;}
._1c_c00127{width:137.318293pt;}
._7_c00127{width:141.232362pt;}
._1e_c00127{width:165.900144pt;}
._c_c00127{width:193.990815pt;}
._11_c00127{width:206.543374pt;}
._d_c00127{width:207.849454pt;}
._1a_c00127{width:222.868297pt;}
._9_c00127{width:241.014929pt;}
._a_c00127{width:248.442708pt;}
._2_c00127{width:257.704795pt;}
._17_c00127{width:286.908849pt;}
._b_c00127{width:305.524101pt;}
._8_c00127{width:388.493317pt;}
.fs6_c00127{font-size:29.133108pt;}
.fs3_c00127{font-size:34.199666pt;}
.fs4_c00127{font-size:36.732892pt;}
.fs5_c00127{font-size:39.899611pt;}
.fs2_c00127{font-size:52.566166pt;}
.fs0_c00127{font-size:58.267177pt;}
.fs1_c00127{font-size:63.333308pt;}
.y4_c00127{bottom:-12.032637pt;}
.y0_c00127{bottom:0.000000pt;}
.y1_c00127{bottom:0.107500pt;}
.y38_c00127{bottom:3.164369pt;}
.y32_c00127{bottom:3.167122pt;}
.y15_c00127{bottom:3.955683pt;}
.ya_c00127{bottom:6.068128pt;}
.yc_c00127{bottom:57.896246pt;}
.y3_c00127{bottom:70.615680pt;}
.y5_c00127{bottom:73.833137pt;}
.y2_c00127{bottom:74.783670pt;}
.y3d_c00127{bottom:85.231799pt;}
.y3c_c00127{bottom:95.998728pt;}
.y39_c00127{bottom:121.964318pt;}
.y3b_c00127{bottom:135.264446pt;}
.y36_c00127{bottom:138.802481pt;}
.y37_c00127{bottom:141.706240pt;}
.y3a_c00127{bottom:144.763642pt;}
.y33_c00127{bottom:165.718470pt;}
.y35_c00127{bottom:179.022465pt;}
.y34_c00127{bottom:188.515394pt;}
.y30_c00127{bottom:188.519794pt;}
.y31_c00127{bottom:191.420800pt;}
.y2f_c00127{bottom:215.278450pt;}
.y2e_c00127{bottom:237.918441pt;}
.y2d_c00127{bottom:260.562432pt;}
.y2c_c00127{bottom:277.662425pt;}
.y2b_c00127{bottom:290.011754pt;}
.y2a_c00127{bottom:301.094549pt;}
.y29_c00127{bottom:328.643871pt;}
.y28_c00127{bottom:355.875727pt;}
.y27_c00127{bottom:372.183721pt;}
.y26_c00127{bottom:386.751715pt;}
.y25_c00127{bottom:418.734235pt;}
.y24_c00127{bottom:432.191697pt;}
.y23_c00127{bottom:459.110353pt;}
.y22_c00127{bottom:488.873007pt;}
.y21_c00127{bottom:518.480996pt;}
.y20_c00127{bottom:547.775650pt;}
.y1f_c00127{bottom:576.907639pt;}
.y1e_c00127{bottom:595.271631pt;}
.y1d_c00127{bottom:609.367626pt;}
.y1c_c00127{bottom:625.672953pt;}
.y1b_c00127{bottom:637.549081pt;}
.y1a_c00127{bottom:664.940937pt;}
.y19_c00127{bottom:692.331593pt;}
.y18_c00127{bottom:708.482253pt;}
.y17_c00127{bottom:723.208914pt;}
.y16_c00127{bottom:755.347567pt;}
.y13_c00127{bottom:783.214223pt;}
.y14_c00127{bottom:787.384000pt;}
.y12_c00127{bottom:815.198210pt;}
.y11_c00127{bottom:846.706198pt;}
.y10_c00127{bottom:878.054185pt;}
.yf_c00127{bottom:897.687510pt;}
.ye_c00127{bottom:909.878172pt;}
.yd_c00127{bottom:923.970167pt;}
.yb_c00127{bottom:973.054147pt;}
.y9_c00127{bottom:1000.388100pt;}
.y8_c00127{bottom:1018.912492pt;}
.y7_c00127{bottom:1037.122485pt;}
.y6_c00127{bottom:1055.329411pt;}
.h3_c00127{height:0.946240pt;}
.h17_c00127{height:14.882560pt;}
.h15_c00127{height:14.884800pt;}
.hd_c00127{height:17.732800pt;}
.h16_c00127{height:18.412124pt;}
.ha_c00127{height:21.614189pt;}
.h10_c00127{height:23.215188pt;}
.h11_c00127{height:25.216554pt;}
.h8_c00127{height:33.221817pt;}
.h7_c00127{height:36.824856pt;}
.he_c00127{height:47.046718pt;}
.h14_c00127{height:47.099284pt;}
.h13_c00127{height:47.151851pt;}
.h2_c00127{height:52.149123pt;}
.h12_c00127{height:52.207390pt;}
.hf_c00127{height:52.265657pt;}
.h9_c00127{height:52.382192pt;}
.h4_c00127{height:56.683311pt;}
.hc_c00127{height:56.746644pt;}
.hb_c00127{height:56.809977pt;}
.h5_c00127{height:56.936644pt;}
.h6_c00127{height:1110.960672pt;}
.h1_c00127{height:1122.559167pt;}
.h0_c00127{height:1122.666667pt;}
.w2_c00127{width:3.643200pt;}
.w5_c00127{width:7.283200pt;}
.w4_c00127{width:7.286400pt;}
.w6_c00127{width:8.076800pt;}
.w3_c00127{width:785.062974pt;}
.w1_c00127{width:793.257550pt;}
.w0_c00127{width:793.333333pt;}
.x0_c00127{left:0.000000pt;}
.x7_c00127{left:1.370626pt;}
.x8_c00127{left:100.224934pt;}
.x1a_c00127{left:101.584309pt;}
.x9_c00127{left:110.674263pt;}
.x2_c00127{left:112.191772pt;}
.xf_c00127{left:114.158128pt;}
.xe_c00127{left:158.966644pt;}
.x19_c00127{left:160.326019pt;}
.x13_c00127{left:187.150632pt;}
.x15_c00127{left:188.510008pt;}
.x4_c00127{left:224.448440pt;}
.x3_c00127{left:240.124654pt;}
.x6_c00127{left:262.924069pt;}
.x12_c00127{left:310.276800pt;}
.x14_c00127{left:319.041819pt;}
.x16_c00127{left:320.401195pt;}
.xa_c00127{left:347.324800pt;}
.x5_c00127{left:373.596470pt;}
.x17_c00127{left:375.497933pt;}
.xb_c00127{left:421.268800pt;}
.x1_c00127{left:449.756570pt;}
.x10_c00127{left:500.489174pt;}
.x18_c00127{left:501.847210pt;}
.xc_c00127{left:529.251200pt;}
.x11_c00127{left:551.789153pt;}
.xd_c00127{left:609.102464pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_9d01a295ed1ea56a484a2c4c.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00128;src:url('chunks/assets/font_6a5df09709f11ef4b8f8d413.woff2')format("woff");}.ff6_c00128{font-family:ff6_c00128;line-height:1.107000;font-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_c00128{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.v1_c00128{vertical-align:2.134685px;}
.ls0_c00128{letter-spacing:0.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:-16.387643px;}
.ws2_c00128{word-spacing:0.000000px;}
.ws1_c00128{word-spacing:317.987860px;}
._c_c00128{margin-left:-4.191164px;}
._2_c00128{margin-left:-2.758595px;}
._0_c00128{margin-left:-1.339390px;}
._1_c00128{width:1.056287px;}
._5_c00128{width:2.600384px;}
._e_c00128{width:23.637645px;}
._f_c00128{width:27.165230px;}
._b_c00128{width:36.790139px;}
._3_c00128{width:88.769159px;}
._7_c00128{width:95.603868px;}
._a_c00128{width:102.872820px;}
._10_c00128{width:123.948067px;}
._9_c00128{width:131.391604px;}
._12_c00128{width:137.443576px;}
._8_c00128{width:140.568811px;}
._14_c00128{width:141.958022px;}
._11_c00128{width:148.626909px;}
._d_c00128{width:171.010592px;}
._13_c00128{width:246.755330px;}
._6_c00128{width:318.292017px;}
._4_c00128{width:458.862383px;}
.fc2_c00128{color:transparent;}
.fc1_c00128{color:rgb(105,148,45);}
.fc0_c00128{color:rgb(35,31,32);}
.fs4_c00128{font-size:35.624626px;}
.fs5_c00128{font-size:38.474625px;}
.fs3_c00128{font-size:41.324503px;}
.fs6_c00128{font-size:44.887062px;}
.fs7_c00128{font-size:47.737061px;}
.fs2_c00128{font-size:59.136936px;}
.fs0_c00128{font-size:65.550574px;}
.fs1_c00128{font-size:71.249972px;}
.y4_c00128{bottom:-13.536716px;}
.y0_c00128{bottom:0.000000px;}
.y1_c00128{bottom:0.120938px;}
.ya_c00128{bottom:6.826644px;}
.yc_c00128{bottom:65.133277px;}
.y3_c00128{bottom:79.442640px;}
.y5_c00128{bottom:83.062279px;}
.y2_c00128{bottom:84.131629px;}
.y37_c00128{bottom:113.049108px;}
.y36_c00128{bottom:215.471767px;}
.y35_c00128{bottom:216.895267px;}
.y34_c00128{bottom:230.611261px;}
.y33_c00128{bottom:245.930755px;}
.y32_c00128{bottom:281.017241px;}
.y31_c00128{bottom:298.117234px;}
.y30_c00128{bottom:335.347219px;}
.y2f_c00128{bottom:354.407712px;}
.y2e_c00128{bottom:370.790705px;}
.y2d_c00128{bottom:389.849697px;}
.y2c_c00128{bottom:409.801189px;}
.y2b_c00128{bottom:444.892175px;}
.y2a_c00128{bottom:457.181670px;}
.y29_c00128{bottom:488.531658px;}
.y28_c00128{bottom:523.978144px;}
.y27_c00128{bottom:560.138629px;}
.y26_c00128{bottom:578.128122px;}
.y25_c00128{bottom:590.953117px;}
.y24_c00128{bottom:612.148108px;}
.y23_c00128{bottom:625.864103px;}
.y22_c00128{bottom:641.715047px;}
.y21_c00128{bottom:678.409082px;}
.y20_c00128{bottom:714.218418px;}
.y1f_c00128{bottom:729.358062px;}
.y1c_c00128{bottom:759.991349px;}
.y1b_c00128{bottom:787.958088px;}
.y1e_c00128{bottom:816.098527px;}
.y1a_c00128{bottom:816.100027px;}
.y1d_c00128{bottom:832.664520px;}
.y19_c00128{bottom:844.067516px;}
.y15_c00128{bottom:877.195424px;}
.y14_c00128{bottom:905.338713px;}
.y13_c00128{bottom:933.304851px;}
.y18_c00128{bottom:933.306980px;}
.y17_c00128{bottom:950.048473px;}
.y12_c00128{bottom:960.914469px;}
.y16_c00128{bottom:961.446640px;}
.y11_c00128{bottom:995.292955px;}
.y10_c00128{bottom:1014.885437px;}
.yf_c00128{bottom:1029.671441px;}
.ye_c00128{bottom:1043.742936px;}
.yd_c00128{bottom:1056.387931px;}
.yb_c00128{bottom:1094.685915px;}
.y9_c00128{bottom:1125.436612px;}
.y8_c00128{bottom:1146.276554px;}
.y7_c00128{bottom:1166.762796px;}
.y6_c00128{bottom:1187.245588px;}
.h3_c00128{height:1.064520px;}
.he_c00128{height:22.514763px;}
.h11_c00128{height:24.315963px;}
.ha_c00128{height:26.117086px;}
.h13_c00128{height:28.368623px;}
.h8_c00128{height:37.374544px;}
.h7_c00128{height:41.427963px;}
.h14_c00128{height:42.772407px;}
.hf_c00128{height:52.927558px;}
.h2_c00128{height:58.667764px;}
.hd_c00128{height:58.733314px;}
.hb_c00128{height:58.798865px;}
.h10_c00128{height:58.929966px;}
.hc_c00128{height:60.867999px;}
.h4_c00128{height:63.768724px;}
.h9_c00128{height:63.839974px;}
.h12_c00128{height:63.911224px;}
.h5_c00128{height:64.053724px;}
.h6_c00128{height:1249.830756px;}
.h1_c00128{height:1262.879062px;}
.h0_c00128{height:1263.000000px;}
.w2_c00128{width:4.098600px;}
.w3_c00128{width:883.195846px;}
.w1_c00128{width:892.414744px;}
.w0_c00128{width:892.500000px;}
.x0_c00128{left:0.000000px;}
.x7_c00128{left:1.541954px;}
.x8_c00128{left:112.753050px;}
.xa_c00128{left:124.508546px;}
.x2_c00128{left:126.215743px;}
.x13_c00128{left:153.008984px;}
.x9_c00128{left:178.837474px;}
.xb_c00128{left:229.955525px;}
.x4_c00128{left:252.504495px;}
.x3_c00128{left:270.140236px;}
.x12_c00128{left:284.819932px;}
.x6_c00128{left:295.789578px;}
.xd_c00128{left:404.873884px;}
.xc_c00128{left:406.478270px;}
.x5_c00128{left:420.296029px;}
.xe_c00128{left:433.732372px;}
.xf_c00128{left:434.978872px;}
.x1_c00128{left:505.976141px;}
.x14_c00128{left:535.795331px;}
.x15_c00128{left:552.538325px;}
.x11_c00128{left:600.635805px;}
.x10_c00128{left:602.237805px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.v1_c00128{vertical-align:1.897498pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws0_c00128{word-spacing:-14.566794pt;}
.ws2_c00128{word-spacing:0.000000pt;}
.ws1_c00128{word-spacing:282.655876pt;}
._c_c00128{margin-left:-3.725479pt;}
._2_c00128{margin-left:-2.452085pt;}
._0_c00128{margin-left:-1.190569pt;}
._1_c00128{width:0.938922pt;}
._5_c00128{width:2.311452pt;}
._e_c00128{width:21.011240pt;}
._f_c00128{width:24.146871pt;}
._b_c00128{width:32.702346pt;}
._3_c00128{width:78.905919pt;}
._7_c00128{width:84.981216pt;}
._a_c00128{width:91.442507pt;}
._10_c00128{width:110.176059pt;}
._9_c00128{width:116.792537pt;}
._12_c00128{width:122.172068pt;}
._8_c00128{width:124.950054pt;}
._14_c00128{width:126.184908pt;}
._11_c00128{width:132.112808pt;}
._d_c00128{width:152.009415pt;}
._13_c00128{width:219.338071pt;}
._6_c00128{width:282.926238pt;}
._4_c00128{width:407.877674pt;}
.fs4_c00128{font-size:31.666334pt;}
.fs5_c00128{font-size:34.199666pt;}
.fs3_c00128{font-size:36.732892pt;}
.fs6_c00128{font-size:39.899611pt;}
.fs7_c00128{font-size:42.432943pt;}
.fs2_c00128{font-size:52.566166pt;}
.fs0_c00128{font-size:58.267177pt;}
.fs1_c00128{font-size:63.333308pt;}
.y4_c00128{bottom:-12.032637pt;}
.y0_c00128{bottom:0.000000pt;}
.y1_c00128{bottom:0.107500pt;}
.ya_c00128{bottom:6.068128pt;}
.yc_c00128{bottom:57.896246pt;}
.y3_c00128{bottom:70.615680pt;}
.y5_c00128{bottom:73.833137pt;}
.y2_c00128{bottom:74.783670pt;}
.y37_c00128{bottom:100.488096pt;}
.y36_c00128{bottom:191.530460pt;}
.y35_c00128{bottom:192.795792pt;}
.y34_c00128{bottom:204.987788pt;}
.y33_c00128{bottom:218.605115pt;}
.y32_c00128{bottom:249.793103pt;}
.y31_c00128{bottom:264.993097pt;}
.y30_c00128{bottom:298.086417pt;}
.y2f_c00128{bottom:315.029077pt;}
.y2e_c00128{bottom:329.591738pt;}
.y2d_c00128{bottom:346.533064pt;}
.y2c_c00128{bottom:364.267724pt;}
.y2b_c00128{bottom:395.459711pt;}
.y2a_c00128{bottom:406.383707pt;}
.y29_c00128{bottom:434.250363pt;}
.y28_c00128{bottom:465.758350pt;}
.y27_c00128{bottom:497.901004pt;}
.y26_c00128{bottom:513.891664pt;}
.y25_c00128{bottom:525.291659pt;}
.y24_c00128{bottom:544.131652pt;}
.y23_c00128{bottom:556.323647pt;}
.y22_c00128{bottom:570.413375pt;}
.y21_c00128{bottom:603.030295pt;}
.y20_c00128{bottom:634.860816pt;}
.y1f_c00128{bottom:648.318277pt;}
.y1c_c00128{bottom:675.547866pt;}
.y1b_c00128{bottom:700.407189pt;}
.y1e_c00128{bottom:725.420913pt;}
.y1a_c00128{bottom:725.422246pt;}
.y1d_c00128{bottom:740.146240pt;}
.y19_c00128{bottom:750.282236pt;}
.y15_c00128{bottom:779.729266pt;}
.y14_c00128{bottom:804.745522pt;}
.y13_c00128{bottom:829.604312pt;}
.y18_c00128{bottom:829.606204pt;}
.y17_c00128{bottom:844.487532pt;}
.y12_c00128{bottom:854.146195pt;}
.y16_c00128{bottom:854.619236pt;}
.y11_c00128{bottom:884.704849pt;}
.y10_c00128{bottom:902.120389pt;}
.yf_c00128{bottom:915.263503pt;}
.ye_c00128{bottom:927.771498pt;}
.yd_c00128{bottom:939.011494pt;}
.yb_c00128{bottom:973.054147pt;}
.y9_c00128{bottom:1000.388100pt;}
.y8_c00128{bottom:1018.912492pt;}
.y7_c00128{bottom:1037.122485pt;}
.y6_c00128{bottom:1055.329411pt;}
.h3_c00128{height:0.946240pt;}
.he_c00128{height:20.013123pt;}
.h11_c00128{height:21.614189pt;}
.ha_c00128{height:23.215188pt;}
.h13_c00128{height:25.216554pt;}
.h8_c00128{height:33.221817pt;}
.h7_c00128{height:36.824856pt;}
.h14_c00128{height:38.019917pt;}
.hf_c00128{height:47.046718pt;}
.h2_c00128{height:52.149123pt;}
.hd_c00128{height:52.207390pt;}
.hb_c00128{height:52.265657pt;}
.h10_c00128{height:52.382192pt;}
.hc_c00128{height:54.104888pt;}
.h4_c00128{height:56.683311pt;}
.h9_c00128{height:56.746644pt;}
.h12_c00128{height:56.809977pt;}
.h5_c00128{height:56.936644pt;}
.h6_c00128{height:1110.960672pt;}
.h1_c00128{height:1122.559167pt;}
.h0_c00128{height:1122.666667pt;}
.w2_c00128{width:3.643200pt;}
.w3_c00128{width:785.062974pt;}
.w1_c00128{width:793.257550pt;}
.w0_c00128{width:793.333333pt;}
.x0_c00128{left:0.000000pt;}
.x7_c00128{left:1.370626pt;}
.x8_c00128{left:100.224934pt;}
.xa_c00128{left:110.674263pt;}
.x2_c00128{left:112.191772pt;}
.x13_c00128{left:136.007986pt;}
.x9_c00128{left:158.966644pt;}
.xb_c00128{left:204.404911pt;}
.x4_c00128{left:224.448440pt;}
.x3_c00128{left:240.124654pt;}
.x12_c00128{left:253.173273pt;}
.x6_c00128{left:262.924069pt;}
.xd_c00128{left:359.887897pt;}
.xc_c00128{left:361.314018pt;}
.x5_c00128{left:373.596470pt;}
.xe_c00128{left:385.539886pt;}
.xf_c00128{left:386.647886pt;}
.x1_c00128{left:449.756570pt;}
.x14_c00128{left:476.262517pt;}
.x15_c00128{left:491.145177pt;}
.x11_c00128{left:533.898494pt;}
.x10_c00128{left:535.322493pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_3fc2f2fdf5bc0615a2386f71.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00129;src:url('chunks/assets/font_584b49fd46413cc942e723ef.woff2')format("woff");}.ff6_c00129{font-family:ff6_c00129;line-height:0.841000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00129;src:url('chunks/assets/font_a245938468bd6069d0d91170.woff2')format("woff");}.ff7_c00129{font-family:ff7_c00129;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00129{transform:matrix(0.209867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209867,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.211527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211527,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{transform:matrix(0.215212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215212,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.220877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220877,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00129{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.mc_c00129{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v1_c00129{vertical-align:-10.697996px;}
.v0_c00129{vertical-align:0.000000px;}
.v2_c00129{vertical-align:60.569976px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00129{word-spacing:-55.432478px;}
.ws4_c00129{word-spacing:-44.352702px;}
.ws2_c00129{word-spacing:-17.812493px;}
.ws0_c00129{word-spacing:-16.387643px;}
.ws3_c00129{word-spacing:-14.784234px;}
.ws5_c00129{word-spacing:-9.618656px;}
.ws6_c00129{word-spacing:0.000000px;}
._3_c00129{margin-left:-3.649619px;}
._2_c00129{margin-left:-2.633423px;}
._0_c00129{margin-left:-1.339390px;}
._1_c00129{width:1.056287px;}
._7_c00129{width:16.575909px;}
._11_c00129{width:20.626974px;}
._8_c00129{width:24.335196px;}
._d_c00129{width:31.662239px;}
._c_c00129{width:34.761904px;}
._f_c00129{width:35.853218px;}
._13_c00129{width:38.441238px;}
._5_c00129{width:40.080940px;}
._9_c00129{width:52.180715px;}
._e_c00129{width:72.749691px;}
._10_c00129{width:76.202899px;}
._12_c00129{width:88.555309px;}
._a_c00129{width:90.874684px;}
._b_c00129{width:99.968529px;}
._6_c00129{width:116.217254px;}
._14_c00129{width:141.990579px;}
._4_c00129{width:303.298757px;}
.fc2_c00129{color:transparent;}
.fc1_c00129{color:rgb(105,148,45);}
.fc0_c00129{color:rgb(35,31,32);}
.fs7_c00129{font-size:32.774747px;}
.fs4_c00129{font-size:35.624626px;}
.fs6_c00129{font-size:38.474625px;}
.fs3_c00129{font-size:41.324503px;}
.fs5_c00129{font-size:47.737061px;}
.fs2_c00129{font-size:59.136936px;}
.fs0_c00129{font-size:65.550574px;}
.fs1_c00129{font-size:71.249972px;}
.fs9_c00129{font-size:76.949969px;}
.fs8_c00129{font-size:83.362767px;}
.y4_c00129{bottom:-13.536716px;}
.y0_c00129{bottom:0.000000px;}
.y1_c00129{bottom:0.120938px;}
.y3f_c00129{bottom:0.485156px;}
.y3a_c00129{bottom:3.915705px;}
.y4c_c00129{bottom:4.450676px;}
.y44_c00129{bottom:4.451820px;}
.y49_c00129{bottom:4.455462px;}
.y35_c00129{bottom:4.806707px;}
.y1a_c00129{bottom:4.807765px;}
.ya_c00129{bottom:6.826644px;}
.yc_c00129{bottom:65.133277px;}
.y3_c00129{bottom:79.442640px;}
.y5_c00129{bottom:83.062279px;}
.y2_c00129{bottom:84.131629px;}
.y4b_c00129{bottom:304.945200px;}
.y4d_c00129{bottom:306.960440px;}
.y48_c00129{bottom:340.925400px;}
.y4a_c00129{bottom:342.578207px;}
.y47_c00129{bottom:371.686205px;}
.y46_c00129{bottom:407.485190px;}
.y45_c00129{bottom:423.160184px;}
.y42_c00129{bottom:432.171671px;}
.y3e_c00129{bottom:432.360390px;}
.y38_c00129{bottom:432.535889px;}
.y43_c00129{bottom:444.771000px;}
.y3c_c00129{bottom:447.678383px;}
.y41_c00129{bottom:449.985664px;}
.y37_c00129{bottom:450.349882px;}
.y40_c00129{bottom:462.810659px;}
.y3d_c00129{bottom:462.996377px;}
.y36_c00129{bottom:463.174877px;}
.y3b_c00129{bottom:467.629875px;}
.y33_c00129{bottom:474.283164px;}
.y34_c00129{bottom:478.083600px;}
.y39_c00129{bottom:482.538600px;}
.y32_c00129{bottom:510.799149px;}
.y31_c00129{bottom:532.526640px;}
.y30_c00129{bottom:552.656482px;}
.y2f_c00129{bottom:567.796126px;}
.y2e_c00129{bottom:596.474615px;}
.y2d_c00129{bottom:619.633105px;}
.y2c_c00129{bottom:621.056605px;}
.y2b_c00129{bottom:636.553099px;}
.y2a_c00129{bottom:647.059094px;}
.y29_c00129{bottom:662.201588px;}
.y28_c00129{bottom:672.709084px;}
.y27_c00129{bottom:687.854578px;}
.y26_c00129{bottom:698.183574px;}
.y25_c00129{bottom:713.326068px;}
.y24_c00129{bottom:723.832064px;}
.y23_c00129{bottom:756.430051px;}
.y22_c00129{bottom:792.410536px;}
.y18_c00129{bottom:794.903535px;}
.y21_c00129{bottom:795.083535px;}
.y1f_c00129{bottom:795.262035px;}
.y1b_c00129{bottom:810.224529px;}
.y1e_c00129{bottom:813.073028px;}
.y1d_c00129{bottom:823.405024px;}
.y20_c00129{bottom:825.542523px;}
.y1c_c00129{bottom:825.718023px;}
.y17_c00129{bottom:828.392522px;}
.y19_c00129{bottom:832.370400px;}
.y16_c00129{bottom:864.725507px;}
.y15_c00129{bottom:885.390999px;}
.y14_c00129{bottom:905.342491px;}
.y13_c00129{bottom:952.899972px;}
.y12_c00129{bottom:982.469460px;}
.y11_c00129{bottom:996.363955px;}
.y10_c00129{bottom:1007.937950px;}
.yf_c00129{bottom:1026.999942px;}
.ye_c00129{bottom:1040.891437px;}
.yd_c00129{bottom:1057.280430px;}
.yb_c00129{bottom:1094.685915px;}
.y9_c00129{bottom:1125.436612px;}
.y8_c00129{bottom:1146.276554px;}
.y7_c00129{bottom:1166.762796px;}
.y6_c00129{bottom:1187.245588px;}
.h3_c00129{height:1.064520px;}
.h19_c00129{height:15.849000px;}
.h1c_c00129{height:17.636400px;}
.h1e_c00129{height:19.947600px;}
.h1f_c00129{height:19.949400px;}
.he_c00129{height:20.127600px;}
.h18_c00129{height:20.304000px;}
.h14_c00129{height:20.713640px;}
.hb_c00129{height:22.514763px;}
.h12_c00129{height:24.315963px;}
.ha_c00129{height:26.117086px;}
.h16_c00129{height:34.434789px;}
.h8_c00129{height:37.374544px;}
.h7_c00129{height:41.427963px;}
.h11_c00129{height:42.772407px;}
.h15_c00129{height:43.051690px;}
.hf_c00129{height:45.029982px;}
.h1a_c00129{height:48.632381px;}
.h10_c00129{height:51.869979px;}
.h17_c00129{height:52.685269px;}
.h13_c00129{height:52.927558px;}
.h2_c00129{height:58.667764px;}
.h9_c00129{height:58.798865px;}
.h4_c00129{height:63.768724px;}
.hc_c00129{height:63.839974px;}
.hd_c00129{height:63.911224px;}
.h5_c00129{height:64.053724px;}
.h1d_c00129{height:124.409950px;}
.h6_c00129{height:1249.830756px;}
.h1b_c00129{height:1262.514600px;}
.h1_c00129{height:1262.879062px;}
.h0_c00129{height:1263.000000px;}
.w2_c00129{width:4.098600px;}
.wb_c00129{width:8.191800px;}
.wa_c00129{width:8.194140px;}
.w6_c00129{width:8.730000px;}
.w9_c00129{width:9.620100px;}
.w8_c00129{width:10.506600px;}
.w5_c00129{width:10.508400px;}
.w4_c00129{width:10.510200px;}
.w3_c00129{width:883.195846px;}
.w7_c00129{width:892.161000px;}
.w1_c00129{width:892.414744px;}
.w0_c00129{width:892.500000px;}
.x0_c00129{left:0.000000px;}
.x7_c00129{left:1.541954px;}
.x8_c00129{left:112.753050px;}
.x2_c00129{left:126.215743px;}
.x19_c00129{left:127.537645px;}
.x1c_c00129{left:131.814143px;}
.x18_c00129{left:137.870090px;}
.x1d_c00129{left:140.362039px;}
.x1e_c00129{left:145.529237px;}
.x9_c00129{left:153.188984px;}
.xb_c00129{left:171.173977px;}
.x1f_c00129{left:178.837474px;}
.x2f_c00129{left:190.592969px;}
.x1a_c00129{left:216.598459px;}
.x20_c00129{left:232.927200px;}
.x21_c00129{left:234.158250px;}
.x1b_c00129{left:245.992447px;}
.x4_c00129{left:252.504495px;}
.x22_c00129{left:264.452400px;}
.x23_c00129{left:265.685237px;}
.x3_c00129{left:270.140236px;}
.xa_c00129{left:283.039432px;}
.xc_c00129{left:286.246431px;}
.x6_c00129{left:295.789578px;}
.xd_c00129{left:359.215200px;}
.x24_c00129{left:360.446200px;}
.xe_c00129{left:376.016895px;}
.x10_c00129{left:403.270384px;}
.x25_c00129{left:411.766200px;}
.x26_c00129{left:412.994179px;}
.x5_c00129{left:420.296029px;}
.xf_c00129{left:427.855374px;}
.x13_c00129{left:467.930858px;}
.x14_c00129{left:470.423857px;}
.x27_c00129{left:474.818400px;}
.x28_c00129{left:476.368684px;}
.x11_c00129{left:493.939348px;}
.x12_c00129{left:503.020344px;}
.x1_c00129{left:505.976141px;}
.x29_c00129{left:527.542200px;}
.x2a_c00129{left:528.777632px;}
.x16_c00129{left:535.618331px;}
.x17_c00129{left:537.932830px;}
.x15_c00129{left:565.186320px;}
.x2b_c00129{left:590.599800px;}
.x2c_c00129{left:591.827107px;}
.x2d_c00129{left:674.670600px;}
.x2e_c00129{left:676.260573px;}
@media print{
.v1_c00129{vertical-align:-9.509330pt;}
.v0_c00129{vertical-align:0.000000pt;}
.v2_c00129{vertical-align:53.839978pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws1_c00129{word-spacing:-49.273314pt;}
.ws4_c00129{word-spacing:-39.424624pt;}
.ws2_c00129{word-spacing:-15.833327pt;}
.ws0_c00129{word-spacing:-14.566794pt;}
.ws3_c00129{word-spacing:-13.141541pt;}
.ws5_c00129{word-spacing:-8.549917pt;}
.ws6_c00129{word-spacing:0.000000pt;}
._3_c00129{margin-left:-3.244106pt;}
._2_c00129{margin-left:-2.340821pt;}
._0_c00129{margin-left:-1.190569pt;}
._1_c00129{width:0.938922pt;}
._7_c00129{width:14.734142pt;}
._11_c00129{width:18.335088pt;}
._8_c00129{width:21.631285pt;}
._d_c00129{width:28.144213pt;}
._c_c00129{width:30.899470pt;}
._f_c00129{width:31.869527pt;}
._13_c00129{width:34.169989pt;}
._5_c00129{width:35.627502pt;}
._9_c00129{width:46.382858pt;}
._e_c00129{width:64.666392pt;}
._10_c00129{width:67.735911pt;}
._12_c00129{width:78.715830pt;}
._a_c00129{width:80.777497pt;}
._b_c00129{width:88.860914pt;}
._6_c00129{width:103.304225pt;}
._14_c00129{width:126.213848pt;}
._4_c00129{width:269.598896pt;}
.fs7_c00129{font-size:29.133108pt;}
.fs4_c00129{font-size:31.666334pt;}
.fs6_c00129{font-size:34.199666pt;}
.fs3_c00129{font-size:36.732892pt;}
.fs5_c00129{font-size:42.432943pt;}
.fs2_c00129{font-size:52.566166pt;}
.fs0_c00129{font-size:58.267177pt;}
.fs1_c00129{font-size:63.333308pt;}
.fs9_c00129{font-size:68.399973pt;}
.fs8_c00129{font-size:74.100237pt;}
.y4_c00129{bottom:-12.032637pt;}
.y0_c00129{bottom:0.000000pt;}
.y1_c00129{bottom:0.107500pt;}
.y3f_c00129{bottom:0.431250pt;}
.y3a_c00129{bottom:3.480627pt;}
.y4c_c00129{bottom:3.956157pt;}
.y44_c00129{bottom:3.957174pt;}
.y49_c00129{bottom:3.960411pt;}
.y35_c00129{bottom:4.272628pt;}
.y1a_c00129{bottom:4.273569pt;}
.ya_c00129{bottom:6.068128pt;}
.yc_c00129{bottom:57.896246pt;}
.y3_c00129{bottom:70.615680pt;}
.y5_c00129{bottom:73.833137pt;}
.y2_c00129{bottom:74.783670pt;}
.y4b_c00129{bottom:271.062400pt;}
.y4d_c00129{bottom:272.853724pt;}
.y48_c00129{bottom:303.044800pt;}
.y4a_c00129{bottom:304.513962pt;}
.y47_c00129{bottom:330.387737pt;}
.y46_c00129{bottom:362.209058pt;}
.y45_c00129{bottom:376.142386pt;}
.y42_c00129{bottom:384.152597pt;}
.y3e_c00129{bottom:384.320346pt;}
.y38_c00129{bottom:384.476346pt;}
.y43_c00129{bottom:395.352000pt;}
.y3c_c00129{bottom:397.936341pt;}
.y41_c00129{bottom:399.987257pt;}
.y37_c00129{bottom:400.311006pt;}
.y40_c00129{bottom:411.387252pt;}
.y3d_c00129{bottom:411.552335pt;}
.y36_c00129{bottom:411.711002pt;}
.y3b_c00129{bottom:415.671000pt;}
.y33_c00129{bottom:421.585034pt;}
.y34_c00129{bottom:424.963200pt;}
.y39_c00129{bottom:428.923200pt;}
.y32_c00129{bottom:454.043688pt;}
.y31_c00129{bottom:473.357014pt;}
.y30_c00129{bottom:491.250206pt;}
.y2f_c00129{bottom:504.707668pt;}
.y2e_c00129{bottom:530.199657pt;}
.y2d_c00129{bottom:550.784983pt;}
.y2c_c00129{bottom:552.050315pt;}
.y2b_c00129{bottom:565.824977pt;}
.y2a_c00129{bottom:575.163640pt;}
.y29_c00129{bottom:588.623634pt;}
.y28_c00129{bottom:597.963630pt;}
.y27_c00129{bottom:611.426292pt;}
.y26_c00129{bottom:620.607621pt;}
.y25_c00129{bottom:634.067616pt;}
.y24_c00129{bottom:643.406279pt;}
.y23_c00129{bottom:672.382267pt;}
.y22_c00129{bottom:704.364921pt;}
.y18_c00129{bottom:706.580920pt;}
.y21_c00129{bottom:706.740920pt;}
.y1f_c00129{bottom:706.899587pt;}
.y1b_c00129{bottom:720.199581pt;}
.y1e_c00129{bottom:722.731580pt;}
.y1d_c00129{bottom:731.915577pt;}
.y20_c00129{bottom:733.815576pt;}
.y1c_c00129{bottom:733.971576pt;}
.y17_c00129{bottom:736.348908pt;}
.y19_c00129{bottom:739.884800pt;}
.y16_c00129{bottom:768.644895pt;}
.y15_c00129{bottom:787.014221pt;}
.y14_c00129{bottom:804.748881pt;}
.y13_c00129{bottom:847.022197pt;}
.y12_c00129{bottom:873.306187pt;}
.y11_c00129{bottom:885.656849pt;}
.y10_c00129{bottom:895.944845pt;}
.yf_c00129{bottom:912.888838pt;}
.ye_c00129{bottom:925.236833pt;}
.yd_c00129{bottom:939.804827pt;}
.yb_c00129{bottom:973.054147pt;}
.y9_c00129{bottom:1000.388100pt;}
.y8_c00129{bottom:1018.912492pt;}
.y7_c00129{bottom:1037.122485pt;}
.y6_c00129{bottom:1055.329411pt;}
.h3_c00129{height:0.946240pt;}
.h19_c00129{height:14.088000pt;}
.h1c_c00129{height:15.676800pt;}
.h1e_c00129{height:17.731200pt;}
.h1f_c00129{height:17.732800pt;}
.he_c00129{height:17.891200pt;}
.h18_c00129{height:18.048000pt;}
.h14_c00129{height:18.412124pt;}
.hb_c00129{height:20.013123pt;}
.h12_c00129{height:21.614189pt;}
.ha_c00129{height:23.215188pt;}
.h16_c00129{height:30.608701pt;}
.h8_c00129{height:33.221817pt;}
.h7_c00129{height:36.824856pt;}
.h11_c00129{height:38.019917pt;}
.h15_c00129{height:38.268169pt;}
.hf_c00129{height:40.026651pt;}
.h1a_c00129{height:43.228783pt;}
.h10_c00129{height:46.106648pt;}
.h17_c00129{height:46.831350pt;}
.h13_c00129{height:47.046718pt;}
.h2_c00129{height:52.149123pt;}
.h9_c00129{height:52.265657pt;}
.h4_c00129{height:56.683311pt;}
.hc_c00129{height:56.746644pt;}
.hd_c00129{height:56.809977pt;}
.h5_c00129{height:56.936644pt;}
.h1d_c00129{height:110.586622pt;}
.h6_c00129{height:1110.960672pt;}
.h1b_c00129{height:1122.235200pt;}
.h1_c00129{height:1122.559167pt;}
.h0_c00129{height:1122.666667pt;}
.w2_c00129{width:3.643200pt;}
.wb_c00129{width:7.281600pt;}
.wa_c00129{width:7.283680pt;}
.w6_c00129{width:7.760000pt;}
.w9_c00129{width:8.551200pt;}
.w8_c00129{width:9.339200pt;}
.w5_c00129{width:9.340800pt;}
.w4_c00129{width:9.342400pt;}
.w3_c00129{width:785.062974pt;}
.w7_c00129{width:793.032000pt;}
.w1_c00129{width:793.257550pt;}
.w0_c00129{width:793.333333pt;}
.x0_c00129{left:0.000000pt;}
.x7_c00129{left:1.370626pt;}
.x8_c00129{left:100.224934pt;}
.x2_c00129{left:112.191772pt;}
.x19_c00129{left:113.366795pt;}
.x1c_c00129{left:117.168127pt;}
.x18_c00129{left:122.551191pt;}
.x1d_c00129{left:124.766257pt;}
.x1e_c00129{left:129.359322pt;}
.x9_c00129{left:136.167986pt;}
.xb_c00129{left:152.154646pt;}
.x1f_c00129{left:158.966644pt;}
.x2f_c00129{left:169.415973pt;}
.x1a_c00129{left:192.531964pt;}
.x20_c00129{left:207.046400pt;}
.x21_c00129{left:208.140667pt;}
.x1b_c00129{left:218.659953pt;}
.x4_c00129{left:224.448440pt;}
.x22_c00129{left:235.068800pt;}
.x23_c00129{left:236.164656pt;}
.x3_c00129{left:240.124654pt;}
.xa_c00129{left:251.590607pt;}
.xc_c00129{left:254.441272pt;}
.x6_c00129{left:262.924069pt;}
.xd_c00129{left:319.302400pt;}
.x24_c00129{left:320.396622pt;}
.xe_c00129{left:334.237240pt;}
.x10_c00129{left:358.462564pt;}
.x25_c00129{left:366.014400pt;}
.x26_c00129{left:367.105936pt;}
.x5_c00129{left:373.596470pt;}
.xf_c00129{left:380.315888pt;}
.x13_c00129{left:415.938541pt;}
.x14_c00129{left:418.154540pt;}
.x27_c00129{left:422.060800pt;}
.x28_c00129{left:423.438831pt;}
.x11_c00129{left:439.057198pt;}
.x12_c00129{left:447.129195pt;}
.x1_c00129{left:449.756570pt;}
.x29_c00129{left:468.926400pt;}
.x2a_c00129{left:470.024562pt;}
.x16_c00129{left:476.105183pt;}
.x17_c00129{left:478.162516pt;}
.x15_c00129{left:502.387840pt;}
.x2b_c00129{left:524.977600pt;}
.x2c_c00129{left:526.068540pt;}
.x2d_c00129{left:599.707200pt;}
.x2e_c00129{left:601.120510pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00130;src:url('chunks/assets/font_3fc2f2fdf5bc0615a2386f71.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00130;src:url('chunks/assets/font_a245938468bd6069d0d91170.woff2')format("woff");}.ff6_c00130{font-family:ff6_c00130;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00130{transform:matrix(0.209867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209867,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.211527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211527,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:65.537974px;}
.ls1_c00130{letter-spacing:0.000000px;}
.ls0_c00130{letter-spacing:0.007320px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00130{word-spacing:-49.162930px;}
.ws3_c00130{word-spacing:-44.352702px;}
.ws0_c00130{word-spacing:-16.387643px;}
.ws1_c00130{word-spacing:-14.784234px;}
.ws4_c00130{word-spacing:0.000000px;}
._3_c00130{margin-left:-2.778639px;}
._0_c00130{margin-left:-1.339390px;}
._1_c00130{width:1.056287px;}
._2_c00130{width:2.336561px;}
._8_c00130{width:48.559300px;}
._9_c00130{width:81.885919px;}
._a_c00130{width:85.386712px;}
._7_c00130{width:169.483360px;}
._6_c00130{width:210.404990px;}
._4_c00130{width:320.774027px;}
._5_c00130{width:477.765699px;}
.fc2_c00130{color:transparent;}
.fc1_c00130{color:rgb(105,148,45);}
.fc0_c00130{color:rgb(35,31,32);}
.fs3_c00130{font-size:32.774747px;}
.fs7_c00130{font-size:35.624626px;}
.fs4_c00130{font-size:44.887062px;}
.fs6_c00130{font-size:53.436999px;}
.fs5_c00130{font-size:56.286877px;}
.fs2_c00130{font-size:59.136936px;}
.fs0_c00130{font-size:65.550574px;}
.fs1_c00130{font-size:71.249972px;}
.y4_c00130{bottom:-13.536716px;}
.y0_c00130{bottom:0.000000px;}
.y1_c00130{bottom:0.120938px;}
.y20_c00130{bottom:0.485156px;}
.y2c_c00130{bottom:3.555940px;}
.y24_c00130{bottom:3.739540px;}
.y29_c00130{bottom:3.915959px;}
.y1f_c00130{bottom:4.805715px;}
.ya_c00130{bottom:6.826644px;}
.yc_c00130{bottom:65.133277px;}
.y3_c00130{bottom:79.442640px;}
.y5_c00130{bottom:83.062279px;}
.y2_c00130{bottom:84.131629px;}
.y4a_c00130{bottom:287.786738px;}
.y49_c00130{bottom:316.106727px;}
.y48_c00130{bottom:331.070721px;}
.y47_c00130{bottom:341.754017px;}
.y46_c00130{bottom:367.404756px;}
.y45_c00130{bottom:393.058196px;}
.y44_c00130{bottom:408.017690px;}
.y43_c00130{bottom:418.705186px;}
.y42_c00130{bottom:433.847680px;}
.y41_c00130{bottom:444.358176px;}
.y40_c00130{bottom:459.499169px;}
.y3f_c00130{bottom:469.828165px;}
.y3e_c00130{bottom:484.790659px;}
.y3d_c00130{bottom:495.479655px;}
.y37_c00130{bottom:532.821649px;}
.y36_c00130{bottom:560.783588px;}
.y3c_c00130{bottom:568.153126px;}
.y2a_c00130{bottom:574.858833px;}
.y3b_c00130{bottom:584.719119px;}
.y35_c00130{bottom:588.750327px;}
.y30_c00130{bottom:588.928827px;}
.y3a_c00130{bottom:596.293115px;}
.y28_c00130{bottom:599.203800px;}
.y27_c00130{bottom:602.998821px;}
.y34_c00130{bottom:605.494820px;}
.y2f_c00130{bottom:606.565820px;}
.y39_c00130{bottom:613.930198px;}
.y33_c00130{bottom:617.070316px;}
.y26_c00130{bottom:620.635904px;}
.y2e_c00130{bottom:621.526904px;}
.y38_c00130{bottom:628.714102px;}
.y32_c00130{bottom:633.636309px;}
.y25_c00130{bottom:635.419808px;}
.y2d_c00130{bottom:636.310808px;}
.y31_c00130{bottom:645.213904px;}
.y23_c00130{bottom:646.585200px;}
.y2b_c00130{bottom:647.659800px;}
.y22_c00130{bottom:677.450073px;}
.y21_c00130{bottom:694.908566px;}
.y1e_c00130{bottom:708.930000px;}
.y1d_c00130{bottom:737.189558px;}
.y1c_c00130{bottom:756.071551px;}
.y1b_c00130{bottom:770.143045px;}
.y1a_c00130{bottom:787.244538px;}
.y19_c00130{bottom:823.405024px;}
.y18_c00130{bottom:851.013263px;}
.y17_c00130{bottom:876.840403px;}
.y16_c00130{bottom:902.492492px;}
.y15_c00130{bottom:928.318282px;}
.y14_c00130{bottom:953.967522px;}
.y13_c00130{bottom:979.440961px;}
.y12_c00130{bottom:994.401956px;}
.y11_c00130{bottom:1005.089451px;}
.y10_c00130{bottom:1020.050445px;}
.yf_c00130{bottom:1030.742441px;}
.ye_c00130{bottom:1045.878935px;}
.yd_c00130{bottom:1056.388381px;}
.yb_c00130{bottom:1094.685915px;}
.y9_c00130{bottom:1125.436612px;}
.y8_c00130{bottom:1146.276554px;}
.y7_c00130{bottom:1166.762796px;}
.y6_c00130{bottom:1187.245588px;}
.h3_c00130{height:1.064520px;}
.h15_c00130{height:14.245200px;}
.h12_c00130{height:15.319800px;}
.h14_c00130{height:18.527400px;}
.hd_c00130{height:19.416600px;}
.ha_c00130{height:20.713640px;}
.h17_c00130{height:22.514763px;}
.hc_c00130{height:28.368623px;}
.h16_c00130{height:33.772183px;}
.h13_c00130{height:35.573307px;}
.h8_c00130{height:37.374544px;}
.h7_c00130{height:41.427963px;}
.h18_c00130{height:43.051690px;}
.he_c00130{height:45.029982px;}
.h9_c00130{height:52.927558px;}
.h2_c00130{height:58.667764px;}
.h11_c00130{height:58.733314px;}
.hb_c00130{height:58.798865px;}
.h4_c00130{height:63.768724px;}
.h5_c00130{height:64.053724px;}
.h10_c00130{height:124.271288px;}
.h6_c00130{height:1249.830756px;}
.hf_c00130{height:1262.514600px;}
.h1_c00130{height:1262.879062px;}
.h0_c00130{height:1263.000000px;}
.w2_c00130{width:4.098600px;}
.w8_c00130{width:7.833600px;}
.w9_c00130{width:8.193600px;}
.w6_c00130{width:8.194140px;}
.w4_c00130{width:10.509660px;}
.w7_c00130{width:16.567200px;}
.w3_c00130{width:883.195846px;}
.w5_c00130{width:892.161000px;}
.w1_c00130{width:892.414744px;}
.w0_c00130{width:892.500000px;}
.x0_c00130{left:0.000000px;}
.x7_c00130{left:1.541954px;}
.x8_c00130{left:112.753050px;}
.x2_c00130{left:126.215743px;}
.xb_c00130{left:127.537645px;}
.xc_c00130{left:129.028973px;}
.x9_c00130{left:131.812576px;}
.x16_c00130{left:138.225140px;}
.x17_c00130{left:146.238737px;}
.xa_c00130{left:178.837474px;}
.xe_c00130{left:237.376800px;}
.x4_c00130{left:252.504495px;}
.xf_c00130{left:254.304000px;}
.xd_c00130{left:256.030773px;}
.x3_c00130{left:270.140236px;}
.x6_c00130{left:295.789578px;}
.x11_c00130{left:364.190198px;}
.x10_c00130{left:365.969227px;}
.x5_c00130{left:420.296029px;}
.x12_c00130{left:489.780000px;}
.x13_c00130{left:491.549147px;}
.x1_c00130{left:505.976141px;}
.x15_c00130{left:557.704323px;}
.x14_c00130{left:559.247400px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:58.255977pt;}
.ls1_c00130{letter-spacing:0.000000pt;}
.ls0_c00130{letter-spacing:0.006507pt;}
.ws2_c00130{word-spacing:-43.700383pt;}
.ws3_c00130{word-spacing:-39.424624pt;}
.ws0_c00130{word-spacing:-14.566794pt;}
.ws1_c00130{word-spacing:-13.141541pt;}
.ws4_c00130{word-spacing:0.000000pt;}
._3_c00130{margin-left:-2.469901pt;}
._0_c00130{margin-left:-1.190569pt;}
._1_c00130{width:0.938922pt;}
._2_c00130{width:2.076943pt;}
._8_c00130{width:43.163822pt;}
._9_c00130{width:72.787484pt;}
._a_c00130{width:75.899300pt;}
._7_c00130{width:150.651876pt;}
._6_c00130{width:187.026658pt;}
._4_c00130{width:285.132468pt;}
._5_c00130{width:424.680621pt;}
.fs3_c00130{font-size:29.133108pt;}
.fs7_c00130{font-size:31.666334pt;}
.fs4_c00130{font-size:39.899611pt;}
.fs6_c00130{font-size:47.499554pt;}
.fs5_c00130{font-size:50.032780pt;}
.fs2_c00130{font-size:52.566166pt;}
.fs0_c00130{font-size:58.267177pt;}
.fs1_c00130{font-size:63.333308pt;}
.y4_c00130{bottom:-12.032637pt;}
.y0_c00130{bottom:0.000000pt;}
.y1_c00130{bottom:0.107500pt;}
.y20_c00130{bottom:0.431250pt;}
.y2c_c00130{bottom:3.160835pt;}
.y24_c00130{bottom:3.324035pt;}
.y29_c00130{bottom:3.480852pt;}
.y1f_c00130{bottom:4.271746pt;}
.ya_c00130{bottom:6.068128pt;}
.yc_c00130{bottom:57.896246pt;}
.y3_c00130{bottom:70.615680pt;}
.y5_c00130{bottom:73.833137pt;}
.y2_c00130{bottom:74.783670pt;}
.y4a_c00130{bottom:255.810434pt;}
.y49_c00130{bottom:280.983757pt;}
.y48_c00130{bottom:294.285085pt;}
.y47_c00130{bottom:303.781348pt;}
.y46_c00130{bottom:326.582006pt;}
.y45_c00130{bottom:349.385063pt;}
.y44_c00130{bottom:362.682391pt;}
.y43_c00130{bottom:372.182387pt;}
.y42_c00130{bottom:385.642382pt;}
.y41_c00130{bottom:394.985045pt;}
.y40_c00130{bottom:408.443706pt;}
.y3f_c00130{bottom:417.625036pt;}
.y3e_c00130{bottom:430.925031pt;}
.y3d_c00130{bottom:440.426360pt;}
.y37_c00130{bottom:473.619244pt;}
.y36_c00130{bottom:498.474301pt;}
.y3c_c00130{bottom:505.025001pt;}
.y2a_c00130{bottom:510.985629pt;}
.y3b_c00130{bottom:519.750328pt;}
.y35_c00130{bottom:523.333624pt;}
.y30_c00130{bottom:523.492291pt;}
.y3a_c00130{bottom:530.038324pt;}
.y28_c00130{bottom:532.625600pt;}
.y27_c00130{bottom:535.998952pt;}
.y34_c00130{bottom:538.217618pt;}
.y2f_c00130{bottom:539.169618pt;}
.y39_c00130{bottom:545.715731pt;}
.y33_c00130{bottom:548.506947pt;}
.y26_c00130{bottom:551.676359pt;}
.y2e_c00130{bottom:552.468359pt;}
.y38_c00130{bottom:558.856979pt;}
.y32_c00130{bottom:563.232275pt;}
.y25_c00130{bottom:564.817607pt;}
.y2d_c00130{bottom:565.609607pt;}
.y31_c00130{bottom:573.523471pt;}
.y23_c00130{bottom:574.742400pt;}
.y2b_c00130{bottom:575.697600pt;}
.y22_c00130{bottom:602.177843pt;}
.y21_c00130{bottom:617.696503pt;}
.y1e_c00130{bottom:630.160000pt;}
.y1d_c00130{bottom:655.279607pt;}
.y1c_c00130{bottom:672.063601pt;}
.y1b_c00130{bottom:684.571596pt;}
.y1a_c00130{bottom:699.772923pt;}
.y19_c00130{bottom:731.915577pt;}
.y18_c00130{bottom:756.456234pt;}
.y17_c00130{bottom:779.413691pt;}
.y16_c00130{bottom:802.215549pt;}
.y15_c00130{bottom:825.171806pt;}
.y14_c00130{bottom:847.971130pt;}
.y13_c00130{bottom:870.614188pt;}
.y12_c00130{bottom:883.912849pt;}
.y11_c00130{bottom:893.412846pt;}
.y10_c00130{bottom:906.711507pt;}
.yf_c00130{bottom:916.215503pt;}
.ye_c00130{bottom:929.670164pt;}
.yd_c00130{bottom:939.011894pt;}
.yb_c00130{bottom:973.054147pt;}
.y9_c00130{bottom:1000.388100pt;}
.y8_c00130{bottom:1018.912492pt;}
.y7_c00130{bottom:1037.122485pt;}
.y6_c00130{bottom:1055.329411pt;}
.h3_c00130{height:0.946240pt;}
.h15_c00130{height:12.662400pt;}
.h12_c00130{height:13.617600pt;}
.h14_c00130{height:16.468800pt;}
.hd_c00130{height:17.259200pt;}
.ha_c00130{height:18.412124pt;}
.h17_c00130{height:20.013123pt;}
.hc_c00130{height:25.216554pt;}
.h16_c00130{height:30.019718pt;}
.h13_c00130{height:31.620717pt;}
.h8_c00130{height:33.221817pt;}
.h7_c00130{height:36.824856pt;}
.h18_c00130{height:38.268169pt;}
.he_c00130{height:40.026651pt;}
.h9_c00130{height:47.046718pt;}
.h2_c00130{height:52.149123pt;}
.h11_c00130{height:52.207390pt;}
.hb_c00130{height:52.265657pt;}
.h4_c00130{height:56.683311pt;}
.h5_c00130{height:56.936644pt;}
.h10_c00130{height:110.463367pt;}
.h6_c00130{height:1110.960672pt;}
.hf_c00130{height:1122.235200pt;}
.h1_c00130{height:1122.559167pt;}
.h0_c00130{height:1122.666667pt;}
.w2_c00130{width:3.643200pt;}
.w8_c00130{width:6.963200pt;}
.w9_c00130{width:7.283200pt;}
.w6_c00130{width:7.283680pt;}
.w4_c00130{width:9.341920pt;}
.w7_c00130{width:14.726400pt;}
.w3_c00130{width:785.062974pt;}
.w5_c00130{width:793.032000pt;}
.w1_c00130{width:793.257550pt;}
.w0_c00130{width:793.333333pt;}
.x0_c00130{left:0.000000pt;}
.x7_c00130{left:1.370626pt;}
.x8_c00130{left:100.224934pt;}
.x2_c00130{left:112.191772pt;}
.xb_c00130{left:113.366795pt;}
.xc_c00130{left:114.692421pt;}
.x9_c00130{left:117.166734pt;}
.x16_c00130{left:122.866791pt;}
.x17_c00130{left:129.989989pt;}
.xa_c00130{left:158.966644pt;}
.xe_c00130{left:211.001600pt;}
.x4_c00130{left:224.448440pt;}
.xf_c00130{left:226.048000pt;}
.xd_c00130{left:227.582909pt;}
.x3_c00130{left:240.124654pt;}
.x6_c00130{left:262.924069pt;}
.x11_c00130{left:323.724621pt;}
.x10_c00130{left:325.305980pt;}
.x5_c00130{left:373.596470pt;}
.x12_c00130{left:435.360000pt;}
.x13_c00130{left:436.932575pt;}
.x1_c00130{left:449.756570pt;}
.x15_c00130{left:495.737176pt;}
.x14_c00130{left:497.108800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00131;src:url('chunks/assets/font_6a5df09709f11ef4b8f8d413.woff2')format("woff");}.ff6_c00131{font-family:ff6_c00131;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00131{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00131{word-spacing:-17.812493px;}
.ws0_c00131{word-spacing:-16.387643px;}
.ws2_c00131{word-spacing:-11.934265px;}
.ws3_c00131{word-spacing:0.000000px;}
._3_c00131{margin-left:-2.387216px;}
._0_c00131{margin-left:-1.339390px;}
._1_c00131{width:1.056287px;}
._7_c00131{width:2.348064px;}
._5_c00131{width:3.349923px;}
._6_c00131{width:4.390108px;}
._c_c00131{width:6.508221px;}
._b_c00131{width:7.564344px;}
._d_c00131{width:8.778006px;}
._e_c00131{width:10.797786px;}
._8_c00131{width:16.165373px;}
._a_c00131{width:19.354463px;}
._9_c00131{width:58.979458px;}
._2_c00131{width:537.292956px;}
._4_c00131{width:728.839043px;}
.fc2_c00131{color:transparent;}
.fc1_c00131{color:rgb(105,148,45);}
.fc0_c00131{color:rgb(35,31,32);}
.fs4_c00131{font-size:35.624626px;}
.fs5_c00131{font-size:38.474625px;}
.fs7_c00131{font-size:44.887062px;}
.fs6_c00131{font-size:47.737061px;}
.fs2_c00131{font-size:59.136936px;}
.fs0_c00131{font-size:65.550574px;}
.fs1_c00131{font-size:71.249972px;}
.fs3_c00131{font-size:83.362767px;}
.y4_c00131{bottom:-13.536716px;}
.y0_c00131{bottom:0.000000px;}
.y1_c00131{bottom:0.120938px;}
.y1e_c00131{bottom:3.915014px;}
.ya_c00131{bottom:6.826644px;}
.yc_c00131{bottom:65.133277px;}
.y3_c00131{bottom:79.442640px;}
.y5_c00131{bottom:83.062279px;}
.y2_c00131{bottom:84.131629px;}
.y3c_c00131{bottom:91.849917px;}
.y3b_c00131{bottom:106.104261px;}
.y3a_c00131{bottom:118.215706px;}
.y39_c00131{bottom:119.640855px;}
.y38_c00131{bottom:137.806748px;}
.y37_c00131{bottom:150.454443px;}
.y36_c00131{bottom:181.627431px;}
.y34_c00131{bottom:209.591769px;}
.y35_c00131{bottom:211.015269px;}
.y33_c00131{bottom:211.016169px;}
.y32_c00131{bottom:242.186456px;}
.y31_c00131{bottom:269.974245px;}
.y30_c00131{bottom:271.399245px;}
.y2f_c00131{bottom:289.747237px;}
.y2e_c00131{bottom:302.570432px;}
.y2d_c00131{bottom:333.384920px;}
.y2c_c00131{bottom:364.204358px;}
.y2b_c00131{bottom:394.840195px;}
.y2a_c00131{bottom:413.008188px;}
.y29_c00131{bottom:425.830183px;}
.y28_c00131{bottom:445.247675px;}
.y27_c00131{bottom:462.349168px;}
.y26_c00131{bottom:488.888808px;}
.y25_c00131{bottom:519.524645px;}
.y24_c00131{bottom:538.408138px;}
.y23_c00131{bottom:558.536630px;}
.y22_c00131{bottom:594.337116px;}
.y21_c00131{bottom:614.287108px;}
.y20_c00131{bottom:650.623093px;}
.y1f_c00131{bottom:680.015581px;}
.y1c_c00131{bottom:707.978570px;}
.y1d_c00131{bottom:710.890200px;}
.y1b_c00131{bottom:724.723063px;}
.y1a_c00131{bottom:736.123059px;}
.y19_c00131{bottom:752.866052px;}
.y18_c00131{bottom:764.263948px;}
.y17_c00131{bottom:792.590086px;}
.y16_c00131{bottom:820.732025px;}
.y15_c00131{bottom:837.478018px;}
.y14_c00131{bottom:848.874564px;}
.y13_c00131{bottom:877.199202px;}
.y12_c00131{bottom:905.342491px;}
.y11_c00131{bottom:938.114478px;}
.y10_c00131{bottom:970.710965px;}
.yf_c00131{bottom:1003.662952px;}
.ye_c00131{bottom:1035.723939px;}
.yd_c00131{bottom:1056.030931px;}
.yb_c00131{bottom:1094.685915px;}
.y9_c00131{bottom:1125.436612px;}
.y8_c00131{bottom:1146.276554px;}
.y7_c00131{bottom:1166.762796px;}
.y6_c00131{bottom:1187.245588px;}
.h3_c00131{height:1.064520px;}
.hd_c00131{height:18.523800px;}
.hc_c00131{height:22.514763px;}
.h12_c00131{height:24.315963px;}
.h14_c00131{height:28.368623px;}
.h8_c00131{height:37.374544px;}
.h7_c00131{height:41.427963px;}
.h13_c00131{height:42.772407px;}
.h9_c00131{height:52.685269px;}
.he_c00131{height:52.927558px;}
.h2_c00131{height:58.667764px;}
.hb_c00131{height:58.733314px;}
.ha_c00131{height:58.798865px;}
.hf_c00131{height:58.929966px;}
.h4_c00131{height:63.768724px;}
.h11_c00131{height:63.839974px;}
.h10_c00131{height:63.911224px;}
.h5_c00131{height:64.053724px;}
.h6_c00131{height:1249.830756px;}
.h1_c00131{height:1262.879062px;}
.h0_c00131{height:1263.000000px;}
.w2_c00131{width:4.098600px;}
.w4_c00131{width:10.155600px;}
.w3_c00131{width:883.195846px;}
.w1_c00131{width:892.414744px;}
.w0_c00131{width:892.500000px;}
.x0_c00131{left:0.000000px;}
.x7_c00131{left:1.541954px;}
.x8_c00131{left:112.753050px;}
.x2_c00131{left:126.215743px;}
.x9_c00131{left:127.537645px;}
.xc_c00131{left:153.008984px;}
.xd_c00131{left:155.321983px;}
.xb_c00131{left:178.837474px;}
.xe_c00131{left:180.263973px;}
.xf_c00131{left:206.444963px;}
.x10_c00131{left:233.157469px;}
.x11_c00131{left:239.399950px;}
.x14_c00131{left:240.469449px;}
.x12_c00131{left:248.659446px;}
.x4_c00131{left:252.504495px;}
.x13_c00131{left:258.104942px;}
.x15_c00131{left:259.171442px;}
.x3_c00131{left:270.140236px;}
.x6_c00131{left:295.789578px;}
.x5_c00131{left:420.296029px;}
.x1_c00131{left:505.976141px;}
.xa_c00131{left:750.016800px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws1_c00131{word-spacing:-15.833327pt;}
.ws0_c00131{word-spacing:-14.566794pt;}
.ws2_c00131{word-spacing:-10.608236pt;}
.ws3_c00131{word-spacing:0.000000pt;}
._3_c00131{margin-left:-2.121969pt;}
._0_c00131{margin-left:-1.190569pt;}
._1_c00131{width:0.938922pt;}
._7_c00131{width:2.087168pt;}
._5_c00131{width:2.977709pt;}
._6_c00131{width:3.902318pt;}
._c_c00131{width:5.785085pt;}
._b_c00131{width:6.723861pt;}
._d_c00131{width:7.802672pt;}
._e_c00131{width:9.598032pt;}
._8_c00131{width:14.369221pt;}
._a_c00131{width:17.203967pt;}
._9_c00131{width:52.426185pt;}
._2_c00131{width:477.593739pt;}
._4_c00131{width:647.856927pt;}
.fs4_c00131{font-size:31.666334pt;}
.fs5_c00131{font-size:34.199666pt;}
.fs7_c00131{font-size:39.899611pt;}
.fs6_c00131{font-size:42.432943pt;}
.fs2_c00131{font-size:52.566166pt;}
.fs0_c00131{font-size:58.267177pt;}
.fs1_c00131{font-size:63.333308pt;}
.fs3_c00131{font-size:74.100237pt;}
.y4_c00131{bottom:-12.032637pt;}
.y0_c00131{bottom:0.000000pt;}
.y1_c00131{bottom:0.107500pt;}
.y1e_c00131{bottom:3.480013pt;}
.ya_c00131{bottom:6.068128pt;}
.yc_c00131{bottom:57.896246pt;}
.y3_c00131{bottom:70.615680pt;}
.y5_c00131{bottom:73.833137pt;}
.y2_c00131{bottom:74.783670pt;}
.y3c_c00131{bottom:81.644370pt;}
.y3b_c00131{bottom:94.314899pt;}
.y3a_c00131{bottom:105.080628pt;}
.y39_c00131{bottom:106.347427pt;}
.y38_c00131{bottom:122.494887pt;}
.y37_c00131{bottom:133.737283pt;}
.y36_c00131{bottom:161.446605pt;}
.y34_c00131{bottom:186.303795pt;}
.y35_c00131{bottom:187.569128pt;}
.y33_c00131{bottom:187.569928pt;}
.y32_c00131{bottom:215.276850pt;}
.y31_c00131{bottom:239.977107pt;}
.y30_c00131{bottom:241.243773pt;}
.y2f_c00131{bottom:257.553100pt;}
.y2e_c00131{bottom:268.951495pt;}
.y2d_c00131{bottom:296.342151pt;}
.y2c_c00131{bottom:323.737207pt;}
.y2b_c00131{bottom:350.969063pt;}
.y2a_c00131{bottom:367.118389pt;}
.y29_c00131{bottom:378.515718pt;}
.y28_c00131{bottom:395.775711pt;}
.y27_c00131{bottom:410.977039pt;}
.y26_c00131{bottom:434.567829pt;}
.y25_c00131{bottom:461.799685pt;}
.y24_c00131{bottom:478.585011pt;}
.y23_c00131{bottom:496.477004pt;}
.y22_c00131{bottom:528.299658pt;}
.y21_c00131{bottom:546.032984pt;}
.y20_c00131{bottom:578.331638pt;}
.y1f_c00131{bottom:604.458294pt;}
.y1c_c00131{bottom:629.314285pt;}
.y1d_c00131{bottom:631.902400pt;}
.y1b_c00131{bottom:644.198279pt;}
.y1a_c00131{bottom:654.331608pt;}
.y19_c00131{bottom:669.214269pt;}
.y18_c00131{bottom:679.345731pt;}
.y17_c00131{bottom:704.524521pt;}
.y16_c00131{bottom:729.539578pt;}
.y15_c00131{bottom:744.424905pt;}
.y14_c00131{bottom:754.555168pt;}
.y13_c00131{bottom:779.732624pt;}
.y12_c00131{bottom:804.748881pt;}
.y11_c00131{bottom:833.879536pt;}
.y10_c00131{bottom:862.854191pt;}
.yf_c00131{bottom:892.144846pt;}
.ye_c00131{bottom:920.643501pt;}
.yd_c00131{bottom:938.694161pt;}
.yb_c00131{bottom:973.054147pt;}
.y9_c00131{bottom:1000.388100pt;}
.y8_c00131{bottom:1018.912492pt;}
.y7_c00131{bottom:1037.122485pt;}
.y6_c00131{bottom:1055.329411pt;}
.h3_c00131{height:0.946240pt;}
.hd_c00131{height:16.465600pt;}
.hc_c00131{height:20.013123pt;}
.h12_c00131{height:21.614189pt;}
.h14_c00131{height:25.216554pt;}
.h8_c00131{height:33.221817pt;}
.h7_c00131{height:36.824856pt;}
.h13_c00131{height:38.019917pt;}
.h9_c00131{height:46.831350pt;}
.he_c00131{height:47.046718pt;}
.h2_c00131{height:52.149123pt;}
.hb_c00131{height:52.207390pt;}
.ha_c00131{height:52.265657pt;}
.hf_c00131{height:52.382192pt;}
.h4_c00131{height:56.683311pt;}
.h11_c00131{height:56.746644pt;}
.h10_c00131{height:56.809977pt;}
.h5_c00131{height:56.936644pt;}
.h6_c00131{height:1110.960672pt;}
.h1_c00131{height:1122.559167pt;}
.h0_c00131{height:1122.666667pt;}
.w2_c00131{width:3.643200pt;}
.w4_c00131{width:9.027200pt;}
.w3_c00131{width:785.062974pt;}
.w1_c00131{width:793.257550pt;}
.w0_c00131{width:793.333333pt;}
.x0_c00131{left:0.000000pt;}
.x7_c00131{left:1.370626pt;}
.x8_c00131{left:100.224934pt;}
.x2_c00131{left:112.191772pt;}
.x9_c00131{left:113.366795pt;}
.xc_c00131{left:136.007986pt;}
.xd_c00131{left:138.063985pt;}
.xb_c00131{left:158.966644pt;}
.xe_c00131{left:160.234643pt;}
.xf_c00131{left:183.506634pt;}
.x10_c00131{left:207.251083pt;}
.x11_c00131{left:212.799955pt;}
.x14_c00131{left:213.750622pt;}
.x12_c00131{left:221.030619pt;}
.x4_c00131{left:224.448440pt;}
.x13_c00131{left:229.426615pt;}
.x15_c00131{left:230.374615pt;}
.x3_c00131{left:240.124654pt;}
.x6_c00131{left:262.924069pt;}
.x5_c00131{left:373.596470pt;}
.x1_c00131{left:449.756570pt;}
.xa_c00131{left:666.681600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:0.632000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00132;src:url('chunks/assets/font_a245938468bd6069d0d91170.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00132;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff7_c00132{font-family:ff7_c00132;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00132{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6_c00132{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00132{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v2_c00132{vertical-align:-5.711998px;}
.v0_c00132{vertical-align:0.000000px;}
.v3_c00132{vertical-align:5.711998px;}
.v1_c00132{vertical-align:71.249971px;}
.lsa_c00132{letter-spacing:0.000000px;}
.ls7_c00132{letter-spacing:0.010503px;}
.ls3_c00132{letter-spacing:0.016506px;}
.ls0_c00132{letter-spacing:0.076890px;}
.ls2_c00132{letter-spacing:1.445369px;}
.ls5_c00132{letter-spacing:1.538041px;}
.ls9_c00132{letter-spacing:1.550048px;}
.ls1_c00132{letter-spacing:17.209583px;}
.ls6_c00132{letter-spacing:238.769063px;}
.ls8_c00132{letter-spacing:248.107978px;}
.ls4_c00132{letter-spacing:248.125989px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:-16.387643px;}
.ws1_c00132{word-spacing:-11.934265px;}
.ws2_c00132{word-spacing:-10.331126px;}
.ws3_c00132{word-spacing:0.000000px;}
._10_c00132{margin-left:-4.590517px;}
._b_c00132{margin-left:-3.308784px;}
._0_c00132{margin-left:-1.339390px;}
._1_c00132{width:1.056287px;}
._4_c00132{width:2.224347px;}
._e_c00132{width:5.574931px;}
._f_c00132{width:6.587004px;}
._d_c00132{width:7.776364px;}
._c_c00132{width:8.908201px;}
._3_c00132{width:12.861834px;}
._6_c00132{width:14.276083px;}
._5_c00132{width:15.695585px;}
._15_c00132{width:20.578132px;}
._7_c00132{width:27.737790px;}
._9_c00132{width:28.858821px;}
._8_c00132{width:30.372959px;}
._a_c00132{width:31.789404px;}
._11_c00132{width:44.163780px;}
._13_c00132{width:54.487214px;}
._2_c00132{width:58.979458px;}
._17_c00132{width:141.791512px;}
._18_c00132{width:186.005804px;}
._12_c00132{width:199.703643px;}
._19_c00132{width:219.633997px;}
._14_c00132{width:241.487899px;}
._16_c00132{width:400.619163px;}
.fc2_c00132{color:transparent;}
.fc1_c00132{color:rgb(105,148,45);}
.fc0_c00132{color:rgb(35,31,32);}
.fs4_c00132{font-size:41.324503px;}
.fs3_c00132{font-size:47.737061px;}
.fs2_c00132{font-size:59.136936px;}
.fs0_c00132{font-size:65.550574px;}
.fs1_c00132{font-size:71.249972px;}
.fs5_c00132{font-size:76.949969px;}
.y4_c00132{bottom:-13.536716px;}
.y0_c00132{bottom:0.000000px;}
.y1_c00132{bottom:0.120938px;}
.y2e_c00132{bottom:3.914248px;}
.y1d_c00132{bottom:4.809311px;}
.ya_c00132{bottom:6.826644px;}
.yc_c00132{bottom:65.133277px;}
.y3_c00132{bottom:79.442640px;}
.y5_c00132{bottom:83.062279px;}
.y2_c00132{bottom:84.131629px;}
.y3c_c00132{bottom:112.691958px;}
.y3b_c00132{bottom:127.654452px;}
.y3a_c00132{bottom:142.794096px;}
.y39_c00132{bottom:172.184784px;}
.y38_c00132{bottom:204.956771px;}
.y37_c00132{bottom:237.733258px;}
.y36_c00132{bottom:270.509745px;}
.y35_c00132{bottom:302.215232px;}
.y34_c00132{bottom:334.277720px;}
.y33_c00132{bottom:335.702719px;}
.y30_c00132{bottom:342.408425px;}
.y32_c00132{bottom:354.227712px;}
.y2f_c00132{bottom:360.933418px;}
.y31_c00132{bottom:375.006412px;}
.y2d_c00132{bottom:375.663600px;}
.y2c_c00132{bottom:400.720193px;}
.y2b_c00132{bottom:432.959680px;}
.y2a_c00132{bottom:452.015672px;}
.y29_c00132{bottom:466.267167px;}
.y28_c00132{bottom:479.803161px;}
.y27_c00132{bottom:498.862154px;}
.y26_c00132{bottom:512.753648px;}
.y25_c00132{bottom:529.144142px;}
.y24_c00132{bottom:564.053628px;}
.y23_c00132{bottom:576.526123px;}
.y22_c00132{bottom:606.808111px;}
.y21_c00132{bottom:642.074596px;}
.y20_c00132{bottom:679.301582px;}
.y1f_c00132{bottom:696.223075px;}
.y1e_c00132{bottom:702.928781px;}
.y1c_c00132{bottom:717.836400px;}
.y1b_c00132{bottom:750.728553px;}
.y1a_c00132{bottom:771.035545px;}
.y19_c00132{bottom:797.399384px;}
.y18_c00132{bottom:828.213872px;}
.y17_c00132{bottom:859.385510px;}
.y15_c00132{bottom:886.995998px;}
.y14_c00132{bottom:888.416498px;}
.y16_c00132{bottom:888.420998px;}
.y13_c00132{bottom:919.589485px;}
.y12_c00132{bottom:949.515823px;}
.y11_c00132{bottom:978.192962px;}
.y10_c00132{bottom:979.617961px;}
.yf_c00132{bottom:1010.612449px;}
.ye_c00132{bottom:1041.426937px;}
.yd_c00132{bottom:1060.486379px;}
.yb_c00132{bottom:1094.685915px;}
.y9_c00132{bottom:1125.436612px;}
.y8_c00132{bottom:1146.276554px;}
.y7_c00132{bottom:1166.762796px;}
.y6_c00132{bottom:1187.245588px;}
.h3_c00132{height:1.064520px;}
.h14_c00132{height:15.849000px;}
.hd_c00132{height:20.304000px;}
.h11_c00132{height:26.117086px;}
.hc_c00132{height:30.169822px;}
.h8_c00132{height:37.374544px;}
.h7_c00132{height:41.427963px;}
.hb_c00132{height:42.772407px;}
.he_c00132{height:45.029982px;}
.h15_c00132{height:48.632381px;}
.h10_c00132{height:52.927558px;}
.h2_c00132{height:58.667764px;}
.h13_c00132{height:58.733314px;}
.h12_c00132{height:58.798865px;}
.h4_c00132{height:63.768724px;}
.ha_c00132{height:63.839974px;}
.h9_c00132{height:63.911224px;}
.h5_c00132{height:64.053724px;}
.hf_c00132{height:135.089946px;}
.h6_c00132{height:1249.830756px;}
.h1_c00132{height:1262.879062px;}
.h0_c00132{height:1263.000000px;}
.w2_c00132{width:4.098600px;}
.w7_c00132{width:8.728560px;}
.w8_c00132{width:8.730000px;}
.w5_c00132{width:10.506600px;}
.w4_c00132{width:10.509660px;}
.w6_c00132{width:10.510200px;}
.w3_c00132{width:883.195846px;}
.w1_c00132{width:892.414744px;}
.w0_c00132{width:892.500000px;}
.x0_c00132{left:0.000000px;}
.x7_c00132{left:1.541954px;}
.x8_c00132{left:112.753050px;}
.x2_c00132{left:126.215743px;}
.x14_c00132{left:127.537645px;}
.x15_c00132{left:129.066942px;}
.x9_c00132{left:153.008984px;}
.xa_c00132{left:178.126474px;}
.xb_c00132{left:179.729599px;}
.x1d_c00132{left:198.607466px;}
.x1a_c00132{left:200.136764px;}
.xc_c00132{left:206.446902px;}
.x16_c00132{left:212.977800px;}
.x17_c00132{left:214.566758px;}
.x11_c00132{left:233.162015px;}
.x4_c00132{left:252.504495px;}
.x18_c00132{left:265.165200px;}
.x3_c00132{left:270.140236px;}
.x6_c00132{left:295.789578px;}
.x19_c00132{left:335.942911px;}
.x12_c00132{left:413.071380px;}
.x5_c00132{left:420.296029px;}
.x13_c00132{left:431.773373px;}
.xd_c00132{left:478.619854px;}
.x1c_c00132{left:498.214346px;}
.x1b_c00132{left:499.753800px;}
.xe_c00132{left:501.773845px;}
.x1_c00132{left:505.976141px;}
.xf_c00132{left:532.588333px;}
.x10_c00132{left:565.007820px;}
@media print{
.v2_c00132{vertical-align:-5.077331pt;}
.v0_c00132{vertical-align:0.000000pt;}
.v3_c00132{vertical-align:5.077331pt;}
.v1_c00132{vertical-align:63.333308pt;}
.lsa_c00132{letter-spacing:0.000000pt;}
.ls7_c00132{letter-spacing:0.009336pt;}
.ls3_c00132{letter-spacing:0.014672pt;}
.ls0_c00132{letter-spacing:0.068347pt;}
.ls2_c00132{letter-spacing:1.284772pt;}
.ls5_c00132{letter-spacing:1.367148pt;}
.ls9_c00132{letter-spacing:1.377821pt;}
.ls1_c00132{letter-spacing:15.297407pt;}
.ls6_c00132{letter-spacing:212.239167pt;}
.ls8_c00132{letter-spacing:220.540425pt;}
.ls4_c00132{letter-spacing:220.556435pt;}
.ws0_c00132{word-spacing:-14.566794pt;}
.ws1_c00132{word-spacing:-10.608236pt;}
.ws2_c00132{word-spacing:-9.183223pt;}
.ws3_c00132{word-spacing:0.000000pt;}
._10_c00132{margin-left:-4.080460pt;}
._b_c00132{margin-left:-2.941141pt;}
._0_c00132{margin-left:-1.190569pt;}
._1_c00132{width:0.938922pt;}
._4_c00132{width:1.977197pt;}
._e_c00132{width:4.955494pt;}
._f_c00132{width:5.855115pt;}
._d_c00132{width:6.912323pt;}
._c_c00132{width:7.918401pt;}
._3_c00132{width:11.432741pt;}
._6_c00132{width:12.689852pt;}
._5_c00132{width:13.951631pt;}
._15_c00132{width:18.291673pt;}
._7_c00132{width:24.655813pt;}
._9_c00132{width:25.652286pt;}
._8_c00132{width:26.998185pt;}
._a_c00132{width:28.257248pt;}
._11_c00132{width:39.256693pt;}
._13_c00132{width:48.433079pt;}
._2_c00132{width:52.426185pt;}
._17_c00132{width:126.036900pt;}
._18_c00132{width:165.338492pt;}
._12_c00132{width:177.514350pt;}
._19_c00132{width:195.230220pt;}
._14_c00132{width:214.655910pt;}
._16_c00132{width:356.105922pt;}
.fs4_c00132{font-size:36.732892pt;}
.fs3_c00132{font-size:42.432943pt;}
.fs2_c00132{font-size:52.566166pt;}
.fs0_c00132{font-size:58.267177pt;}
.fs1_c00132{font-size:63.333308pt;}
.fs5_c00132{font-size:68.399973pt;}
.y4_c00132{bottom:-12.032637pt;}
.y0_c00132{bottom:0.000000pt;}
.y1_c00132{bottom:0.107500pt;}
.y2e_c00132{bottom:3.479332pt;}
.y1d_c00132{bottom:4.274943pt;}
.ya_c00132{bottom:6.068128pt;}
.yc_c00132{bottom:57.896246pt;}
.y3_c00132{bottom:70.615680pt;}
.y5_c00132{bottom:73.833137pt;}
.y2_c00132{bottom:74.783670pt;}
.y3c_c00132{bottom:100.170630pt;}
.y3b_c00132{bottom:113.470624pt;}
.y3a_c00132{bottom:126.928085pt;}
.y39_c00132{bottom:153.053142pt;}
.y38_c00132{bottom:182.183797pt;}
.y37_c00132{bottom:211.318452pt;}
.y36_c00132{bottom:240.453107pt;}
.y35_c00132{bottom:268.635762pt;}
.y34_c00132{bottom:297.135751pt;}
.y33_c00132{bottom:298.402417pt;}
.y30_c00132{bottom:304.363045pt;}
.y32_c00132{bottom:314.869077pt;}
.y2f_c00132{bottom:320.829705pt;}
.y31_c00132{bottom:333.339033pt;}
.y2d_c00132{bottom:333.923200pt;}
.y2c_c00132{bottom:356.195727pt;}
.y2b_c00132{bottom:384.853049pt;}
.y2a_c00132{bottom:401.791709pt;}
.y29_c00132{bottom:414.459704pt;}
.y28_c00132{bottom:426.491699pt;}
.y27_c00132{bottom:443.433026pt;}
.y26_c00132{bottom:455.781021pt;}
.y25_c00132{bottom:470.350348pt;}
.y24_c00132{bottom:501.381002pt;}
.y23_c00132{bottom:512.467665pt;}
.y22_c00132{bottom:539.384987pt;}
.y21_c00132{bottom:570.732975pt;}
.y20_c00132{bottom:603.823628pt;}
.y1f_c00132{bottom:618.864955pt;}
.y1e_c00132{bottom:624.825583pt;}
.y1c_c00132{bottom:638.076800pt;}
.y1b_c00132{bottom:667.314269pt;}
.y1a_c00132{bottom:685.364929pt;}
.y19_c00132{bottom:708.799453pt;}
.y18_c00132{bottom:736.190108pt;}
.y17_c00132{bottom:763.898231pt;}
.y15_c00132{bottom:788.440888pt;}
.y14_c00132{bottom:789.703554pt;}
.y16_c00132{bottom:789.707554pt;}
.y13_c00132{bottom:817.412876pt;}
.y12_c00132{bottom:844.014065pt;}
.y11_c00132{bottom:869.504855pt;}
.y10_c00132{bottom:870.771521pt;}
.yf_c00132{bottom:898.322177pt;}
.ye_c00132{bottom:925.712833pt;}
.yd_c00132{bottom:942.654559pt;}
.yb_c00132{bottom:973.054147pt;}
.y9_c00132{bottom:1000.388100pt;}
.y8_c00132{bottom:1018.912492pt;}
.y7_c00132{bottom:1037.122485pt;}
.y6_c00132{bottom:1055.329411pt;}
.h3_c00132{height:0.946240pt;}
.h14_c00132{height:14.088000pt;}
.hd_c00132{height:18.048000pt;}
.h11_c00132{height:23.215188pt;}
.hc_c00132{height:26.817620pt;}
.h8_c00132{height:33.221817pt;}
.h7_c00132{height:36.824856pt;}
.hb_c00132{height:38.019917pt;}
.he_c00132{height:40.026651pt;}
.h15_c00132{height:43.228783pt;}
.h10_c00132{height:47.046718pt;}
.h2_c00132{height:52.149123pt;}
.h13_c00132{height:52.207390pt;}
.h12_c00132{height:52.265657pt;}
.h4_c00132{height:56.683311pt;}
.ha_c00132{height:56.746644pt;}
.h9_c00132{height:56.809977pt;}
.h5_c00132{height:56.936644pt;}
.hf_c00132{height:120.079952pt;}
.h6_c00132{height:1110.960672pt;}
.h1_c00132{height:1122.559167pt;}
.h0_c00132{height:1122.666667pt;}
.w2_c00132{width:3.643200pt;}
.w7_c00132{width:7.758720pt;}
.w8_c00132{width:7.760000pt;}
.w5_c00132{width:9.339200pt;}
.w4_c00132{width:9.341920pt;}
.w6_c00132{width:9.342400pt;}
.w3_c00132{width:785.062974pt;}
.w1_c00132{width:793.257550pt;}
.w0_c00132{width:793.333333pt;}
.x0_c00132{left:0.000000pt;}
.x7_c00132{left:1.370626pt;}
.x8_c00132{left:100.224934pt;}
.x2_c00132{left:112.191772pt;}
.x14_c00132{left:113.366795pt;}
.x15_c00132{left:114.726171pt;}
.x9_c00132{left:136.007986pt;}
.xa_c00132{left:158.334644pt;}
.xb_c00132{left:159.759644pt;}
.x1d_c00132{left:176.539970pt;}
.x1a_c00132{left:177.899346pt;}
.xc_c00132{left:183.508358pt;}
.x16_c00132{left:189.313600pt;}
.x17_c00132{left:190.726007pt;}
.x11_c00132{left:207.255124pt;}
.x4_c00132{left:224.448440pt;}
.x18_c00132{left:235.702400pt;}
.x3_c00132{left:240.124654pt;}
.x6_c00132{left:262.924069pt;}
.x19_c00132{left:298.615921pt;}
.x12_c00132{left:367.174560pt;}
.x5_c00132{left:373.596470pt;}
.x13_c00132{left:383.798554pt;}
.xd_c00132{left:425.439870pt;}
.x1c_c00132{left:442.857197pt;}
.x1b_c00132{left:444.225600pt;}
.xe_c00132{left:446.021195pt;}
.x1_c00132{left:449.756570pt;}
.xf_c00132{left:473.411851pt;}
.x10_c00132{left:502.229173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00133;src:url('chunks/assets/font_9d01a295ed1ea56a484a2c4c.woff2')format("woff");}.ff5_c00133{font-family:ff5_c00133;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00133{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m6_c00133{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v2_c00133{vertical-align:-9.257996px;}
.v3_c00133{vertical-align:-5.699998px;}
.v0_c00133{vertical-align:0.000000px;}
.v5_c00133{vertical-align:5.705998px;}
.v1_c00133{vertical-align:56.285977px;}
.v4_c00133{vertical-align:65.542774px;}
.ls4_c00133{letter-spacing:0.000000px;}
.ls3_c00133{letter-spacing:1.427358px;}
.ls0_c00133{letter-spacing:1.451372px;}
.ls2_c00133{letter-spacing:1.538041px;}
.ls1_c00133{letter-spacing:1.544045px;}
.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:-17.812493px;}
.ws0_c00133{word-spacing:-16.387643px;}
.ws1_c00133{word-spacing:-10.331126px;}
.ws3_c00133{word-spacing:0.000000px;}
._12_c00133{margin-left:-12.108719px;}
._11_c00133{margin-left:-3.670885px;}
._3_c00133{margin-left:-2.484420px;}
._0_c00133{margin-left:-1.339390px;}
._1_c00133{width:1.056287px;}
._13_c00133{width:3.147957px;}
._14_c00133{width:4.405792px;}
._15_c00133{width:5.488039px;}
._17_c00133{width:6.501129px;}
._16_c00133{width:7.824459px;}
._18_c00133{width:8.846290px;}
._e_c00133{width:42.170780px;}
._f_c00133{width:50.981137px;}
._10_c00133{width:58.979458px;}
._8_c00133{width:63.101552px;}
._9_c00133{width:76.549028px;}
._b_c00133{width:82.700508px;}
._2_c00133{width:87.537322px;}
._5_c00133{width:94.819768px;}
._d_c00133{width:116.257768px;}
._7_c00133{width:125.526268px;}
._c_c00133{width:192.638790px;}
._a_c00133{width:202.496769px;}
._6_c00133{width:212.602959px;}
._4_c00133{width:213.908164px;}
.fc2_c00133{color:transparent;}
.fc1_c00133{color:rgb(105,148,45);}
.fc0_c00133{color:rgb(35,31,32);}
.fs6_c00133{font-size:32.774747px;}
.fs4_c00133{font-size:35.624626px;}
.fs8_c00133{font-size:38.474625px;}
.fs5_c00133{font-size:41.324503px;}
.fs7_c00133{font-size:53.436999px;}
.fs3_c00133{font-size:56.286877px;}
.fs2_c00133{font-size:59.136936px;}
.fs0_c00133{font-size:65.550574px;}
.fs1_c00133{font-size:71.249972px;}
.y4_c00133{bottom:-13.536716px;}
.y0_c00133{bottom:0.000000px;}
.y1_c00133{bottom:0.120938px;}
.y28_c00133{bottom:0.242579px;}
.ye_c00133{bottom:3.738187px;}
.y26_c00133{bottom:3.741306px;}
.y17_c00133{bottom:4.807412px;}
.y31_c00133{bottom:4.807530px;}
.y35_c00133{bottom:4.808156px;}
.y1b_c00133{bottom:4.809237px;}
.y1c_c00133{bottom:6.826644px;}
.yb_c00133{bottom:71.838984px;}
.y3_c00133{bottom:79.442640px;}
.y5_c00133{bottom:83.062279px;}
.y2_c00133{bottom:84.131629px;}
.y51_c00133{bottom:103.248562px;}
.y50_c00133{bottom:133.885750px;}
.y4f_c00133{bottom:155.792941px;}
.y4e_c00133{bottom:185.540779px;}
.y4d_c00133{bottom:185.546779px;}
.y4c_c00133{bottom:216.362617px;}
.y4b_c00133{bottom:247.354254px;}
.y4a_c00133{bottom:247.354404px;}
.y49_c00133{bottom:277.990242px;}
.y48_c00133{bottom:296.158235px;}
.y47_c00133{bottom:308.983230px;}
.y46_c00133{bottom:326.794223px;}
.y45_c00133{bottom:339.622217px;}
.y44_c00133{bottom:357.434710px;}
.y43_c00133{bottom:370.258205px;}
.y42_c00133{bottom:388.250698px;}
.y41_c00133{bottom:401.074193px;}
.y40_c00133{bottom:418.885186px;}
.y3f_c00133{bottom:431.711681px;}
.y3e_c00133{bottom:452.730557px;}
.y3d_c00133{bottom:467.515166px;}
.y3c_c00133{bottom:481.408161px;}
.y3b_c00133{bottom:493.165156px;}
.y3a_c00133{bottom:512.045648px;}
.y39_c00133{bottom:525.938643px;}
.y38_c00133{bottom:538.049638px;}
.y37_c00133{bottom:567.617626px;}
.y36_c00133{bottom:584.006620px;}
.y34_c00133{bottom:604.371600px;}
.y33_c00133{bottom:639.694807px;}
.y32_c00133{bottom:655.192800px;}
.y30_c00133{bottom:669.031200px;}
.y2b_c00133{bottom:704.053639px;}
.y2f_c00133{bottom:705.303139px;}
.y29_c00133{bottom:718.126634px;}
.y27_c00133{bottom:718.248275px;}
.y2d_c00133{bottom:720.442633px;}
.y2a_c00133{bottom:720.619633px;}
.y2c_c00133{bottom:732.019628px;}
.y2e_c00133{bottom:732.198128px;}
.y25_c00133{bottom:732.263400px;}
.y24_c00133{bottom:758.744550px;}
.y23_c00133{bottom:777.805222px;}
.y22_c00133{bottom:792.589126px;}
.y21_c00133{bottom:807.373030px;}
.y20_c00133{bottom:822.158524px;}
.y1f_c00133{bottom:836.050019px;}
.y1e_c00133{bottom:865.262507px;}
.y1d_c00133{bottom:881.650001px;}
.y1a_c00133{bottom:902.192400px;}
.y19_c00133{bottom:937.339688px;}
.y18_c00133{bottom:952.659181px;}
.y16_c00133{bottom:966.319200px;}
.y11_c00133{bottom:1001.820162px;}
.y15_c00133{bottom:1002.535661px;}
.yf_c00133{bottom:1015.891656px;}
.y13_c00133{bottom:1018.387655px;}
.y10_c00133{bottom:1018.564655px;}
.y14_c00133{bottom:1019.100155px;}
.yd_c00133{bottom:1029.731400px;}
.y12_c00133{bottom:1029.783151px;}
.yc_c00133{bottom:1062.916637px;}
.ya_c00133{bottom:1101.391622px;}
.y9_c00133{bottom:1125.436612px;}
.y8_c00133{bottom:1146.276554px;}
.y7_c00133{bottom:1166.762796px;}
.y6_c00133{bottom:1187.245588px;}
.h3_c00133{height:1.064520px;}
.h9_c00133{height:15.676200px;}
.h18_c00133{height:19.056600px;}
.h12_c00133{height:19.060200px;}
.h19_c00133{height:19.062000px;}
.hf_c00133{height:19.416600px;}
.he_c00133{height:20.713640px;}
.hd_c00133{height:22.514763px;}
.h1c_c00133{height:24.315963px;}
.h1a_c00133{height:26.117086px;}
.h16_c00133{height:33.772183px;}
.ha_c00133{height:35.573307px;}
.h7_c00133{height:37.374544px;}
.h6_c00133{height:41.427963px;}
.h10_c00133{height:45.029982px;}
.h15_c00133{height:52.927558px;}
.h2_c00133{height:58.667764px;}
.hb_c00133{height:58.733314px;}
.h8_c00133{height:58.798865px;}
.h4_c00133{height:63.768724px;}
.h1b_c00133{height:63.839974px;}
.h5_c00133{height:64.053724px;}
.hc_c00133{height:115.019292px;}
.h14_c00133{height:124.270088px;}
.h11_c00133{height:124.276088px;}
.h13_c00133{height:1249.830756px;}
.h17_c00133{height:1262.757421px;}
.h1_c00133{height:1262.879062px;}
.h0_c00133{height:1263.000000px;}
.w2_c00133{width:4.098600px;}
.w4_c00133{width:8.190000px;}
.w7_c00133{width:8.191800px;}
.w9_c00133{width:8.193600px;}
.w3_c00133{width:8.194140px;}
.w5_c00133{width:10.509660px;}
.w6_c00133{width:883.195846px;}
.w8_c00133{width:892.330200px;}
.w1_c00133{width:892.414744px;}
.w0_c00133{width:892.500000px;}
.x0_c00133{left:0.000000px;}
.x16_c00133{left:1.541954px;}
.x18_c00133{left:112.753050px;}
.x7_c00133{left:114.282348px;}
.x2_c00133{left:126.215743px;}
.x9_c00133{left:127.297980px;}
.x8_c00133{left:129.066942px;}
.x17_c00133{left:178.837474px;}
.x19_c00133{left:190.177200px;}
.x1a_c00133{left:191.931111px;}
.xa_c00133{left:193.028400px;}
.xb_c00133{left:194.795266px;}
.x24_c00133{left:206.444963px;}
.x27_c00133{left:233.161966px;}
.x4_c00133{left:252.504495px;}
.x1b_c00133{left:256.411585px;}
.x1c_c00133{left:258.193584px;}
.xc_c00133{left:262.302739px;}
.xd_c00133{left:264.089238px;}
.x3_c00133{left:270.140236px;}
.x6_c00133{left:295.789578px;}
.x1e_c00133{left:365.959541px;}
.x1d_c00133{left:367.741540px;}
.xf_c00133{left:376.833693px;}
.xe_c00133{left:378.615692px;}
.x25_c00133{left:380.114894px;}
.x28_c00133{left:382.610893px;}
.x2a_c00133{left:384.392892px;}
.x26_c00133{left:395.258887px;}
.x29_c00133{left:397.574887px;}
.x2b_c00133{left:399.533886px;}
.x20_c00133{left:415.477521px;}
.x1f_c00133{left:417.258021px;}
.x5_c00133{left:420.296029px;}
.x11_c00133{left:428.670672px;}
.x10_c00133{left:430.452672px;}
.x21_c00133{left:472.829998px;}
.x13_c00133{left:480.507652px;}
.x12_c00133{left:482.286651px;}
.x1_c00133{left:505.976141px;}
.x14_c00133{left:532.175400px;}
.x15_c00133{left:533.939130px;}
.x22_c00133{left:535.381200px;}
.x23_c00133{left:537.147629px;}
@media print{
.v2_c00133{vertical-align:-8.229330pt;}
.v3_c00133{vertical-align:-5.066665pt;}
.v0_c00133{vertical-align:0.000000pt;}
.v5_c00133{vertical-align:5.071998pt;}
.v1_c00133{vertical-align:50.031980pt;}
.v4_c00133{vertical-align:58.260243pt;}
.ls4_c00133{letter-spacing:0.000000pt;}
.ls3_c00133{letter-spacing:1.268763pt;}
.ls0_c00133{letter-spacing:1.290109pt;}
.ls2_c00133{letter-spacing:1.367148pt;}
.ls1_c00133{letter-spacing:1.372484pt;}
.ws2_c00133{word-spacing:-15.833327pt;}
.ws0_c00133{word-spacing:-14.566794pt;}
.ws1_c00133{word-spacing:-9.183223pt;}
.ws3_c00133{word-spacing:0.000000pt;}
._12_c00133{margin-left:-10.763306pt;}
._11_c00133{margin-left:-3.263009pt;}
._3_c00133{margin-left:-2.208373pt;}
._0_c00133{margin-left:-1.190569pt;}
._1_c00133{width:0.938922pt;}
._13_c00133{width:2.798184pt;}
._14_c00133{width:3.916259pt;}
._15_c00133{width:4.878257pt;}
._17_c00133{width:5.778781pt;}
._16_c00133{width:6.955075pt;}
._18_c00133{width:7.863369pt;}
._e_c00133{width:37.485138pt;}
._f_c00133{width:45.316566pt;}
._10_c00133{width:52.426185pt;}
._8_c00133{width:56.090268pt;}
._9_c00133{width:68.043580pt;}
._b_c00133{width:73.511563pt;}
._2_c00133{width:77.810953pt;}
._5_c00133{width:84.284239pt;}
._d_c00133{width:103.340239pt;}
._7_c00133{width:111.578905pt;}
._c_c00133{width:171.234480pt;}
._a_c00133{width:179.997128pt;}
._6_c00133{width:188.980408pt;}
._4_c00133{width:190.140591pt;}
.fs6_c00133{font-size:29.133108pt;}
.fs4_c00133{font-size:31.666334pt;}
.fs8_c00133{font-size:34.199666pt;}
.fs5_c00133{font-size:36.732892pt;}
.fs7_c00133{font-size:47.499554pt;}
.fs3_c00133{font-size:50.032780pt;}
.fs2_c00133{font-size:52.566166pt;}
.fs0_c00133{font-size:58.267177pt;}
.fs1_c00133{font-size:63.333308pt;}
.y4_c00133{bottom:-12.032637pt;}
.y0_c00133{bottom:0.000000pt;}
.y1_c00133{bottom:0.107500pt;}
.y28_c00133{bottom:0.215626pt;}
.ye_c00133{bottom:3.322833pt;}
.y26_c00133{bottom:3.325605pt;}
.y17_c00133{bottom:4.273255pt;}
.y31_c00133{bottom:4.273360pt;}
.y35_c00133{bottom:4.273917pt;}
.y1b_c00133{bottom:4.274878pt;}
.y1c_c00133{bottom:6.068128pt;}
.yb_c00133{bottom:63.856874pt;}
.y3_c00133{bottom:70.615680pt;}
.y5_c00133{bottom:73.833137pt;}
.y2_c00133{bottom:74.783670pt;}
.y51_c00133{bottom:91.776500pt;}
.y50_c00133{bottom:119.009555pt;}
.y4f_c00133{bottom:138.482614pt;}
.y4e_c00133{bottom:164.925137pt;}
.y4d_c00133{bottom:164.930470pt;}
.y4c_c00133{bottom:192.322326pt;}
.y4b_c00133{bottom:219.870448pt;}
.y4a_c00133{bottom:219.870582pt;}
.y49_c00133{bottom:247.102437pt;}
.y48_c00133{bottom:263.251764pt;}
.y47_c00133{bottom:274.651760pt;}
.y46_c00133{bottom:290.483753pt;}
.y45_c00133{bottom:301.886415pt;}
.y44_c00133{bottom:317.719742pt;}
.y43_c00133{bottom:329.118405pt;}
.y42_c00133{bottom:345.111732pt;}
.y41_c00133{bottom:356.510394pt;}
.y40_c00133{bottom:372.342387pt;}
.y3f_c00133{bottom:383.743716pt;}
.y3e_c00133{bottom:402.427162pt;}
.y3d_c00133{bottom:415.569037pt;}
.y3c_c00133{bottom:427.918365pt;}
.y3b_c00133{bottom:438.369028pt;}
.y3a_c00133{bottom:455.151688pt;}
.y39_c00133{bottom:467.501016pt;}
.y38_c00133{bottom:478.266345pt;}
.y37_c00133{bottom:504.549001pt;}
.y36_c00133{bottom:519.116995pt;}
.y34_c00133{bottom:537.219200pt;}
.y33_c00133{bottom:568.617606pt;}
.y32_c00133{bottom:582.393600pt;}
.y30_c00133{bottom:594.694400pt;}
.y2b_c00133{bottom:625.825457pt;}
.y2f_c00133{bottom:626.936124pt;}
.y29_c00133{bottom:638.334786pt;}
.y27_c00133{bottom:638.442911pt;}
.y2d_c00133{bottom:640.393451pt;}
.y2a_c00133{bottom:640.550785pt;}
.y2c_c00133{bottom:650.684114pt;}
.y2e_c00133{bottom:650.842781pt;}
.y25_c00133{bottom:650.900800pt;}
.y24_c00133{bottom:674.439600pt;}
.y23_c00133{bottom:691.382420pt;}
.y22_c00133{bottom:704.523668pt;}
.y21_c00133{bottom:717.664916pt;}
.y20_c00133{bottom:730.807577pt;}
.y1f_c00133{bottom:743.155572pt;}
.y1e_c00133{bottom:769.122229pt;}
.y1d_c00133{bottom:783.688889pt;}
.y1a_c00133{bottom:801.948800pt;}
.y19_c00133{bottom:833.190833pt;}
.y18_c00133{bottom:846.808161pt;}
.y16_c00133{bottom:858.950400pt;}
.y11_c00133{bottom:890.506810pt;}
.y15_c00133{bottom:891.142810pt;}
.yf_c00133{bottom:903.014805pt;}
.y13_c00133{bottom:905.233471pt;}
.y10_c00133{bottom:905.390804pt;}
.y14_c00133{bottom:905.866804pt;}
.yd_c00133{bottom:915.316800pt;}
.y12_c00133{bottom:915.362800pt;}
.yc_c00133{bottom:944.814789pt;}
.ya_c00133{bottom:979.014775pt;}
.y9_c00133{bottom:1000.388100pt;}
.y8_c00133{bottom:1018.912492pt;}
.y7_c00133{bottom:1037.122485pt;}
.y6_c00133{bottom:1055.329411pt;}
.h3_c00133{height:0.946240pt;}
.h9_c00133{height:13.934400pt;}
.h18_c00133{height:16.939200pt;}
.h12_c00133{height:16.942400pt;}
.h19_c00133{height:16.944000pt;}
.hf_c00133{height:17.259200pt;}
.he_c00133{height:18.412124pt;}
.hd_c00133{height:20.013123pt;}
.h1c_c00133{height:21.614189pt;}
.h1a_c00133{height:23.215188pt;}
.h16_c00133{height:30.019718pt;}
.ha_c00133{height:31.620717pt;}
.h7_c00133{height:33.221817pt;}
.h6_c00133{height:36.824856pt;}
.h10_c00133{height:40.026651pt;}
.h15_c00133{height:47.046718pt;}
.h2_c00133{height:52.149123pt;}
.hb_c00133{height:52.207390pt;}
.h8_c00133{height:52.265657pt;}
.h4_c00133{height:56.683311pt;}
.h1b_c00133{height:56.746644pt;}
.h5_c00133{height:56.936644pt;}
.hc_c00133{height:102.239370pt;}
.h14_c00133{height:110.462300pt;}
.h11_c00133{height:110.467634pt;}
.h13_c00133{height:1110.960672pt;}
.h17_c00133{height:1122.451041pt;}
.h1_c00133{height:1122.559167pt;}
.h0_c00133{height:1122.666667pt;}
.w2_c00133{width:3.643200pt;}
.w4_c00133{width:7.280000pt;}
.w7_c00133{width:7.281600pt;}
.w9_c00133{width:7.283200pt;}
.w3_c00133{width:7.283680pt;}
.w5_c00133{width:9.341920pt;}
.w6_c00133{width:785.062974pt;}
.w8_c00133{width:793.182400pt;}
.w1_c00133{width:793.257550pt;}
.w0_c00133{width:793.333333pt;}
.x0_c00133{left:0.000000pt;}
.x16_c00133{left:1.370626pt;}
.x18_c00133{left:100.224934pt;}
.x7_c00133{left:101.584309pt;}
.x2_c00133{left:112.191772pt;}
.x9_c00133{left:113.153760pt;}
.x8_c00133{left:114.726171pt;}
.x17_c00133{left:158.966644pt;}
.x19_c00133{left:169.046400pt;}
.x1a_c00133{left:170.605432pt;}
.xa_c00133{left:171.580800pt;}
.xb_c00133{left:173.151347pt;}
.x24_c00133{left:183.506634pt;}
.x27_c00133{left:207.255081pt;}
.x4_c00133{left:224.448440pt;}
.x1b_c00133{left:227.921409pt;}
.x1c_c00133{left:229.505408pt;}
.xc_c00133{left:233.157990pt;}
.xd_c00133{left:234.745989pt;}
.x3_c00133{left:240.124654pt;}
.x6_c00133{left:262.924069pt;}
.x1e_c00133{left:325.297370pt;}
.x1d_c00133{left:326.881369pt;}
.xf_c00133{left:334.963283pt;}
.xe_c00133{left:336.547282pt;}
.x25_c00133{left:337.879905pt;}
.x28_c00133{left:340.098571pt;}
.x2a_c00133{left:341.682571pt;}
.x26_c00133{left:351.341233pt;}
.x29_c00133{left:353.399899pt;}
.x2b_c00133{left:355.141232pt;}
.x20_c00133{left:369.313352pt;}
.x1f_c00133{left:370.896018pt;}
.x5_c00133{left:373.596470pt;}
.x11_c00133{left:381.040598pt;}
.x10_c00133{left:382.624597pt;}
.x21_c00133{left:420.293332pt;}
.x13_c00133{left:427.117912pt;}
.x12_c00133{left:428.699245pt;}
.x1_c00133{left:449.756570pt;}
.x14_c00133{left:473.044800pt;}
.x15_c00133{left:474.612560pt;}
.x22_c00133{left:475.894400pt;}
.x23_c00133{left:477.464559pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00134;src:url('chunks/assets/font_fe56946a50dd066b2445f53d.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00134;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff6_c00134{font-family:ff6_c00134;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00134{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m8_c00134{transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls1_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:0.312600px;}
.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;}
}
.ws4_c00134{word-spacing:-44.352702px;}
.ws2_c00134{word-spacing:-37.443570px;}
.ws1_c00134{word-spacing:-17.812493px;}
.ws0_c00134{word-spacing:-16.387643px;}
.ws3_c00134{word-spacing:-14.784234px;}
.ws5_c00134{word-spacing:0.000000px;}
._a_c00134{margin-left:-8.367581px;}
._3_c00134{margin-left:-3.591773px;}
._8_c00134{margin-left:-2.370514px;}
._0_c00134{margin-left:-1.339390px;}
._1_c00134{width:1.056287px;}
._9_c00134{width:2.166231px;}
._5_c00134{width:3.490830px;}
._4_c00134{width:5.868113px;}
._6_c00134{width:7.602386px;}
._7_c00134{width:18.181369px;}
._f_c00134{width:28.602489px;}
._e_c00134{width:38.413720px;}
._13_c00134{width:48.395339px;}
._16_c00134{width:50.720376px;}
._11_c00134{width:55.232194px;}
._2_c00134{width:58.979458px;}
._d_c00134{width:59.990617px;}
._c_c00134{width:63.374037px;}
._14_c00134{width:68.732601px;}
._12_c00134{width:75.719485px;}
._10_c00134{width:78.979699px;}
._b_c00134{width:90.291662px;}
._15_c00134{width:117.947692px;}
._17_c00134{width:133.257274px;}
.fc2_c00134{color:transparent;}
.fc1_c00134{color:rgb(105,148,45);}
.fc0_c00134{color:rgb(35,31,32);}
.fs3_c00134{font-size:38.474625px;}
.fs6_c00134{font-size:44.887062px;}
.fs4_c00134{font-size:47.737061px;}
.fs2_c00134{font-size:59.136936px;}
.fs0_c00134{font-size:65.550574px;}
.fs1_c00134{font-size:71.249972px;}
.fs5_c00134{font-size:76.949969px;}
.y4_c00134{bottom:-13.536716px;}
.y0_c00134{bottom:0.000000px;}
.y1_c00134{bottom:0.120938px;}
.y29_c00134{bottom:3.028248px;}
.y26_c00134{bottom:5.164851px;}
.ya_c00134{bottom:6.826644px;}
.yc_c00134{bottom:65.133277px;}
.y3_c00134{bottom:79.442640px;}
.y5_c00134{bottom:83.062279px;}
.y2_c00134{bottom:84.131629px;}
.y40_c00134{bottom:256.972250px;}
.y3f_c00134{bottom:278.701242px;}
.y3e_c00134{bottom:300.254733px;}
.y3d_c00134{bottom:321.811225px;}
.y3c_c00134{bottom:343.183216px;}
.y3b_c00134{bottom:364.912207px;}
.y3a_c00134{bottom:386.470199px;}
.y39_c00134{bottom:408.017690px;}
.y38_c00134{bottom:429.574181px;}
.y37_c00134{bottom:451.304673px;}
.y36_c00134{bottom:472.855164px;}
.y35_c00134{bottom:494.411656px;}
.y34_c00134{bottom:515.962147px;}
.y33_c00134{bottom:537.338638px;}
.y32_c00134{bottom:558.181130px;}
.y31_c00134{bottom:579.907121px;}
.y30_c00134{bottom:596.828615px;}
.y2b_c00134{bottom:597.123324px;}
.y2d_c00134{bottom:597.303324px;}
.y2f_c00134{bottom:598.967614px;}
.y27_c00134{bottom:605.673320px;}
.y2a_c00134{bottom:613.869317px;}
.y2c_c00134{bottom:614.221817px;}
.y25_c00134{bottom:617.909400px;}
.y2e_c00134{bottom:625.090812px;}
.y28_c00134{bottom:626.994000px;}
.y24_c00134{bottom:640.292597px;}
.y23_c00134{bottom:658.459090px;}
.y22_c00134{bottom:675.378648px;}
.y21_c00134{bottom:690.343962px;}
.y20_c00134{bottom:705.128571px;}
.y1f_c00134{bottom:731.672711px;}
.y1e_c00134{bottom:762.308548px;}
.y1d_c00134{bottom:781.900041px;}
.y1c_c00134{bottom:797.750534px;}
.y1b_c00134{bottom:824.118574px;}
.y1a_c00134{bottom:854.578011px;}
.y19_c00134{bottom:873.635504px;}
.y18_c00134{bottom:888.063998px;}
.y17_c00134{bottom:902.492492px;}
.y16_c00134{bottom:920.304985px;}
.y15_c00134{bottom:933.126980px;}
.y14_c00134{bottom:950.940973px;}
.y13_c00134{bottom:963.765968px;}
.y12_c00134{bottom:981.756961px;}
.y11_c00134{bottom:994.580455px;}
.y10_c00134{bottom:1012.394448px;}
.yf_c00134{bottom:1025.217943px;}
.ye_c00134{bottom:1044.633935px;}
.yd_c00134{bottom:1060.486379px;}
.yb_c00134{bottom:1094.685915px;}
.y9_c00134{bottom:1125.436612px;}
.y8_c00134{bottom:1146.276554px;}
.y7_c00134{bottom:1166.762796px;}
.y6_c00134{bottom:1187.245588px;}
.h3_c00134{height:1.064520px;}
.h10_c00134{height:12.288600px;}
.hd_c00134{height:21.373200px;}
.ha_c00134{height:24.315963px;}
.h11_c00134{height:28.368623px;}
.hb_c00134{height:30.169822px;}
.h8_c00134{height:37.374544px;}
.h7_c00134{height:41.427963px;}
.h12_c00134{height:43.051690px;}
.he_c00134{height:48.632381px;}
.hf_c00134{height:52.986695px;}
.hc_c00134{height:53.045832px;}
.h2_c00134{height:58.667764px;}
.h4_c00134{height:63.768724px;}
.h9_c00134{height:63.839974px;}
.h5_c00134{height:64.053724px;}
.h6_c00134{height:1249.830756px;}
.h1_c00134{height:1262.879062px;}
.h0_c00134{height:1263.000000px;}
.w2_c00134{width:4.098600px;}
.w5_c00134{width:6.591600px;}
.w6_c00134{width:6.595200px;}
.w7_c00134{width:11.221200px;}
.w8_c00134{width:11.223000px;}
.w4_c00134{width:11.223360px;}
.w3_c00134{width:883.195846px;}
.w1_c00134{width:892.414744px;}
.w0_c00134{width:892.500000px;}
.x0_c00134{left:0.000000px;}
.x7_c00134{left:1.541954px;}
.x8_c00134{left:112.753050px;}
.xe_c00134{left:125.159760px;}
.x2_c00134{left:126.215743px;}
.x2b_c00134{left:142.142989px;}
.x2a_c00134{left:145.885787px;}
.x2c_c00134{left:153.008984px;}
.x2d_c00134{left:156.569983px;}
.xc_c00134{left:178.837474px;}
.x9_c00134{left:180.617973px;}
.xf_c00134{left:188.915268px;}
.xb_c00134{left:206.444963px;}
.xd_c00134{left:251.332445px;}
.x4_c00134{left:252.504495px;}
.x3_c00134{left:270.140236px;}
.x10_c00134{left:284.756400px;}
.x12_c00134{left:294.186726px;}
.x6_c00134{left:295.789578px;}
.x11_c00134{left:299.709724px;}
.x13_c00134{left:324.835200px;}
.x14_c00134{left:329.274712px;}
.x15_c00134{left:344.061706px;}
.xa_c00134{left:351.260905px;}
.x1c_c00134{left:398.462886px;}
.x1b_c00134{left:400.243385px;}
.x5_c00134{left:420.296029px;}
.x1d_c00134{left:441.925369px;}
.x1e_c00134{left:443.885868px;}
.x16_c00134{left:464.651158px;}
.x1f_c00134{left:487.880850px;}
.x20_c00134{left:489.484350px;}
.x1_c00134{left:505.976141px;}
.x22_c00134{left:526.000335px;}
.x21_c00134{left:532.588333px;}
.x23_c00134{left:538.468330px;}
.x25_c00134{left:571.423317px;}
.x24_c00134{left:576.407815px;}
.x26_c00134{left:583.889812px;}
.x28_c00134{left:616.841799px;}
.x27_c00134{left:622.187797px;}
.x29_c00134{left:629.309794px;}
.x17_c00134{left:656.859600px;}
.x18_c00134{left:660.227080px;}
.x19_c00134{left:705.308400px;}
.x1a_c00134{left:710.890261px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls1_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:0.277867pt;}
.ws4_c00134{word-spacing:-39.424624pt;}
.ws2_c00134{word-spacing:-33.283173pt;}
.ws1_c00134{word-spacing:-15.833327pt;}
.ws0_c00134{word-spacing:-14.566794pt;}
.ws3_c00134{word-spacing:-13.141541pt;}
.ws5_c00134{word-spacing:0.000000pt;}
._a_c00134{margin-left:-7.437850pt;}
._3_c00134{margin-left:-3.192687pt;}
._8_c00134{margin-left:-2.107123pt;}
._0_c00134{margin-left:-1.190569pt;}
._1_c00134{width:0.938922pt;}
._9_c00134{width:1.925539pt;}
._5_c00134{width:3.102960pt;}
._4_c00134{width:5.216101pt;}
._6_c00134{width:6.757676pt;}
._7_c00134{width:16.161217pt;}
._f_c00134{width:25.424435pt;}
._e_c00134{width:34.145529pt;}
._13_c00134{width:43.018079pt;}
._16_c00134{width:45.084779pt;}
._11_c00134{width:49.095284pt;}
._2_c00134{width:52.426185pt;}
._d_c00134{width:53.324993pt;}
._c_c00134{width:56.332477pt;}
._14_c00134{width:61.095645pt;}
._12_c00134{width:67.306209pt;}
._10_c00134{width:70.204177pt;}
._b_c00134{width:80.259255pt;}
._15_c00134{width:104.842393pt;}
._17_c00134{width:118.450910pt;}
.fs3_c00134{font-size:34.199666pt;}
.fs6_c00134{font-size:39.899611pt;}
.fs4_c00134{font-size:42.432943pt;}
.fs2_c00134{font-size:52.566166pt;}
.fs0_c00134{font-size:58.267177pt;}
.fs1_c00134{font-size:63.333308pt;}
.fs5_c00134{font-size:68.399973pt;}
.y4_c00134{bottom:-12.032637pt;}
.y0_c00134{bottom:0.000000pt;}
.y1_c00134{bottom:0.107500pt;}
.y29_c00134{bottom:2.691776pt;}
.y26_c00134{bottom:4.590978pt;}
.ya_c00134{bottom:6.068128pt;}
.yc_c00134{bottom:57.896246pt;}
.y3_c00134{bottom:70.615680pt;}
.y5_c00134{bottom:73.833137pt;}
.y2_c00134{bottom:74.783670pt;}
.y40_c00134{bottom:228.419778pt;}
.y3f_c00134{bottom:247.734437pt;}
.y3e_c00134{bottom:266.893096pt;}
.y3d_c00134{bottom:286.054422pt;}
.y3c_c00134{bottom:305.051748pt;}
.y3b_c00134{bottom:324.366406pt;}
.y3a_c00134{bottom:343.529065pt;}
.y39_c00134{bottom:362.682391pt;}
.y38_c00134{bottom:381.843717pt;}
.y37_c00134{bottom:401.159709pt;}
.y36_c00134{bottom:420.315701pt;}
.y35_c00134{bottom:439.477027pt;}
.y34_c00134{bottom:458.633019pt;}
.y33_c00134{bottom:477.634345pt;}
.y32_c00134{bottom:496.161004pt;}
.y31_c00134{bottom:515.472997pt;}
.y30_c00134{bottom:530.514324pt;}
.y2b_c00134{bottom:530.776288pt;}
.y2d_c00134{bottom:530.936288pt;}
.y2f_c00134{bottom:532.415657pt;}
.y27_c00134{bottom:538.376285pt;}
.y2a_c00134{bottom:545.661615pt;}
.y2c_c00134{bottom:545.974948pt;}
.y25_c00134{bottom:549.252800pt;}
.y2e_c00134{bottom:555.636278pt;}
.y28_c00134{bottom:557.328000pt;}
.y24_c00134{bottom:569.148975pt;}
.y23_c00134{bottom:585.296969pt;}
.y22_c00134{bottom:600.336576pt;}
.y21_c00134{bottom:613.639077pt;}
.y20_c00134{bottom:626.780952pt;}
.y1f_c00134{bottom:650.375743pt;}
.y1e_c00134{bottom:677.607599pt;}
.y1d_c00134{bottom:695.022258pt;}
.y1c_c00134{bottom:709.111586pt;}
.y1b_c00134{bottom:732.549843pt;}
.y1a_c00134{bottom:759.624899pt;}
.y19_c00134{bottom:776.564892pt;}
.y18_c00134{bottom:789.390220pt;}
.y17_c00134{bottom:802.215549pt;}
.y16_c00134{bottom:818.048876pt;}
.y15_c00134{bottom:829.446204pt;}
.y14_c00134{bottom:845.280865pt;}
.y13_c00134{bottom:856.680860pt;}
.y12_c00134{bottom:872.672854pt;}
.y11_c00134{bottom:884.071516pt;}
.y10_c00134{bottom:899.906176pt;}
.yf_c00134{bottom:911.304838pt;}
.ye_c00134{bottom:928.563498pt;}
.yd_c00134{bottom:942.654559pt;}
.yb_c00134{bottom:973.054147pt;}
.y9_c00134{bottom:1000.388100pt;}
.y8_c00134{bottom:1018.912492pt;}
.y7_c00134{bottom:1037.122485pt;}
.y6_c00134{bottom:1055.329411pt;}
.h3_c00134{height:0.946240pt;}
.h10_c00134{height:10.923200pt;}
.hd_c00134{height:18.998400pt;}
.ha_c00134{height:21.614189pt;}
.h11_c00134{height:25.216554pt;}
.hb_c00134{height:26.817620pt;}
.h8_c00134{height:33.221817pt;}
.h7_c00134{height:36.824856pt;}
.h12_c00134{height:38.268169pt;}
.he_c00134{height:43.228783pt;}
.hf_c00134{height:47.099284pt;}
.hc_c00134{height:47.151851pt;}
.h2_c00134{height:52.149123pt;}
.h4_c00134{height:56.683311pt;}
.h9_c00134{height:56.746644pt;}
.h5_c00134{height:56.936644pt;}
.h6_c00134{height:1110.960672pt;}
.h1_c00134{height:1122.559167pt;}
.h0_c00134{height:1122.666667pt;}
.w2_c00134{width:3.643200pt;}
.w5_c00134{width:5.859200pt;}
.w6_c00134{width:5.862400pt;}
.w7_c00134{width:9.974400pt;}
.w8_c00134{width:9.976000pt;}
.w4_c00134{width:9.976320pt;}
.w3_c00134{width:785.062974pt;}
.w1_c00134{width:793.257550pt;}
.w0_c00134{width:793.333333pt;}
.x0_c00134{left:0.000000pt;}
.x7_c00134{left:1.370626pt;}
.x8_c00134{left:100.224934pt;}
.xe_c00134{left:111.253120pt;}
.x2_c00134{left:112.191772pt;}
.x2b_c00134{left:126.349323pt;}
.x2a_c00134{left:129.676255pt;}
.x2c_c00134{left:136.007986pt;}
.x2d_c00134{left:139.173318pt;}
.xc_c00134{left:158.966644pt;}
.x9_c00134{left:160.549310pt;}
.xf_c00134{left:167.924683pt;}
.xb_c00134{left:183.506634pt;}
.xd_c00134{left:223.406618pt;}
.x4_c00134{left:224.448440pt;}
.x3_c00134{left:240.124654pt;}
.x10_c00134{left:253.116800pt;}
.x12_c00134{left:261.499312pt;}
.x6_c00134{left:262.924069pt;}
.x11_c00134{left:266.408643pt;}
.x13_c00134{left:288.742400pt;}
.x14_c00134{left:292.688633pt;}
.x15_c00134{left:305.832628pt;}
.xa_c00134{left:312.231916pt;}
.x1c_c00134{left:354.189232pt;}
.x1b_c00134{left:355.771898pt;}
.x5_c00134{left:373.596470pt;}
.x1d_c00134{left:392.822550pt;}
.x1e_c00134{left:394.565216pt;}
.x16_c00134{left:413.023251pt;}
.x1f_c00134{left:433.671867pt;}
.x20_c00134{left:435.097200pt;}
.x1_c00134{left:449.756570pt;}
.x22_c00134{left:467.555853pt;}
.x21_c00134{left:473.411851pt;}
.x23_c00134{left:478.638516pt;}
.x25_c00134{left:507.931837pt;}
.x24_c00134{left:512.362502pt;}
.x26_c00134{left:519.013166pt;}
.x28_c00134{left:548.303821pt;}
.x27_c00134{left:553.055819pt;}
.x29_c00134{left:559.386483pt;}
.x17_c00134{left:583.875200pt;}
.x18_c00134{left:586.868515pt;}
.x19_c00134{left:626.940800pt;}
.x1a_c00134{left:631.902454pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00135;src:url('chunks/assets/font_fe56946a50dd066b2445f53d.woff2')format("woff");}.ff6_c00135{font-family:ff6_c00135;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00135{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m6_c00135{transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00135{word-spacing:-44.352702px;}
.ws0_c00135{word-spacing:-16.387643px;}
.ws1_c00135{word-spacing:-14.784234px;}
.ws3_c00135{word-spacing:0.000000px;}
._4_c00135{margin-left:-8.367581px;}
._5_c00135{margin-left:-2.520676px;}
._0_c00135{margin-left:-1.339390px;}
._1_c00135{width:1.056287px;}
._3_c00135{width:2.114682px;}
._2_c00135{width:3.130324px;}
._b_c00135{width:29.457849px;}
._12_c00135{width:37.703321px;}
._9_c00135{width:39.024137px;}
._a_c00135{width:47.685398px;}
._11_c00135{width:49.104085px;}
._8_c00135{width:50.720640px;}
._d_c00135{width:55.232372px;}
._10_c00135{width:59.990769px;}
._7_c00135{width:63.373773px;}
._c_c00135{width:68.967010px;}
._f_c00135{width:75.719485px;}
._e_c00135{width:79.034452px;}
._6_c00135{width:117.947692px;}
.fc2_c00135{color:transparent;}
.fc1_c00135{color:rgb(105,148,45);}
.fc0_c00135{color:rgb(35,31,32);}
.fs4_c00135{font-size:44.887062px;}
.fs2_c00135{font-size:59.136936px;}
.fs0_c00135{font-size:65.550574px;}
.fs1_c00135{font-size:71.249972px;}
.fs3_c00135{font-size:76.949969px;}
.y4_c00135{bottom:-13.536716px;}
.y0_c00135{bottom:0.000000px;}
.y1_c00135{bottom:0.120938px;}
.y10_c00135{bottom:0.485156px;}
.y13_c00135{bottom:3.026289px;}
.yf_c00135{bottom:5.162592px;}
.y1a_c00135{bottom:6.826644px;}
.yb_c00135{bottom:71.838984px;}
.y3_c00135{bottom:79.442640px;}
.y5_c00135{bottom:83.062279px;}
.y2_c00135{bottom:84.131629px;}
.y45_c00135{bottom:114.650807px;}
.y44_c00135{bottom:136.206549px;}
.y43_c00135{bottom:157.754790px;}
.y42_c00135{bottom:179.311282px;}
.y41_c00135{bottom:200.860273px;}
.y40_c00135{bottom:222.416764px;}
.y3f_c00135{bottom:244.148756px;}
.y3e_c00135{bottom:265.697747px;}
.y3d_c00135{bottom:287.251238px;}
.y3c_c00135{bottom:308.803230px;}
.y3b_c00135{bottom:330.356721px;}
.y3a_c00135{bottom:351.911713px;}
.y39_c00135{bottom:373.465204px;}
.y38_c00135{bottom:395.015695px;}
.y37_c00135{bottom:416.572187px;}
.y36_c00135{bottom:438.302678px;}
.y35_c00135{bottom:459.853169px;}
.y34_c00135{bottom:481.408161px;}
.y33_c00135{bottom:502.960152px;}
.y32_c00135{bottom:524.692143px;}
.y31_c00135{bottom:546.245635px;}
.y30_c00135{bottom:567.617626px;}
.y2f_c00135{bottom:589.174118px;}
.y2e_c00135{bottom:610.900109px;}
.y2d_c00135{bottom:632.455100px;}
.y2c_c00135{bottom:654.010092px;}
.y2b_c00135{bottom:675.560583px;}
.y2a_c00135{bottom:697.294074px;}
.y29_c00135{bottom:718.844566px;}
.y28_c00135{bottom:740.398057px;}
.y27_c00135{bottom:761.774549px;}
.y26_c00135{bottom:783.502040px;}
.y25_c00135{bottom:805.055531px;}
.y24_c00135{bottom:826.612023px;}
.y23_c00135{bottom:848.161014px;}
.y22_c00135{bottom:869.716005px;}
.y21_c00135{bottom:891.443497px;}
.y20_c00135{bottom:912.998488px;}
.y1f_c00135{bottom:934.554979px;}
.y1e_c00135{bottom:955.035971px;}
.y1d_c00135{bottom:976.946462px;}
.y1c_c00135{bottom:993.867956px;}
.y15_c00135{bottom:994.161165px;}
.y17_c00135{bottom:994.338165px;}
.y1b_c00135{bottom:996.005455px;}
.y11_c00135{bottom:1002.346943px;}
.y19_c00135{bottom:1002.711161px;}
.y14_c00135{bottom:1011.079658px;}
.y16_c00135{bottom:1011.438158px;}
.ye_c00135{bottom:1014.948000px;}
.y18_c00135{bottom:1022.121154px;}
.y12_c00135{bottom:1024.030800px;}
.yd_c00135{bottom:1044.033145px;}
.yc_c00135{bottom:1062.736637px;}
.ya_c00135{bottom:1101.391622px;}
.y9_c00135{bottom:1125.436612px;}
.y8_c00135{bottom:1146.276554px;}
.y7_c00135{bottom:1166.762796px;}
.y6_c00135{bottom:1187.245588px;}
.h3_c00135{height:1.064520px;}
.hd_c00135{height:12.294000px;}
.ha_c00135{height:21.376800px;}
.he_c00135{height:28.368623px;}
.h7_c00135{height:37.374544px;}
.h6_c00135{height:41.427963px;}
.hf_c00135{height:43.051690px;}
.h8_c00135{height:48.632381px;}
.hc_c00135{height:52.986695px;}
.h9_c00135{height:53.045832px;}
.h2_c00135{height:58.667764px;}
.h4_c00135{height:63.768724px;}
.h5_c00135{height:64.053724px;}
.h10_c00135{height:1249.830756px;}
.hb_c00135{height:1262.514600px;}
.h1_c00135{height:1262.879062px;}
.h0_c00135{height:1263.000000px;}
.w2_c00135{width:4.098600px;}
.w5_c00135{width:6.591600px;}
.w6_c00135{width:6.595200px;}
.w7_c00135{width:11.221200px;}
.w8_c00135{width:11.223000px;}
.w3_c00135{width:11.223360px;}
.w9_c00135{width:883.195846px;}
.w4_c00135{width:892.161000px;}
.w1_c00135{width:892.414744px;}
.w0_c00135{width:892.500000px;}
.x0_c00135{left:0.000000px;}
.x14_c00135{left:1.541954px;}
.x7_c00135{left:114.282348px;}
.x8_c00135{left:125.159760px;}
.x2_c00135{left:126.215743px;}
.x26_c00135{left:142.142989px;}
.x25_c00135{left:153.008984px;}
.x9_c00135{left:188.877299px;}
.x4_c00135{left:252.504495px;}
.x3_c00135{left:270.140236px;}
.xa_c00135{left:284.756400px;}
.xc_c00135{left:294.186726px;}
.x6_c00135{left:295.789578px;}
.xb_c00135{left:299.709724px;}
.xd_c00135{left:324.835200px;}
.xe_c00135{left:329.274712px;}
.xf_c00135{left:344.061706px;}
.x17_c00135{left:398.462886px;}
.x16_c00135{left:400.243385px;}
.x5_c00135{left:420.296029px;}
.x18_c00135{left:441.925369px;}
.x19_c00135{left:443.885868px;}
.x10_c00135{left:464.651158px;}
.x1a_c00135{left:487.880850px;}
.x1b_c00135{left:489.484350px;}
.x1_c00135{left:505.976141px;}
.x1d_c00135{left:526.000335px;}
.x1c_c00135{left:532.588333px;}
.x1e_c00135{left:538.468330px;}
.x20_c00135{left:571.423317px;}
.x1f_c00135{left:576.407815px;}
.x21_c00135{left:583.889812px;}
.x23_c00135{left:616.841799px;}
.x22_c00135{left:622.187797px;}
.x24_c00135{left:629.309794px;}
.x11_c00135{left:656.859600px;}
.x12_c00135{left:660.227080px;}
.x13_c00135{left:705.308400px;}
.x15_c00135{left:710.890261px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws2_c00135{word-spacing:-39.424624pt;}
.ws0_c00135{word-spacing:-14.566794pt;}
.ws1_c00135{word-spacing:-13.141541pt;}
.ws3_c00135{word-spacing:0.000000pt;}
._4_c00135{margin-left:-7.437850pt;}
._5_c00135{margin-left:-2.240601pt;}
._0_c00135{margin-left:-1.190569pt;}
._1_c00135{width:0.938922pt;}
._3_c00135{width:1.879717pt;}
._2_c00135{width:2.782510pt;}
._b_c00135{width:26.184755pt;}
._12_c00135{width:33.514063pt;}
._9_c00135{width:34.688122pt;}
._a_c00135{width:42.387021pt;}
._11_c00135{width:43.648076pt;}
._8_c00135{width:45.085013pt;}
._d_c00135{width:49.095442pt;}
._10_c00135{width:53.325128pt;}
._7_c00135{width:56.332243pt;}
._c_c00135{width:61.304009pt;}
._f_c00135{width:67.306209pt;}
._e_c00135{width:70.252846pt;}
._6_c00135{width:104.842393pt;}
.fs4_c00135{font-size:39.899611pt;}
.fs2_c00135{font-size:52.566166pt;}
.fs0_c00135{font-size:58.267177pt;}
.fs1_c00135{font-size:63.333308pt;}
.fs3_c00135{font-size:68.399973pt;}
.y4_c00135{bottom:-12.032637pt;}
.y0_c00135{bottom:0.000000pt;}
.y1_c00135{bottom:0.107500pt;}
.y10_c00135{bottom:0.431250pt;}
.y13_c00135{bottom:2.690035pt;}
.yf_c00135{bottom:4.588971pt;}
.y1a_c00135{bottom:6.068128pt;}
.yb_c00135{bottom:63.856874pt;}
.y3_c00135{bottom:70.615680pt;}
.y5_c00135{bottom:73.833137pt;}
.y2_c00135{bottom:74.783670pt;}
.y45_c00135{bottom:101.911829pt;}
.y44_c00135{bottom:121.072488pt;}
.y43_c00135{bottom:140.226480pt;}
.y42_c00135{bottom:159.387806pt;}
.y41_c00135{bottom:178.542465pt;}
.y40_c00135{bottom:197.703790pt;}
.y3f_c00135{bottom:217.021116pt;}
.y3e_c00135{bottom:236.175775pt;}
.y3d_c00135{bottom:255.334434pt;}
.y3c_c00135{bottom:274.491760pt;}
.y3b_c00135{bottom:293.650419pt;}
.y3a_c00135{bottom:312.810411pt;}
.y39_c00135{bottom:331.969070pt;}
.y38_c00135{bottom:351.125062pt;}
.y37_c00135{bottom:370.286388pt;}
.y36_c00135{bottom:389.602380pt;}
.y35_c00135{bottom:408.758373pt;}
.y34_c00135{bottom:427.918365pt;}
.y33_c00135{bottom:447.075691pt;}
.y32_c00135{bottom:466.393016pt;}
.y31_c00135{bottom:485.551675pt;}
.y30_c00135{bottom:504.549001pt;}
.y2f_c00135{bottom:523.710327pt;}
.y2e_c00135{bottom:543.022319pt;}
.y2d_c00135{bottom:562.182311pt;}
.y2c_c00135{bottom:581.342304pt;}
.y2b_c00135{bottom:600.498296pt;}
.y2a_c00135{bottom:619.816955pt;}
.y29_c00135{bottom:638.972947pt;}
.y28_c00135{bottom:658.131606pt;}
.y27_c00135{bottom:677.132932pt;}
.y26_c00135{bottom:696.446258pt;}
.y25_c00135{bottom:715.604917pt;}
.y24_c00135{bottom:734.766242pt;}
.y23_c00135{bottom:753.920901pt;}
.y22_c00135{bottom:773.080894pt;}
.y21_c00135{bottom:792.394219pt;}
.y20_c00135{bottom:811.554212pt;}
.y1f_c00135{bottom:830.715537pt;}
.y1e_c00135{bottom:848.920863pt;}
.y1d_c00135{bottom:868.396856pt;}
.y1c_c00135{bottom:883.438183pt;}
.y15_c00135{bottom:883.698813pt;}
.y17_c00135{bottom:883.856146pt;}
.y1b_c00135{bottom:885.338182pt;}
.y11_c00135{bottom:890.975061pt;}
.y19_c00135{bottom:891.298810pt;}
.y14_c00135{bottom:898.737474pt;}
.y16_c00135{bottom:899.056140pt;}
.ye_c00135{bottom:902.176000pt;}
.y18_c00135{bottom:908.552137pt;}
.y12_c00135{bottom:910.249600pt;}
.yd_c00135{bottom:928.029462pt;}
.yc_c00135{bottom:944.654789pt;}
.ya_c00135{bottom:979.014775pt;}
.y9_c00135{bottom:1000.388100pt;}
.y8_c00135{bottom:1018.912492pt;}
.y7_c00135{bottom:1037.122485pt;}
.y6_c00135{bottom:1055.329411pt;}
.h3_c00135{height:0.946240pt;}
.hd_c00135{height:10.928000pt;}
.ha_c00135{height:19.001600pt;}
.he_c00135{height:25.216554pt;}
.h7_c00135{height:33.221817pt;}
.h6_c00135{height:36.824856pt;}
.hf_c00135{height:38.268169pt;}
.h8_c00135{height:43.228783pt;}
.hc_c00135{height:47.099284pt;}
.h9_c00135{height:47.151851pt;}
.h2_c00135{height:52.149123pt;}
.h4_c00135{height:56.683311pt;}
.h5_c00135{height:56.936644pt;}
.h10_c00135{height:1110.960672pt;}
.hb_c00135{height:1122.235200pt;}
.h1_c00135{height:1122.559167pt;}
.h0_c00135{height:1122.666667pt;}
.w2_c00135{width:3.643200pt;}
.w5_c00135{width:5.859200pt;}
.w6_c00135{width:5.862400pt;}
.w7_c00135{width:9.974400pt;}
.w8_c00135{width:9.976000pt;}
.w3_c00135{width:9.976320pt;}
.w9_c00135{width:785.062974pt;}
.w4_c00135{width:793.032000pt;}
.w1_c00135{width:793.257550pt;}
.w0_c00135{width:793.333333pt;}
.x0_c00135{left:0.000000pt;}
.x14_c00135{left:1.370626pt;}
.x7_c00135{left:101.584309pt;}
.x8_c00135{left:111.253120pt;}
.x2_c00135{left:112.191772pt;}
.x26_c00135{left:126.349323pt;}
.x25_c00135{left:136.007986pt;}
.x9_c00135{left:167.890933pt;}
.x4_c00135{left:224.448440pt;}
.x3_c00135{left:240.124654pt;}
.xa_c00135{left:253.116800pt;}
.xc_c00135{left:261.499312pt;}
.x6_c00135{left:262.924069pt;}
.xb_c00135{left:266.408643pt;}
.xd_c00135{left:288.742400pt;}
.xe_c00135{left:292.688633pt;}
.xf_c00135{left:305.832628pt;}
.x17_c00135{left:354.189232pt;}
.x16_c00135{left:355.771898pt;}
.x5_c00135{left:373.596470pt;}
.x18_c00135{left:392.822550pt;}
.x19_c00135{left:394.565216pt;}
.x10_c00135{left:413.023251pt;}
.x1a_c00135{left:433.671867pt;}
.x1b_c00135{left:435.097200pt;}
.x1_c00135{left:449.756570pt;}
.x1d_c00135{left:467.555853pt;}
.x1c_c00135{left:473.411851pt;}
.x1e_c00135{left:478.638516pt;}
.x20_c00135{left:507.931837pt;}
.x1f_c00135{left:512.362502pt;}
.x21_c00135{left:519.013166pt;}
.x23_c00135{left:548.303821pt;}
.x22_c00135{left:553.055819pt;}
.x24_c00135{left:559.386483pt;}
.x11_c00135{left:583.875200pt;}
.x12_c00135{left:586.868515pt;}
.x13_c00135{left:626.940800pt;}
.x15_c00135{left:631.902454pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00136;src:url('chunks/assets/font_fe56946a50dd066b2445f53d.woff2')format("woff");}.ff6_c00136{font-family:ff6_c00136;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00136{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m5_c00136{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls0_c00136{letter-spacing:0.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;}
}
.ws2_c00136{word-spacing:-44.352702px;}
.ws0_c00136{word-spacing:-16.387643px;}
.ws1_c00136{word-spacing:-14.784234px;}
.ws3_c00136{word-spacing:0.000000px;}
._4_c00136{margin-left:-8.367581px;}
._5_c00136{margin-left:-2.520676px;}
._0_c00136{margin-left:-1.339390px;}
._1_c00136{width:1.056287px;}
._3_c00136{width:2.114682px;}
._2_c00136{width:3.130324px;}
._b_c00136{width:29.457849px;}
._12_c00136{width:37.703321px;}
._9_c00136{width:39.024137px;}
._13_c00136{width:45.188207px;}
._a_c00136{width:47.685398px;}
._11_c00136{width:49.104085px;}
._8_c00136{width:50.720640px;}
._d_c00136{width:55.232372px;}
._10_c00136{width:59.990769px;}
._7_c00136{width:63.373773px;}
._c_c00136{width:68.967010px;}
._f_c00136{width:75.719485px;}
._e_c00136{width:79.034452px;}
._6_c00136{width:117.947692px;}
.fc2_c00136{color:transparent;}
.fc1_c00136{color:rgb(105,148,45);}
.fc0_c00136{color:rgb(35,31,32);}
.fs4_c00136{font-size:44.887062px;}
.fs2_c00136{font-size:59.136936px;}
.fs0_c00136{font-size:65.550574px;}
.fs1_c00136{font-size:71.249972px;}
.fs3_c00136{font-size:76.949969px;}
.y4_c00136{bottom:-13.536716px;}
.y0_c00136{bottom:0.000000px;}
.y1_c00136{bottom:0.120938px;}
.y10_c00136{bottom:0.485156px;}
.y13_c00136{bottom:3.026289px;}
.yf_c00136{bottom:5.162592px;}
.y1a_c00136{bottom:6.826644px;}
.yb_c00136{bottom:71.838984px;}
.y3_c00136{bottom:79.442640px;}
.y5_c00136{bottom:83.062279px;}
.y2_c00136{bottom:84.131629px;}
.y45_c00136{bottom:114.650807px;}
.y44_c00136{bottom:136.206549px;}
.y43_c00136{bottom:157.754790px;}
.y42_c00136{bottom:179.311282px;}
.y41_c00136{bottom:200.860273px;}
.y40_c00136{bottom:222.416764px;}
.y3f_c00136{bottom:244.148756px;}
.y3e_c00136{bottom:265.697747px;}
.y3d_c00136{bottom:287.251238px;}
.y3c_c00136{bottom:308.803230px;}
.y3b_c00136{bottom:330.356721px;}
.y3a_c00136{bottom:351.911713px;}
.y39_c00136{bottom:373.465204px;}
.y38_c00136{bottom:395.015695px;}
.y37_c00136{bottom:416.572187px;}
.y36_c00136{bottom:438.302678px;}
.y35_c00136{bottom:459.853169px;}
.y34_c00136{bottom:481.408161px;}
.y33_c00136{bottom:502.960152px;}
.y32_c00136{bottom:524.692143px;}
.y31_c00136{bottom:546.245635px;}
.y30_c00136{bottom:567.617626px;}
.y2f_c00136{bottom:589.174118px;}
.y2e_c00136{bottom:610.900109px;}
.y2d_c00136{bottom:632.455100px;}
.y2c_c00136{bottom:654.010092px;}
.y2b_c00136{bottom:675.560583px;}
.y2a_c00136{bottom:697.294074px;}
.y29_c00136{bottom:718.844566px;}
.y28_c00136{bottom:740.398057px;}
.y27_c00136{bottom:761.774549px;}
.y26_c00136{bottom:783.502040px;}
.y25_c00136{bottom:805.055531px;}
.y24_c00136{bottom:826.612023px;}
.y23_c00136{bottom:848.161014px;}
.y22_c00136{bottom:869.716005px;}
.y21_c00136{bottom:891.443497px;}
.y20_c00136{bottom:912.998488px;}
.y1f_c00136{bottom:934.554979px;}
.y1e_c00136{bottom:955.035971px;}
.y1d_c00136{bottom:976.946462px;}
.y1c_c00136{bottom:993.867956px;}
.y15_c00136{bottom:994.161165px;}
.y17_c00136{bottom:994.338165px;}
.y1b_c00136{bottom:996.005455px;}
.y11_c00136{bottom:1002.346943px;}
.y19_c00136{bottom:1002.711161px;}
.y14_c00136{bottom:1011.079658px;}
.y16_c00136{bottom:1011.438158px;}
.ye_c00136{bottom:1014.948000px;}
.y18_c00136{bottom:1022.121154px;}
.y12_c00136{bottom:1024.030800px;}
.yd_c00136{bottom:1044.033145px;}
.yc_c00136{bottom:1062.736637px;}
.ya_c00136{bottom:1101.391622px;}
.y9_c00136{bottom:1125.436612px;}
.y8_c00136{bottom:1146.276554px;}
.y7_c00136{bottom:1166.762796px;}
.y6_c00136{bottom:1187.245588px;}
.h3_c00136{height:1.064520px;}
.hd_c00136{height:12.294000px;}
.ha_c00136{height:21.376800px;}
.he_c00136{height:28.368623px;}
.h7_c00136{height:37.374544px;}
.h6_c00136{height:41.427963px;}
.hf_c00136{height:43.051690px;}
.h8_c00136{height:48.632381px;}
.hc_c00136{height:52.986695px;}
.h9_c00136{height:53.045832px;}
.h2_c00136{height:58.667764px;}
.h4_c00136{height:63.768724px;}
.h5_c00136{height:64.053724px;}
.h10_c00136{height:1249.830756px;}
.hb_c00136{height:1262.514600px;}
.h1_c00136{height:1262.879062px;}
.h0_c00136{height:1263.000000px;}
.w2_c00136{width:4.098600px;}
.w5_c00136{width:6.591600px;}
.w6_c00136{width:6.595200px;}
.w7_c00136{width:11.221200px;}
.w8_c00136{width:11.223000px;}
.w3_c00136{width:11.223360px;}
.w9_c00136{width:883.195846px;}
.w4_c00136{width:892.161000px;}
.w1_c00136{width:892.414744px;}
.w0_c00136{width:892.500000px;}
.x0_c00136{left:0.000000px;}
.x14_c00136{left:1.541954px;}
.x7_c00136{left:114.282348px;}
.x8_c00136{left:125.159760px;}
.x2_c00136{left:126.215743px;}
.x27_c00136{left:130.566743px;}
.x28_c00136{left:137.870090px;}
.x26_c00136{left:142.142989px;}
.x25_c00136{left:153.008984px;}
.x9_c00136{left:188.877299px;}
.x4_c00136{left:252.504495px;}
.x3_c00136{left:270.140236px;}
.xa_c00136{left:284.756400px;}
.xc_c00136{left:294.186726px;}
.x6_c00136{left:295.789578px;}
.xb_c00136{left:299.709724px;}
.xd_c00136{left:324.835200px;}
.xe_c00136{left:329.274712px;}
.xf_c00136{left:344.061706px;}
.x17_c00136{left:398.462886px;}
.x16_c00136{left:400.243385px;}
.x5_c00136{left:420.296029px;}
.x18_c00136{left:441.925369px;}
.x19_c00136{left:443.885868px;}
.x10_c00136{left:464.651158px;}
.x1a_c00136{left:487.880850px;}
.x1b_c00136{left:489.484350px;}
.x1_c00136{left:505.976141px;}
.x1d_c00136{left:526.000335px;}
.x1c_c00136{left:532.588333px;}
.x1e_c00136{left:538.468330px;}
.x20_c00136{left:571.423317px;}
.x1f_c00136{left:576.407815px;}
.x21_c00136{left:583.889812px;}
.x23_c00136{left:616.841799px;}
.x22_c00136{left:622.187797px;}
.x24_c00136{left:629.309794px;}
.x11_c00136{left:656.859600px;}
.x12_c00136{left:660.227080px;}
.x13_c00136{left:705.308400px;}
.x15_c00136{left:710.890261px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws2_c00136{word-spacing:-39.424624pt;}
.ws0_c00136{word-spacing:-14.566794pt;}
.ws1_c00136{word-spacing:-13.141541pt;}
.ws3_c00136{word-spacing:0.000000pt;}
._4_c00136{margin-left:-7.437850pt;}
._5_c00136{margin-left:-2.240601pt;}
._0_c00136{margin-left:-1.190569pt;}
._1_c00136{width:0.938922pt;}
._3_c00136{width:1.879717pt;}
._2_c00136{width:2.782510pt;}
._b_c00136{width:26.184755pt;}
._12_c00136{width:33.514063pt;}
._9_c00136{width:34.688122pt;}
._13_c00136{width:40.167296pt;}
._a_c00136{width:42.387021pt;}
._11_c00136{width:43.648076pt;}
._8_c00136{width:45.085013pt;}
._d_c00136{width:49.095442pt;}
._10_c00136{width:53.325128pt;}
._7_c00136{width:56.332243pt;}
._c_c00136{width:61.304009pt;}
._f_c00136{width:67.306209pt;}
._e_c00136{width:70.252846pt;}
._6_c00136{width:104.842393pt;}
.fs4_c00136{font-size:39.899611pt;}
.fs2_c00136{font-size:52.566166pt;}
.fs0_c00136{font-size:58.267177pt;}
.fs1_c00136{font-size:63.333308pt;}
.fs3_c00136{font-size:68.399973pt;}
.y4_c00136{bottom:-12.032637pt;}
.y0_c00136{bottom:0.000000pt;}
.y1_c00136{bottom:0.107500pt;}
.y10_c00136{bottom:0.431250pt;}
.y13_c00136{bottom:2.690035pt;}
.yf_c00136{bottom:4.588971pt;}
.y1a_c00136{bottom:6.068128pt;}
.yb_c00136{bottom:63.856874pt;}
.y3_c00136{bottom:70.615680pt;}
.y5_c00136{bottom:73.833137pt;}
.y2_c00136{bottom:74.783670pt;}
.y45_c00136{bottom:101.911829pt;}
.y44_c00136{bottom:121.072488pt;}
.y43_c00136{bottom:140.226480pt;}
.y42_c00136{bottom:159.387806pt;}
.y41_c00136{bottom:178.542465pt;}
.y40_c00136{bottom:197.703790pt;}
.y3f_c00136{bottom:217.021116pt;}
.y3e_c00136{bottom:236.175775pt;}
.y3d_c00136{bottom:255.334434pt;}
.y3c_c00136{bottom:274.491760pt;}
.y3b_c00136{bottom:293.650419pt;}
.y3a_c00136{bottom:312.810411pt;}
.y39_c00136{bottom:331.969070pt;}
.y38_c00136{bottom:351.125062pt;}
.y37_c00136{bottom:370.286388pt;}
.y36_c00136{bottom:389.602380pt;}
.y35_c00136{bottom:408.758373pt;}
.y34_c00136{bottom:427.918365pt;}
.y33_c00136{bottom:447.075691pt;}
.y32_c00136{bottom:466.393016pt;}
.y31_c00136{bottom:485.551675pt;}
.y30_c00136{bottom:504.549001pt;}
.y2f_c00136{bottom:523.710327pt;}
.y2e_c00136{bottom:543.022319pt;}
.y2d_c00136{bottom:562.182311pt;}
.y2c_c00136{bottom:581.342304pt;}
.y2b_c00136{bottom:600.498296pt;}
.y2a_c00136{bottom:619.816955pt;}
.y29_c00136{bottom:638.972947pt;}
.y28_c00136{bottom:658.131606pt;}
.y27_c00136{bottom:677.132932pt;}
.y26_c00136{bottom:696.446258pt;}
.y25_c00136{bottom:715.604917pt;}
.y24_c00136{bottom:734.766242pt;}
.y23_c00136{bottom:753.920901pt;}
.y22_c00136{bottom:773.080894pt;}
.y21_c00136{bottom:792.394219pt;}
.y20_c00136{bottom:811.554212pt;}
.y1f_c00136{bottom:830.715537pt;}
.y1e_c00136{bottom:848.920863pt;}
.y1d_c00136{bottom:868.396856pt;}
.y1c_c00136{bottom:883.438183pt;}
.y15_c00136{bottom:883.698813pt;}
.y17_c00136{bottom:883.856146pt;}
.y1b_c00136{bottom:885.338182pt;}
.y11_c00136{bottom:890.975061pt;}
.y19_c00136{bottom:891.298810pt;}
.y14_c00136{bottom:898.737474pt;}
.y16_c00136{bottom:899.056140pt;}
.ye_c00136{bottom:902.176000pt;}
.y18_c00136{bottom:908.552137pt;}
.y12_c00136{bottom:910.249600pt;}
.yd_c00136{bottom:928.029462pt;}
.yc_c00136{bottom:944.654789pt;}
.ya_c00136{bottom:979.014775pt;}
.y9_c00136{bottom:1000.388100pt;}
.y8_c00136{bottom:1018.912492pt;}
.y7_c00136{bottom:1037.122485pt;}
.y6_c00136{bottom:1055.329411pt;}
.h3_c00136{height:0.946240pt;}
.hd_c00136{height:10.928000pt;}
.ha_c00136{height:19.001600pt;}
.he_c00136{height:25.216554pt;}
.h7_c00136{height:33.221817pt;}
.h6_c00136{height:36.824856pt;}
.hf_c00136{height:38.268169pt;}
.h8_c00136{height:43.228783pt;}
.hc_c00136{height:47.099284pt;}
.h9_c00136{height:47.151851pt;}
.h2_c00136{height:52.149123pt;}
.h4_c00136{height:56.683311pt;}
.h5_c00136{height:56.936644pt;}
.h10_c00136{height:1110.960672pt;}
.hb_c00136{height:1122.235200pt;}
.h1_c00136{height:1122.559167pt;}
.h0_c00136{height:1122.666667pt;}
.w2_c00136{width:3.643200pt;}
.w5_c00136{width:5.859200pt;}
.w6_c00136{width:5.862400pt;}
.w7_c00136{width:9.974400pt;}
.w8_c00136{width:9.976000pt;}
.w3_c00136{width:9.976320pt;}
.w9_c00136{width:785.062974pt;}
.w4_c00136{width:793.032000pt;}
.w1_c00136{width:793.257550pt;}
.w0_c00136{width:793.333333pt;}
.x0_c00136{left:0.000000pt;}
.x14_c00136{left:1.370626pt;}
.x7_c00136{left:101.584309pt;}
.x8_c00136{left:111.253120pt;}
.x2_c00136{left:112.191772pt;}
.x27_c00136{left:116.059327pt;}
.x28_c00136{left:122.551191pt;}
.x26_c00136{left:126.349323pt;}
.x25_c00136{left:136.007986pt;}
.x9_c00136{left:167.890933pt;}
.x4_c00136{left:224.448440pt;}
.x3_c00136{left:240.124654pt;}
.xa_c00136{left:253.116800pt;}
.xc_c00136{left:261.499312pt;}
.x6_c00136{left:262.924069pt;}
.xb_c00136{left:266.408643pt;}
.xd_c00136{left:288.742400pt;}
.xe_c00136{left:292.688633pt;}
.xf_c00136{left:305.832628pt;}
.x17_c00136{left:354.189232pt;}
.x16_c00136{left:355.771898pt;}
.x5_c00136{left:373.596470pt;}
.x18_c00136{left:392.822550pt;}
.x19_c00136{left:394.565216pt;}
.x10_c00136{left:413.023251pt;}
.x1a_c00136{left:433.671867pt;}
.x1b_c00136{left:435.097200pt;}
.x1_c00136{left:449.756570pt;}
.x1d_c00136{left:467.555853pt;}
.x1c_c00136{left:473.411851pt;}
.x1e_c00136{left:478.638516pt;}
.x20_c00136{left:507.931837pt;}
.x1f_c00136{left:512.362502pt;}
.x21_c00136{left:519.013166pt;}
.x23_c00136{left:548.303821pt;}
.x22_c00136{left:553.055819pt;}
.x24_c00136{left:559.386483pt;}
.x11_c00136{left:583.875200pt;}
.x12_c00136{left:586.868515pt;}
.x13_c00136{left:626.940800pt;}
.x15_c00136{left:631.902454pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00137;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00137;src:url('chunks/assets/font_fe56946a50dd066b2445f53d.woff2')format("woff");}.ff6_c00137{font-family:ff6_c00137;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00137{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m6_c00137{transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00137{word-spacing:-44.352702px;}
.ws0_c00137{word-spacing:-16.387643px;}
.ws1_c00137{word-spacing:-14.784234px;}
.ws3_c00137{word-spacing:0.000000px;}
._4_c00137{margin-left:-8.367581px;}
._5_c00137{margin-left:-2.520676px;}
._0_c00137{margin-left:-1.339390px;}
._1_c00137{width:1.056287px;}
._3_c00137{width:2.114682px;}
._2_c00137{width:3.130324px;}
._d_c00137{width:28.361139px;}
._12_c00137{width:29.380074px;}
._a_c00137{width:38.414742px;}
._c_c00137{width:45.188207px;}
._9_c00137{width:48.395807px;}
._f_c00137{width:50.716002px;}
._b_c00137{width:55.069333px;}
._8_c00137{width:59.990177px;}
._11_c00137{width:68.432883px;}
._6_c00137{width:76.026945px;}
._7_c00137{width:79.030158px;}
._e_c00137{width:178.546556px;}
._10_c00137{width:222.457342px;}
.fc2_c00137{color:transparent;}
.fc1_c00137{color:rgb(105,148,45);}
.fc0_c00137{color:rgb(35,31,32);}
.fs4_c00137{font-size:44.887062px;}
.fs2_c00137{font-size:59.136936px;}
.fs0_c00137{font-size:65.550574px;}
.fs1_c00137{font-size:71.249972px;}
.fs3_c00137{font-size:76.949969px;}
.y4_c00137{bottom:-13.536716px;}
.y0_c00137{bottom:0.000000px;}
.y1_c00137{bottom:0.120938px;}
.y10_c00137{bottom:0.485156px;}
.y13_c00137{bottom:3.026289px;}
.yf_c00137{bottom:5.162592px;}
.y1a_c00137{bottom:6.826644px;}
.yb_c00137{bottom:71.838984px;}
.y3_c00137{bottom:79.442640px;}
.y5_c00137{bottom:83.062279px;}
.y2_c00137{bottom:84.131629px;}
.y45_c00137{bottom:114.650807px;}
.y44_c00137{bottom:136.206549px;}
.y43_c00137{bottom:157.754790px;}
.y42_c00137{bottom:179.311282px;}
.y41_c00137{bottom:200.860273px;}
.y40_c00137{bottom:222.416764px;}
.y3f_c00137{bottom:244.148756px;}
.y3e_c00137{bottom:265.697747px;}
.y3d_c00137{bottom:287.251238px;}
.y3c_c00137{bottom:308.803230px;}
.y3b_c00137{bottom:330.356721px;}
.y3a_c00137{bottom:351.911713px;}
.y39_c00137{bottom:373.465204px;}
.y38_c00137{bottom:395.015695px;}
.y37_c00137{bottom:416.572187px;}
.y36_c00137{bottom:438.302678px;}
.y35_c00137{bottom:459.853169px;}
.y34_c00137{bottom:481.408161px;}
.y33_c00137{bottom:502.960152px;}
.y32_c00137{bottom:524.692143px;}
.y31_c00137{bottom:546.245635px;}
.y30_c00137{bottom:567.617626px;}
.y2f_c00137{bottom:589.174118px;}
.y2e_c00137{bottom:610.900109px;}
.y2d_c00137{bottom:632.455100px;}
.y2c_c00137{bottom:654.010092px;}
.y2b_c00137{bottom:675.560583px;}
.y2a_c00137{bottom:697.294074px;}
.y29_c00137{bottom:718.844566px;}
.y28_c00137{bottom:740.398057px;}
.y27_c00137{bottom:761.774549px;}
.y26_c00137{bottom:783.502040px;}
.y25_c00137{bottom:805.055531px;}
.y24_c00137{bottom:826.612023px;}
.y23_c00137{bottom:848.161014px;}
.y22_c00137{bottom:869.716005px;}
.y21_c00137{bottom:891.443497px;}
.y20_c00137{bottom:912.998488px;}
.y1f_c00137{bottom:934.554979px;}
.y1e_c00137{bottom:955.035971px;}
.y1d_c00137{bottom:976.946462px;}
.y1c_c00137{bottom:993.867956px;}
.y15_c00137{bottom:994.161165px;}
.y17_c00137{bottom:994.338165px;}
.y1b_c00137{bottom:996.005455px;}
.y11_c00137{bottom:1002.346943px;}
.y19_c00137{bottom:1002.711161px;}
.y14_c00137{bottom:1011.079658px;}
.y16_c00137{bottom:1011.438158px;}
.ye_c00137{bottom:1014.948000px;}
.y18_c00137{bottom:1022.121154px;}
.y12_c00137{bottom:1024.030800px;}
.yd_c00137{bottom:1044.033145px;}
.yc_c00137{bottom:1062.736637px;}
.ya_c00137{bottom:1101.391622px;}
.y9_c00137{bottom:1125.436612px;}
.y8_c00137{bottom:1146.276554px;}
.y7_c00137{bottom:1166.762796px;}
.y6_c00137{bottom:1187.245588px;}
.h3_c00137{height:1.064520px;}
.hd_c00137{height:12.294000px;}
.ha_c00137{height:21.376800px;}
.he_c00137{height:28.368623px;}
.h7_c00137{height:37.374544px;}
.h6_c00137{height:41.427963px;}
.hf_c00137{height:43.051690px;}
.h8_c00137{height:48.632381px;}
.hc_c00137{height:52.986695px;}
.h9_c00137{height:53.045832px;}
.h2_c00137{height:58.667764px;}
.h4_c00137{height:63.768724px;}
.h5_c00137{height:64.053724px;}
.h10_c00137{height:1249.830756px;}
.hb_c00137{height:1262.514600px;}
.h1_c00137{height:1262.879062px;}
.h0_c00137{height:1263.000000px;}
.w2_c00137{width:4.098600px;}
.w5_c00137{width:6.591600px;}
.w6_c00137{width:6.595200px;}
.w7_c00137{width:11.221200px;}
.w8_c00137{width:11.223000px;}
.w3_c00137{width:11.223360px;}
.w9_c00137{width:883.195846px;}
.w4_c00137{width:892.161000px;}
.w1_c00137{width:892.414744px;}
.w0_c00137{width:892.500000px;}
.x0_c00137{left:0.000000px;}
.x14_c00137{left:1.541954px;}
.x7_c00137{left:114.282348px;}
.x8_c00137{left:125.159760px;}
.x2_c00137{left:126.215743px;}
.x27_c00137{left:130.566743px;}
.x26_c00137{left:134.305192px;}
.x25_c00137{left:137.870090px;}
.x28_c00137{left:164.584480px;}
.x29_c00137{left:175.631975px;}
.x9_c00137{left:188.877299px;}
.x4_c00137{left:252.504495px;}
.x3_c00137{left:270.140236px;}
.xa_c00137{left:284.756400px;}
.xc_c00137{left:294.186726px;}
.x6_c00137{left:295.789578px;}
.xb_c00137{left:299.709724px;}
.xd_c00137{left:324.835200px;}
.xe_c00137{left:329.274712px;}
.xf_c00137{left:344.061706px;}
.x17_c00137{left:398.462886px;}
.x16_c00137{left:400.243385px;}
.x5_c00137{left:420.296029px;}
.x18_c00137{left:441.925369px;}
.x19_c00137{left:443.885868px;}
.x10_c00137{left:464.651158px;}
.x1a_c00137{left:487.880850px;}
.x1b_c00137{left:489.484350px;}
.x1_c00137{left:505.976141px;}
.x1d_c00137{left:526.000335px;}
.x1c_c00137{left:532.588333px;}
.x1e_c00137{left:538.468330px;}
.x20_c00137{left:571.423317px;}
.x1f_c00137{left:576.407815px;}
.x21_c00137{left:583.889812px;}
.x23_c00137{left:616.841799px;}
.x22_c00137{left:622.187797px;}
.x24_c00137{left:629.309794px;}
.x11_c00137{left:656.859600px;}
.x12_c00137{left:660.227080px;}
.x13_c00137{left:705.308400px;}
.x15_c00137{left:710.890261px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws2_c00137{word-spacing:-39.424624pt;}
.ws0_c00137{word-spacing:-14.566794pt;}
.ws1_c00137{word-spacing:-13.141541pt;}
.ws3_c00137{word-spacing:0.000000pt;}
._4_c00137{margin-left:-7.437850pt;}
._5_c00137{margin-left:-2.240601pt;}
._0_c00137{margin-left:-1.190569pt;}
._1_c00137{width:0.938922pt;}
._3_c00137{width:1.879717pt;}
._2_c00137{width:2.782510pt;}
._d_c00137{width:25.209901pt;}
._12_c00137{width:26.115621pt;}
._a_c00137{width:34.146437pt;}
._c_c00137{width:40.167296pt;}
._9_c00137{width:43.018495pt;}
._f_c00137{width:45.080891pt;}
._b_c00137{width:48.950518pt;}
._8_c00137{width:53.324602pt;}
._11_c00137{width:60.829229pt;}
._6_c00137{width:67.579506pt;}
._7_c00137{width:70.249030pt;}
._e_c00137{width:158.708049pt;}
._10_c00137{width:197.739860pt;}
.fs4_c00137{font-size:39.899611pt;}
.fs2_c00137{font-size:52.566166pt;}
.fs0_c00137{font-size:58.267177pt;}
.fs1_c00137{font-size:63.333308pt;}
.fs3_c00137{font-size:68.399973pt;}
.y4_c00137{bottom:-12.032637pt;}
.y0_c00137{bottom:0.000000pt;}
.y1_c00137{bottom:0.107500pt;}
.y10_c00137{bottom:0.431250pt;}
.y13_c00137{bottom:2.690035pt;}
.yf_c00137{bottom:4.588971pt;}
.y1a_c00137{bottom:6.068128pt;}
.yb_c00137{bottom:63.856874pt;}
.y3_c00137{bottom:70.615680pt;}
.y5_c00137{bottom:73.833137pt;}
.y2_c00137{bottom:74.783670pt;}
.y45_c00137{bottom:101.911829pt;}
.y44_c00137{bottom:121.072488pt;}
.y43_c00137{bottom:140.226480pt;}
.y42_c00137{bottom:159.387806pt;}
.y41_c00137{bottom:178.542465pt;}
.y40_c00137{bottom:197.703790pt;}
.y3f_c00137{bottom:217.021116pt;}
.y3e_c00137{bottom:236.175775pt;}
.y3d_c00137{bottom:255.334434pt;}
.y3c_c00137{bottom:274.491760pt;}
.y3b_c00137{bottom:293.650419pt;}
.y3a_c00137{bottom:312.810411pt;}
.y39_c00137{bottom:331.969070pt;}
.y38_c00137{bottom:351.125062pt;}
.y37_c00137{bottom:370.286388pt;}
.y36_c00137{bottom:389.602380pt;}
.y35_c00137{bottom:408.758373pt;}
.y34_c00137{bottom:427.918365pt;}
.y33_c00137{bottom:447.075691pt;}
.y32_c00137{bottom:466.393016pt;}
.y31_c00137{bottom:485.551675pt;}
.y30_c00137{bottom:504.549001pt;}
.y2f_c00137{bottom:523.710327pt;}
.y2e_c00137{bottom:543.022319pt;}
.y2d_c00137{bottom:562.182311pt;}
.y2c_c00137{bottom:581.342304pt;}
.y2b_c00137{bottom:600.498296pt;}
.y2a_c00137{bottom:619.816955pt;}
.y29_c00137{bottom:638.972947pt;}
.y28_c00137{bottom:658.131606pt;}
.y27_c00137{bottom:677.132932pt;}
.y26_c00137{bottom:696.446258pt;}
.y25_c00137{bottom:715.604917pt;}
.y24_c00137{bottom:734.766242pt;}
.y23_c00137{bottom:753.920901pt;}
.y22_c00137{bottom:773.080894pt;}
.y21_c00137{bottom:792.394219pt;}
.y20_c00137{bottom:811.554212pt;}
.y1f_c00137{bottom:830.715537pt;}
.y1e_c00137{bottom:848.920863pt;}
.y1d_c00137{bottom:868.396856pt;}
.y1c_c00137{bottom:883.438183pt;}
.y15_c00137{bottom:883.698813pt;}
.y17_c00137{bottom:883.856146pt;}
.y1b_c00137{bottom:885.338182pt;}
.y11_c00137{bottom:890.975061pt;}
.y19_c00137{bottom:891.298810pt;}
.y14_c00137{bottom:898.737474pt;}
.y16_c00137{bottom:899.056140pt;}
.ye_c00137{bottom:902.176000pt;}
.y18_c00137{bottom:908.552137pt;}
.y12_c00137{bottom:910.249600pt;}
.yd_c00137{bottom:928.029462pt;}
.yc_c00137{bottom:944.654789pt;}
.ya_c00137{bottom:979.014775pt;}
.y9_c00137{bottom:1000.388100pt;}
.y8_c00137{bottom:1018.912492pt;}
.y7_c00137{bottom:1037.122485pt;}
.y6_c00137{bottom:1055.329411pt;}
.h3_c00137{height:0.946240pt;}
.hd_c00137{height:10.928000pt;}
.ha_c00137{height:19.001600pt;}
.he_c00137{height:25.216554pt;}
.h7_c00137{height:33.221817pt;}
.h6_c00137{height:36.824856pt;}
.hf_c00137{height:38.268169pt;}
.h8_c00137{height:43.228783pt;}
.hc_c00137{height:47.099284pt;}
.h9_c00137{height:47.151851pt;}
.h2_c00137{height:52.149123pt;}
.h4_c00137{height:56.683311pt;}
.h5_c00137{height:56.936644pt;}
.h10_c00137{height:1110.960672pt;}
.hb_c00137{height:1122.235200pt;}
.h1_c00137{height:1122.559167pt;}
.h0_c00137{height:1122.666667pt;}
.w2_c00137{width:3.643200pt;}
.w5_c00137{width:5.859200pt;}
.w6_c00137{width:5.862400pt;}
.w7_c00137{width:9.974400pt;}
.w8_c00137{width:9.976000pt;}
.w3_c00137{width:9.976320pt;}
.w9_c00137{width:785.062974pt;}
.w4_c00137{width:793.032000pt;}
.w1_c00137{width:793.257550pt;}
.w0_c00137{width:793.333333pt;}
.x0_c00137{left:0.000000pt;}
.x14_c00137{left:1.370626pt;}
.x7_c00137{left:101.584309pt;}
.x8_c00137{left:111.253120pt;}
.x2_c00137{left:112.191772pt;}
.x27_c00137{left:116.059327pt;}
.x26_c00137{left:119.382393pt;}
.x25_c00137{left:122.551191pt;}
.x28_c00137{left:146.297315pt;}
.x29_c00137{left:156.117311pt;}
.x9_c00137{left:167.890933pt;}
.x4_c00137{left:224.448440pt;}
.x3_c00137{left:240.124654pt;}
.xa_c00137{left:253.116800pt;}
.xc_c00137{left:261.499312pt;}
.x6_c00137{left:262.924069pt;}
.xb_c00137{left:266.408643pt;}
.xd_c00137{left:288.742400pt;}
.xe_c00137{left:292.688633pt;}
.xf_c00137{left:305.832628pt;}
.x17_c00137{left:354.189232pt;}
.x16_c00137{left:355.771898pt;}
.x5_c00137{left:373.596470pt;}
.x18_c00137{left:392.822550pt;}
.x19_c00137{left:394.565216pt;}
.x10_c00137{left:413.023251pt;}
.x1a_c00137{left:433.671867pt;}
.x1b_c00137{left:435.097200pt;}
.x1_c00137{left:449.756570pt;}
.x1d_c00137{left:467.555853pt;}
.x1c_c00137{left:473.411851pt;}
.x1e_c00137{left:478.638516pt;}
.x20_c00137{left:507.931837pt;}
.x1f_c00137{left:512.362502pt;}
.x21_c00137{left:519.013166pt;}
.x23_c00137{left:548.303821pt;}
.x22_c00137{left:553.055819pt;}
.x24_c00137{left:559.386483pt;}
.x11_c00137{left:583.875200pt;}
.x12_c00137{left:586.868515pt;}
.x13_c00137{left:626.940800pt;}
.x15_c00137{left:631.902454pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00138;src:url('chunks/assets/font_fe56946a50dd066b2445f53d.woff2')format("woff");}.ff6_c00138{font-family:ff6_c00138;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00138{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.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;}
}
.ws2_c00138{word-spacing:-44.352702px;}
.ws0_c00138{word-spacing:-16.387643px;}
.ws1_c00138{word-spacing:-14.784234px;}
.ws3_c00138{word-spacing:0.000000px;}
._4_c00138{margin-left:-8.367581px;}
._5_c00138{margin-left:-2.520676px;}
._0_c00138{margin-left:-1.339390px;}
._1_c00138{width:1.056287px;}
._3_c00138{width:2.114682px;}
._2_c00138{width:3.130324px;}
._9_c00138{width:29.042890px;}
._e_c00138{width:37.703321px;}
._a_c00138{width:39.026218px;}
._b_c00138{width:48.395094px;}
._8_c00138{width:50.721173px;}
._d_c00138{width:55.232372px;}
._c_c00138{width:68.717497px;}
._7_c00138{width:79.022206px;}
._f_c00138{width:178.829157px;}
._6_c00138{width:222.457342px;}
.fc2_c00138{color:transparent;}
.fc1_c00138{color:rgb(105,148,45);}
.fc0_c00138{color:rgb(35,31,32);}
.fs4_c00138{font-size:44.887062px;}
.fs2_c00138{font-size:59.136936px;}
.fs0_c00138{font-size:65.550574px;}
.fs1_c00138{font-size:71.249972px;}
.fs3_c00138{font-size:76.949969px;}
.y4_c00138{bottom:-13.536716px;}
.y0_c00138{bottom:0.000000px;}
.y1_c00138{bottom:0.120938px;}
.y10_c00138{bottom:0.485156px;}
.y13_c00138{bottom:3.026289px;}
.yf_c00138{bottom:5.162592px;}
.y1a_c00138{bottom:6.826644px;}
.yb_c00138{bottom:71.838984px;}
.y3_c00138{bottom:79.442640px;}
.y5_c00138{bottom:83.062279px;}
.y2_c00138{bottom:84.131629px;}
.y30_c00138{bottom:572.249624px;}
.y2f_c00138{bottom:590.953117px;}
.y2e_c00138{bottom:610.900109px;}
.y2d_c00138{bottom:632.455100px;}
.y2c_c00138{bottom:654.010092px;}
.y2b_c00138{bottom:675.560583px;}
.y2a_c00138{bottom:697.294074px;}
.y29_c00138{bottom:718.844566px;}
.y28_c00138{bottom:740.398057px;}
.y27_c00138{bottom:761.774549px;}
.y26_c00138{bottom:783.502040px;}
.y25_c00138{bottom:805.055531px;}
.y24_c00138{bottom:826.612023px;}
.y23_c00138{bottom:848.161014px;}
.y22_c00138{bottom:869.716005px;}
.y21_c00138{bottom:891.443497px;}
.y20_c00138{bottom:912.998488px;}
.y1f_c00138{bottom:934.554979px;}
.y1e_c00138{bottom:955.035971px;}
.y1d_c00138{bottom:976.946462px;}
.y1c_c00138{bottom:993.867956px;}
.y15_c00138{bottom:994.161165px;}
.y17_c00138{bottom:994.338165px;}
.y1b_c00138{bottom:996.005455px;}
.y11_c00138{bottom:1002.346943px;}
.y19_c00138{bottom:1002.711161px;}
.y14_c00138{bottom:1011.079658px;}
.y16_c00138{bottom:1011.438158px;}
.ye_c00138{bottom:1014.948000px;}
.y18_c00138{bottom:1022.121154px;}
.y12_c00138{bottom:1024.030800px;}
.yd_c00138{bottom:1044.033145px;}
.yc_c00138{bottom:1062.736637px;}
.ya_c00138{bottom:1101.391622px;}
.y9_c00138{bottom:1125.436612px;}
.y8_c00138{bottom:1146.276554px;}
.y7_c00138{bottom:1166.762796px;}
.y6_c00138{bottom:1187.245588px;}
.h3_c00138{height:1.064520px;}
.hd_c00138{height:12.294000px;}
.ha_c00138{height:21.376800px;}
.he_c00138{height:28.368623px;}
.h7_c00138{height:37.374544px;}
.h6_c00138{height:41.427963px;}
.hf_c00138{height:43.051690px;}
.h8_c00138{height:48.632381px;}
.h11_c00138{height:52.927558px;}
.hc_c00138{height:52.986695px;}
.h9_c00138{height:53.045832px;}
.h2_c00138{height:58.667764px;}
.h4_c00138{height:63.768724px;}
.h5_c00138{height:64.053724px;}
.h10_c00138{height:1249.830756px;}
.hb_c00138{height:1262.514600px;}
.h1_c00138{height:1262.879062px;}
.h0_c00138{height:1263.000000px;}
.w2_c00138{width:4.098600px;}
.w5_c00138{width:6.591600px;}
.w6_c00138{width:6.595200px;}
.w7_c00138{width:11.221200px;}
.w8_c00138{width:11.223000px;}
.w3_c00138{width:11.223360px;}
.w9_c00138{width:883.195846px;}
.w4_c00138{width:892.161000px;}
.w1_c00138{width:892.414744px;}
.w0_c00138{width:892.500000px;}
.x0_c00138{left:0.000000px;}
.x14_c00138{left:1.541954px;}
.x28_c00138{left:112.753050px;}
.x7_c00138{left:114.282348px;}
.x8_c00138{left:125.159760px;}
.x2_c00138{left:126.215743px;}
.x26_c00138{left:164.584480px;}
.x25_c00138{left:175.631975px;}
.x27_c00138{left:178.837474px;}
.x9_c00138{left:188.877299px;}
.x4_c00138{left:252.504495px;}
.x3_c00138{left:270.140236px;}
.xa_c00138{left:284.756400px;}
.xc_c00138{left:294.186726px;}
.x6_c00138{left:295.789578px;}
.xb_c00138{left:299.709724px;}
.xd_c00138{left:324.835200px;}
.xe_c00138{left:329.274712px;}
.xf_c00138{left:344.061706px;}
.x17_c00138{left:398.462886px;}
.x16_c00138{left:400.243385px;}
.x5_c00138{left:420.296029px;}
.x18_c00138{left:441.925369px;}
.x19_c00138{left:443.885868px;}
.x10_c00138{left:464.651158px;}
.x1a_c00138{left:487.880850px;}
.x1b_c00138{left:489.484350px;}
.x1_c00138{left:505.976141px;}
.x1d_c00138{left:526.000335px;}
.x1c_c00138{left:532.588333px;}
.x1e_c00138{left:538.468330px;}
.x20_c00138{left:571.423317px;}
.x1f_c00138{left:576.407815px;}
.x21_c00138{left:583.889812px;}
.x23_c00138{left:616.841799px;}
.x22_c00138{left:622.187797px;}
.x24_c00138{left:629.309794px;}
.x11_c00138{left:656.859600px;}
.x12_c00138{left:660.227080px;}
.x13_c00138{left:705.308400px;}
.x15_c00138{left:710.890261px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws2_c00138{word-spacing:-39.424624pt;}
.ws0_c00138{word-spacing:-14.566794pt;}
.ws1_c00138{word-spacing:-13.141541pt;}
.ws3_c00138{word-spacing:0.000000pt;}
._4_c00138{margin-left:-7.437850pt;}
._5_c00138{margin-left:-2.240601pt;}
._0_c00138{margin-left:-1.190569pt;}
._1_c00138{width:0.938922pt;}
._3_c00138{width:1.879717pt;}
._2_c00138{width:2.782510pt;}
._9_c00138{width:25.815903pt;}
._e_c00138{width:33.514063pt;}
._a_c00138{width:34.689971pt;}
._b_c00138{width:43.017861pt;}
._8_c00138{width:45.085488pt;}
._d_c00138{width:49.095441pt;}
._c_c00138{width:61.082220pt;}
._7_c00138{width:70.241961pt;}
._f_c00138{width:158.959251pt;}
._6_c00138{width:197.739860pt;}
.fs4_c00138{font-size:39.899611pt;}
.fs2_c00138{font-size:52.566166pt;}
.fs0_c00138{font-size:58.267177pt;}
.fs1_c00138{font-size:63.333308pt;}
.fs3_c00138{font-size:68.399973pt;}
.y4_c00138{bottom:-12.032637pt;}
.y0_c00138{bottom:0.000000pt;}
.y1_c00138{bottom:0.107500pt;}
.y10_c00138{bottom:0.431250pt;}
.y13_c00138{bottom:2.690035pt;}
.yf_c00138{bottom:4.588971pt;}
.y1a_c00138{bottom:6.068128pt;}
.yb_c00138{bottom:63.856874pt;}
.y3_c00138{bottom:70.615680pt;}
.y5_c00138{bottom:73.833137pt;}
.y2_c00138{bottom:74.783670pt;}
.y30_c00138{bottom:508.666333pt;}
.y2f_c00138{bottom:525.291659pt;}
.y2e_c00138{bottom:543.022319pt;}
.y2d_c00138{bottom:562.182311pt;}
.y2c_c00138{bottom:581.342304pt;}
.y2b_c00138{bottom:600.498296pt;}
.y2a_c00138{bottom:619.816955pt;}
.y29_c00138{bottom:638.972947pt;}
.y28_c00138{bottom:658.131606pt;}
.y27_c00138{bottom:677.132932pt;}
.y26_c00138{bottom:696.446258pt;}
.y25_c00138{bottom:715.604917pt;}
.y24_c00138{bottom:734.766242pt;}
.y23_c00138{bottom:753.920901pt;}
.y22_c00138{bottom:773.080894pt;}
.y21_c00138{bottom:792.394219pt;}
.y20_c00138{bottom:811.554212pt;}
.y1f_c00138{bottom:830.715537pt;}
.y1e_c00138{bottom:848.920863pt;}
.y1d_c00138{bottom:868.396856pt;}
.y1c_c00138{bottom:883.438183pt;}
.y15_c00138{bottom:883.698813pt;}
.y17_c00138{bottom:883.856146pt;}
.y1b_c00138{bottom:885.338182pt;}
.y11_c00138{bottom:890.975061pt;}
.y19_c00138{bottom:891.298810pt;}
.y14_c00138{bottom:898.737474pt;}
.y16_c00138{bottom:899.056140pt;}
.ye_c00138{bottom:902.176000pt;}
.y18_c00138{bottom:908.552137pt;}
.y12_c00138{bottom:910.249600pt;}
.yd_c00138{bottom:928.029462pt;}
.yc_c00138{bottom:944.654789pt;}
.ya_c00138{bottom:979.014775pt;}
.y9_c00138{bottom:1000.388100pt;}
.y8_c00138{bottom:1018.912492pt;}
.y7_c00138{bottom:1037.122485pt;}
.y6_c00138{bottom:1055.329411pt;}
.h3_c00138{height:0.946240pt;}
.hd_c00138{height:10.928000pt;}
.ha_c00138{height:19.001600pt;}
.he_c00138{height:25.216554pt;}
.h7_c00138{height:33.221817pt;}
.h6_c00138{height:36.824856pt;}
.hf_c00138{height:38.268169pt;}
.h8_c00138{height:43.228783pt;}
.h11_c00138{height:47.046718pt;}
.hc_c00138{height:47.099284pt;}
.h9_c00138{height:47.151851pt;}
.h2_c00138{height:52.149123pt;}
.h4_c00138{height:56.683311pt;}
.h5_c00138{height:56.936644pt;}
.h10_c00138{height:1110.960672pt;}
.hb_c00138{height:1122.235200pt;}
.h1_c00138{height:1122.559167pt;}
.h0_c00138{height:1122.666667pt;}
.w2_c00138{width:3.643200pt;}
.w5_c00138{width:5.859200pt;}
.w6_c00138{width:5.862400pt;}
.w7_c00138{width:9.974400pt;}
.w8_c00138{width:9.976000pt;}
.w3_c00138{width:9.976320pt;}
.w9_c00138{width:785.062974pt;}
.w4_c00138{width:793.032000pt;}
.w1_c00138{width:793.257550pt;}
.w0_c00138{width:793.333333pt;}
.x0_c00138{left:0.000000pt;}
.x14_c00138{left:1.370626pt;}
.x28_c00138{left:100.224934pt;}
.x7_c00138{left:101.584309pt;}
.x8_c00138{left:111.253120pt;}
.x2_c00138{left:112.191772pt;}
.x26_c00138{left:146.297315pt;}
.x25_c00138{left:156.117311pt;}
.x27_c00138{left:158.966644pt;}
.x9_c00138{left:167.890933pt;}
.x4_c00138{left:224.448440pt;}
.x3_c00138{left:240.124654pt;}
.xa_c00138{left:253.116800pt;}
.xc_c00138{left:261.499312pt;}
.x6_c00138{left:262.924069pt;}
.xb_c00138{left:266.408643pt;}
.xd_c00138{left:288.742400pt;}
.xe_c00138{left:292.688633pt;}
.xf_c00138{left:305.832628pt;}
.x17_c00138{left:354.189232pt;}
.x16_c00138{left:355.771898pt;}
.x5_c00138{left:373.596470pt;}
.x18_c00138{left:392.822550pt;}
.x19_c00138{left:394.565216pt;}
.x10_c00138{left:413.023251pt;}
.x1a_c00138{left:433.671867pt;}
.x1b_c00138{left:435.097200pt;}
.x1_c00138{left:449.756570pt;}
.x1d_c00138{left:467.555853pt;}
.x1c_c00138{left:473.411851pt;}
.x1e_c00138{left:478.638516pt;}
.x20_c00138{left:507.931837pt;}
.x1f_c00138{left:512.362502pt;}
.x21_c00138{left:519.013166pt;}
.x23_c00138{left:548.303821pt;}
.x22_c00138{left:553.055819pt;}
.x24_c00138{left:559.386483pt;}
.x11_c00138{left:583.875200pt;}
.x12_c00138{left:586.868515pt;}
.x13_c00138{left:626.940800pt;}
.x15_c00138{left:631.902454pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls0_c00139{letter-spacing:0.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:0.000000px;}
._1_c00139{margin-left:-1.160564px;}
._0_c00139{width:1.001699px;}
.fc0_c00139{color:rgb(35,31,32);}
.fs0_c00139{font-size:106.873757px;}
.y0_c00139{bottom:0.000000px;}
.y1_c00139{bottom:0.120938px;}
.y2_c00139{bottom:407.959899px;}
.h2_c00139{height:95.865760px;}
.h1_c00139{height:1262.879062px;}
.h0_c00139{height:1263.000000px;}
.w1_c00139{width:892.414744px;}
.w0_c00139{width:892.500000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:108.404900px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:0.000000pt;}
._1_c00139{margin-left:-1.031612pt;}
._0_c00139{width:0.890399pt;}
.fs0_c00139{font-size:94.998895pt;}
.y0_c00139{bottom:0.000000pt;}
.y1_c00139{bottom:0.107500pt;}
.y2_c00139{bottom:362.631022pt;}
.h2_c00139{height:85.214009pt;}
.h1_c00139{height:1122.559167pt;}
.h0_c00139{height:1122.666667pt;}
.w1_c00139{width:793.257550pt;}
.w0_c00139{width:793.333333pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.113000;font-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_c00140{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-20.840692px;}
.ws1_c00140{word-spacing:0.000000px;}
._6_c00140{margin-left:-15.160056px;}
._2_c00140{margin-left:-10.327820px;}
._3_c00140{margin-left:-8.275728px;}
._4_c00140{margin-left:-6.020697px;}
._5_c00140{margin-left:-4.208680px;}
._0_c00140{margin-left:-1.339562px;}
._1_c00140{width:1.056287px;}
.fc1_c00140{color:rgb(105,148,45);}
.fc0_c00140{color:rgb(35,31,32);}
.fs4_c00140{font-size:41.324503px;}
.fs2_c00140{font-size:59.136936px;}
.fs0_c00140{font-size:65.550574px;}
.fs1_c00140{font-size:71.249972px;}
.fs3_c00140{font-size:83.362767px;}
.y0_c00140{bottom:0.000000px;}
.y1_c00140{bottom:0.120938px;}
.y8_c00140{bottom:6.826644px;}
.ya_c00140{bottom:65.133277px;}
.y3_c00140{bottom:83.414442px;}
.y2_c00140{bottom:84.131629px;}
.y13_c00140{bottom:864.190008px;}
.y12_c00140{bottom:879.865451px;}
.y11_c00140{bottom:907.475790px;}
.y10_c00140{bottom:935.082529px;}
.yf_c00140{bottom:973.380964px;}
.ye_c00140{bottom:1012.928448px;}
.yd_c00140{bottom:1040.537437px;}
.yc_c00140{bottom:1053.360932px;}
.yb_c00140{bottom:1077.586372px;}
.y9_c00140{bottom:1094.153416px;}
.y7_c00140{bottom:1125.258112px;}
.y6_c00140{bottom:1146.098804px;}
.y5_c00140{bottom:1166.584296px;}
.y4_c00140{bottom:1187.067088px;}
.h9_c00140{height:26.117086px;}
.h7_c00140{height:37.374544px;}
.h6_c00140{height:41.427963px;}
.h2_c00140{height:58.667764px;}
.ha_c00140{height:58.929966px;}
.h3_c00140{height:63.768724px;}
.h4_c00140{height:64.053724px;}
.h8_c00140{height:74.943127px;}
.h5_c00140{height:1249.830756px;}
.h1_c00140{height:1262.879062px;}
.h0_c00140{height:1263.000000px;}
.w2_c00140{width:883.195846px;}
.w1_c00140{width:892.414744px;}
.w0_c00140{width:892.500000px;}
.x0_c00140{left:0.000000px;}
.x7_c00140{left:1.541954px;}
.x8_c00140{left:112.753050px;}
.x2_c00140{left:126.216356px;}
.xb_c00140{left:127.537178px;}
.x4_c00140{left:252.504495px;}
.x3_c00140{left:270.140236px;}
.x6_c00140{left:391.081971px;}
.x9_c00140{left:405.407883px;}
.x5_c00140{left:420.296029px;}
.x1_c00140{left:497.784645px;}
.xa_c00140{left:767.354739px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws0_c00140{word-spacing:-18.525059pt;}
.ws1_c00140{word-spacing:0.000000pt;}
._6_c00140{margin-left:-13.475605pt;}
._2_c00140{margin-left:-9.180284pt;}
._3_c00140{margin-left:-7.356203pt;}
._4_c00140{margin-left:-5.351730pt;}
._5_c00140{margin-left:-3.741049pt;}
._0_c00140{margin-left:-1.190722pt;}
._1_c00140{width:0.938922pt;}
.fs4_c00140{font-size:36.732892pt;}
.fs2_c00140{font-size:52.566166pt;}
.fs0_c00140{font-size:58.267177pt;}
.fs1_c00140{font-size:63.333308pt;}
.fs3_c00140{font-size:74.100237pt;}
.y0_c00140{bottom:0.000000pt;}
.y1_c00140{bottom:0.107500pt;}
.y8_c00140{bottom:6.068128pt;}
.ya_c00140{bottom:57.896246pt;}
.y3_c00140{bottom:74.146170pt;}
.y2_c00140{bottom:74.783670pt;}
.y13_c00140{bottom:768.168896pt;}
.y12_c00140{bottom:782.102623pt;}
.y11_c00140{bottom:806.645147pt;}
.y10_c00140{bottom:831.184470pt;}
.yf_c00140{bottom:865.227523pt;}
.ye_c00140{bottom:900.380843pt;}
.yd_c00140{bottom:924.922166pt;}
.yc_c00140{bottom:936.320828pt;}
.yb_c00140{bottom:957.854553pt;}
.y9_c00140{bottom:972.580814pt;}
.y7_c00140{bottom:1000.229433pt;}
.y6_c00140{bottom:1018.754492pt;}
.y5_c00140{bottom:1036.963819pt;}
.y4_c00140{bottom:1055.170745pt;}
.h9_c00140{height:23.215188pt;}
.h7_c00140{height:33.221817pt;}
.h6_c00140{height:36.824856pt;}
.h2_c00140{height:52.149123pt;}
.ha_c00140{height:52.382192pt;}
.h3_c00140{height:56.683311pt;}
.h4_c00140{height:56.936644pt;}
.h8_c00140{height:66.616113pt;}
.h5_c00140{height:1110.960672pt;}
.h1_c00140{height:1122.559167pt;}
.h0_c00140{height:1122.666667pt;}
.w2_c00140{width:785.062974pt;}
.w1_c00140{width:793.257550pt;}
.w0_c00140{width:793.333333pt;}
.x0_c00140{left:0.000000pt;}
.x7_c00140{left:1.370626pt;}
.x8_c00140{left:100.224934pt;}
.x2_c00140{left:112.192317pt;}
.xb_c00140{left:113.366381pt;}
.x4_c00140{left:224.448440pt;}
.x3_c00140{left:240.124654pt;}
.x6_c00140{left:347.628419pt;}
.x9_c00140{left:360.362563pt;}
.x5_c00140{left:373.596470pt;}
.x1_c00140{left:442.475240pt;}
.xa_c00140{left:682.093101pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00141;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;line-height:1.112000;font-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_c00141{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:0.000000px;}
._9_c00141{margin-left:-4.250302px;}
._a_c00141{margin-left:-2.424867px;}
._0_c00141{margin-left:-1.339562px;}
._1_c00141{width:1.056287px;}
._3_c00141{width:3.055338px;}
._2_c00141{width:4.124630px;}
._4_c00141{width:5.236646px;}
._8_c00141{width:6.240920px;}
._f_c00141{width:7.492946px;}
._6_c00141{width:8.769961px;}
._7_c00141{width:9.806984px;}
._5_c00141{width:14.215180px;}
._e_c00141{width:15.731935px;}
._c_c00141{width:29.226835px;}
._d_c00141{width:30.875915px;}
._b_c00141{width:58.979458px;}
.fc1_c00141{color:rgb(105,148,45);}
.fc0_c00141{color:rgb(35,31,32);}
.fs4_c00141{font-size:38.474625px;}
.fs3_c00141{font-size:47.737061px;}
.fs2_c00141{font-size:59.136936px;}
.fs0_c00141{font-size:65.550574px;}
.fs1_c00141{font-size:71.249972px;}
.y0_c00141{bottom:0.000000px;}
.y1_c00141{bottom:0.120938px;}
.y8_c00141{bottom:6.826644px;}
.ya_c00141{bottom:65.133277px;}
.y3_c00141{bottom:83.414442px;}
.y2_c00141{bottom:84.131629px;}
.y2d_c00141{bottom:132.643900px;}
.y2c_c00141{bottom:161.142989px;}
.y2b_c00141{bottom:189.821327px;}
.y2a_c00141{bottom:218.320416px;}
.y29_c00141{bottom:246.998754px;}
.y28_c00141{bottom:275.498743px;}
.y27_c00141{bottom:293.308236px;}
.y26_c00141{bottom:309.692729px;}
.y25_c00141{bottom:349.417214px;}
.y24_c00141{bottom:390.029547px;}
.y23_c00141{bottom:420.665385px;}
.y22_c00141{bottom:451.484823px;}
.y21_c00141{bottom:482.120660px;}
.y20_c00141{bottom:501.712153px;}
.y1f_c00141{bottom:517.564146px;}
.y1e_c00141{bottom:544.106186px;}
.y1d_c00141{bottom:574.744123px;}
.y1c_c00141{bottom:605.559961px;}
.y1b_c00141{bottom:636.197149px;}
.y1a_c00141{bottom:667.012986px;}
.y19_c00141{bottom:697.649574px;}
.y18_c00141{bottom:715.819067px;}
.y17_c00141{bottom:728.641062px;}
.y16_c00141{bottom:747.524554px;}
.y15_c00141{bottom:788.847738px;}
.y14_c00141{bottom:819.662225px;}
.y13_c00141{bottom:850.300913px;}
.y12_c00141{bottom:881.112551px;}
.y11_c00141{bottom:911.751989px;}
.y10_c00141{bottom:942.567826px;}
.yf_c00141{bottom:973.203664px;}
.ye_c00141{bottom:1003.484452px;}
.yd_c00141{bottom:1022.544944px;}
.yc_c00141{bottom:1040.537437px;}
.yb_c00141{bottom:1077.586372px;}
.y9_c00141{bottom:1094.153416px;}
.y7_c00141{bottom:1125.258112px;}
.y6_c00141{bottom:1146.098804px;}
.y5_c00141{bottom:1166.584296px;}
.y4_c00141{bottom:1187.067088px;}
.hb_c00141{height:24.315963px;}
.h9_c00141{height:30.169822px;}
.h7_c00141{height:37.374544px;}
.h6_c00141{height:41.427963px;}
.h2_c00141{height:58.667764px;}
.h3_c00141{height:63.768724px;}
.ha_c00141{height:63.839974px;}
.h8_c00141{height:63.911224px;}
.h4_c00141{height:64.053724px;}
.h5_c00141{height:1249.830756px;}
.h1_c00141{height:1262.879062px;}
.h0_c00141{height:1263.000000px;}
.w2_c00141{width:883.195846px;}
.w1_c00141{width:892.414744px;}
.w0_c00141{width:892.500000px;}
.x0_c00141{left:0.000000px;}
.x7_c00141{left:1.541954px;}
.x8_c00141{left:112.753050px;}
.x2_c00141{left:126.216356px;}
.x9_c00141{left:166.192479px;}
.xa_c00141{left:178.837474px;}
.xb_c00141{left:206.444963px;}
.x4_c00141{left:252.504495px;}
.x3_c00141{left:270.140236px;}
.x6_c00141{left:391.081971px;}
.x5_c00141{left:420.296029px;}
.x1_c00141{left:497.784645px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
._9_c00141{margin-left:-3.778046pt;}
._a_c00141{margin-left:-2.155437pt;}
._0_c00141{margin-left:-1.190722pt;}
._1_c00141{width:0.938922pt;}
._3_c00141{width:2.715856pt;}
._2_c00141{width:3.666338pt;}
._4_c00141{width:4.654796pt;}
._8_c00141{width:5.547485pt;}
._f_c00141{width:6.660397pt;}
._6_c00141{width:7.795521pt;}
._7_c00141{width:8.717319pt;}
._5_c00141{width:12.635716pt;}
._e_c00141{width:13.983942pt;}
._c_c00141{width:25.979409pt;}
._d_c00141{width:27.445258pt;}
._b_c00141{width:52.426185pt;}
.fs4_c00141{font-size:34.199666pt;}
.fs3_c00141{font-size:42.432943pt;}
.fs2_c00141{font-size:52.566166pt;}
.fs0_c00141{font-size:58.267177pt;}
.fs1_c00141{font-size:63.333308pt;}
.y0_c00141{bottom:0.000000pt;}
.y1_c00141{bottom:0.107500pt;}
.y8_c00141{bottom:6.068128pt;}
.ya_c00141{bottom:57.896246pt;}
.y3_c00141{bottom:74.146170pt;}
.y2_c00141{bottom:74.783670pt;}
.y2d_c00141{bottom:117.905689pt;}
.y2c_c00141{bottom:143.238212pt;}
.y2b_c00141{bottom:168.730069pt;}
.y2a_c00141{bottom:194.062592pt;}
.y29_c00141{bottom:219.554448pt;}
.y28_c00141{bottom:244.887772pt;}
.y27_c00141{bottom:260.718432pt;}
.y26_c00141{bottom:275.282426pt;}
.y25_c00141{bottom:310.593079pt;}
.y24_c00141{bottom:346.692931pt;}
.y23_c00141{bottom:373.924787pt;}
.y22_c00141{bottom:401.319842pt;}
.y21_c00141{bottom:428.551698pt;}
.y20_c00141{bottom:445.966358pt;}
.y1f_c00141{bottom:460.057019pt;}
.y1e_c00141{bottom:483.649943pt;}
.y1d_c00141{bottom:510.883665pt;}
.y1c_c00141{bottom:538.275521pt;}
.y1b_c00141{bottom:565.508577pt;}
.y1a_c00141{bottom:592.900432pt;}
.y19_c00141{bottom:620.132955pt;}
.y18_c00141{bottom:636.283615pt;}
.y17_c00141{bottom:647.680944pt;}
.y16_c00141{bottom:664.466270pt;}
.y15_c00141{bottom:701.197989pt;}
.y14_c00141{bottom:728.588645pt;}
.y13_c00141{bottom:755.823034pt;}
.y12_c00141{bottom:783.211156pt;}
.y11_c00141{bottom:810.446212pt;}
.y10_c00141{bottom:837.838068pt;}
.yf_c00141{bottom:865.069924pt;}
.ye_c00141{bottom:891.986179pt;}
.yd_c00141{bottom:908.928839pt;}
.yc_c00141{bottom:924.922166pt;}
.yb_c00141{bottom:957.854553pt;}
.y9_c00141{bottom:972.580814pt;}
.y7_c00141{bottom:1000.229433pt;}
.y6_c00141{bottom:1018.754492pt;}
.y5_c00141{bottom:1036.963819pt;}
.y4_c00141{bottom:1055.170745pt;}
.hb_c00141{height:21.614189pt;}
.h9_c00141{height:26.817620pt;}
.h7_c00141{height:33.221817pt;}
.h6_c00141{height:36.824856pt;}
.h2_c00141{height:52.149123pt;}
.h3_c00141{height:56.683311pt;}
.ha_c00141{height:56.746644pt;}
.h8_c00141{height:56.809977pt;}
.h4_c00141{height:56.936644pt;}
.h5_c00141{height:1110.960672pt;}
.h1_c00141{height:1122.559167pt;}
.h0_c00141{height:1122.666667pt;}
.w2_c00141{width:785.062974pt;}
.w1_c00141{width:793.257550pt;}
.w0_c00141{width:793.333333pt;}
.x0_c00141{left:0.000000pt;}
.x7_c00141{left:1.370626pt;}
.x8_c00141{left:100.224934pt;}
.x2_c00141{left:112.192317pt;}
.x9_c00141{left:147.726648pt;}
.xa_c00141{left:158.966644pt;}
.xb_c00141{left:183.506634pt;}
.x4_c00141{left:224.448440pt;}
.x3_c00141{left:240.124654pt;}
.x6_c00141{left:347.628419pt;}
.x5_c00141{left:373.596470pt;}
.x1_c00141{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.112000;font-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_c00142{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:0.000000px;}
._0_c00142{margin-left:-1.339562px;}
._1_c00142{width:1.056287px;}
._b_c00142{width:2.766042px;}
._4_c00142{width:4.032731px;}
._5_c00142{width:5.073193px;}
._8_c00142{width:9.630060px;}
._6_c00142{width:10.798716px;}
._7_c00142{width:12.613803px;}
._d_c00142{width:14.414122px;}
._e_c00142{width:15.422739px;}
._3_c00142{width:19.241396px;}
._2_c00142{width:20.808336px;}
._c_c00142{width:22.898122px;}
._a_c00142{width:26.960086px;}
._9_c00142{width:28.134748px;}
.fc1_c00142{color:rgb(105,148,45);}
.fc0_c00142{color:rgb(35,31,32);}
.fs3_c00142{font-size:47.737061px;}
.fs2_c00142{font-size:59.136936px;}
.fs0_c00142{font-size:65.550574px;}
.fs1_c00142{font-size:71.249972px;}
.y0_c00142{bottom:0.000000px;}
.y1_c00142{bottom:0.120938px;}
.y8_c00142{bottom:6.826644px;}
.ya_c00142{bottom:65.133277px;}
.y3_c00142{bottom:83.414442px;}
.y2_c00142{bottom:84.131629px;}
.y2b_c00142{bottom:118.922506px;}
.y2a_c00142{bottom:147.597994px;}
.y29_c00142{bottom:176.099933px;}
.y28_c00142{bottom:204.780371px;}
.y27_c00142{bottom:233.280360px;}
.y26_c00142{bottom:319.130426px;}
.y25_c00142{bottom:347.632364px;}
.y24_c00142{bottom:376.312053px;}
.y23_c00142{bottom:404.812041px;}
.y22_c00142{bottom:433.486180px;}
.y21_c00142{bottom:461.989468px;}
.y20_c00142{bottom:490.665707px;}
.y1f_c00142{bottom:519.167646px;}
.y1e_c00142{bottom:547.844634px;}
.y1d_c00142{bottom:566.728127px;}
.y1c_c00142{bottom:586.678119px;}
.y1b_c00142{bottom:632.278100px;}
.y1a_c00142{bottom:660.780039px;}
.y19_c00142{bottom:689.457627px;}
.y18_c00142{bottom:717.959566px;}
.y15_c00142{bottom:746.631755px;}
.y17_c00142{bottom:746.635055px;}
.y16_c00142{bottom:754.825051px;}
.y14_c00142{bottom:775.130093px;}
.y13_c00142{bottom:803.810532px;}
.y12_c00142{bottom:832.487520px;}
.y11_c00142{bottom:860.987509px;}
.y10_c00142{bottom:889.664497px;}
.yf_c00142{bottom:942.212476px;}
.ye_c00142{bottom:987.811558px;}
.yd_c00142{bottom:1016.313497px;}
.yc_c00142{bottom:1044.991835px;}
.yb_c00142{bottom:1073.490924px;}
.y9_c00142{bottom:1094.153416px;}
.y7_c00142{bottom:1125.258112px;}
.y6_c00142{bottom:1146.098804px;}
.y5_c00142{bottom:1166.584296px;}
.y4_c00142{bottom:1187.067088px;}
.h7_c00142{height:37.374544px;}
.h6_c00142{height:41.427963px;}
.ha_c00142{height:42.772407px;}
.h2_c00142{height:58.667764px;}
.h9_c00142{height:58.929966px;}
.h3_c00142{height:63.768724px;}
.h8_c00142{height:63.839974px;}
.h4_c00142{height:64.053724px;}
.h5_c00142{height:1249.830756px;}
.h1_c00142{height:1262.879062px;}
.h0_c00142{height:1263.000000px;}
.w2_c00142{width:883.195846px;}
.w1_c00142{width:892.414744px;}
.w0_c00142{width:892.500000px;}
.x0_c00142{left:0.000000px;}
.x7_c00142{left:1.541954px;}
.x8_c00142{left:112.753050px;}
.x2_c00142{left:126.216356px;}
.x9_c00142{left:178.833184px;}
.x4_c00142{left:252.504495px;}
.x3_c00142{left:270.140236px;}
.x6_c00142{left:391.081971px;}
.x5_c00142{left:420.296029px;}
.x1_c00142{left:497.784645px;}
.xa_c00142{left:639.998790px;}
.xb_c00142{left:646.054287px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
._0_c00142{margin-left:-1.190722pt;}
._1_c00142{width:0.938922pt;}
._b_c00142{width:2.458704pt;}
._4_c00142{width:3.584650pt;}
._5_c00142{width:4.509505pt;}
._8_c00142{width:8.560053pt;}
._6_c00142{width:9.598858pt;}
._7_c00142{width:11.212269pt;}
._d_c00142{width:12.812553pt;}
._e_c00142{width:13.709102pt;}
._3_c00142{width:17.103463pt;}
._2_c00142{width:18.496299pt;}
._c_c00142{width:20.353886pt;}
._a_c00142{width:23.964521pt;}
._9_c00142{width:25.008665pt;}
.fs3_c00142{font-size:42.432943pt;}
.fs2_c00142{font-size:52.566166pt;}
.fs0_c00142{font-size:58.267177pt;}
.fs1_c00142{font-size:63.333308pt;}
.y0_c00142{bottom:0.000000pt;}
.y1_c00142{bottom:0.107500pt;}
.y8_c00142{bottom:6.068128pt;}
.ya_c00142{bottom:57.896246pt;}
.y3_c00142{bottom:74.146170pt;}
.y2_c00142{bottom:74.783670pt;}
.y2b_c00142{bottom:105.708894pt;}
.y2a_c00142{bottom:131.198217pt;}
.y29_c00142{bottom:156.533274pt;}
.y28_c00142{bottom:182.026997pt;}
.y27_c00142{bottom:207.360320pt;}
.y26_c00142{bottom:283.671489pt;}
.y25_c00142{bottom:309.006546pt;}
.y24_c00142{bottom:334.499602pt;}
.y23_c00142{bottom:359.832926pt;}
.y22_c00142{bottom:385.321049pt;}
.y21_c00142{bottom:410.657305pt;}
.y20_c00142{bottom:436.147295pt;}
.y1f_c00142{bottom:461.482352pt;}
.y1e_c00142{bottom:486.973008pt;}
.y1d_c00142{bottom:503.758335pt;}
.y1c_c00142{bottom:521.491661pt;}
.y1b_c00142{bottom:562.024978pt;}
.y1a_c00142{bottom:587.360035pt;}
.y19_c00142{bottom:612.851224pt;}
.y18_c00142{bottom:638.186281pt;}
.y15_c00142{bottom:663.672671pt;}
.y17_c00142{bottom:663.675604pt;}
.y16_c00142{bottom:670.955601pt;}
.y14_c00142{bottom:689.004527pt;}
.y13_c00142{bottom:714.498250pt;}
.y12_c00142{bottom:739.988907pt;}
.y11_c00142{bottom:765.322230pt;}
.y10_c00142{bottom:790.812887pt;}
.yf_c00142{bottom:837.522201pt;}
.ye_c00142{bottom:878.054718pt;}
.yd_c00142{bottom:903.389775pt;}
.yc_c00142{bottom:928.881631pt;}
.yb_c00142{bottom:954.214155pt;}
.y9_c00142{bottom:972.580814pt;}
.y7_c00142{bottom:1000.229433pt;}
.y6_c00142{bottom:1018.754492pt;}
.y5_c00142{bottom:1036.963819pt;}
.y4_c00142{bottom:1055.170745pt;}
.h7_c00142{height:33.221817pt;}
.h6_c00142{height:36.824856pt;}
.ha_c00142{height:38.019917pt;}
.h2_c00142{height:52.149123pt;}
.h9_c00142{height:52.382192pt;}
.h3_c00142{height:56.683311pt;}
.h8_c00142{height:56.746644pt;}
.h4_c00142{height:56.936644pt;}
.h5_c00142{height:1110.960672pt;}
.h1_c00142{height:1122.559167pt;}
.h0_c00142{height:1122.666667pt;}
.w2_c00142{width:785.062974pt;}
.w1_c00142{width:793.257550pt;}
.w0_c00142{width:793.333333pt;}
.x0_c00142{left:0.000000pt;}
.x7_c00142{left:1.370626pt;}
.x8_c00142{left:100.224934pt;}
.x2_c00142{left:112.192317pt;}
.x9_c00142{left:158.962830pt;}
.x4_c00142{left:224.448440pt;}
.x3_c00142{left:240.124654pt;}
.x6_c00142{left:347.628419pt;}
.x5_c00142{left:373.596470pt;}
.x1_c00142{left:442.475240pt;}
.xa_c00142{left:568.887813pt;}
.xb_c00142{left:574.270477pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.112000;font-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_c00143{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls0_c00143{letter-spacing:0.000000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:0.000000px;}
._8_c00143{margin-left:-2.393332px;}
._0_c00143{margin-left:-1.339562px;}
._1_c00143{width:1.056287px;}
._4_c00143{width:2.361101px;}
._5_c00143{width:5.596320px;}
._6_c00143{width:6.714627px;}
._2_c00143{width:8.126921px;}
._3_c00143{width:9.208104px;}
._7_c00143{width:11.234889px;}
._9_c00143{width:12.344461px;}
.fc1_c00143{color:rgb(105,148,45);}
.fc0_c00143{color:rgb(35,31,32);}
.fs3_c00143{font-size:41.324503px;}
.fs2_c00143{font-size:59.136936px;}
.fs0_c00143{font-size:65.550574px;}
.fs1_c00143{font-size:71.249972px;}
.y0_c00143{bottom:0.000000px;}
.y1_c00143{bottom:0.120938px;}
.y8_c00143{bottom:6.826644px;}
.ya_c00143{bottom:65.133277px;}
.y3_c00143{bottom:83.414442px;}
.y2_c00143{bottom:84.131629px;}
.y14_c00143{bottom:847.269564px;}
.y13_c00143{bottom:877.907502px;}
.y12_c00143{bottom:896.967994px;}
.y11_c00143{bottom:911.037989px;}
.y10_c00143{bottom:927.426982px;}
.yf_c00143{bottom:963.230468px;}
.ye_c00143{bottom:987.811558px;}
.yd_c00143{bottom:1016.313497px;}
.yc_c00143{bottom:1044.991835px;}
.yb_c00143{bottom:1073.490924px;}
.y9_c00143{bottom:1094.153416px;}
.y7_c00143{bottom:1125.258112px;}
.y6_c00143{bottom:1146.098804px;}
.y5_c00143{bottom:1166.584296px;}
.y4_c00143{bottom:1187.067088px;}
.ha_c00143{height:26.117086px;}
.h7_c00143{height:37.374544px;}
.h6_c00143{height:41.427963px;}
.h2_c00143{height:58.667764px;}
.h9_c00143{height:58.929966px;}
.h3_c00143{height:63.768724px;}
.h8_c00143{height:63.839974px;}
.h4_c00143{height:64.053724px;}
.h5_c00143{height:1249.830756px;}
.h1_c00143{height:1262.879062px;}
.h0_c00143{height:1263.000000px;}
.w2_c00143{width:883.195846px;}
.w1_c00143{width:892.414744px;}
.w0_c00143{width:892.500000px;}
.x0_c00143{left:0.000000px;}
.x7_c00143{left:1.541954px;}
.x8_c00143{left:112.753050px;}
.x2_c00143{left:126.216356px;}
.x9_c00143{left:178.837474px;}
.x4_c00143{left:252.504495px;}
.x3_c00143{left:270.140236px;}
.x6_c00143{left:391.081971px;}
.x5_c00143{left:420.296029px;}
.x1_c00143{left:497.784645px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
._8_c00143{margin-left:-2.127407pt;}
._0_c00143{margin-left:-1.190722pt;}
._1_c00143{width:0.938922pt;}
._4_c00143{width:2.098757pt;}
._5_c00143{width:4.974506pt;}
._6_c00143{width:5.968558pt;}
._2_c00143{width:7.223930pt;}
._3_c00143{width:8.184981pt;}
._7_c00143{width:9.986568pt;}
._9_c00143{width:10.972855pt;}
.fs3_c00143{font-size:36.732892pt;}
.fs2_c00143{font-size:52.566166pt;}
.fs0_c00143{font-size:58.267177pt;}
.fs1_c00143{font-size:63.333308pt;}
.y0_c00143{bottom:0.000000pt;}
.y1_c00143{bottom:0.107500pt;}
.y8_c00143{bottom:6.068128pt;}
.ya_c00143{bottom:57.896246pt;}
.y3_c00143{bottom:74.146170pt;}
.y2_c00143{bottom:74.783670pt;}
.y14_c00143{bottom:753.128502pt;}
.y13_c00143{bottom:780.362224pt;}
.y12_c00143{bottom:797.304884pt;}
.y11_c00143{bottom:809.811546pt;}
.y10_c00143{bottom:824.379540pt;}
.yf_c00143{bottom:856.204860pt;}
.ye_c00143{bottom:878.054718pt;}
.yd_c00143{bottom:903.389775pt;}
.yc_c00143{bottom:928.881631pt;}
.yb_c00143{bottom:954.214155pt;}
.y9_c00143{bottom:972.580814pt;}
.y7_c00143{bottom:1000.229433pt;}
.y6_c00143{bottom:1018.754492pt;}
.y5_c00143{bottom:1036.963819pt;}
.y4_c00143{bottom:1055.170745pt;}
.ha_c00143{height:23.215188pt;}
.h7_c00143{height:33.221817pt;}
.h6_c00143{height:36.824856pt;}
.h2_c00143{height:52.149123pt;}
.h9_c00143{height:52.382192pt;}
.h3_c00143{height:56.683311pt;}
.h8_c00143{height:56.746644pt;}
.h4_c00143{height:56.936644pt;}
.h5_c00143{height:1110.960672pt;}
.h1_c00143{height:1122.559167pt;}
.h0_c00143{height:1122.666667pt;}
.w2_c00143{width:785.062974pt;}
.w1_c00143{width:793.257550pt;}
.w0_c00143{width:793.333333pt;}
.x0_c00143{left:0.000000pt;}
.x7_c00143{left:1.370626pt;}
.x8_c00143{left:100.224934pt;}
.x2_c00143{left:112.192317pt;}
.x9_c00143{left:158.966644pt;}
.x4_c00143{left:224.448440pt;}
.x3_c00143{left:240.124654pt;}
.x6_c00143{left:347.628419pt;}
.x5_c00143{left:373.596470pt;}
.x1_c00143{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:0.000000px;}
.fc0_c00144{color:rgb(35,31,32);}
.fs0_c00144{font-size:106.873757px;}
.y0_c00144{bottom:0.000000px;}
.y1_c00144{bottom:0.120938px;}
.y2_c00144{bottom:382.485409px;}
.h2_c00144{height:95.865760px;}
.h1_c00144{height:1262.879062px;}
.h0_c00144{height:1263.000000px;}
.w1_c00144{width:892.414744px;}
.w0_c00144{width:892.500000px;}
.x0_c00144{left:0.000000px;}
.x1_c00144{left:108.404900px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws0_c00144{word-spacing:0.000000pt;}
.fs0_c00144{font-size:94.998895pt;}
.y0_c00144{bottom:0.000000pt;}
.y1_c00144{bottom:0.107500pt;}
.y2_c00144{bottom:339.987031pt;}
.h2_c00144{height:85.214009pt;}
.h1_c00144{height:1122.559167pt;}
.h0_c00144{height:1122.666667pt;}
.w1_c00144{width:793.257550pt;}
.w0_c00144{width:793.333333pt;}
.x0_c00144{left:0.000000pt;}
.x1_c00144{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.089000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00145;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:1.113000;font-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_c00145{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls2_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:0.018600px;}
.ls1_c00145{letter-spacing:89.265729px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:-20.840692px;}
.ws1_c00145{word-spacing:-16.387643px;}
.ws2_c00145{word-spacing:0.000000px;}
._8_c00145{margin-left:-16.386350px;}
._5_c00145{margin-left:-14.289199px;}
._3_c00145{margin-left:-11.901498px;}
._7_c00145{margin-left:-10.544226px;}
._6_c00145{margin-left:-9.279555px;}
._4_c00145{margin-left:-6.314864px;}
._2_c00145{margin-left:-3.415194px;}
._0_c00145{margin-left:-1.310540px;}
._1_c00145{width:1.015395px;}
.fc1_c00145{color:rgb(105,148,45);}
.fc0_c00145{color:rgb(16,15,13);}
.fs2_c00145{font-size:59.136936px;}
.fs0_c00145{font-size:65.550574px;}
.fs1_c00145{font-size:71.249972px;}
.fs3_c00145{font-size:83.362767px;}
.yc_c00145{bottom:-0.005247px;}
.y0_c00145{bottom:0.000000px;}
.y1_c00145{bottom:0.120938px;}
.y4_c00145{bottom:3.919106px;}
.yd_c00145{bottom:6.826644px;}
.yf_c00145{bottom:65.134327px;}
.y3_c00145{bottom:80.333460px;}
.y5_c00145{bottom:83.414479px;}
.y2_c00145{bottom:84.131629px;}
.y28_c00145{bottom:370.082705px;}
.y27_c00145{bottom:396.085195px;}
.y26_c00145{bottom:435.805179px;}
.y25_c00145{bottom:464.839167px;}
.y24_c00145{bottom:492.630106px;}
.y23_c00145{bottom:520.237595px;}
.y22_c00145{bottom:538.939288px;}
.y21_c00145{bottom:577.237122px;}
.y20_c00145{bottom:577.238772px;}
.y1f_c00145{bottom:607.874610px;}
.y1e_c00145{bottom:647.594594px;}
.y1d_c00145{bottom:676.627383px;}
.y1c_c00145{bottom:704.414872px;}
.y1b_c00145{bottom:742.534056px;}
.y1a_c00145{bottom:771.749845px;}
.y19_c00145{bottom:799.358084px;}
.y18_c00145{bottom:837.478018px;}
.y17_c00145{bottom:877.193502px;}
.y16_c00145{bottom:916.740987px;}
.y15_c00145{bottom:956.460971px;}
.y14_c00145{bottom:996.005455px;}
.y13_c00145{bottom:1026.107443px;}
.y12_c00145{bottom:1050.687933px;}
.y11_c00145{bottom:1067.255606px;}
.y10_c00145{bottom:1082.040920px;}
.ye_c00145{bottom:1097.712914px;}
.yb_c00145{bottom:1117.189800px;}
.ya_c00145{bottom:1125.434362px;}
.y6_c00145{bottom:1126.681612px;}
.y9_c00145{bottom:1146.275654px;}
.y8_c00145{bottom:1166.761146px;}
.y7_c00145{bottom:1187.243188px;}
.h7_c00145{height:16.030800px;}
.h3_c00145{height:18.521640px;}
.h9_c00145{height:37.374544px;}
.ha_c00145{height:41.427963px;}
.h2_c00145{height:45.885402px;}
.h5_c00145{height:49.874980px;}
.h4_c00145{height:58.733314px;}
.hc_c00145{height:58.929966px;}
.h6_c00145{height:64.053724px;}
.hb_c00145{height:74.943127px;}
.h8_c00145{height:1249.830756px;}
.h1_c00145{height:1262.879062px;}
.h0_c00145{height:1263.000000px;}
.w2_c00145{width:6.053400px;}
.w3_c00145{width:8.728200px;}
.w4_c00145{width:883.195846px;}
.w1_c00145{width:892.414744px;}
.w0_c00145{width:892.500000px;}
.x0_c00145{left:0.000000px;}
.xa_c00145{left:1.541954px;}
.xb_c00145{left:112.753050px;}
.x3_c00145{left:126.215743px;}
.xe_c00145{left:127.537178px;}
.x4_c00145{left:206.372261px;}
.x6_c00145{left:252.505788px;}
.x5_c00145{left:270.129536px;}
.x8_c00145{left:391.076818px;}
.xc_c00145{left:405.586383px;}
.x7_c00145{left:420.297322px;}
.x1_c00145{left:497.784645px;}
.x2_c00145{left:746.101800px;}
.x9_c00145{left:762.309000px;}
.xd_c00145{left:767.354739px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls2_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:0.016533pt;}
.ls1_c00145{letter-spacing:79.347314pt;}
.ws0_c00145{word-spacing:-18.525059pt;}
.ws1_c00145{word-spacing:-14.566794pt;}
.ws2_c00145{word-spacing:0.000000pt;}
._8_c00145{margin-left:-14.565644pt;}
._5_c00145{margin-left:-12.701510pt;}
._3_c00145{margin-left:-10.579109pt;}
._7_c00145{margin-left:-9.372646pt;}
._6_c00145{margin-left:-8.248493pt;}
._4_c00145{margin-left:-5.613213pt;}
._2_c00145{margin-left:-3.035728pt;}
._0_c00145{margin-left:-1.164925pt;}
._1_c00145{width:0.902574pt;}
.fs2_c00145{font-size:52.566166pt;}
.fs0_c00145{font-size:58.267177pt;}
.fs1_c00145{font-size:63.333308pt;}
.fs3_c00145{font-size:74.100237pt;}
.yc_c00145{bottom:-0.004664pt;}
.y0_c00145{bottom:0.000000pt;}
.y1_c00145{bottom:0.107500pt;}
.y4_c00145{bottom:3.483650pt;}
.yd_c00145{bottom:6.068128pt;}
.yf_c00145{bottom:57.897180pt;}
.y3_c00145{bottom:71.407520pt;}
.y5_c00145{bottom:74.146204pt;}
.y2_c00145{bottom:74.783670pt;}
.y28_c00145{bottom:328.962405pt;}
.y27_c00145{bottom:352.075729pt;}
.y26_c00145{bottom:387.382381pt;}
.y25_c00145{bottom:413.190371pt;}
.y24_c00145{bottom:437.893428pt;}
.y23_c00145{bottom:462.433418pt;}
.y22_c00145{bottom:479.057145pt;}
.y21_c00145{bottom:513.099664pt;}
.y20_c00145{bottom:513.101131pt;}
.y1f_c00145{bottom:540.332987pt;}
.y1e_c00145{bottom:575.639639pt;}
.y1d_c00145{bottom:601.446562pt;}
.y1c_c00145{bottom:626.146552pt;}
.y1b_c00145{bottom:660.030272pt;}
.y1a_c00145{bottom:685.999862pt;}
.y19_c00145{bottom:710.540519pt;}
.y18_c00145{bottom:744.424905pt;}
.y17_c00145{bottom:779.727558pt;}
.y16_c00145{bottom:814.880877pt;}
.y15_c00145{bottom:850.187529pt;}
.y14_c00145{bottom:885.338182pt;}
.y13_c00145{bottom:912.095505pt;}
.y12_c00145{bottom:933.944829pt;}
.y11_c00145{bottom:948.671650pt;}
.y10_c00145{bottom:961.814152pt;}
.ye_c00145{bottom:975.744813pt;}
.yb_c00145{bottom:993.057600pt;}
.ya_c00145{bottom:1000.386100pt;}
.y6_c00145{bottom:1001.494766pt;}
.y9_c00145{bottom:1018.911692pt;}
.y8_c00145{bottom:1037.121018pt;}
.y7_c00145{bottom:1055.327278pt;}
.h7_c00145{height:14.249600pt;}
.h3_c00145{height:16.463680pt;}
.h9_c00145{height:33.221817pt;}
.ha_c00145{height:36.824856pt;}
.h2_c00145{height:40.787024pt;}
.h5_c00145{height:44.333316pt;}
.h4_c00145{height:52.207390pt;}
.hc_c00145{height:52.382192pt;}
.h6_c00145{height:56.936644pt;}
.hb_c00145{height:66.616113pt;}
.h8_c00145{height:1110.960672pt;}
.h1_c00145{height:1122.559167pt;}
.h0_c00145{height:1122.666667pt;}
.w2_c00145{width:5.380800pt;}
.w3_c00145{width:7.758400pt;}
.w4_c00145{width:785.062974pt;}
.w1_c00145{width:793.257550pt;}
.w0_c00145{width:793.333333pt;}
.x0_c00145{left:0.000000pt;}
.xa_c00145{left:1.370626pt;}
.xb_c00145{left:100.224934pt;}
.x3_c00145{left:112.191772pt;}
.xe_c00145{left:113.366381pt;}
.x4_c00145{left:183.442010pt;}
.x6_c00145{left:224.449590pt;}
.x5_c00145{left:240.115143pt;}
.x8_c00145{left:347.623838pt;}
.xc_c00145{left:360.521230pt;}
.x7_c00145{left:373.597619pt;}
.x1_c00145{left:442.475240pt;}
.x2_c00145{left:663.201600pt;}
.x9_c00145{left:677.608000pt;}
.xd_c00145{left:682.093101pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00146;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00146;src:url('chunks/assets/font_281919fffe4c62e6ed1b3365.woff2')format("woff");}.ff6_c00146{font-family:ff6_c00146;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00146;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff7_c00146{font-family:ff7_c00146;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00146{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls3_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.018600px;}
.ls1_c00146{letter-spacing:0.018660px;}
.ls2_c00146{letter-spacing:54.335078px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:0.000000px;}
._0_c00146{margin-left:-1.310540px;}
._1_c00146{width:1.015395px;}
._8_c00146{width:2.791779px;}
._7_c00146{width:4.175464px;}
._d_c00146{width:5.204407px;}
._6_c00146{width:6.738975px;}
._5_c00146{width:7.780422px;}
._a_c00146{width:9.058843px;}
._c_c00146{width:10.113892px;}
._4_c00146{width:13.241558px;}
._2_c00146{width:15.045890px;}
._3_c00146{width:16.373749px;}
._b_c00146{width:19.070495px;}
._9_c00146{width:24.766306px;}
.fc1_c00146{color:rgb(105,148,45);}
.fc0_c00146{color:rgb(16,15,13);}
.fs3_c00146{font-size:47.737061px;}
.fs2_c00146{font-size:59.136936px;}
.fs0_c00146{font-size:65.550574px;}
.fs1_c00146{font-size:71.249972px;}
.yc_c00146{bottom:-0.005247px;}
.y0_c00146{bottom:0.000000px;}
.y1_c00146{bottom:0.120938px;}
.y4_c00146{bottom:3.919106px;}
.yd_c00146{bottom:6.826644px;}
.yf_c00146{bottom:65.134327px;}
.y3_c00146{bottom:80.333460px;}
.y5_c00146{bottom:83.414479px;}
.y2_c00146{bottom:84.131629px;}
.y2f_c00146{bottom:106.103211px;}
.y2e_c00146{bottom:151.525143px;}
.y2d_c00146{bottom:197.123474px;}
.y2c_c00146{bottom:227.940062px;}
.y2b_c00146{bottom:258.574550px;}
.y2a_c00146{bottom:305.420881px;}
.y29_c00146{bottom:336.236719px;}
.y28_c00146{bottom:356.542301px;}
.y27_c00146{bottom:371.326205px;}
.y26_c00146{bottom:385.756199px;}
.y25_c00146{bottom:403.744492px;}
.y24_c00146{bottom:441.507877px;}
.y23_c00146{bottom:485.147959px;}
.y22_c00146{bottom:515.783797px;}
.y21_c00146{bottom:561.385729px;}
.y20_c00146{bottom:592.198716px;}
.y1f_c00146{bottom:622.835904px;}
.y1e_c00146{bottom:653.648892px;}
.y1d_c00146{bottom:684.288330px;}
.y1c_c00146{bottom:715.101317px;}
.y1b_c00146{bottom:745.743455px;}
.y1a_c00146{bottom:791.341787px;}
.y19_c00146{bottom:821.976274px;}
.y18_c00146{bottom:852.792862px;}
.y17_c00146{bottom:883.427350px;}
.y16_c00146{bottom:914.246038px;}
.y15_c00146{bottom:944.882625px;}
.y14_c00146{bottom:975.698463px;}
.y13_c00146{bottom:994.760455px;}
.y12_c00146{bottom:1009.185950px;}
.y11_c00146{bottom:1027.174242px;}
.y10_c00146{bottom:1077.048922px;}
.ye_c00146{bottom:1097.712914px;}
.yb_c00146{bottom:1117.189800px;}
.ya_c00146{bottom:1125.434362px;}
.y6_c00146{bottom:1126.681612px;}
.y9_c00146{bottom:1146.275654px;}
.y8_c00146{bottom:1166.761146px;}
.y7_c00146{bottom:1187.243188px;}
.h7_c00146{height:16.030800px;}
.h3_c00146{height:18.521640px;}
.hc_c00146{height:30.169822px;}
.h9_c00146{height:37.374544px;}
.ha_c00146{height:45.029982px;}
.h2_c00146{height:45.885402px;}
.h5_c00146{height:49.874980px;}
.h4_c00146{height:58.733314px;}
.hd_c00146{height:63.839974px;}
.hb_c00146{height:63.911224px;}
.h6_c00146{height:64.053724px;}
.h8_c00146{height:1249.830756px;}
.h1_c00146{height:1262.879062px;}
.h0_c00146{height:1263.000000px;}
.w2_c00146{width:6.053400px;}
.w3_c00146{width:8.728200px;}
.w4_c00146{width:883.195846px;}
.w1_c00146{width:892.414744px;}
.w0_c00146{width:892.500000px;}
.x0_c00146{left:0.000000px;}
.xa_c00146{left:1.541954px;}
.xb_c00146{left:112.753050px;}
.x3_c00146{left:126.215743px;}
.xe_c00146{left:139.471118px;}
.xd_c00146{left:166.192479px;}
.xc_c00146{left:178.837474px;}
.x4_c00146{left:206.372261px;}
.x6_c00146{left:252.505788px;}
.x5_c00146{left:270.129536px;}
.x8_c00146{left:391.076818px;}
.x7_c00146{left:420.297322px;}
.x1_c00146{left:497.784645px;}
.x2_c00146{left:746.101800px;}
.x9_c00146{left:762.309000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls3_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.016533pt;}
.ls1_c00146{letter-spacing:0.016587pt;}
.ls2_c00146{letter-spacing:48.297847pt;}
.ws0_c00146{word-spacing:0.000000pt;}
._0_c00146{margin-left:-1.164925pt;}
._1_c00146{width:0.902574pt;}
._8_c00146{width:2.481582pt;}
._7_c00146{width:3.711524pt;}
._d_c00146{width:4.626139pt;}
._6_c00146{width:5.990200pt;}
._5_c00146{width:6.915930pt;}
._a_c00146{width:8.052305pt;}
._c_c00146{width:8.990126pt;}
._4_c00146{width:11.770273pt;}
._2_c00146{width:13.374125pt;}
._3_c00146{width:14.554444pt;}
._b_c00146{width:16.951551pt;}
._9_c00146{width:22.014494pt;}
.fs3_c00146{font-size:42.432943pt;}
.fs2_c00146{font-size:52.566166pt;}
.fs0_c00146{font-size:58.267177pt;}
.fs1_c00146{font-size:63.333308pt;}
.yc_c00146{bottom:-0.004664pt;}
.y0_c00146{bottom:0.000000pt;}
.y1_c00146{bottom:0.107500pt;}
.y4_c00146{bottom:3.483650pt;}
.yd_c00146{bottom:6.068128pt;}
.yf_c00146{bottom:57.897180pt;}
.y3_c00146{bottom:71.407520pt;}
.y5_c00146{bottom:74.146204pt;}
.y2_c00146{bottom:74.783670pt;}
.y2f_c00146{bottom:94.313965pt;}
.y2e_c00146{bottom:134.689016pt;}
.y2d_c00146{bottom:175.220866pt;}
.y2c_c00146{bottom:202.613389pt;}
.y2b_c00146{bottom:229.844044pt;}
.y2a_c00146{bottom:271.485228pt;}
.y29_c00146{bottom:298.877083pt;}
.y28_c00146{bottom:316.926489pt;}
.y27_c00146{bottom:330.067738pt;}
.y26_c00146{bottom:342.894399pt;}
.y25_c00146{bottom:358.883993pt;}
.y24_c00146{bottom:392.451446pt;}
.y23_c00146{bottom:431.242630pt;}
.y22_c00146{bottom:458.474486pt;}
.y21_c00146{bottom:499.009537pt;}
.y20_c00146{bottom:526.398859pt;}
.y1f_c00146{bottom:553.631915pt;}
.y1e_c00146{bottom:581.021237pt;}
.y1d_c00146{bottom:608.256293pt;}
.y1c_c00146{bottom:635.645615pt;}
.y1b_c00146{bottom:662.883071pt;}
.y1a_c00146{bottom:703.414922pt;}
.y19_c00146{bottom:730.645577pt;}
.y18_c00146{bottom:758.038100pt;}
.y17_c00146{bottom:785.268755pt;}
.y16_c00146{bottom:812.663145pt;}
.y15_c00146{bottom:839.895667pt;}
.y14_c00146{bottom:867.287523pt;}
.y13_c00146{bottom:884.231516pt;}
.y12_c00146{bottom:897.054177pt;}
.y11_c00146{bottom:913.043771pt;}
.y10_c00146{bottom:957.376820pt;}
.ye_c00146{bottom:975.744813pt;}
.yb_c00146{bottom:993.057600pt;}
.ya_c00146{bottom:1000.386100pt;}
.y6_c00146{bottom:1001.494766pt;}
.y9_c00146{bottom:1018.911692pt;}
.y8_c00146{bottom:1037.121018pt;}
.y7_c00146{bottom:1055.327278pt;}
.h7_c00146{height:14.249600pt;}
.h3_c00146{height:16.463680pt;}
.hc_c00146{height:26.817620pt;}
.h9_c00146{height:33.221817pt;}
.ha_c00146{height:40.026651pt;}
.h2_c00146{height:40.787024pt;}
.h5_c00146{height:44.333316pt;}
.h4_c00146{height:52.207390pt;}
.hd_c00146{height:56.746644pt;}
.hb_c00146{height:56.809977pt;}
.h6_c00146{height:56.936644pt;}
.h8_c00146{height:1110.960672pt;}
.h1_c00146{height:1122.559167pt;}
.h0_c00146{height:1122.666667pt;}
.w2_c00146{width:5.380800pt;}
.w3_c00146{width:7.758400pt;}
.w4_c00146{width:785.062974pt;}
.w1_c00146{width:793.257550pt;}
.w0_c00146{width:793.333333pt;}
.x0_c00146{left:0.000000pt;}
.xa_c00146{left:1.370626pt;}
.xb_c00146{left:100.224934pt;}
.x3_c00146{left:112.191772pt;}
.xe_c00146{left:123.974327pt;}
.xd_c00146{left:147.726648pt;}
.xc_c00146{left:158.966644pt;}
.x4_c00146{left:183.442010pt;}
.x6_c00146{left:224.449590pt;}
.x5_c00146{left:240.115143pt;}
.x8_c00146{left:347.623838pt;}
.x7_c00146{left:373.597619pt;}
.x1_c00146{left:442.475240pt;}
.x2_c00146{left:663.201600pt;}
.x9_c00146{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00147;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:1.113000;font-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_c00147{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls1_c00147{letter-spacing:0.000000px;}
.ls0_c00147{letter-spacing:0.018600px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00147{word-spacing:-17.812493px;}
.ws1_c00147{word-spacing:0.000000px;}
._0_c00147{margin-left:-1.310540px;}
._1_c00147{width:1.015395px;}
._f_c00147{width:2.053344px;}
._a_c00147{width:3.319687px;}
._9_c00147{width:5.269793px;}
._b_c00147{width:6.682845px;}
._3_c00147{width:7.728789px;}
._4_c00147{width:8.832261px;}
._10_c00147{width:10.390454px;}
._2_c00147{width:13.598628px;}
._8_c00147{width:16.509488px;}
._e_c00147{width:21.261709px;}
._d_c00147{width:22.380469px;}
._5_c00147{width:24.327017px;}
._7_c00147{width:25.363346px;}
._6_c00147{width:26.551705px;}
._c_c00147{width:31.314381px;}
.fc1_c00147{color:rgb(105,148,45);}
.fc0_c00147{color:rgb(16,15,13);}
.fs3_c00147{font-size:47.737061px;}
.fs2_c00147{font-size:59.136936px;}
.fs0_c00147{font-size:65.550574px;}
.fs1_c00147{font-size:71.249972px;}
.yc_c00147{bottom:-0.005247px;}
.y0_c00147{bottom:0.000000px;}
.y1_c00147{bottom:0.120938px;}
.y4_c00147{bottom:3.919106px;}
.yd_c00147{bottom:6.826644px;}
.yf_c00147{bottom:65.134327px;}
.y3_c00147{bottom:80.333460px;}
.y5_c00147{bottom:83.414479px;}
.y2_c00147{bottom:84.131629px;}
.y2f_c00147{bottom:121.246005px;}
.y2e_c00147{bottom:166.663587px;}
.y2d_c00147{bottom:197.480774px;}
.y2c_c00147{bottom:243.081206px;}
.y2b_c00147{bottom:273.718394px;}
.y2a_c00147{bottom:304.532881px;}
.y29_c00147{bottom:335.168719px;}
.y28_c00147{bottom:365.626207px;}
.y27_c00147{bottom:411.403489px;}
.y26_c00147{bottom:457.002570px;}
.y25_c00147{bottom:487.817058px;}
.y24_c00147{bottom:518.454246px;}
.y23_c00147{bottom:549.268734px;}
.y22_c00147{bottom:594.867815px;}
.y21_c00147{bottom:625.507853px;}
.y20_c00147{bottom:656.142941px;}
.y1f_c00147{bottom:686.958778px;}
.y1e_c00147{bottom:717.594616px;}
.y1d_c00147{bottom:748.412554px;}
.y1c_c00147{bottom:779.048392px;}
.y1b_c00147{bottom:809.864229px;}
.y1a_c00147{bottom:840.502167px;}
.y19_c00147{bottom:871.318005px;}
.y18_c00147{bottom:890.552497px;}
.y17_c00147{bottom:906.584491px;}
.y16_c00147{bottom:947.912774px;}
.y15_c00147{bottom:978.549962px;}
.y14_c00147{bottom:997.785954px;}
.y13_c00147{bottom:1012.035948px;}
.y12_c00147{bottom:1030.028441px;}
.y11_c00147{bottom:1067.255606px;}
.y10_c00147{bottom:1082.040920px;}
.ye_c00147{bottom:1097.712914px;}
.yb_c00147{bottom:1117.189800px;}
.ya_c00147{bottom:1125.434362px;}
.y6_c00147{bottom:1126.681612px;}
.y9_c00147{bottom:1146.275654px;}
.y8_c00147{bottom:1166.761146px;}
.y7_c00147{bottom:1187.243188px;}
.h7_c00147{height:16.030800px;}
.h3_c00147{height:18.521640px;}
.hb_c00147{height:30.169822px;}
.h9_c00147{height:37.374544px;}
.h2_c00147{height:45.885402px;}
.h5_c00147{height:49.874980px;}
.h4_c00147{height:58.733314px;}
.hc_c00147{height:63.839974px;}
.ha_c00147{height:63.911224px;}
.h6_c00147{height:64.053724px;}
.h8_c00147{height:1249.830756px;}
.h1_c00147{height:1262.879062px;}
.h0_c00147{height:1263.000000px;}
.w2_c00147{width:6.053400px;}
.w3_c00147{width:8.728200px;}
.w4_c00147{width:883.195846px;}
.w1_c00147{width:892.414744px;}
.w0_c00147{width:892.500000px;}
.x0_c00147{left:0.000000px;}
.xa_c00147{left:1.541954px;}
.xb_c00147{left:112.753050px;}
.x3_c00147{left:126.215743px;}
.xc_c00147{left:166.192479px;}
.x4_c00147{left:206.372261px;}
.x6_c00147{left:252.505788px;}
.x5_c00147{left:270.129536px;}
.x8_c00147{left:391.076818px;}
.x7_c00147{left:420.297322px;}
.x1_c00147{left:497.784645px;}
.x2_c00147{left:746.101800px;}
.x9_c00147{left:762.309000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls1_c00147{letter-spacing:0.000000pt;}
.ls0_c00147{letter-spacing:0.016533pt;}
.ws0_c00147{word-spacing:-15.833327pt;}
.ws1_c00147{word-spacing:0.000000pt;}
._0_c00147{margin-left:-1.164925pt;}
._1_c00147{width:0.902574pt;}
._f_c00147{width:1.825195pt;}
._a_c00147{width:2.950832pt;}
._9_c00147{width:4.684260pt;}
._b_c00147{width:5.940306pt;}
._3_c00147{width:6.870035pt;}
._4_c00147{width:7.850898pt;}
._10_c00147{width:9.235959pt;}
._2_c00147{width:12.087669pt;}
._8_c00147{width:14.675101pt;}
._e_c00147{width:18.899297pt;}
._d_c00147{width:19.893750pt;}
._5_c00147{width:21.624015pt;}
._7_c00147{width:22.545196pt;}
._6_c00147{width:23.601515pt;}
._c_c00147{width:27.835005pt;}
.fs3_c00147{font-size:42.432943pt;}
.fs2_c00147{font-size:52.566166pt;}
.fs0_c00147{font-size:58.267177pt;}
.fs1_c00147{font-size:63.333308pt;}
.yc_c00147{bottom:-0.004664pt;}
.y0_c00147{bottom:0.000000pt;}
.y1_c00147{bottom:0.107500pt;}
.y4_c00147{bottom:3.483650pt;}
.yd_c00147{bottom:6.068128pt;}
.yf_c00147{bottom:57.897180pt;}
.y3_c00147{bottom:71.407520pt;}
.y5_c00147{bottom:74.146204pt;}
.y2_c00147{bottom:74.783670pt;}
.y2f_c00147{bottom:107.774226pt;}
.y2e_c00147{bottom:148.145410pt;}
.y2d_c00147{bottom:175.538466pt;}
.y2c_c00147{bottom:216.072183pt;}
.y2b_c00147{bottom:243.305239pt;}
.y2a_c00147{bottom:270.695895pt;}
.y29_c00147{bottom:297.927750pt;}
.y28_c00147{bottom:325.001073pt;}
.y27_c00147{bottom:365.691990pt;}
.y26_c00147{bottom:406.224507pt;}
.y25_c00147{bottom:433.615163pt;}
.y24_c00147{bottom:460.848219pt;}
.y23_c00147{bottom:488.238874pt;}
.y22_c00147{bottom:528.771391pt;}
.y21_c00147{bottom:556.006981pt;}
.y20_c00147{bottom:583.238170pt;}
.y1f_c00147{bottom:610.630025pt;}
.y1e_c00147{bottom:637.861881pt;}
.y1d_c00147{bottom:665.255603pt;}
.y1c_c00147{bottom:692.487459pt;}
.y1b_c00147{bottom:719.879315pt;}
.y1a_c00147{bottom:747.113037pt;}
.y19_c00147{bottom:774.504893pt;}
.y18_c00147{bottom:791.602220pt;}
.y17_c00147{bottom:805.852881pt;}
.y16_c00147{bottom:842.589133pt;}
.y15_c00147{bottom:869.822188pt;}
.y14_c00147{bottom:886.920848pt;}
.y13_c00147{bottom:899.587510pt;}
.y12_c00147{bottom:915.580837pt;}
.y11_c00147{bottom:948.671650pt;}
.y10_c00147{bottom:961.814152pt;}
.ye_c00147{bottom:975.744813pt;}
.yb_c00147{bottom:993.057600pt;}
.ya_c00147{bottom:1000.386100pt;}
.y6_c00147{bottom:1001.494766pt;}
.y9_c00147{bottom:1018.911692pt;}
.y8_c00147{bottom:1037.121018pt;}
.y7_c00147{bottom:1055.327278pt;}
.h7_c00147{height:14.249600pt;}
.h3_c00147{height:16.463680pt;}
.hb_c00147{height:26.817620pt;}
.h9_c00147{height:33.221817pt;}
.h2_c00147{height:40.787024pt;}
.h5_c00147{height:44.333316pt;}
.h4_c00147{height:52.207390pt;}
.hc_c00147{height:56.746644pt;}
.ha_c00147{height:56.809977pt;}
.h6_c00147{height:56.936644pt;}
.h8_c00147{height:1110.960672pt;}
.h1_c00147{height:1122.559167pt;}
.h0_c00147{height:1122.666667pt;}
.w2_c00147{width:5.380800pt;}
.w3_c00147{width:7.758400pt;}
.w4_c00147{width:785.062974pt;}
.w1_c00147{width:793.257550pt;}
.w0_c00147{width:793.333333pt;}
.x0_c00147{left:0.000000pt;}
.xa_c00147{left:1.370626pt;}
.xb_c00147{left:100.224934pt;}
.x3_c00147{left:112.191772pt;}
.xc_c00147{left:147.726648pt;}
.x4_c00147{left:183.442010pt;}
.x6_c00147{left:224.449590pt;}
.x5_c00147{left:240.115143pt;}
.x8_c00147{left:347.623838pt;}
.x7_c00147{left:373.597619pt;}
.x1_c00147{left:442.475240pt;}
.x2_c00147{left:663.201600pt;}
.x9_c00147{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00148;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00148{font-family:ff5_c00148;line-height:1.113000;font-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_c00148{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:0.018600px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:0.000000px;}
._0_c00148{margin-left:-1.310540px;}
._1_c00148{width:1.015395px;}
._6_c00148{width:2.277726px;}
._5_c00148{width:3.824661px;}
._8_c00148{width:4.879714px;}
._7_c00148{width:6.186378px;}
._9_c00148{width:7.275699px;}
._3_c00148{width:8.471974px;}
._4_c00148{width:10.444526px;}
._2_c00148{width:19.333773px;}
.fc1_c00148{color:rgb(105,148,45);}
.fc0_c00148{color:rgb(16,15,13);}
.fs3_c00148{font-size:47.737061px;}
.fs2_c00148{font-size:59.136936px;}
.fs0_c00148{font-size:65.550574px;}
.fs1_c00148{font-size:71.249972px;}
.yc_c00148{bottom:-0.005247px;}
.y0_c00148{bottom:0.000000px;}
.y1_c00148{bottom:0.120938px;}
.y4_c00148{bottom:3.919106px;}
.yd_c00148{bottom:6.826644px;}
.yf_c00148{bottom:65.134327px;}
.y3_c00148{bottom:80.333460px;}
.y5_c00148{bottom:83.414479px;}
.y2_c00148{bottom:84.131629px;}
.y26_c00148{bottom:351.375463px;}
.y25_c00148{bottom:396.975144px;}
.y24_c00148{bottom:442.575576px;}
.y23_c00148{bottom:487.993908px;}
.y22_c00148{bottom:518.811846px;}
.y21_c00148{bottom:564.411528px;}
.y20_c00148{bottom:595.048115px;}
.y1f_c00148{bottom:614.286493px;}
.y1e_c00148{bottom:629.071102px;}
.y1d_c00148{bottom:643.498096px;}
.y1c_c00148{bottom:661.309839px;}
.y1b_c00148{bottom:710.115169px;}
.y1a_c00148{bottom:755.718451px;}
.y19_c00148{bottom:786.351439px;}
.y18_c00148{bottom:817.169376px;}
.y17_c00148{bottom:847.808064px;}
.y16_c00148{bottom:878.622552px;}
.y15_c00148{bottom:909.259140px;}
.y14_c00148{bottom:954.856121px;}
.y13_c00148{bottom:985.671959px;}
.y12_c00148{bottom:1016.311397px;}
.y11_c00148{bottom:1047.127234px;}
.y10_c00148{bottom:1077.764422px;}
.ye_c00148{bottom:1097.712914px;}
.yb_c00148{bottom:1117.189800px;}
.ya_c00148{bottom:1125.434362px;}
.y6_c00148{bottom:1126.681612px;}
.y9_c00148{bottom:1146.275654px;}
.y8_c00148{bottom:1166.761146px;}
.y7_c00148{bottom:1187.243188px;}
.h7_c00148{height:16.030800px;}
.h3_c00148{height:18.521640px;}
.hc_c00148{height:30.169822px;}
.h9_c00148{height:37.374544px;}
.h2_c00148{height:45.885402px;}
.h5_c00148{height:49.874980px;}
.h4_c00148{height:58.733314px;}
.ha_c00148{height:63.839974px;}
.hb_c00148{height:63.911224px;}
.h6_c00148{height:64.053724px;}
.h8_c00148{height:1249.830756px;}
.h1_c00148{height:1262.879062px;}
.h0_c00148{height:1263.000000px;}
.w2_c00148{width:6.053400px;}
.w3_c00148{width:8.728200px;}
.w4_c00148{width:883.195846px;}
.w1_c00148{width:892.414744px;}
.w0_c00148{width:892.500000px;}
.x0_c00148{left:0.000000px;}
.xa_c00148{left:1.541954px;}
.xb_c00148{left:112.753050px;}
.x3_c00148{left:126.215743px;}
.xc_c00148{left:166.192479px;}
.x4_c00148{left:206.372261px;}
.x6_c00148{left:252.505788px;}
.x5_c00148{left:270.129536px;}
.x8_c00148{left:391.076818px;}
.x7_c00148{left:420.297322px;}
.x1_c00148{left:497.784645px;}
.x2_c00148{left:746.101800px;}
.x9_c00148{left:762.309000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:0.016533pt;}
.ws0_c00148{word-spacing:0.000000pt;}
._0_c00148{margin-left:-1.164925pt;}
._1_c00148{width:0.902574pt;}
._6_c00148{width:2.024645pt;}
._5_c00148{width:3.399699pt;}
._8_c00148{width:4.337523pt;}
._7_c00148{width:5.499003pt;}
._9_c00148{width:6.467288pt;}
._3_c00148{width:7.530643pt;}
._4_c00148{width:9.284023pt;}
._2_c00148{width:17.185576pt;}
.fs3_c00148{font-size:42.432943pt;}
.fs2_c00148{font-size:52.566166pt;}
.fs0_c00148{font-size:58.267177pt;}
.fs1_c00148{font-size:63.333308pt;}
.yc_c00148{bottom:-0.004664pt;}
.y0_c00148{bottom:0.000000pt;}
.y1_c00148{bottom:0.107500pt;}
.y4_c00148{bottom:3.483650pt;}
.yd_c00148{bottom:6.068128pt;}
.yf_c00148{bottom:57.897180pt;}
.y3_c00148{bottom:71.407520pt;}
.y5_c00148{bottom:74.146204pt;}
.y2_c00148{bottom:74.783670pt;}
.y26_c00148{bottom:312.333745pt;}
.y25_c00148{bottom:352.866795pt;}
.y24_c00148{bottom:393.400512pt;}
.y23_c00148{bottom:433.772363pt;}
.y22_c00148{bottom:461.166085pt;}
.y21_c00148{bottom:501.699136pt;}
.y20_c00148{bottom:528.931658pt;}
.y1f_c00148{bottom:546.032438pt;}
.y1e_c00148{bottom:559.174313pt;}
.y1d_c00148{bottom:571.998307pt;}
.y1c_c00148{bottom:587.830968pt;}
.y1b_c00148{bottom:631.213484pt;}
.y1a_c00148{bottom:671.749734pt;}
.y19_c00148{bottom:698.979057pt;}
.y18_c00148{bottom:726.372779pt;}
.y17_c00148{bottom:753.607168pt;}
.y16_c00148{bottom:780.997824pt;}
.y15_c00148{bottom:808.230346pt;}
.y14_c00148{bottom:848.760997pt;}
.y13_c00148{bottom:876.152852pt;}
.y12_c00148{bottom:903.387908pt;}
.y11_c00148{bottom:930.779764pt;}
.y10_c00148{bottom:958.012820pt;}
.ye_c00148{bottom:975.744813pt;}
.yb_c00148{bottom:993.057600pt;}
.ya_c00148{bottom:1000.386100pt;}
.y6_c00148{bottom:1001.494766pt;}
.y9_c00148{bottom:1018.911692pt;}
.y8_c00148{bottom:1037.121018pt;}
.y7_c00148{bottom:1055.327278pt;}
.h7_c00148{height:14.249600pt;}
.h3_c00148{height:16.463680pt;}
.hc_c00148{height:26.817620pt;}
.h9_c00148{height:33.221817pt;}
.h2_c00148{height:40.787024pt;}
.h5_c00148{height:44.333316pt;}
.h4_c00148{height:52.207390pt;}
.ha_c00148{height:56.746644pt;}
.hb_c00148{height:56.809977pt;}
.h6_c00148{height:56.936644pt;}
.h8_c00148{height:1110.960672pt;}
.h1_c00148{height:1122.559167pt;}
.h0_c00148{height:1122.666667pt;}
.w2_c00148{width:5.380800pt;}
.w3_c00148{width:7.758400pt;}
.w4_c00148{width:785.062974pt;}
.w1_c00148{width:793.257550pt;}
.w0_c00148{width:793.333333pt;}
.x0_c00148{left:0.000000pt;}
.xa_c00148{left:1.370626pt;}
.xb_c00148{left:100.224934pt;}
.x3_c00148{left:112.191772pt;}
.xc_c00148{left:147.726648pt;}
.x4_c00148{left:183.442010pt;}
.x6_c00148{left:224.449590pt;}
.x5_c00148{left:240.115143pt;}
.x8_c00148{left:347.623838pt;}
.x7_c00148{left:373.597619pt;}
.x1_c00148{left:442.475240pt;}
.x2_c00148{left:663.201600pt;}
.x9_c00148{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00149;src:url('chunks/assets/font_acccbda161694624d5cabda7.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00149;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff7_c00149{font-family:ff7_c00149;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00149{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls2_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:0.018600px;}
.ls1_c00149{letter-spacing:30.808368px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:-35.624986px;}
.ws1_c00149{word-spacing:0.000000px;}
._3_c00149{margin-left:-3.008806px;}
._0_c00149{margin-left:-1.310540px;}
._1_c00149{width:1.015395px;}
._4_c00149{width:2.132361px;}
._2_c00149{width:58.978931px;}
.fc1_c00149{color:rgb(105,148,45);}
.fc0_c00149{color:rgb(16,15,13);}
.fs4_c00149{font-size:38.474625px;}
.fs3_c00149{font-size:41.324503px;}
.fs5_c00149{font-size:50.586940px;}
.fs2_c00149{font-size:59.136936px;}
.fs0_c00149{font-size:65.550574px;}
.fs1_c00149{font-size:71.249972px;}
.yc_c00149{bottom:-0.005247px;}
.y0_c00149{bottom:0.000000px;}
.y1_c00149{bottom:0.120938px;}
.y4_c00149{bottom:3.919106px;}
.yd_c00149{bottom:6.826644px;}
.yf_c00149{bottom:65.134327px;}
.y3_c00149{bottom:80.333460px;}
.y5_c00149{bottom:83.414479px;}
.y2_c00149{bottom:84.131629px;}
.y2d_c00149{bottom:437.590328px;}
.y2c_c00149{bottom:468.226166px;}
.y2b_c00149{bottom:493.165156px;}
.y2a_c00149{bottom:517.207596px;}
.y29_c00149{bottom:548.024784px;}
.y28_c00149{bottom:578.660622px;}
.y27_c00149{bottom:609.475109px;}
.y26_c00149{bottom:628.537102px;}
.y25_c00149{bottom:642.427096px;}
.y24_c00149{bottom:658.994590px;}
.y23_c00149{bottom:694.798075px;}
.y22_c00149{bottom:709.403570px;}
.y21_c00149{bottom:724.009064px;}
.y20_c00149{bottom:741.823057px;}
.y1f_c00149{bottom:754.646551px;}
.y1e_c00149{bottom:772.639044px;}
.y1d_c00149{bottom:785.280589px;}
.y1c_c00149{bottom:816.096427px;}
.y1b_c00149{bottom:846.913015px;}
.y1a_c00149{bottom:864.904007px;}
.y19_c00149{bottom:877.727502px;}
.y18_c00149{bottom:895.719995px;}
.y17_c00149{bottom:908.543490px;}
.y16_c00149{bottom:927.426982px;}
.y15_c00149{bottom:941.319977px;}
.y14_c00149{bottom:957.884470px;}
.y13_c00149{bottom:1005.266451px;}
.y12_c00149{bottom:1024.505443px;}
.y11_c00149{bottom:1044.989435px;}
.y10_c00149{bottom:1082.040920px;}
.ye_c00149{bottom:1097.712914px;}
.yb_c00149{bottom:1117.189800px;}
.ya_c00149{bottom:1125.434362px;}
.y6_c00149{bottom:1126.681612px;}
.y9_c00149{bottom:1146.275654px;}
.y8_c00149{bottom:1166.761146px;}
.y7_c00149{bottom:1187.243188px;}
.h7_c00149{height:16.030800px;}
.h3_c00149{height:18.521640px;}
.he_c00149{height:24.315963px;}
.hd_c00149{height:26.117086px;}
.hf_c00149{height:31.970946px;}
.h9_c00149{height:37.374544px;}
.h2_c00149{height:45.885402px;}
.h5_c00149{height:49.874980px;}
.h4_c00149{height:58.733314px;}
.hc_c00149{height:58.929966px;}
.hb_c00149{height:63.839974px;}
.ha_c00149{height:63.911224px;}
.h6_c00149{height:64.053724px;}
.h8_c00149{height:1249.830756px;}
.h1_c00149{height:1262.879062px;}
.h0_c00149{height:1263.000000px;}
.w2_c00149{width:6.053400px;}
.w3_c00149{width:8.728200px;}
.w4_c00149{width:883.195846px;}
.w1_c00149{width:892.414744px;}
.w0_c00149{width:892.500000px;}
.x0_c00149{left:0.000000px;}
.xa_c00149{left:1.541954px;}
.xb_c00149{left:112.753050px;}
.x3_c00149{left:126.215743px;}
.xf_c00149{left:139.471073px;}
.xd_c00149{left:153.008984px;}
.xc_c00149{left:166.192479px;}
.xe_c00149{left:179.724488px;}
.x4_c00149{left:206.372261px;}
.x6_c00149{left:252.505788px;}
.x5_c00149{left:270.129536px;}
.x8_c00149{left:391.076818px;}
.x7_c00149{left:420.297322px;}
.x1_c00149{left:497.784645px;}
.x2_c00149{left:746.101800px;}
.x9_c00149{left:762.309000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls2_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:0.016533pt;}
.ls1_c00149{letter-spacing:27.385216pt;}
.ws0_c00149{word-spacing:-31.666654pt;}
.ws1_c00149{word-spacing:0.000000pt;}
._3_c00149{margin-left:-2.674494pt;}
._0_c00149{margin-left:-1.164925pt;}
._1_c00149{width:0.902574pt;}
._4_c00149{width:1.895432pt;}
._2_c00149{width:52.425716pt;}
.fs4_c00149{font-size:34.199666pt;}
.fs3_c00149{font-size:36.732892pt;}
.fs5_c00149{font-size:44.966169pt;}
.fs2_c00149{font-size:52.566166pt;}
.fs0_c00149{font-size:58.267177pt;}
.fs1_c00149{font-size:63.333308pt;}
.yc_c00149{bottom:-0.004664pt;}
.y0_c00149{bottom:0.000000pt;}
.y1_c00149{bottom:0.107500pt;}
.y4_c00149{bottom:3.483650pt;}
.yd_c00149{bottom:6.068128pt;}
.yf_c00149{bottom:57.897180pt;}
.y3_c00149{bottom:71.407520pt;}
.y5_c00149{bottom:74.146204pt;}
.y2_c00149{bottom:74.783670pt;}
.y2d_c00149{bottom:388.969181pt;}
.y2c_c00149{bottom:416.201036pt;}
.y2b_c00149{bottom:438.369028pt;}
.y2a_c00149{bottom:459.740086pt;}
.y29_c00149{bottom:487.133141pt;}
.y28_c00149{bottom:514.364997pt;}
.y27_c00149{bottom:541.755653pt;}
.y26_c00149{bottom:558.699646pt;}
.y25_c00149{bottom:571.046308pt;}
.y24_c00149{bottom:585.772969pt;}
.y23_c00149{bottom:617.598289pt;}
.y22_c00149{bottom:630.580951pt;}
.y21_c00149{bottom:643.563612pt;}
.y20_c00149{bottom:659.398272pt;}
.y1f_c00149{bottom:670.796935pt;}
.y1e_c00149{bottom:686.790262pt;}
.y1d_c00149{bottom:698.027190pt;}
.y1c_c00149{bottom:725.419046pt;}
.y1b_c00149{bottom:752.811568pt;}
.y1a_c00149{bottom:768.803562pt;}
.y19_c00149{bottom:780.202224pt;}
.y18_c00149{bottom:796.195551pt;}
.y17_c00149{bottom:807.594213pt;}
.y16_c00149{bottom:824.379540pt;}
.y15_c00149{bottom:836.728868pt;}
.y14_c00149{bottom:851.452862pt;}
.y13_c00149{bottom:893.570179pt;}
.y12_c00149{bottom:910.671505pt;}
.y11_c00149{bottom:928.879498pt;}
.y10_c00149{bottom:961.814152pt;}
.ye_c00149{bottom:975.744813pt;}
.yb_c00149{bottom:993.057600pt;}
.ya_c00149{bottom:1000.386100pt;}
.y6_c00149{bottom:1001.494766pt;}
.y9_c00149{bottom:1018.911692pt;}
.y8_c00149{bottom:1037.121018pt;}
.y7_c00149{bottom:1055.327278pt;}
.h7_c00149{height:14.249600pt;}
.h3_c00149{height:16.463680pt;}
.he_c00149{height:21.614189pt;}
.hd_c00149{height:23.215188pt;}
.hf_c00149{height:28.418619pt;}
.h9_c00149{height:33.221817pt;}
.h2_c00149{height:40.787024pt;}
.h5_c00149{height:44.333316pt;}
.h4_c00149{height:52.207390pt;}
.hc_c00149{height:52.382192pt;}
.hb_c00149{height:56.746644pt;}
.ha_c00149{height:56.809977pt;}
.h6_c00149{height:56.936644pt;}
.h8_c00149{height:1110.960672pt;}
.h1_c00149{height:1122.559167pt;}
.h0_c00149{height:1122.666667pt;}
.w2_c00149{width:5.380800pt;}
.w3_c00149{width:7.758400pt;}
.w4_c00149{width:785.062974pt;}
.w1_c00149{width:793.257550pt;}
.w0_c00149{width:793.333333pt;}
.x0_c00149{left:0.000000pt;}
.xa_c00149{left:1.370626pt;}
.xb_c00149{left:100.224934pt;}
.x3_c00149{left:112.191772pt;}
.xf_c00149{left:123.974287pt;}
.xd_c00149{left:136.007986pt;}
.xc_c00149{left:147.726648pt;}
.xe_c00149{left:159.755101pt;}
.x4_c00149{left:183.442010pt;}
.x6_c00149{left:224.449590pt;}
.x5_c00149{left:240.115143pt;}
.x8_c00149{left:347.623838pt;}
.x7_c00149{left:373.597619pt;}
.x1_c00149{left:442.475240pt;}
.x2_c00149{left:663.201600pt;}
.x9_c00149{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:1.113000;font-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_c00150{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls1_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:0.018600px;}
.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:0.000000px;}
._e_c00150{margin-left:-4.531706px;}
._a_c00150{margin-left:-3.445709px;}
._d_c00150{margin-left:-2.348992px;}
._0_c00150{margin-left:-1.310540px;}
._1_c00150{width:1.015395px;}
._b_c00150{width:2.499136px;}
._3_c00150{width:3.751756px;}
._2_c00150{width:5.756425px;}
._4_c00150{width:8.439566px;}
._7_c00150{width:9.512146px;}
._5_c00150{width:11.104018px;}
._6_c00150{width:12.449005px;}
._8_c00150{width:13.554443px;}
._9_c00150{width:15.108673px;}
._c_c00150{width:58.943520px;}
.fc1_c00150{color:rgb(105,148,45);}
.fc0_c00150{color:rgb(16,15,13);}
.fs4_c00150{font-size:38.474625px;}
.fs5_c00150{font-size:44.887062px;}
.fs3_c00150{font-size:47.737061px;}
.fs6_c00150{font-size:50.586940px;}
.fs2_c00150{font-size:59.136936px;}
.fs0_c00150{font-size:65.550574px;}
.fs1_c00150{font-size:71.249972px;}
.yc_c00150{bottom:-0.005247px;}
.y0_c00150{bottom:0.000000px;}
.y1_c00150{bottom:0.120938px;}
.y4_c00150{bottom:3.919106px;}
.yd_c00150{bottom:6.826644px;}
.yf_c00150{bottom:65.134327px;}
.y3_c00150{bottom:80.333460px;}
.y5_c00150{bottom:83.414479px;}
.y2_c00150{bottom:84.131629px;}
.y3e_c00150{bottom:283.690240px;}
.y3d_c00150{bottom:301.502733px;}
.y3c_c00150{bottom:314.327728px;}
.y3b_c00150{bottom:332.318720px;}
.y3a_c00150{bottom:345.142215px;}
.y39_c00150{bottom:362.953208px;}
.y38_c00150{bottom:375.779703px;}
.y37_c00150{bottom:393.767696px;}
.y36_c00150{bottom:406.594191px;}
.y35_c00150{bottom:424.405184px;}
.y34_c00150{bottom:437.233178px;}
.y33_c00150{bottom:455.222671px;}
.y32_c00150{bottom:468.047666px;}
.y31_c00150{bottom:485.857159px;}
.y30_c00150{bottom:497.972654px;}
.y2f_c00150{bottom:517.210146px;}
.y2e_c00150{bottom:531.815641px;}
.y2d_c00150{bottom:546.425635px;}
.y2c_c00150{bottom:565.300127px;}
.y2b_c00150{bottom:579.373122px;}
.y2a_c00150{bottom:592.910616px;}
.y29_c00150{bottom:610.724609px;}
.y28_c00150{bottom:623.549604px;}
.y27_c00150{bottom:641.539097px;}
.y26_c00150{bottom:654.362592px;}
.y25_c00150{bottom:672.178084px;}
.y24_c00150{bottom:685.001579px;}
.y23_c00150{bottom:702.991072px;}
.y22_c00150{bottom:715.819067px;}
.y21_c00150{bottom:733.631560px;}
.y20_c00150{bottom:746.455055px;}
.y1f_c00150{bottom:764.444547px;}
.y1e_c00150{bottom:777.271042px;}
.y1d_c00150{bottom:795.083535px;}
.y1c_c00150{bottom:807.908530px;}
.y1b_c00150{bottom:825.898023px;}
.y1a_c00150{bottom:838.010518px;}
.y19_c00150{bottom:857.605010px;}
.y18_c00150{bottom:874.880503px;}
.y17_c00150{bottom:901.241493px;}
.y16_c00150{bottom:932.058680px;}
.y15_c00150{bottom:962.696618px;}
.y14_c00150{bottom:993.512456px;}
.y13_c00150{bottom:1012.571448px;}
.y12_c00150{bottom:1026.999942px;}
.y11_c00150{bottom:1044.989435px;}
.y10_c00150{bottom:1082.040920px;}
.ye_c00150{bottom:1097.712914px;}
.yb_c00150{bottom:1117.189800px;}
.ya_c00150{bottom:1125.434362px;}
.y6_c00150{bottom:1126.681612px;}
.y9_c00150{bottom:1146.275654px;}
.y8_c00150{bottom:1166.761146px;}
.y7_c00150{bottom:1187.243188px;}
.h7_c00150{height:16.030800px;}
.h3_c00150{height:18.521640px;}
.he_c00150{height:24.315963px;}
.hf_c00150{height:28.368623px;}
.hb_c00150{height:30.169822px;}
.h10_c00150{height:31.970946px;}
.h9_c00150{height:37.374544px;}
.hd_c00150{height:41.427963px;}
.h2_c00150{height:45.885402px;}
.h5_c00150{height:49.874980px;}
.h4_c00150{height:58.733314px;}
.hc_c00150{height:63.839974px;}
.ha_c00150{height:63.911224px;}
.h6_c00150{height:64.053724px;}
.h8_c00150{height:1249.830756px;}
.h1_c00150{height:1262.879062px;}
.h0_c00150{height:1263.000000px;}
.w2_c00150{width:6.053400px;}
.w3_c00150{width:8.728200px;}
.w4_c00150{width:883.195846px;}
.w1_c00150{width:892.414744px;}
.w0_c00150{width:892.500000px;}
.x0_c00150{left:0.000000px;}
.xa_c00150{left:1.541954px;}
.xb_c00150{left:112.753050px;}
.x3_c00150{left:126.215743px;}
.xd_c00150{left:153.008984px;}
.xc_c00150{left:178.837474px;}
.x4_c00150{left:206.372261px;}
.x6_c00150{left:252.505788px;}
.x5_c00150{left:270.129536px;}
.x8_c00150{left:391.076818px;}
.x7_c00150{left:420.297322px;}
.x1_c00150{left:497.784645px;}
.x2_c00150{left:746.101800px;}
.x9_c00150{left:762.309000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls1_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:0.016533pt;}
.ws0_c00150{word-spacing:0.000000pt;}
._e_c00150{margin-left:-4.028183pt;}
._a_c00150{margin-left:-3.062852pt;}
._d_c00150{margin-left:-2.087993pt;}
._0_c00150{margin-left:-1.164925pt;}
._1_c00150{width:0.902574pt;}
._b_c00150{width:2.221454pt;}
._3_c00150{width:3.334894pt;}
._2_c00150{width:5.116822pt;}
._4_c00150{width:7.501836pt;}
._7_c00150{width:8.455241pt;}
._5_c00150{width:9.870238pt;}
._6_c00150{width:11.065782pt;}
._8_c00150{width:12.048394pt;}
._9_c00150{width:13.429932pt;}
._c_c00150{width:52.394240pt;}
.fs4_c00150{font-size:34.199666pt;}
.fs5_c00150{font-size:39.899611pt;}
.fs3_c00150{font-size:42.432943pt;}
.fs6_c00150{font-size:44.966169pt;}
.fs2_c00150{font-size:52.566166pt;}
.fs0_c00150{font-size:58.267177pt;}
.fs1_c00150{font-size:63.333308pt;}
.yc_c00150{bottom:-0.004664pt;}
.y0_c00150{bottom:0.000000pt;}
.y1_c00150{bottom:0.107500pt;}
.y4_c00150{bottom:3.483650pt;}
.yd_c00150{bottom:6.068128pt;}
.yf_c00150{bottom:57.897180pt;}
.y3_c00150{bottom:71.407520pt;}
.y5_c00150{bottom:74.146204pt;}
.y2_c00150{bottom:74.783670pt;}
.y3e_c00150{bottom:252.169102pt;}
.y3d_c00150{bottom:268.002429pt;}
.y3c_c00150{bottom:279.402424pt;}
.y3b_c00150{bottom:295.394418pt;}
.y3a_c00150{bottom:306.793080pt;}
.y39_c00150{bottom:322.625074pt;}
.y38_c00150{bottom:334.026403pt;}
.y37_c00150{bottom:350.015730pt;}
.y36_c00150{bottom:361.417058pt;}
.y35_c00150{bottom:377.249052pt;}
.y34_c00150{bottom:388.651714pt;}
.y33_c00150{bottom:404.642374pt;}
.y32_c00150{bottom:416.042370pt;}
.y31_c00150{bottom:431.873030pt;}
.y30_c00150{bottom:442.642359pt;}
.y2f_c00150{bottom:459.742352pt;}
.y2e_c00150{bottom:472.725014pt;}
.y2d_c00150{bottom:485.711675pt;}
.y2c_c00150{bottom:502.489002pt;}
.y2b_c00150{bottom:514.998330pt;}
.y2a_c00150{bottom:527.031659pt;}
.y29_c00150{bottom:542.866319pt;}
.y28_c00150{bottom:554.266315pt;}
.y27_c00150{bottom:570.256975pt;}
.y26_c00150{bottom:581.655637pt;}
.y25_c00150{bottom:597.491631pt;}
.y24_c00150{bottom:608.890293pt;}
.y23_c00150{bottom:624.880953pt;}
.y22_c00150{bottom:636.283615pt;}
.y21_c00150{bottom:652.116942pt;}
.y20_c00150{bottom:663.515604pt;}
.y1f_c00150{bottom:679.506264pt;}
.y1e_c00150{bottom:690.907593pt;}
.y1d_c00150{bottom:706.740920pt;}
.y1c_c00150{bottom:718.140916pt;}
.y1b_c00150{bottom:734.131576pt;}
.y1a_c00150{bottom:744.898238pt;}
.y19_c00150{bottom:762.315565pt;}
.y18_c00150{bottom:777.671559pt;}
.y17_c00150{bottom:801.103549pt;}
.y16_c00150{bottom:828.496605pt;}
.y15_c00150{bottom:855.730327pt;}
.y14_c00150{bottom:883.122183pt;}
.y13_c00150{bottom:900.063510pt;}
.y12_c00150{bottom:912.888838pt;}
.y11_c00150{bottom:928.879498pt;}
.y10_c00150{bottom:961.814152pt;}
.ye_c00150{bottom:975.744813pt;}
.yb_c00150{bottom:993.057600pt;}
.ya_c00150{bottom:1000.386100pt;}
.y6_c00150{bottom:1001.494766pt;}
.y9_c00150{bottom:1018.911692pt;}
.y8_c00150{bottom:1037.121018pt;}
.y7_c00150{bottom:1055.327278pt;}
.h7_c00150{height:14.249600pt;}
.h3_c00150{height:16.463680pt;}
.he_c00150{height:21.614189pt;}
.hf_c00150{height:25.216554pt;}
.hb_c00150{height:26.817620pt;}
.h10_c00150{height:28.418619pt;}
.h9_c00150{height:33.221817pt;}
.hd_c00150{height:36.824856pt;}
.h2_c00150{height:40.787024pt;}
.h5_c00150{height:44.333316pt;}
.h4_c00150{height:52.207390pt;}
.hc_c00150{height:56.746644pt;}
.ha_c00150{height:56.809977pt;}
.h6_c00150{height:56.936644pt;}
.h8_c00150{height:1110.960672pt;}
.h1_c00150{height:1122.559167pt;}
.h0_c00150{height:1122.666667pt;}
.w2_c00150{width:5.380800pt;}
.w3_c00150{width:7.758400pt;}
.w4_c00150{width:785.062974pt;}
.w1_c00150{width:793.257550pt;}
.w0_c00150{width:793.333333pt;}
.x0_c00150{left:0.000000pt;}
.xa_c00150{left:1.370626pt;}
.xb_c00150{left:100.224934pt;}
.x3_c00150{left:112.191772pt;}
.xd_c00150{left:136.007986pt;}
.xc_c00150{left:158.966644pt;}
.x4_c00150{left:183.442010pt;}
.x6_c00150{left:224.449590pt;}
.x5_c00150{left:240.115143pt;}
.x8_c00150{left:347.623838pt;}
.x7_c00150{left:373.597619pt;}
.x1_c00150{left:442.475240pt;}
.x2_c00150{left:663.201600pt;}
.x9_c00150{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00151;src:url('chunks/assets/font_652386bce951c46cca59115c.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:1.113000;font-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_c00151{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls1_c00151{letter-spacing:0.000000px;}
.ls0_c00151{letter-spacing:0.018600px;}
.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:-23.512491px;}
.ws1_c00151{word-spacing:0.000000px;}
._4_c00151{margin-left:-4.290933px;}
._2_c00151{margin-left:-2.997641px;}
._0_c00151{margin-left:-1.310540px;}
._1_c00151{width:1.015395px;}
._a_c00151{width:2.140252px;}
._c_c00151{width:3.589437px;}
._8_c00151{width:4.592520px;}
._9_c00151{width:5.901563px;}
._7_c00151{width:7.845272px;}
._b_c00151{width:9.255151px;}
._5_c00151{width:10.375994px;}
._6_c00151{width:11.422351px;}
._3_c00151{width:58.978931px;}
.fc1_c00151{color:rgb(105,148,45);}
.fc0_c00151{color:rgb(16,15,13);}
.fs3_c00151{font-size:38.474625px;}
.fs4_c00151{font-size:41.324503px;}
.fs5_c00151{font-size:44.887062px;}
.fs2_c00151{font-size:59.136936px;}
.fs0_c00151{font-size:65.550574px;}
.fs1_c00151{font-size:71.249972px;}
.yc_c00151{bottom:-0.005247px;}
.y0_c00151{bottom:0.000000px;}
.y1_c00151{bottom:0.120938px;}
.y4_c00151{bottom:3.919106px;}
.yd_c00151{bottom:6.826644px;}
.yf_c00151{bottom:65.134327px;}
.y3_c00151{bottom:80.333460px;}
.y5_c00151{bottom:83.414479px;}
.y2_c00151{bottom:84.131629px;}
.y44_c00151{bottom:199.796923px;}
.y43_c00151{bottom:230.432761px;}
.y42_c00151{bottom:248.599254px;}
.y41_c00151{bottom:261.428749px;}
.y40_c00151{bottom:279.238242px;}
.y3f_c00151{bottom:292.063236px;}
.y3e_c00151{bottom:310.232729px;}
.y3d_c00151{bottom:322.877724px;}
.y3c_c00151{bottom:341.757602px;}
.y39_c00151{bottom:353.516712px;}
.y3b_c00151{bottom:356.542211px;}
.y3a_c00151{bottom:370.790705px;}
.y38_c00151{bottom:371.686205px;}
.y37_c00151{bottom:384.328200px;}
.y36_c00151{bottom:402.140692px;}
.y35_c00151{bottom:414.968837px;}
.y34_c00151{bottom:445.961825px;}
.y33_c00151{bottom:476.597663px;}
.y32_c00151{bottom:496.015155px;}
.y31_c00151{bottom:512.045648px;}
.y30_c00151{bottom:538.406338px;}
.y2f_c00151{bottom:569.222176px;}
.y2e_c00151{bottom:600.217263px;}
.y2d_c00151{bottom:630.853101px;}
.y2c_c00151{bottom:648.842594px;}
.y2b_c00151{bottom:661.667589px;}
.y2a_c00151{bottom:679.657081px;}
.y29_c00151{bottom:692.482076px;}
.y28_c00151{bottom:710.296069px;}
.y27_c00151{bottom:723.118064px;}
.y26_c00151{bottom:741.110557px;}
.y25_c00151{bottom:753.934052px;}
.y24_c00151{bottom:771.746545px;}
.y23_c00151{bottom:784.571539px;}
.y22_c00151{bottom:802.561032px;}
.y21_c00151{bottom:815.207527px;}
.y20_c00151{bottom:833.200020px;}
.y1f_c00151{bottom:846.025015px;}
.y1e_c00151{bottom:863.836008px;}
.y1d_c00151{bottom:876.662503px;}
.y1c_c00151{bottom:894.651995px;}
.y1b_c00151{bottom:907.473990px;}
.y1a_c00151{bottom:925.290983px;}
.y19_c00151{bottom:938.114478px;}
.y18_c00151{bottom:956.105471px;}
.y17_c00151{bottom:968.930466px;}
.y16_c00151{bottom:986.741459px;}
.y15_c00151{bottom:999.570953px;}
.y14_c00151{bottom:1017.555946px;}
.y13_c00151{bottom:1030.385441px;}
.y12_c00151{bottom:1048.194934px;}
.y11_c00151{bottom:1060.308929px;}
.y10_c00151{bottom:1082.040920px;}
.ye_c00151{bottom:1097.712914px;}
.yb_c00151{bottom:1117.189800px;}
.ya_c00151{bottom:1125.434362px;}
.y6_c00151{bottom:1126.681612px;}
.y9_c00151{bottom:1146.275654px;}
.y8_c00151{bottom:1166.761146px;}
.y7_c00151{bottom:1187.243188px;}
.h7_c00151{height:16.030800px;}
.h3_c00151{height:18.521640px;}
.hb_c00151{height:24.315963px;}
.he_c00151{height:26.117086px;}
.hf_c00151{height:28.368623px;}
.h9_c00151{height:37.374544px;}
.hd_c00151{height:41.427963px;}
.h2_c00151{height:45.885402px;}
.h5_c00151{height:49.874980px;}
.h4_c00151{height:58.733314px;}
.hc_c00151{height:63.839974px;}
.ha_c00151{height:63.911224px;}
.h6_c00151{height:64.053724px;}
.h8_c00151{height:1249.830756px;}
.h1_c00151{height:1262.879062px;}
.h0_c00151{height:1263.000000px;}
.w2_c00151{width:6.053400px;}
.w3_c00151{width:8.728200px;}
.w4_c00151{width:883.195846px;}
.w1_c00151{width:892.414744px;}
.w0_c00151{width:892.500000px;}
.x0_c00151{left:0.000000px;}
.xa_c00151{left:1.541954px;}
.xb_c00151{left:112.753050px;}
.x3_c00151{left:126.215743px;}
.xd_c00151{left:153.008984px;}
.xc_c00151{left:178.837474px;}
.x4_c00151{left:206.372261px;}
.x6_c00151{left:252.505788px;}
.x5_c00151{left:270.129536px;}
.x8_c00151{left:391.076818px;}
.x7_c00151{left:420.297322px;}
.x1_c00151{left:497.784645px;}
.x2_c00151{left:746.101800px;}
.x9_c00151{left:762.309000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls1_c00151{letter-spacing:0.000000pt;}
.ls0_c00151{letter-spacing:0.016533pt;}
.ws0_c00151{word-spacing:-20.899992pt;}
.ws1_c00151{word-spacing:0.000000pt;}
._4_c00151{margin-left:-3.814162pt;}
._2_c00151{margin-left:-2.664570pt;}
._0_c00151{margin-left:-1.164925pt;}
._1_c00151{width:0.902574pt;}
._a_c00151{width:1.902446pt;}
._c_c00151{width:3.190611pt;}
._8_c00151{width:4.082240pt;}
._9_c00151{width:5.245834pt;}
._7_c00151{width:6.973575pt;}
._b_c00151{width:8.226801pt;}
._5_c00151{width:9.223106pt;}
._6_c00151{width:10.153201pt;}
._3_c00151{width:52.425716pt;}
.fs3_c00151{font-size:34.199666pt;}
.fs4_c00151{font-size:36.732892pt;}
.fs5_c00151{font-size:39.899611pt;}
.fs2_c00151{font-size:52.566166pt;}
.fs0_c00151{font-size:58.267177pt;}
.fs1_c00151{font-size:63.333308pt;}
.yc_c00151{bottom:-0.004664pt;}
.y0_c00151{bottom:0.000000pt;}
.y1_c00151{bottom:0.107500pt;}
.y4_c00151{bottom:3.483650pt;}
.yd_c00151{bottom:6.068128pt;}
.yf_c00151{bottom:57.897180pt;}
.y3_c00151{bottom:71.407520pt;}
.y5_c00151{bottom:74.146204pt;}
.y2_c00151{bottom:74.783670pt;}
.y44_c00151{bottom:177.597265pt;}
.y43_c00151{bottom:204.829121pt;}
.y42_c00151{bottom:220.977115pt;}
.y41_c00151{bottom:232.381110pt;}
.y40_c00151{bottom:248.211770pt;}
.y3f_c00151{bottom:259.611766pt;}
.y3e_c00151{bottom:275.762426pt;}
.y3d_c00151{bottom:287.002421pt;}
.y3c_c00151{bottom:303.784535pt;}
.y39_c00151{bottom:314.237077pt;}
.y3b_c00151{bottom:316.926409pt;}
.y3a_c00151{bottom:329.591738pt;}
.y38_c00151{bottom:330.387737pt;}
.y37_c00151{bottom:341.625066pt;}
.y36_c00151{bottom:357.458393pt;}
.y35_c00151{bottom:368.861189pt;}
.y34_c00151{bottom:396.410511pt;}
.y33_c00151{bottom:423.642367pt;}
.y32_c00151{bottom:440.902360pt;}
.y31_c00151{bottom:455.151688pt;}
.y30_c00151{bottom:478.583411pt;}
.y2f_c00151{bottom:505.975267pt;}
.y2e_c00151{bottom:533.526456pt;}
.y2d_c00151{bottom:560.758312pt;}
.y2c_c00151{bottom:576.748972pt;}
.y2b_c00151{bottom:588.148968pt;}
.y2a_c00151{bottom:604.139628pt;}
.y29_c00151{bottom:615.539623pt;}
.y28_c00151{bottom:631.374284pt;}
.y27_c00151{bottom:642.771612pt;}
.y26_c00151{bottom:658.764939pt;}
.y25_c00151{bottom:670.163602pt;}
.y24_c00151{bottom:685.996929pt;}
.y23_c00151{bottom:697.396924pt;}
.y22_c00151{bottom:713.387584pt;}
.y21_c00151{bottom:724.628913pt;}
.y20_c00151{bottom:740.622240pt;}
.y1f_c00151{bottom:752.022235pt;}
.y1e_c00151{bottom:767.854229pt;}
.y1d_c00151{bottom:779.255558pt;}
.y1c_c00151{bottom:795.246218pt;}
.y1b_c00151{bottom:806.643547pt;}
.y1a_c00151{bottom:822.480874pt;}
.y19_c00151{bottom:833.879536pt;}
.y18_c00151{bottom:849.871530pt;}
.y17_c00151{bottom:861.271525pt;}
.y16_c00151{bottom:877.103519pt;}
.y15_c00151{bottom:888.507514pt;}
.y14_c00151{bottom:904.494174pt;}
.y13_c00151{bottom:915.898170pt;}
.y12_c00151{bottom:931.728830pt;}
.y11_c00151{bottom:942.496826pt;}
.y10_c00151{bottom:961.814152pt;}
.ye_c00151{bottom:975.744813pt;}
.yb_c00151{bottom:993.057600pt;}
.ya_c00151{bottom:1000.386100pt;}
.y6_c00151{bottom:1001.494766pt;}
.y9_c00151{bottom:1018.911692pt;}
.y8_c00151{bottom:1037.121018pt;}
.y7_c00151{bottom:1055.327278pt;}
.h7_c00151{height:14.249600pt;}
.h3_c00151{height:16.463680pt;}
.hb_c00151{height:21.614189pt;}
.he_c00151{height:23.215188pt;}
.hf_c00151{height:25.216554pt;}
.h9_c00151{height:33.221817pt;}
.hd_c00151{height:36.824856pt;}
.h2_c00151{height:40.787024pt;}
.h5_c00151{height:44.333316pt;}
.h4_c00151{height:52.207390pt;}
.hc_c00151{height:56.746644pt;}
.ha_c00151{height:56.809977pt;}
.h6_c00151{height:56.936644pt;}
.h8_c00151{height:1110.960672pt;}
.h1_c00151{height:1122.559167pt;}
.h0_c00151{height:1122.666667pt;}
.w2_c00151{width:5.380800pt;}
.w3_c00151{width:7.758400pt;}
.w4_c00151{width:785.062974pt;}
.w1_c00151{width:793.257550pt;}
.w0_c00151{width:793.333333pt;}
.x0_c00151{left:0.000000pt;}
.xa_c00151{left:1.370626pt;}
.xb_c00151{left:100.224934pt;}
.x3_c00151{left:112.191772pt;}
.xd_c00151{left:136.007986pt;}
.xc_c00151{left:158.966644pt;}
.x4_c00151{left:183.442010pt;}
.x6_c00151{left:224.449590pt;}
.x5_c00151{left:240.115143pt;}
.x8_c00151{left:347.623838pt;}
.x7_c00151{left:373.597619pt;}
.x1_c00151{left:442.475240pt;}
.x2_c00151{left:663.201600pt;}
.x9_c00151{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00152;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;line-height:1.113000;font-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_c00152{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls2_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:0.018600px;}
.ls1_c00152{letter-spacing:47.912681px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:0.000000px;}
._9_c00152{margin-left:-4.361337px;}
._5_c00152{margin-left:-2.504966px;}
._0_c00152{margin-left:-1.310540px;}
._1_c00152{width:1.015395px;}
._6_c00152{width:2.386066px;}
._3_c00152{width:3.798412px;}
._2_c00152{width:5.305106px;}
._4_c00152{width:6.307239px;}
._b_c00152{width:7.620096px;}
._a_c00152{width:8.738909px;}
._c_c00152{width:10.292045px;}
._11_c00152{width:12.145100px;}
._14_c00152{width:13.263972px;}
._13_c00152{width:14.394228px;}
._12_c00152{width:15.684272px;}
._8_c00152{width:19.165455px;}
._7_c00152{width:20.906684px;}
._d_c00152{width:24.047432px;}
._10_c00152{width:25.100640px;}
._e_c00152{width:26.154449px;}
._f_c00152{width:28.034141px;}
.fc1_c00152{color:rgb(105,148,45);}
.fc0_c00152{color:rgb(16,15,13);}
.fs3_c00152{font-size:47.737061px;}
.fs2_c00152{font-size:59.136936px;}
.fs0_c00152{font-size:65.550574px;}
.fs1_c00152{font-size:71.249972px;}
.yc_c00152{bottom:-0.005247px;}
.y0_c00152{bottom:0.000000px;}
.y1_c00152{bottom:0.120938px;}
.y4_c00152{bottom:3.919106px;}
.yd_c00152{bottom:6.826644px;}
.yf_c00152{bottom:65.134327px;}
.y3_c00152{bottom:80.333460px;}
.y5_c00152{bottom:83.414479px;}
.y2_c00152{bottom:84.131629px;}
.y34_c00152{bottom:94.165916px;}
.y33_c00152{bottom:111.444499px;}
.y32_c00152{bottom:126.228403px;}
.y31_c00152{bottom:152.769542px;}
.y30_c00152{bottom:183.407480px;}
.y2f_c00152{bottom:214.224668px;}
.y2e_c00152{bottom:244.861255px;}
.y2d_c00152{bottom:277.101342px;}
.y2c_c00152{bottom:307.737930px;}
.y2b_c00152{bottom:338.552418px;}
.y2a_c00152{bottom:369.191106px;}
.y29_c00152{bottom:400.006193px;}
.y28_c00152{bottom:432.243730px;}
.y27_c00152{bottom:462.880918px;}
.y26_c00152{bottom:493.697506px;}
.y25_c00152{bottom:524.334694px;}
.y24_c00152{bottom:554.972631px;}
.y23_c00152{bottom:587.390468px;}
.y22_c00152{bottom:618.029906px;}
.y21_c00152{bottom:648.665744px;}
.y20_c00152{bottom:679.481581px;}
.y1f_c00152{bottom:698.542164px;}
.y1e_c00152{bottom:713.326068px;}
.y1d_c00152{bottom:727.751562px;}
.y1c_c00152{bottom:745.208555px;}
.y1b_c00152{bottom:781.902741px;}
.y1a_c00152{bottom:811.826379px;}
.y19_c00152{bottom:842.462966px;}
.y18_c00152{bottom:873.101654px;}
.y17_c00152{bottom:903.737492px;}
.y16_c00152{bottom:922.793484px;}
.y15_c00152{bottom:939.005478px;}
.y14_c00152{bottom:965.365717px;}
.y13_c00152{bottom:996.181555px;}
.y12_c00152{bottom:1026.997392px;}
.y11_c00152{bottom:1057.813980px;}
.y10_c00152{bottom:1079.721921px;}
.ye_c00152{bottom:1097.712914px;}
.yb_c00152{bottom:1117.189800px;}
.ya_c00152{bottom:1125.434362px;}
.y6_c00152{bottom:1126.681612px;}
.y9_c00152{bottom:1146.275654px;}
.y8_c00152{bottom:1166.761146px;}
.y7_c00152{bottom:1187.243188px;}
.h7_c00152{height:16.030800px;}
.h3_c00152{height:18.521640px;}
.hd_c00152{height:30.169822px;}
.h9_c00152{height:37.374544px;}
.h10_c00152{height:41.427963px;}
.he_c00152{height:44.531232px;}
.ha_c00152{height:45.029982px;}
.h2_c00152{height:45.885402px;}
.h5_c00152{height:49.874980px;}
.h4_c00152{height:58.733314px;}
.hc_c00152{height:58.929966px;}
.hb_c00152{height:63.839974px;}
.hf_c00152{height:63.911224px;}
.h6_c00152{height:64.053724px;}
.h8_c00152{height:1249.830756px;}
.h1_c00152{height:1262.879062px;}
.h0_c00152{height:1263.000000px;}
.w2_c00152{width:6.053400px;}
.w3_c00152{width:8.728200px;}
.w4_c00152{width:883.195846px;}
.w1_c00152{width:892.414744px;}
.w0_c00152{width:892.500000px;}
.x0_c00152{left:0.000000px;}
.xa_c00152{left:1.541954px;}
.xb_c00152{left:112.753050px;}
.x3_c00152{left:126.215743px;}
.xd_c00152{left:153.008984px;}
.xe_c00152{left:161.201981px;}
.xc_c00152{left:178.834084px;}
.x4_c00152{left:206.372261px;}
.x6_c00152{left:252.505788px;}
.x5_c00152{left:270.129536px;}
.x8_c00152{left:391.076818px;}
.x7_c00152{left:420.297322px;}
.x1_c00152{left:497.784645px;}
.x2_c00152{left:746.101800px;}
.x9_c00152{left:762.309000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls2_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:0.016533pt;}
.ls1_c00152{letter-spacing:42.589050pt;}
.ws0_c00152{word-spacing:0.000000pt;}
._9_c00152{margin-left:-3.876744pt;}
._5_c00152{margin-left:-2.226637pt;}
._0_c00152{margin-left:-1.164925pt;}
._1_c00152{width:0.902574pt;}
._6_c00152{width:2.120947pt;}
._3_c00152{width:3.376366pt;}
._2_c00152{width:4.715650pt;}
._4_c00152{width:5.606435pt;}
._b_c00152{width:6.773419pt;}
._a_c00152{width:7.767919pt;}
._c_c00152{width:9.148484pt;}
._11_c00152{width:10.795645pt;}
._14_c00152{width:11.790197pt;}
._13_c00152{width:12.794869pt;}
._12_c00152{width:13.941575pt;}
._8_c00152{width:17.035960pt;}
._7_c00152{width:18.583719pt;}
._d_c00152{width:21.375495pt;}
._10_c00152{width:22.311680pt;}
._e_c00152{width:23.248400pt;}
._f_c00152{width:24.919237pt;}
.fs3_c00152{font-size:42.432943pt;}
.fs2_c00152{font-size:52.566166pt;}
.fs0_c00152{font-size:58.267177pt;}
.fs1_c00152{font-size:63.333308pt;}
.yc_c00152{bottom:-0.004664pt;}
.y0_c00152{bottom:0.000000pt;}
.y1_c00152{bottom:0.107500pt;}
.y4_c00152{bottom:3.483650pt;}
.yd_c00152{bottom:6.068128pt;}
.yf_c00152{bottom:57.897180pt;}
.y3_c00152{bottom:71.407520pt;}
.y5_c00152{bottom:74.146204pt;}
.y2_c00152{bottom:74.783670pt;}
.y34_c00152{bottom:83.703036pt;}
.y33_c00152{bottom:99.061777pt;}
.y32_c00152{bottom:112.203025pt;}
.y31_c00152{bottom:135.795149pt;}
.y30_c00152{bottom:163.028871pt;}
.y2f_c00152{bottom:190.421927pt;}
.y2e_c00152{bottom:217.654449pt;}
.y2d_c00152{bottom:246.312304pt;}
.y2c_c00152{bottom:273.544827pt;}
.y2b_c00152{bottom:300.935483pt;}
.y2a_c00152{bottom:328.169872pt;}
.y29_c00152{bottom:355.561061pt;}
.y28_c00152{bottom:384.216649pt;}
.y27_c00152{bottom:411.449705pt;}
.y26_c00152{bottom:438.842227pt;}
.y25_c00152{bottom:466.075283pt;}
.y24_c00152{bottom:493.309006pt;}
.y23_c00152{bottom:522.124861pt;}
.y22_c00152{bottom:549.359916pt;}
.y21_c00152{bottom:576.591772pt;}
.y20_c00152{bottom:603.983628pt;}
.y1f_c00152{bottom:620.926368pt;}
.y1e_c00152{bottom:634.067616pt;}
.y1d_c00152{bottom:646.890277pt;}
.y1c_c00152{bottom:662.407605pt;}
.y1b_c00152{bottom:695.024658pt;}
.y1a_c00152{bottom:721.623448pt;}
.y19_c00152{bottom:748.855970pt;}
.y18_c00152{bottom:776.090359pt;}
.y17_c00152{bottom:803.322215pt;}
.y16_c00152{bottom:820.260875pt;}
.y15_c00152{bottom:834.671536pt;}
.y14_c00152{bottom:858.102860pt;}
.y13_c00152{bottom:885.494715pt;}
.y12_c00152{bottom:912.886571pt;}
.y11_c00152{bottom:940.279093pt;}
.y10_c00152{bottom:959.752819pt;}
.ye_c00152{bottom:975.744813pt;}
.yb_c00152{bottom:993.057600pt;}
.ya_c00152{bottom:1000.386100pt;}
.y6_c00152{bottom:1001.494766pt;}
.y9_c00152{bottom:1018.911692pt;}
.y8_c00152{bottom:1037.121018pt;}
.y7_c00152{bottom:1055.327278pt;}
.h7_c00152{height:14.249600pt;}
.h3_c00152{height:16.463680pt;}
.hd_c00152{height:26.817620pt;}
.h9_c00152{height:33.221817pt;}
.h10_c00152{height:36.824856pt;}
.he_c00152{height:39.583318pt;}
.ha_c00152{height:40.026651pt;}
.h2_c00152{height:40.787024pt;}
.h5_c00152{height:44.333316pt;}
.h4_c00152{height:52.207390pt;}
.hc_c00152{height:52.382192pt;}
.hb_c00152{height:56.746644pt;}
.hf_c00152{height:56.809977pt;}
.h6_c00152{height:56.936644pt;}
.h8_c00152{height:1110.960672pt;}
.h1_c00152{height:1122.559167pt;}
.h0_c00152{height:1122.666667pt;}
.w2_c00152{width:5.380800pt;}
.w3_c00152{width:7.758400pt;}
.w4_c00152{width:785.062974pt;}
.w1_c00152{width:793.257550pt;}
.w0_c00152{width:793.333333pt;}
.x0_c00152{left:0.000000pt;}
.xa_c00152{left:1.370626pt;}
.xb_c00152{left:100.224934pt;}
.x3_c00152{left:112.191772pt;}
.xd_c00152{left:136.007986pt;}
.xe_c00152{left:143.290650pt;}
.xc_c00152{left:158.963630pt;}
.x4_c00152{left:183.442010pt;}
.x6_c00152{left:224.449590pt;}
.x5_c00152{left:240.115143pt;}
.x8_c00152{left:347.623838pt;}
.x7_c00152{left:373.597619pt;}
.x1_c00152{left:442.475240pt;}
.x2_c00152{left:663.201600pt;}
.x9_c00152{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00153;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00153;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff6_c00153{font-family:ff6_c00153;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00153{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls2_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:0.018600px;}
.ls1_c00153{letter-spacing:47.912681px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:0.000000px;}
._f_c00153{margin-left:-3.621478px;}
._3_c00153{margin-left:-2.590959px;}
._0_c00153{margin-left:-1.310540px;}
._1_c00153{width:1.015395px;}
._8_c00153{width:2.132275px;}
._9_c00153{width:3.149959px;}
._7_c00153{width:4.907467px;}
._6_c00153{width:6.584915px;}
._5_c00153{width:8.139368px;}
._4_c00153{width:9.974360px;}
._14_c00153{width:11.054642px;}
._11_c00153{width:12.077219px;}
._10_c00153{width:13.183224px;}
._15_c00153{width:14.244074px;}
._d_c00153{width:19.151544px;}
._e_c00153{width:20.738099px;}
._13_c00153{width:22.825328px;}
._12_c00153{width:23.980400px;}
._b_c00153{width:25.092651px;}
._a_c00153{width:26.290977px;}
._c_c00153{width:29.118709px;}
._2_c00153{width:58.978931px;}
.fc1_c00153{color:rgb(105,148,45);}
.fc0_c00153{color:rgb(16,15,13);}
.fs4_c00153{font-size:38.474625px;}
.fs3_c00153{font-size:41.324503px;}
.fs5_c00153{font-size:47.737061px;}
.fs2_c00153{font-size:59.136936px;}
.fs0_c00153{font-size:65.550574px;}
.fs1_c00153{font-size:71.249972px;}
.yc_c00153{bottom:-0.005247px;}
.y0_c00153{bottom:0.000000px;}
.y1_c00153{bottom:0.120938px;}
.y4_c00153{bottom:3.919106px;}
.yd_c00153{bottom:6.826644px;}
.yf_c00153{bottom:65.134327px;}
.y3_c00153{bottom:80.333460px;}
.y3c_c00153{bottom:81.697471px;}
.y5_c00153{bottom:83.414479px;}
.y2_c00153{bottom:84.131629px;}
.y3b_c00153{bottom:108.238610px;}
.y3a_c00153{bottom:138.875798px;}
.y39_c00153{bottom:169.690285px;}
.y38_c00153{bottom:188.924778px;}
.y37_c00153{bottom:204.956771px;}
.y36_c00153{bottom:231.322411px;}
.y35_c00153{bottom:262.138248px;}
.y34_c00153{bottom:280.126241px;}
.y33_c00153{bottom:292.063236px;}
.y32_c00153{bottom:312.370228px;}
.y31_c00153{bottom:330.535221px;}
.y30_c00153{bottom:356.901311px;}
.y2f_c00153{bottom:387.539248px;}
.y2e_c00153{bottom:418.178686px;}
.y2d_c00153{bottom:448.813174px;}
.y2c_c00153{bottom:467.866166px;}
.y2b_c00153{bottom:484.078160px;}
.y2a_c00153{bottom:510.620499px;}
.y29_c00153{bottom:541.257687px;}
.y28_c00153{bottom:572.074274px;}
.y27_c00153{bottom:602.710112px;}
.y26_c00153{bottom:621.947604px;}
.y25_c00153{bottom:636.197599px;}
.y24_c00153{bottom:654.184092px;}
.y23_c00153{bottom:691.412577px;}
.y22_c00153{bottom:717.777466px;}
.y21_c00153{bottom:748.414054px;}
.y20_c00153{bottom:766.580547px;}
.y1f_c00153{bottom:779.402542px;}
.y1e_c00153{bottom:797.221034px;}
.y1d_c00153{bottom:810.046029px;}
.y1c_c00153{bottom:828.035522px;}
.y1b_c00153{bottom:840.681417px;}
.y1a_c00153{bottom:862.592208px;}
.y19_c00153{bottom:891.269797px;}
.y18_c00153{bottom:922.082784px;}
.y17_c00153{bottom:953.077272px;}
.y16_c00153{bottom:983.714460px;}
.y15_c00153{bottom:1001.882453px;}
.y14_c00153{bottom:1014.707447px;}
.y13_c00153{bottom:1033.587520px;}
.y12_c00153{bottom:1048.374934px;}
.y11_c00153{bottom:1062.446428px;}
.y10_c00153{bottom:1078.832422px;}
.ye_c00153{bottom:1097.712914px;}
.yb_c00153{bottom:1117.189800px;}
.ya_c00153{bottom:1125.434362px;}
.y6_c00153{bottom:1126.681612px;}
.y9_c00153{bottom:1146.275654px;}
.y8_c00153{bottom:1166.761146px;}
.y7_c00153{bottom:1187.243188px;}
.h7_c00153{height:16.030800px;}
.h3_c00153{height:18.521640px;}
.hd_c00153{height:24.315963px;}
.hb_c00153{height:26.117086px;}
.h10_c00153{height:30.169822px;}
.h9_c00153{height:37.374544px;}
.h11_c00153{height:44.531232px;}
.he_c00153{height:45.029982px;}
.h2_c00153{height:45.885402px;}
.h5_c00153{height:49.874980px;}
.h4_c00153{height:58.733314px;}
.ha_c00153{height:58.929966px;}
.hc_c00153{height:63.839974px;}
.hf_c00153{height:63.911224px;}
.h6_c00153{height:64.053724px;}
.h8_c00153{height:1249.830756px;}
.h1_c00153{height:1262.879062px;}
.h0_c00153{height:1263.000000px;}
.w2_c00153{width:6.053400px;}
.w3_c00153{width:8.728200px;}
.w4_c00153{width:883.195846px;}
.w1_c00153{width:892.414744px;}
.w0_c00153{width:892.500000px;}
.x0_c00153{left:0.000000px;}
.xa_c00153{left:1.541954px;}
.xb_c00153{left:112.753050px;}
.x3_c00153{left:126.215743px;}
.xc_c00153{left:153.008984px;}
.xe_c00153{left:161.201981px;}
.xd_c00153{left:179.724488px;}
.x4_c00153{left:206.372261px;}
.x6_c00153{left:252.505788px;}
.x5_c00153{left:270.129536px;}
.x8_c00153{left:391.076818px;}
.x7_c00153{left:420.297322px;}
.x1_c00153{left:497.784645px;}
.x2_c00153{left:746.101800px;}
.x9_c00153{left:762.309000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls2_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:0.016533pt;}
.ls1_c00153{letter-spacing:42.589050pt;}
.ws0_c00153{word-spacing:0.000000pt;}
._f_c00153{margin-left:-3.219092pt;}
._3_c00153{margin-left:-2.303075pt;}
._0_c00153{margin-left:-1.164925pt;}
._1_c00153{width:0.902574pt;}
._8_c00153{width:1.895356pt;}
._9_c00153{width:2.799964pt;}
._7_c00153{width:4.362193pt;}
._6_c00153{width:5.853257pt;}
._5_c00153{width:7.234994pt;}
._4_c00153{width:8.866098pt;}
._14_c00153{width:9.826348pt;}
._11_c00153{width:10.735305pt;}
._10_c00153{width:11.718421pt;}
._15_c00153{width:12.661399pt;}
._d_c00153{width:17.023595pt;}
._e_c00153{width:18.433866pt;}
._13_c00153{width:20.289181pt;}
._12_c00153{width:21.315911pt;}
._b_c00153{width:22.304579pt;}
._a_c00153{width:23.369757pt;}
._c_c00153{width:25.883297pt;}
._2_c00153{width:52.425716pt;}
.fs4_c00153{font-size:34.199666pt;}
.fs3_c00153{font-size:36.732892pt;}
.fs5_c00153{font-size:42.432943pt;}
.fs2_c00153{font-size:52.566166pt;}
.fs0_c00153{font-size:58.267177pt;}
.fs1_c00153{font-size:63.333308pt;}
.yc_c00153{bottom:-0.004664pt;}
.y0_c00153{bottom:0.000000pt;}
.y1_c00153{bottom:0.107500pt;}
.y4_c00153{bottom:3.483650pt;}
.yd_c00153{bottom:6.068128pt;}
.yf_c00153{bottom:57.897180pt;}
.y3_c00153{bottom:71.407520pt;}
.y3c_c00153{bottom:72.619974pt;}
.y5_c00153{bottom:74.146204pt;}
.y2_c00153{bottom:74.783670pt;}
.y3b_c00153{bottom:96.212098pt;}
.y3a_c00153{bottom:123.445154pt;}
.y39_c00153{bottom:150.835809pt;}
.y38_c00153{bottom:167.933136pt;}
.y37_c00153{bottom:182.183797pt;}
.y36_c00153{bottom:205.619921pt;}
.y35_c00153{bottom:233.011776pt;}
.y34_c00153{bottom:249.001103pt;}
.y33_c00153{bottom:259.611766pt;}
.y32_c00153{bottom:277.662425pt;}
.y31_c00153{bottom:293.809085pt;}
.y30_c00153{bottom:317.245609pt;}
.y2f_c00153{bottom:344.479332pt;}
.y2e_c00153{bottom:371.714388pt;}
.y2d_c00153{bottom:398.945043pt;}
.y2c_c00153{bottom:415.881037pt;}
.y2b_c00153{bottom:430.291697pt;}
.y2a_c00153{bottom:453.884888pt;}
.y29_c00153{bottom:481.117944pt;}
.y28_c00153{bottom:508.510466pt;}
.y27_c00153{bottom:535.742322pt;}
.y26_c00153{bottom:552.842315pt;}
.y25_c00153{bottom:565.508977pt;}
.y24_c00153{bottom:581.496970pt;}
.y23_c00153{bottom:614.588957pt;}
.y22_c00153{bottom:638.024414pt;}
.y21_c00153{bottom:665.256937pt;}
.y20_c00153{bottom:681.404930pt;}
.y1f_c00153{bottom:692.802259pt;}
.y1e_c00153{bottom:708.640919pt;}
.y1d_c00153{bottom:720.040915pt;}
.y1c_c00153{bottom:736.031575pt;}
.y1b_c00153{bottom:747.272371pt;}
.y1a_c00153{bottom:766.748630pt;}
.y19_c00153{bottom:792.239819pt;}
.y18_c00153{bottom:819.629142pt;}
.y17_c00153{bottom:847.179797pt;}
.y16_c00153{bottom:874.412853pt;}
.y15_c00153{bottom:890.562180pt;}
.y14_c00153{bottom:901.962175pt;}
.y13_c00153{bottom:918.744462pt;}
.y12_c00153{bottom:931.888830pt;}
.y11_c00153{bottom:944.396825pt;}
.y10_c00153{bottom:958.962153pt;}
.ye_c00153{bottom:975.744813pt;}
.yb_c00153{bottom:993.057600pt;}
.ya_c00153{bottom:1000.386100pt;}
.y6_c00153{bottom:1001.494766pt;}
.y9_c00153{bottom:1018.911692pt;}
.y8_c00153{bottom:1037.121018pt;}
.y7_c00153{bottom:1055.327278pt;}
.h7_c00153{height:14.249600pt;}
.h3_c00153{height:16.463680pt;}
.hd_c00153{height:21.614189pt;}
.hb_c00153{height:23.215188pt;}
.h10_c00153{height:26.817620pt;}
.h9_c00153{height:33.221817pt;}
.h11_c00153{height:39.583318pt;}
.he_c00153{height:40.026651pt;}
.h2_c00153{height:40.787024pt;}
.h5_c00153{height:44.333316pt;}
.h4_c00153{height:52.207390pt;}
.ha_c00153{height:52.382192pt;}
.hc_c00153{height:56.746644pt;}
.hf_c00153{height:56.809977pt;}
.h6_c00153{height:56.936644pt;}
.h8_c00153{height:1110.960672pt;}
.h1_c00153{height:1122.559167pt;}
.h0_c00153{height:1122.666667pt;}
.w2_c00153{width:5.380800pt;}
.w3_c00153{width:7.758400pt;}
.w4_c00153{width:785.062974pt;}
.w1_c00153{width:793.257550pt;}
.w0_c00153{width:793.333333pt;}
.x0_c00153{left:0.000000pt;}
.xa_c00153{left:1.370626pt;}
.xb_c00153{left:100.224934pt;}
.x3_c00153{left:112.191772pt;}
.xc_c00153{left:136.007986pt;}
.xe_c00153{left:143.290650pt;}
.xd_c00153{left:159.755101pt;}
.x4_c00153{left:183.442010pt;}
.x6_c00153{left:224.449590pt;}
.x5_c00153{left:240.115143pt;}
.x8_c00153{left:347.623838pt;}
.x7_c00153{left:373.597619pt;}
.x1_c00153{left:442.475240pt;}
.x2_c00153{left:663.201600pt;}
.x9_c00153{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00154;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00154{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls1_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:47.912681px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:-16.387643px;}
.ws1_c00154{word-spacing:0.000000px;}
._7_c00154{margin-left:-6.362997px;}
._d_c00154{margin-left:-3.599359px;}
._6_c00154{margin-left:-2.449967px;}
._0_c00154{margin-left:-1.310540px;}
._1_c00154{width:1.015395px;}
._a_c00154{width:2.284583px;}
._9_c00154{width:3.340840px;}
._3_c00154{width:4.613785px;}
._5_c00154{width:6.107581px;}
._2_c00154{width:7.122618px;}
._4_c00154{width:8.331229px;}
._8_c00154{width:9.839944px;}
._b_c00154{width:12.199485px;}
._c_c00154{width:14.164354px;}
._e_c00154{width:15.716138px;}
.fc1_c00154{color:rgb(105,148,45);}
.fc0_c00154{color:rgb(16,15,13);}
.fs4_c00154{font-size:38.474625px;}
.fs3_c00154{font-size:44.887062px;}
.fs2_c00154{font-size:59.136936px;}
.fs0_c00154{font-size:65.550574px;}
.fs1_c00154{font-size:71.249972px;}
.yc_c00154{bottom:-0.005247px;}
.y0_c00154{bottom:0.000000px;}
.y1_c00154{bottom:0.120938px;}
.y4_c00154{bottom:3.919106px;}
.yd_c00154{bottom:6.826644px;}
.yf_c00154{bottom:65.134327px;}
.y3_c00154{bottom:80.333460px;}
.y5_c00154{bottom:83.414479px;}
.y2_c00154{bottom:84.131629px;}
.y33_c00154{bottom:213.868268px;}
.y32_c00154{bottom:244.505455px;}
.y31_c00154{bottom:275.142643px;}
.y30_c00154{bottom:305.779231px;}
.y2f_c00154{bottom:324.839723px;}
.y2e_c00154{bottom:352.624362px;}
.y2d_c00154{bottom:383.260200px;}
.y2c_c00154{bottom:402.500692px;}
.y2b_c00154{bottom:428.863332px;}
.y2a_c00154{bottom:459.499169px;}
.y29_c00154{bottom:478.559662px;}
.y28_c00154{bottom:505.094351px;}
.y27_c00154{bottom:535.730939px;}
.y26_c00154{bottom:566.548127px;}
.y25_c00154{bottom:585.608619px;}
.y24_c00154{bottom:611.972758px;}
.y23_c00154{bottom:642.788596px;}
.y22_c00154{bottom:660.775089px;}
.y21_c00154{bottom:672.709084px;}
.y20_c00154{bottom:693.017276px;}
.y1f_c00154{bottom:722.765114px;}
.y1e_c00154{bottom:753.579602px;}
.y1d_c00154{bottom:784.217540px;}
.y1c_c00154{bottom:803.809032px;}
.y1b_c00154{bottom:831.237571px;}
.y1a_c00154{bottom:861.875509px;}
.y19_c00154{bottom:883.076500px;}
.y18_c00154{bottom:909.435539px;}
.y17_c00154{bottom:940.253477px;}
.y16_c00154{bottom:959.310970px;}
.y15_c00154{bottom:973.380964px;}
.y14_c00154{bottom:986.921459px;}
.y13_c00154{bottom:1005.977451px;}
.y12_c00154{bottom:1032.344740px;}
.y11_c00154{bottom:1062.981928px;}
.y10_c00154{bottom:1082.040920px;}
.ye_c00154{bottom:1097.712914px;}
.yb_c00154{bottom:1117.189800px;}
.ya_c00154{bottom:1125.434362px;}
.y6_c00154{bottom:1126.681612px;}
.y9_c00154{bottom:1146.275654px;}
.y8_c00154{bottom:1166.761146px;}
.y7_c00154{bottom:1187.243188px;}
.h7_c00154{height:16.030800px;}
.h3_c00154{height:18.521640px;}
.h10_c00154{height:24.315963px;}
.hc_c00154{height:28.368623px;}
.h9_c00154{height:37.374544px;}
.hd_c00154{height:41.427963px;}
.hf_c00154{height:44.531232px;}
.he_c00154{height:45.029982px;}
.h2_c00154{height:45.885402px;}
.h5_c00154{height:49.874980px;}
.h4_c00154{height:58.733314px;}
.ha_c00154{height:63.839974px;}
.hb_c00154{height:63.911224px;}
.h6_c00154{height:64.053724px;}
.h8_c00154{height:1249.830756px;}
.h1_c00154{height:1262.879062px;}
.h0_c00154{height:1263.000000px;}
.w2_c00154{width:6.053400px;}
.w3_c00154{width:8.728200px;}
.w4_c00154{width:883.195846px;}
.w1_c00154{width:892.414744px;}
.w0_c00154{width:892.500000px;}
.x0_c00154{left:0.000000px;}
.xa_c00154{left:1.541954px;}
.xb_c00154{left:112.753050px;}
.x3_c00154{left:126.215743px;}
.xd_c00154{left:153.008984px;}
.xe_c00154{left:161.201981px;}
.xc_c00154{left:178.837474px;}
.x4_c00154{left:206.372261px;}
.x6_c00154{left:252.505788px;}
.x5_c00154{left:270.129536px;}
.x8_c00154{left:391.076818px;}
.x7_c00154{left:420.297322px;}
.x1_c00154{left:497.784645px;}
.x2_c00154{left:746.101800px;}
.x9_c00154{left:762.309000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls1_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:42.589050pt;}
.ws0_c00154{word-spacing:-14.566794pt;}
.ws1_c00154{word-spacing:0.000000pt;}
._7_c00154{margin-left:-5.655998pt;}
._d_c00154{margin-left:-3.199431pt;}
._6_c00154{margin-left:-2.177749pt;}
._0_c00154{margin-left:-1.164925pt;}
._1_c00154{width:0.902574pt;}
._a_c00154{width:2.030740pt;}
._9_c00154{width:2.969636pt;}
._3_c00154{width:4.101142pt;}
._5_c00154{width:5.428961pt;}
._2_c00154{width:6.331216pt;}
._4_c00154{width:7.405537pt;}
._8_c00154{width:8.746617pt;}
._b_c00154{width:10.843987pt;}
._c_c00154{width:12.590537pt;}
._e_c00154{width:13.969901pt;}
.fs4_c00154{font-size:34.199666pt;}
.fs3_c00154{font-size:39.899611pt;}
.fs2_c00154{font-size:52.566166pt;}
.fs0_c00154{font-size:58.267177pt;}
.fs1_c00154{font-size:63.333308pt;}
.yc_c00154{bottom:-0.004664pt;}
.y0_c00154{bottom:0.000000pt;}
.y1_c00154{bottom:0.107500pt;}
.y4_c00154{bottom:3.483650pt;}
.yd_c00154{bottom:6.068128pt;}
.yf_c00154{bottom:57.897180pt;}
.y3_c00154{bottom:71.407520pt;}
.y5_c00154{bottom:74.146204pt;}
.y2_c00154{bottom:74.783670pt;}
.y33_c00154{bottom:190.105127pt;}
.y32_c00154{bottom:217.338183pt;}
.y31_c00154{bottom:244.571238pt;}
.y30_c00154{bottom:271.803761pt;}
.y2f_c00154{bottom:288.746421pt;}
.y2e_c00154{bottom:313.443878pt;}
.y2d_c00154{bottom:340.675733pt;}
.y2c_c00154{bottom:357.778393pt;}
.y2b_c00154{bottom:381.211850pt;}
.y2a_c00154{bottom:408.443706pt;}
.y29_c00154{bottom:425.386366pt;}
.y28_c00154{bottom:448.972757pt;}
.y27_c00154{bottom:476.205279pt;}
.y26_c00154{bottom:503.598335pt;}
.y25_c00154{bottom:520.540995pt;}
.y24_c00154{bottom:543.975785pt;}
.y23_c00154{bottom:571.367641pt;}
.y22_c00154{bottom:587.355635pt;}
.y21_c00154{bottom:597.963630pt;}
.y20_c00154{bottom:616.015356pt;}
.y1f_c00154{bottom:642.457879pt;}
.y1e_c00154{bottom:669.848535pt;}
.y1d_c00154{bottom:697.082257pt;}
.y1c_c00154{bottom:714.496917pt;}
.y1b_c00154{bottom:738.877841pt;}
.y1a_c00154{bottom:766.111563pt;}
.y19_c00154{bottom:784.956889pt;}
.y18_c00154{bottom:808.387146pt;}
.y17_c00154{bottom:835.780869pt;}
.y16_c00154{bottom:852.720862pt;}
.y15_c00154{bottom:865.227523pt;}
.y14_c00154{bottom:877.263519pt;}
.y13_c00154{bottom:894.202179pt;}
.y12_c00154{bottom:917.639769pt;}
.y11_c00154{bottom:944.872825pt;}
.y10_c00154{bottom:961.814152pt;}
.ye_c00154{bottom:975.744813pt;}
.yb_c00154{bottom:993.057600pt;}
.ya_c00154{bottom:1000.386100pt;}
.y6_c00154{bottom:1001.494766pt;}
.y9_c00154{bottom:1018.911692pt;}
.y8_c00154{bottom:1037.121018pt;}
.y7_c00154{bottom:1055.327278pt;}
.h7_c00154{height:14.249600pt;}
.h3_c00154{height:16.463680pt;}
.h10_c00154{height:21.614189pt;}
.hc_c00154{height:25.216554pt;}
.h9_c00154{height:33.221817pt;}
.hd_c00154{height:36.824856pt;}
.hf_c00154{height:39.583318pt;}
.he_c00154{height:40.026651pt;}
.h2_c00154{height:40.787024pt;}
.h5_c00154{height:44.333316pt;}
.h4_c00154{height:52.207390pt;}
.ha_c00154{height:56.746644pt;}
.hb_c00154{height:56.809977pt;}
.h6_c00154{height:56.936644pt;}
.h8_c00154{height:1110.960672pt;}
.h1_c00154{height:1122.559167pt;}
.h0_c00154{height:1122.666667pt;}
.w2_c00154{width:5.380800pt;}
.w3_c00154{width:7.758400pt;}
.w4_c00154{width:785.062974pt;}
.w1_c00154{width:793.257550pt;}
.w0_c00154{width:793.333333pt;}
.x0_c00154{left:0.000000pt;}
.xa_c00154{left:1.370626pt;}
.xb_c00154{left:100.224934pt;}
.x3_c00154{left:112.191772pt;}
.xd_c00154{left:136.007986pt;}
.xe_c00154{left:143.290650pt;}
.xc_c00154{left:158.966644pt;}
.x4_c00154{left:183.442010pt;}
.x6_c00154{left:224.449590pt;}
.x5_c00154{left:240.115143pt;}
.x8_c00154{left:347.623838pt;}
.x7_c00154{left:373.597619pt;}
.x1_c00154{left:442.475240pt;}
.x2_c00154{left:663.201600pt;}
.x9_c00154{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00155;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00155;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:1.113000;font-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_c00155{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00155{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00155{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls1_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:47.912681px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:-16.387643px;}
.ws1_c00155{word-spacing:0.000000px;}
._5_c00155{margin-left:-3.946895px;}
._8_c00155{margin-left:-2.618869px;}
._0_c00155{margin-left:-1.310540px;}
._1_c00155{width:1.015395px;}
._3_c00155{width:2.332000px;}
._4_c00155{width:3.546229px;}
._2_c00155{width:4.628197px;}
._b_c00155{width:6.121994px;}
._9_c00155{width:7.122618px;}
._a_c00155{width:8.316817px;}
._f_c00155{width:11.107302px;}
._11_c00155{width:13.149606px;}
._10_c00155{width:14.392374px;}
._12_c00155{width:15.737969px;}
._6_c00155{width:19.215887px;}
._7_c00155{width:20.451400px;}
._e_c00155{width:25.145162px;}
._d_c00155{width:27.147092px;}
._c_c00155{width:28.569792px;}
.fc1_c00155{color:rgb(105,148,45);}
.fc0_c00155{color:rgb(16,15,13);}
.fs3_c00155{font-size:38.474625px;}
.fs2_c00155{font-size:59.136936px;}
.fs0_c00155{font-size:65.550574px;}
.fs1_c00155{font-size:71.249972px;}
.ya_c00155{bottom:-0.005247px;}
.y0_c00155{bottom:0.000000px;}
.y1_c00155{bottom:0.120938px;}
.yb_c00155{bottom:6.826644px;}
.yd_c00155{bottom:65.134327px;}
.y3_c00155{bottom:83.414442px;}
.y2_c00155{bottom:84.131629px;}
.y2f_c00155{bottom:257.684750px;}
.y2e_c00155{bottom:288.321938px;}
.y2d_c00155{bottom:318.958526px;}
.y2c_c00155{bottom:349.595713px;}
.y2b_c00155{bottom:380.231551px;}
.y2a_c00155{bottom:410.869489px;}
.y29_c00155{bottom:441.506677px;}
.y28_c00155{bottom:460.566869px;}
.y27_c00155{bottom:476.954662px;}
.y26_c00155{bottom:503.313852px;}
.y25_c00155{bottom:534.128340px;}
.y24_c00155{bottom:564.767777px;}
.y23_c00155{bottom:595.583615px;}
.y22_c00155{bottom:614.996607px;}
.y21_c00155{bottom:631.028601px;}
.y20_c00155{bottom:657.390640px;}
.y1f_c00155{bottom:688.030078px;}
.y1e_c00155{bottom:707.089670px;}
.y1d_c00155{bottom:723.298064px;}
.y1c_c00155{bottom:749.838753px;}
.y1b_c00155{bottom:780.474591px;}
.y1a_c00155{bottom:811.292529px;}
.y19_c00155{bottom:830.347021px;}
.y18_c00155{bottom:846.559015px;}
.y17_c00155{bottom:873.101204px;}
.y16_c00155{bottom:903.739142px;}
.y15_c00155{bottom:934.554979px;}
.y14_c00155{bottom:953.786622px;}
.y13_c00155{bottom:969.819965px;}
.y12_c00155{bottom:996.362755px;}
.y11_c00155{bottom:1026.999942px;}
.y10_c00155{bottom:1044.989435px;}
.yf_c00155{bottom:1057.100430px;}
.ye_c00155{bottom:1082.040920px;}
.yc_c00155{bottom:1097.712914px;}
.y9_c00155{bottom:1117.189800px;}
.y8_c00155{bottom:1125.434362px;}
.y4_c00155{bottom:1126.681612px;}
.y7_c00155{bottom:1146.275654px;}
.y6_c00155{bottom:1166.761146px;}
.y5_c00155{bottom:1187.243188px;}
.h5_c00155{height:16.030800px;}
.ha_c00155{height:24.315963px;}
.h7_c00155{height:37.374544px;}
.hc_c00155{height:41.427963px;}
.h8_c00155{height:44.531232px;}
.h3_c00155{height:49.874980px;}
.h2_c00155{height:58.733314px;}
.hb_c00155{height:63.839974px;}
.h9_c00155{height:63.911224px;}
.h4_c00155{height:64.053724px;}
.h6_c00155{height:1249.830756px;}
.h1_c00155{height:1262.879062px;}
.h0_c00155{height:1263.000000px;}
.w2_c00155{width:8.728200px;}
.w3_c00155{width:883.195846px;}
.w1_c00155{width:892.414744px;}
.w0_c00155{width:892.500000px;}
.x0_c00155{left:0.000000px;}
.x9_c00155{left:1.541954px;}
.xa_c00155{left:112.753050px;}
.x2_c00155{left:126.222353px;}
.xb_c00155{left:153.008984px;}
.xc_c00155{left:161.201981px;}
.xd_c00155{left:178.837474px;}
.x3_c00155{left:206.372261px;}
.x5_c00155{left:252.505788px;}
.x4_c00155{left:270.129536px;}
.x7_c00155{left:391.076818px;}
.x6_c00155{left:420.297322px;}
.x1_c00155{left:497.784645px;}
.x8_c00155{left:762.309000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls1_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:42.589050pt;}
.ws0_c00155{word-spacing:-14.566794pt;}
.ws1_c00155{word-spacing:0.000000pt;}
._5_c00155{margin-left:-3.508351pt;}
._8_c00155{margin-left:-2.327883pt;}
._0_c00155{margin-left:-1.164925pt;}
._1_c00155{width:0.902574pt;}
._3_c00155{width:2.072888pt;}
._4_c00155{width:3.152203pt;}
._2_c00155{width:4.113953pt;}
._b_c00155{width:5.441772pt;}
._9_c00155{width:6.331216pt;}
._a_c00155{width:7.392726pt;}
._f_c00155{width:9.873157pt;}
._11_c00155{width:11.688539pt;}
._10_c00155{width:12.793221pt;}
._12_c00155{width:13.989306pt;}
._6_c00155{width:17.080788pt;}
._7_c00155{width:18.179023pt;}
._e_c00155{width:22.351255pt;}
._d_c00155{width:24.130749pt;}
._c_c00155{width:25.395371pt;}
.fs3_c00155{font-size:34.199666pt;}
.fs2_c00155{font-size:52.566166pt;}
.fs0_c00155{font-size:58.267177pt;}
.fs1_c00155{font-size:63.333308pt;}
.ya_c00155{bottom:-0.004664pt;}
.y0_c00155{bottom:0.000000pt;}
.y1_c00155{bottom:0.107500pt;}
.yb_c00155{bottom:6.068128pt;}
.yd_c00155{bottom:57.897180pt;}
.y3_c00155{bottom:74.146170pt;}
.y2_c00155{bottom:74.783670pt;}
.y2f_c00155{bottom:229.053111pt;}
.y2e_c00155{bottom:256.286167pt;}
.y2d_c00155{bottom:283.518689pt;}
.y2c_c00155{bottom:310.751745pt;}
.y2b_c00155{bottom:337.983601pt;}
.y2a_c00155{bottom:365.217323pt;}
.y29_c00155{bottom:392.450379pt;}
.y28_c00155{bottom:409.392772pt;}
.y27_c00155{bottom:423.959700pt;}
.y26_c00155{bottom:447.390091pt;}
.y25_c00155{bottom:474.780746pt;}
.y24_c00155{bottom:502.015802pt;}
.y23_c00155{bottom:529.407658pt;}
.y22_c00155{bottom:546.663651pt;}
.y21_c00155{bottom:560.914312pt;}
.y20_c00155{bottom:584.347236pt;}
.y1f_c00155{bottom:611.582292pt;}
.y1e_c00155{bottom:628.524151pt;}
.y1d_c00155{bottom:642.931612pt;}
.y1c_c00155{bottom:666.523336pt;}
.y1b_c00155{bottom:693.755192pt;}
.y1a_c00155{bottom:721.148914pt;}
.y19_c00155{bottom:738.086241pt;}
.y18_c00155{bottom:752.496902pt;}
.y17_c00155{bottom:776.089959pt;}
.y16_c00155{bottom:803.323682pt;}
.y15_c00155{bottom:830.715537pt;}
.y14_c00155{bottom:847.810330pt;}
.y13_c00155{bottom:862.062191pt;}
.y12_c00155{bottom:885.655782pt;}
.y11_c00155{bottom:912.888838pt;}
.y10_c00155{bottom:928.879498pt;}
.yf_c00155{bottom:939.644827pt;}
.ye_c00155{bottom:961.814152pt;}
.yc_c00155{bottom:975.744813pt;}
.y9_c00155{bottom:993.057600pt;}
.y8_c00155{bottom:1000.386100pt;}
.y4_c00155{bottom:1001.494766pt;}
.y7_c00155{bottom:1018.911692pt;}
.y6_c00155{bottom:1037.121018pt;}
.y5_c00155{bottom:1055.327278pt;}
.h5_c00155{height:14.249600pt;}
.ha_c00155{height:21.614189pt;}
.h7_c00155{height:33.221817pt;}
.hc_c00155{height:36.824856pt;}
.h8_c00155{height:39.583318pt;}
.h3_c00155{height:44.333316pt;}
.h2_c00155{height:52.207390pt;}
.hb_c00155{height:56.746644pt;}
.h9_c00155{height:56.809977pt;}
.h4_c00155{height:56.936644pt;}
.h6_c00155{height:1110.960672pt;}
.h1_c00155{height:1122.559167pt;}
.h0_c00155{height:1122.666667pt;}
.w2_c00155{width:7.758400pt;}
.w3_c00155{width:785.062974pt;}
.w1_c00155{width:793.257550pt;}
.w0_c00155{width:793.333333pt;}
.x0_c00155{left:0.000000pt;}
.x9_c00155{left:1.370626pt;}
.xa_c00155{left:100.224934pt;}
.x2_c00155{left:112.197647pt;}
.xb_c00155{left:136.007986pt;}
.xc_c00155{left:143.290650pt;}
.xd_c00155{left:158.966644pt;}
.x3_c00155{left:183.442010pt;}
.x5_c00155{left:224.449590pt;}
.x4_c00155{left:240.115143pt;}
.x7_c00155{left:347.623838pt;}
.x6_c00155{left:373.597619pt;}
.x1_c00155{left:442.475240pt;}
.x8_c00155{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00156;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00156;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00156{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.lsc_c00156{letter-spacing:0.000000px;}
.ls4_c00156{letter-spacing:0.509490px;}
.ls1_c00156{letter-spacing:0.512310px;}
.ls7_c00156{letter-spacing:0.515130px;}
.ls6_c00156{letter-spacing:0.517950px;}
.lsa_c00156{letter-spacing:163.404235px;}
.ls8_c00156{letter-spacing:163.406635px;}
.ls9_c00156{letter-spacing:163.409635px;}
.lsb_c00156{letter-spacing:163.412635px;}
.ls3_c00156{letter-spacing:163.415635px;}
.ls2_c00156{letter-spacing:163.418035px;}
.ls5_c00156{letter-spacing:163.424035px;}
.ls0_c00156{letter-spacing:164.133234px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00156{word-spacing:-17.812493px;}
.ws0_c00156{word-spacing:-16.387643px;}
.ws2_c00156{word-spacing:0.000000px;}
._9_c00156{margin-left:-4.332040px;}
._8_c00156{margin-left:-2.950033px;}
._0_c00156{margin-left:-1.310540px;}
._1_c00156{width:1.015395px;}
._12_c00156{width:2.597565px;}
._5_c00156{width:3.786308px;}
._4_c00156{width:5.814118px;}
._3_c00156{width:7.524440px;}
._6_c00156{width:14.100927px;}
._14_c00156{width:15.105393px;}
._7_c00156{width:16.106258px;}
._13_c00156{width:19.041298px;}
._2_c00156{width:23.902644px;}
._f_c00156{width:29.238072px;}
._d_c00156{width:31.046283px;}
._10_c00156{width:32.780652px;}
._e_c00156{width:33.783616px;}
._11_c00156{width:35.257820px;}
._b_c00156{width:37.720703px;}
._c_c00156{width:39.120939px;}
._a_c00156{width:99.166586px;}
.fc1_c00156{color:rgb(105,148,45);}
.fc0_c00156{color:rgb(16,15,13);}
.fs2_c00156{font-size:59.136936px;}
.fs0_c00156{font-size:65.550574px;}
.fs1_c00156{font-size:71.249972px;}
.ya_c00156{bottom:-0.005247px;}
.y0_c00156{bottom:0.000000px;}
.y1_c00156{bottom:0.120938px;}
.yb_c00156{bottom:6.826644px;}
.yd_c00156{bottom:65.134327px;}
.y3_c00156{bottom:83.414442px;}
.y2_c00156{bottom:84.131629px;}
.y31_c00156{bottom:89.003518px;}
.y30_c00156{bottom:119.640105px;}
.y2f_c00156{bottom:150.455943px;}
.y2e_c00156{bottom:181.091781px;}
.y2d_c00156{bottom:211.908369px;}
.y2c_c00156{bottom:242.544206px;}
.y2b_c00156{bottom:273.360044px;}
.y2a_c00156{bottom:303.995882px;}
.y29_c00156{bottom:334.812469px;}
.y28_c00156{bottom:365.448307px;}
.y27_c00156{bottom:396.265495px;}
.y26_c00156{bottom:426.904933px;}
.y25_c00156{bottom:457.717920px;}
.y24_c00156{bottom:488.355858px;}
.y23_c00156{bottom:519.168846px;}
.y22_c00156{bottom:549.808883px;}
.y21_c00156{bottom:580.621871px;}
.y20_c00156{bottom:611.261309px;}
.y1f_c00156{bottom:642.075796px;}
.y1e_c00156{bottom:672.712984px;}
.y1d_c00156{bottom:703.528072px;}
.y1c_c00156{bottom:722.585564px;}
.y1b_c00156{bottom:742.536156px;}
.y1a_c00156{bottom:761.417849px;}
.y19_c00156{bottom:797.579534px;}
.y18_c00156{bottom:814.851007px;}
.y17_c00156{bottom:829.637011px;}
.y16_c00156{bottom:844.423016px;}
.y15_c00156{bottom:870.962205px;}
.y14_c00156{bottom:901.600143px;}
.y13_c00156{bottom:932.415980px;}
.y12_c00156{bottom:951.650473px;}
.y11_c00156{bottom:967.682466px;}
.y10_c00156{bottom:998.320554px;}
.yf_c00156{bottom:1028.957742px;}
.ye_c00156{bottom:1077.764422px;}
.yc_c00156{bottom:1097.712914px;}
.y9_c00156{bottom:1117.189800px;}
.y8_c00156{bottom:1125.434362px;}
.y4_c00156{bottom:1126.681612px;}
.y7_c00156{bottom:1146.275654px;}
.y6_c00156{bottom:1166.761146px;}
.y5_c00156{bottom:1187.243188px;}
.h5_c00156{height:16.030800px;}
.h7_c00156{height:37.374544px;}
.ha_c00156{height:41.427963px;}
.h3_c00156{height:49.874980px;}
.h2_c00156{height:58.733314px;}
.hb_c00156{height:58.929966px;}
.h8_c00156{height:63.839974px;}
.h9_c00156{height:63.911224px;}
.h4_c00156{height:64.053724px;}
.h6_c00156{height:1249.830756px;}
.h1_c00156{height:1262.879062px;}
.h0_c00156{height:1263.000000px;}
.w2_c00156{width:8.728200px;}
.w3_c00156{width:883.195846px;}
.w1_c00156{width:892.414744px;}
.w0_c00156{width:892.500000px;}
.x0_c00156{left:0.000000px;}
.x9_c00156{left:1.541954px;}
.xa_c00156{left:112.753050px;}
.x2_c00156{left:126.222353px;}
.xc_c00156{left:153.005779px;}
.xb_c00156{left:178.837474px;}
.x3_c00156{left:206.372261px;}
.x5_c00156{left:252.505788px;}
.x4_c00156{left:270.129536px;}
.x7_c00156{left:391.076818px;}
.x6_c00156{left:420.297322px;}
.x1_c00156{left:497.784645px;}
.x8_c00156{left:762.309000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.lsc_c00156{letter-spacing:0.000000pt;}
.ls4_c00156{letter-spacing:0.452880pt;}
.ls1_c00156{letter-spacing:0.455386pt;}
.ls7_c00156{letter-spacing:0.457893pt;}
.ls6_c00156{letter-spacing:0.460400pt;}
.lsa_c00156{letter-spacing:145.248209pt;}
.ls8_c00156{letter-spacing:145.250342pt;}
.ls9_c00156{letter-spacing:145.253009pt;}
.lsb_c00156{letter-spacing:145.255675pt;}
.ls3_c00156{letter-spacing:145.258342pt;}
.ls2_c00156{letter-spacing:145.260475pt;}
.ls5_c00156{letter-spacing:145.265809pt;}
.ls0_c00156{letter-spacing:145.896208pt;}
.ws1_c00156{word-spacing:-15.833327pt;}
.ws0_c00156{word-spacing:-14.566794pt;}
.ws2_c00156{word-spacing:0.000000pt;}
._9_c00156{margin-left:-3.850702pt;}
._8_c00156{margin-left:-2.622251pt;}
._0_c00156{margin-left:-1.164925pt;}
._1_c00156{width:0.902574pt;}
._12_c00156{width:2.308947pt;}
._5_c00156{width:3.365607pt;}
._4_c00156{width:5.168105pt;}
._3_c00156{width:6.688391pt;}
._6_c00156{width:12.534157pt;}
._14_c00156{width:13.427016pt;}
._7_c00156{width:14.316674pt;}
._13_c00156{width:16.925598pt;}
._2_c00156{width:21.246795pt;}
._f_c00156{width:25.989397pt;}
._d_c00156{width:27.596696pt;}
._10_c00156{width:29.138357pt;}
._e_c00156{width:30.029881pt;}
._11_c00156{width:31.340285pt;}
._b_c00156{width:33.529514pt;}
._c_c00156{width:34.774168pt;}
._a_c00156{width:88.148076pt;}
.fs2_c00156{font-size:52.566166pt;}
.fs0_c00156{font-size:58.267177pt;}
.fs1_c00156{font-size:63.333308pt;}
.ya_c00156{bottom:-0.004664pt;}
.y0_c00156{bottom:0.000000pt;}
.y1_c00156{bottom:0.107500pt;}
.yb_c00156{bottom:6.068128pt;}
.yd_c00156{bottom:57.897180pt;}
.y3_c00156{bottom:74.146170pt;}
.y2_c00156{bottom:74.783670pt;}
.y31_c00156{bottom:79.114238pt;}
.y30_c00156{bottom:106.346760pt;}
.y2f_c00156{bottom:133.738616pt;}
.y2e_c00156{bottom:160.970472pt;}
.y2d_c00156{bottom:188.362994pt;}
.y2c_c00156{bottom:215.594850pt;}
.y2b_c00156{bottom:242.986706pt;}
.y2a_c00156{bottom:270.218561pt;}
.y29_c00156{bottom:297.611084pt;}
.y28_c00156{bottom:324.842940pt;}
.y27_c00156{bottom:352.235995pt;}
.y26_c00156{bottom:379.471051pt;}
.y25_c00156{bottom:406.860373pt;}
.y24_c00156{bottom:434.094096pt;}
.y23_c00156{bottom:461.483418pt;}
.y22_c00156{bottom:488.719007pt;}
.y21_c00156{bottom:516.108330pt;}
.y20_c00156{bottom:543.343386pt;}
.y1f_c00156{bottom:570.734041pt;}
.y1e_c00156{bottom:597.967097pt;}
.y1d_c00156{bottom:625.358286pt;}
.y1c_c00156{bottom:642.298279pt;}
.y1b_c00156{bottom:660.032139pt;}
.y1a_c00156{bottom:676.815866pt;}
.y19_c00156{bottom:708.959586pt;}
.y18_c00156{bottom:724.312007pt;}
.y17_c00156{bottom:737.455121pt;}
.y16_c00156{bottom:750.598236pt;}
.y15_c00156{bottom:774.188627pt;}
.y14_c00156{bottom:801.422349pt;}
.y13_c00156{bottom:828.814205pt;}
.y12_c00156{bottom:845.911531pt;}
.y11_c00156{bottom:860.162192pt;}
.y10_c00156{bottom:887.396048pt;}
.yf_c00156{bottom:914.629104pt;}
.ye_c00156{bottom:958.012820pt;}
.yc_c00156{bottom:975.744813pt;}
.y9_c00156{bottom:993.057600pt;}
.y8_c00156{bottom:1000.386100pt;}
.y4_c00156{bottom:1001.494766pt;}
.y7_c00156{bottom:1018.911692pt;}
.y6_c00156{bottom:1037.121018pt;}
.y5_c00156{bottom:1055.327278pt;}
.h5_c00156{height:14.249600pt;}
.h7_c00156{height:33.221817pt;}
.ha_c00156{height:36.824856pt;}
.h3_c00156{height:44.333316pt;}
.h2_c00156{height:52.207390pt;}
.hb_c00156{height:52.382192pt;}
.h8_c00156{height:56.746644pt;}
.h9_c00156{height:56.809977pt;}
.h4_c00156{height:56.936644pt;}
.h6_c00156{height:1110.960672pt;}
.h1_c00156{height:1122.559167pt;}
.h0_c00156{height:1122.666667pt;}
.w2_c00156{width:7.758400pt;}
.w3_c00156{width:785.062974pt;}
.w1_c00156{width:793.257550pt;}
.w0_c00156{width:793.333333pt;}
.x0_c00156{left:0.000000pt;}
.x9_c00156{left:1.370626pt;}
.xa_c00156{left:100.224934pt;}
.x2_c00156{left:112.197647pt;}
.xc_c00156{left:136.005137pt;}
.xb_c00156{left:158.966644pt;}
.x3_c00156{left:183.442010pt;}
.x5_c00156{left:224.449590pt;}
.x4_c00156{left:240.115143pt;}
.x7_c00156{left:347.623838pt;}
.x6_c00156{left:373.597619pt;}
.x1_c00156{left:442.475240pt;}
.x8_c00156{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00157{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.lsa_c00157{letter-spacing:0.000000px;}
.ls2_c00157{letter-spacing:0.509490px;}
.ls0_c00157{letter-spacing:0.512310px;}
.ls6_c00157{letter-spacing:0.515130px;}
.ls4_c00157{letter-spacing:0.517950px;}
.ls5_c00157{letter-spacing:163.404235px;}
.ls9_c00157{letter-spacing:163.406635px;}
.ls8_c00157{letter-spacing:163.409635px;}
.ls7_c00157{letter-spacing:163.412635px;}
.ls3_c00157{letter-spacing:163.415635px;}
.ls1_c00157{letter-spacing:163.418035px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:-16.387643px;}
.ws1_c00157{word-spacing:0.000000px;}
._9_c00157{margin-left:-2.357509px;}
._0_c00157{margin-left:-1.310540px;}
._1_c00157{width:1.015395px;}
._6_c00157{width:3.061054px;}
._3_c00157{width:5.076353px;}
._2_c00157{width:6.270543px;}
._7_c00157{width:7.282558px;}
._4_c00157{width:8.461066px;}
._8_c00157{width:9.542647px;}
._a_c00157{width:11.238382px;}
._b_c00157{width:13.345969px;}
._c_c00157{width:14.429842px;}
._d_c00157{width:21.401828px;}
._e_c00157{width:22.492237px;}
._5_c00157{width:90.578238px;}
.fc1_c00157{color:rgb(105,148,45);}
.fc0_c00157{color:rgb(16,15,13);}
.fs2_c00157{font-size:59.136936px;}
.fs0_c00157{font-size:65.550574px;}
.fs1_c00157{font-size:71.249972px;}
.ya_c00157{bottom:-0.005247px;}
.y0_c00157{bottom:0.000000px;}
.y1_c00157{bottom:0.120938px;}
.yb_c00157{bottom:6.826644px;}
.yd_c00157{bottom:65.134327px;}
.y3_c00157{bottom:83.414442px;}
.y2_c00157{bottom:84.131629px;}
.y2e_c00157{bottom:84.370320px;}
.y2d_c00157{bottom:115.009757px;}
.y2c_c00157{bottom:145.822745px;}
.y2b_c00157{bottom:176.461433px;}
.y2a_c00157{bottom:207.098020px;}
.y29_c00157{bottom:237.913858px;}
.y28_c00157{bottom:268.549696px;}
.y27_c00157{bottom:299.364184px;}
.y26_c00157{bottom:330.000771px;}
.y25_c00157{bottom:360.816609px;}
.y24_c00157{bottom:391.453797px;}
.y23_c00157{bottom:422.271734px;}
.y22_c00157{bottom:452.906222px;}
.y21_c00157{bottom:483.722060px;}
.y20_c00157{bottom:514.359998px;}
.y1f_c00157{bottom:545.175835px;}
.y1e_c00157{bottom:575.813023px;}
.y1d_c00157{bottom:606.629611px;}
.y1c_c00157{bottom:637.264098px;}
.y1b_c00157{bottom:668.079936px;}
.y1a_c00157{bottom:698.719374px;}
.y19_c00157{bottom:729.533861px;}
.y18_c00157{bottom:760.171049px;}
.y17_c00157{bottom:784.571539px;}
.y16_c00157{bottom:831.952020px;}
.y15_c00157{bottom:862.769208px;}
.y14_c00157{bottom:893.405046px;}
.y13_c00157{bottom:924.221634px;}
.y12_c00157{bottom:954.856121px;}
.y11_c00157{bottom:985.671959px;}
.y10_c00157{bottom:1016.311397px;}
.yf_c00157{bottom:1047.127234px;}
.ye_c00157{bottom:1077.764422px;}
.yc_c00157{bottom:1097.712914px;}
.y9_c00157{bottom:1117.189800px;}
.y8_c00157{bottom:1125.434362px;}
.y4_c00157{bottom:1126.681612px;}
.y7_c00157{bottom:1146.275654px;}
.y6_c00157{bottom:1166.761146px;}
.y5_c00157{bottom:1187.243188px;}
.h5_c00157{height:16.030800px;}
.h7_c00157{height:37.374544px;}
.h3_c00157{height:49.874980px;}
.h2_c00157{height:58.733314px;}
.h9_c00157{height:58.929966px;}
.h8_c00157{height:63.839974px;}
.h4_c00157{height:64.053724px;}
.h6_c00157{height:1249.830756px;}
.h1_c00157{height:1262.879062px;}
.h0_c00157{height:1263.000000px;}
.w2_c00157{width:8.728200px;}
.w3_c00157{width:883.195846px;}
.w1_c00157{width:892.414744px;}
.w0_c00157{width:892.500000px;}
.x0_c00157{left:0.000000px;}
.x9_c00157{left:1.541954px;}
.xa_c00157{left:112.753050px;}
.x2_c00157{left:126.222353px;}
.xb_c00157{left:153.007188px;}
.x3_c00157{left:206.372261px;}
.x5_c00157{left:252.505788px;}
.x4_c00157{left:270.129536px;}
.x7_c00157{left:391.076818px;}
.x6_c00157{left:420.297322px;}
.x1_c00157{left:497.784645px;}
.x8_c00157{left:762.309000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.lsa_c00157{letter-spacing:0.000000pt;}
.ls2_c00157{letter-spacing:0.452880pt;}
.ls0_c00157{letter-spacing:0.455386pt;}
.ls6_c00157{letter-spacing:0.457893pt;}
.ls4_c00157{letter-spacing:0.460400pt;}
.ls5_c00157{letter-spacing:145.248209pt;}
.ls9_c00157{letter-spacing:145.250342pt;}
.ls8_c00157{letter-spacing:145.253009pt;}
.ls7_c00157{letter-spacing:145.255675pt;}
.ls3_c00157{letter-spacing:145.258342pt;}
.ls1_c00157{letter-spacing:145.260475pt;}
.ws0_c00157{word-spacing:-14.566794pt;}
.ws1_c00157{word-spacing:0.000000pt;}
._9_c00157{margin-left:-2.095564pt;}
._0_c00157{margin-left:-1.164925pt;}
._1_c00157{width:0.902574pt;}
._6_c00157{width:2.720937pt;}
._3_c00157{width:4.512314pt;}
._2_c00157{width:5.573816pt;}
._7_c00157{width:6.473385pt;}
._4_c00157{width:7.520948pt;}
._8_c00157{width:8.482353pt;}
._a_c00157{width:9.989673pt;}
._b_c00157{width:11.863083pt;}
._c_c00157{width:12.826527pt;}
._d_c00157{width:19.023847pt;}
._e_c00157{width:19.993100pt;}
._5_c00157{width:80.513989pt;}
.fs2_c00157{font-size:52.566166pt;}
.fs0_c00157{font-size:58.267177pt;}
.fs1_c00157{font-size:63.333308pt;}
.ya_c00157{bottom:-0.004664pt;}
.y0_c00157{bottom:0.000000pt;}
.y1_c00157{bottom:0.107500pt;}
.yb_c00157{bottom:6.068128pt;}
.yd_c00157{bottom:57.897180pt;}
.y3_c00157{bottom:74.146170pt;}
.y2_c00157{bottom:74.783670pt;}
.y2e_c00157{bottom:74.995840pt;}
.y2d_c00157{bottom:102.230895pt;}
.y2c_c00157{bottom:129.620218pt;}
.y2b_c00157{bottom:156.854607pt;}
.y2a_c00157{bottom:184.087129pt;}
.y29_c00157{bottom:211.478985pt;}
.y28_c00157{bottom:238.710841pt;}
.y27_c00157{bottom:266.101496pt;}
.y26_c00157{bottom:293.334019pt;}
.y25_c00157{bottom:320.725875pt;}
.y24_c00157{bottom:347.958930pt;}
.y23_c00157{bottom:375.352653pt;}
.y22_c00157{bottom:402.583309pt;}
.y21_c00157{bottom:429.975164pt;}
.y20_c00157{bottom:457.208887pt;}
.y1f_c00157{bottom:484.600742pt;}
.y1e_c00157{bottom:511.833798pt;}
.y1d_c00157{bottom:539.226321pt;}
.y1c_c00157{bottom:566.456976pt;}
.y1b_c00157{bottom:593.848832pt;}
.y1a_c00157{bottom:621.083888pt;}
.y19_c00157{bottom:648.474544pt;}
.y18_c00157{bottom:675.707599pt;}
.y17_c00157{bottom:697.396924pt;}
.y16_c00157{bottom:739.512907pt;}
.y15_c00157{bottom:766.905963pt;}
.y14_c00157{bottom:794.137819pt;}
.y13_c00157{bottom:821.530341pt;}
.y12_c00157{bottom:848.760997pt;}
.y11_c00157{bottom:876.152852pt;}
.y10_c00157{bottom:903.387908pt;}
.yf_c00157{bottom:930.779764pt;}
.ye_c00157{bottom:958.012820pt;}
.yc_c00157{bottom:975.744813pt;}
.y9_c00157{bottom:993.057600pt;}
.y8_c00157{bottom:1000.386100pt;}
.y4_c00157{bottom:1001.494766pt;}
.y7_c00157{bottom:1018.911692pt;}
.y6_c00157{bottom:1037.121018pt;}
.y5_c00157{bottom:1055.327278pt;}
.h5_c00157{height:14.249600pt;}
.h7_c00157{height:33.221817pt;}
.h3_c00157{height:44.333316pt;}
.h2_c00157{height:52.207390pt;}
.h9_c00157{height:52.382192pt;}
.h8_c00157{height:56.746644pt;}
.h4_c00157{height:56.936644pt;}
.h6_c00157{height:1110.960672pt;}
.h1_c00157{height:1122.559167pt;}
.h0_c00157{height:1122.666667pt;}
.w2_c00157{width:7.758400pt;}
.w3_c00157{width:785.062974pt;}
.w1_c00157{width:793.257550pt;}
.w0_c00157{width:793.333333pt;}
.x0_c00157{left:0.000000pt;}
.x9_c00157{left:1.370626pt;}
.xa_c00157{left:100.224934pt;}
.x2_c00157{left:112.197647pt;}
.xb_c00157{left:136.006389pt;}
.x3_c00157{left:183.442010pt;}
.x5_c00157{left:224.449590pt;}
.x4_c00157{left:240.115143pt;}
.x7_c00157{left:347.623838pt;}
.x6_c00157{left:373.597619pt;}
.x1_c00157{left:442.475240pt;}
.x8_c00157{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00158;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;line-height:1.113000;font-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_c00158{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls8_c00158{letter-spacing:0.000000px;}
.ls5_c00158{letter-spacing:0.509490px;}
.ls0_c00158{letter-spacing:0.512310px;}
.ls3_c00158{letter-spacing:0.515130px;}
.ls2_c00158{letter-spacing:163.404235px;}
.ls6_c00158{letter-spacing:163.409635px;}
.ls7_c00158{letter-spacing:163.415635px;}
.ls1_c00158{letter-spacing:163.418035px;}
.ls4_c00158{letter-spacing:163.421035px;}
.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:-16.387643px;}
.ws1_c00158{word-spacing:0.000000px;}
._14_c00158{margin-left:-5.052065px;}
._9_c00158{margin-left:-2.755667px;}
._0_c00158{margin-left:-1.310540px;}
._1_c00158{width:1.015395px;}
._3_c00158{width:2.052681px;}
._2_c00158{width:3.348533px;}
._d_c00158{width:4.914320px;}
._a_c00158{width:5.983757px;}
._13_c00158{width:7.102646px;}
._4_c00158{width:8.192511px;}
._b_c00158{width:9.638243px;}
._e_c00158{width:10.877693px;}
._c_c00158{width:15.720701px;}
._5_c00158{width:19.125219px;}
._6_c00158{width:20.302718px;}
._7_c00158{width:21.308220px;}
._10_c00158{width:27.788730px;}
._12_c00158{width:28.886930px;}
._f_c00158{width:30.708770px;}
._11_c00158{width:31.934400px;}
._8_c00158{width:58.978931px;}
.fc1_c00158{color:rgb(105,148,45);}
.fc0_c00158{color:rgb(16,15,13);}
.fs4_c00158{font-size:38.474625px;}
.fs3_c00158{font-size:41.324503px;}
.fs5_c00158{font-size:47.737061px;}
.fs2_c00158{font-size:59.136936px;}
.fs0_c00158{font-size:65.550574px;}
.fs1_c00158{font-size:71.249972px;}
.ya_c00158{bottom:-0.005247px;}
.y0_c00158{bottom:0.000000px;}
.y1_c00158{bottom:0.120938px;}
.yb_c00158{bottom:6.826644px;}
.yd_c00158{bottom:65.134327px;}
.y32_c00158{bottom:82.946970px;}
.y3_c00158{bottom:83.414442px;}
.y2_c00158{bottom:84.131629px;}
.y31_c00158{bottom:109.484359px;}
.y30_c00158{bottom:140.122297px;}
.y2f_c00158{bottom:170.936785px;}
.y2e_c00158{bottom:189.995777px;}
.y2d_c00158{bottom:216.364267px;}
.y2c_c00158{bottom:247.002204px;}
.y2b_c00158{bottom:277.639392px;}
.y2a_c00158{bottom:308.275230px;}
.y29_c00158{bottom:327.511222px;}
.y28_c00158{bottom:353.870412px;}
.y27_c00158{bottom:384.688349px;}
.y26_c00158{bottom:415.324187px;}
.y25_c00158{bottom:446.138675px;}
.y24_c00158{bottom:464.665167px;}
.y23_c00158{bottom:482.651960px;}
.y22_c00158{bottom:520.589795px;}
.y21_c00158{bottom:550.694783px;}
.y20_c00158{bottom:581.510621px;}
.y1f_c00158{bottom:599.503113px;}
.y1e_c00158{bottom:612.325108px;}
.y1d_c00158{bottom:630.319101px;}
.y1c_c00158{bottom:646.705095px;}
.y1b_c00158{bottom:682.687080px;}
.y1a_c00158{bottom:709.047920px;}
.y19_c00158{bottom:739.863757px;}
.y18_c00158{bottom:770.499595px;}
.y17_c00158{bottom:801.317533px;}
.y16_c00158{bottom:831.952020px;}
.y15_c00158{bottom:862.769208px;}
.y14_c00158{bottom:893.405046px;}
.y13_c00158{bottom:924.221634px;}
.y12_c00158{bottom:954.856121px;}
.y11_c00158{bottom:985.671959px;}
.y10_c00158{bottom:1016.311397px;}
.yf_c00158{bottom:1047.127234px;}
.ye_c00158{bottom:1077.764422px;}
.yc_c00158{bottom:1097.712914px;}
.y9_c00158{bottom:1117.189800px;}
.y8_c00158{bottom:1125.434362px;}
.y4_c00158{bottom:1126.681612px;}
.y7_c00158{bottom:1146.275654px;}
.y6_c00158{bottom:1166.761146px;}
.y5_c00158{bottom:1187.243188px;}
.h5_c00158{height:16.030800px;}
.hb_c00158{height:24.315963px;}
.ha_c00158{height:26.117086px;}
.he_c00158{height:30.169822px;}
.h7_c00158{height:37.374544px;}
.hc_c00158{height:45.029982px;}
.h3_c00158{height:49.874980px;}
.h2_c00158{height:58.733314px;}
.h9_c00158{height:58.929966px;}
.h8_c00158{height:63.839974px;}
.hd_c00158{height:63.911224px;}
.h4_c00158{height:64.053724px;}
.h6_c00158{height:1249.830756px;}
.h1_c00158{height:1262.879062px;}
.h0_c00158{height:1263.000000px;}
.w2_c00158{width:8.728200px;}
.w3_c00158{width:883.195846px;}
.w1_c00158{width:892.414744px;}
.w0_c00158{width:892.500000px;}
.x0_c00158{left:0.000000px;}
.x9_c00158{left:1.541954px;}
.xa_c00158{left:112.753050px;}
.x2_c00158{left:126.222353px;}
.xb_c00158{left:153.005644px;}
.xc_c00158{left:179.727486px;}
.x3_c00158{left:206.372261px;}
.x5_c00158{left:252.505788px;}
.x4_c00158{left:270.129536px;}
.x7_c00158{left:391.076818px;}
.x6_c00158{left:420.297322px;}
.x1_c00158{left:497.784645px;}
.x8_c00158{left:762.309000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls8_c00158{letter-spacing:0.000000pt;}
.ls5_c00158{letter-spacing:0.452880pt;}
.ls0_c00158{letter-spacing:0.455386pt;}
.ls3_c00158{letter-spacing:0.457893pt;}
.ls2_c00158{letter-spacing:145.248209pt;}
.ls6_c00158{letter-spacing:145.253009pt;}
.ls7_c00158{letter-spacing:145.258342pt;}
.ls1_c00158{letter-spacing:145.260475pt;}
.ls4_c00158{letter-spacing:145.263142pt;}
.ws0_c00158{word-spacing:-14.566794pt;}
.ws1_c00158{word-spacing:0.000000pt;}
._14_c00158{margin-left:-4.490725pt;}
._9_c00158{margin-left:-2.449482pt;}
._0_c00158{margin-left:-1.164925pt;}
._1_c00158{width:0.902574pt;}
._3_c00158{width:1.824605pt;}
._2_c00158{width:2.976474pt;}
._d_c00158{width:4.368285pt;}
._a_c00158{width:5.318895pt;}
._13_c00158{width:6.313463pt;}
._4_c00158{width:7.282232pt;}
._b_c00158{width:8.567327pt;}
._e_c00158{width:9.669060pt;}
._c_c00158{width:13.973956pt;}
._5_c00158{width:17.000195pt;}
._6_c00158{width:18.046861pt;}
._7_c00158{width:18.940640pt;}
._10_c00158{width:24.701093pt;}
._12_c00158{width:25.677271pt;}
._f_c00158{width:27.296685pt;}
._11_c00158{width:28.386133pt;}
._8_c00158{width:52.425716pt;}
.fs4_c00158{font-size:34.199666pt;}
.fs3_c00158{font-size:36.732892pt;}
.fs5_c00158{font-size:42.432943pt;}
.fs2_c00158{font-size:52.566166pt;}
.fs0_c00158{font-size:58.267177pt;}
.fs1_c00158{font-size:63.333308pt;}
.ya_c00158{bottom:-0.004664pt;}
.y0_c00158{bottom:0.000000pt;}
.y1_c00158{bottom:0.107500pt;}
.yb_c00158{bottom:6.068128pt;}
.yd_c00158{bottom:57.897180pt;}
.y32_c00158{bottom:73.730640pt;}
.y3_c00158{bottom:74.146170pt;}
.y2_c00158{bottom:74.783670pt;}
.y31_c00158{bottom:97.319431pt;}
.y30_c00158{bottom:124.553153pt;}
.y2f_c00158{bottom:151.943809pt;}
.y2e_c00158{bottom:168.885135pt;}
.y2d_c00158{bottom:192.323793pt;}
.y2c_c00158{bottom:219.557515pt;}
.y2b_c00158{bottom:246.790571pt;}
.y2a_c00158{bottom:274.022427pt;}
.y29_c00158{bottom:291.121086pt;}
.y28_c00158{bottom:314.551477pt;}
.y27_c00158{bottom:341.945199pt;}
.y26_c00158{bottom:369.177055pt;}
.y25_c00158{bottom:396.567711pt;}
.y24_c00158{bottom:413.035704pt;}
.y23_c00158{bottom:429.023965pt;}
.y22_c00158{bottom:462.746484pt;}
.y21_c00158{bottom:489.506474pt;}
.y20_c00158{bottom:516.898329pt;}
.y1f_c00158{bottom:532.891656pt;}
.y1e_c00158{bottom:544.288985pt;}
.y1d_c00158{bottom:560.283645pt;}
.y1c_c00158{bottom:574.848973pt;}
.y1b_c00158{bottom:606.832960pt;}
.y1a_c00158{bottom:630.264817pt;}
.y19_c00158{bottom:657.656673pt;}
.y18_c00158{bottom:684.888529pt;}
.y17_c00158{bottom:712.282251pt;}
.y16_c00158{bottom:739.512907pt;}
.y15_c00158{bottom:766.905963pt;}
.y14_c00158{bottom:794.137819pt;}
.y13_c00158{bottom:821.530341pt;}
.y12_c00158{bottom:848.760997pt;}
.y11_c00158{bottom:876.152852pt;}
.y10_c00158{bottom:903.387908pt;}
.yf_c00158{bottom:930.779764pt;}
.ye_c00158{bottom:958.012820pt;}
.yc_c00158{bottom:975.744813pt;}
.y9_c00158{bottom:993.057600pt;}
.y8_c00158{bottom:1000.386100pt;}
.y4_c00158{bottom:1001.494766pt;}
.y7_c00158{bottom:1018.911692pt;}
.y6_c00158{bottom:1037.121018pt;}
.y5_c00158{bottom:1055.327278pt;}
.h5_c00158{height:14.249600pt;}
.hb_c00158{height:21.614189pt;}
.ha_c00158{height:23.215188pt;}
.he_c00158{height:26.817620pt;}
.h7_c00158{height:33.221817pt;}
.hc_c00158{height:40.026651pt;}
.h3_c00158{height:44.333316pt;}
.h2_c00158{height:52.207390pt;}
.h9_c00158{height:52.382192pt;}
.h8_c00158{height:56.746644pt;}
.hd_c00158{height:56.809977pt;}
.h4_c00158{height:56.936644pt;}
.h6_c00158{height:1110.960672pt;}
.h1_c00158{height:1122.559167pt;}
.h0_c00158{height:1122.666667pt;}
.w2_c00158{width:7.758400pt;}
.w3_c00158{width:785.062974pt;}
.w1_c00158{width:793.257550pt;}
.w0_c00158{width:793.333333pt;}
.x0_c00158{left:0.000000pt;}
.x9_c00158{left:1.370626pt;}
.xa_c00158{left:100.224934pt;}
.x2_c00158{left:112.197647pt;}
.xb_c00158{left:136.005017pt;}
.xc_c00158{left:159.757766pt;}
.x3_c00158{left:183.442010pt;}
.x5_c00158{left:224.449590pt;}
.x4_c00158{left:240.115143pt;}
.x7_c00158{left:347.623838pt;}
.x6_c00158{left:373.597619pt;}
.x1_c00158{left:442.475240pt;}
.x8_c00158{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:0.632000;font-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_c00159{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00159{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00159{word-spacing:-17.812493px;}
.ws0_c00159{word-spacing:-16.387643px;}
.ws2_c00159{word-spacing:0.000000px;}
._6_c00159{margin-left:-4.883764px;}
._3_c00159{margin-left:-3.579627px;}
._4_c00159{margin-left:-2.530485px;}
._0_c00159{margin-left:-1.310540px;}
._1_c00159{width:1.015395px;}
._5_c00159{width:2.029816px;}
._7_c00159{width:13.633184px;}
._2_c00159{width:58.978931px;}
.fc1_c00159{color:rgb(105,148,45);}
.fc0_c00159{color:rgb(16,15,13);}
.fs3_c00159{font-size:38.474625px;}
.fs5_c00159{font-size:41.324503px;}
.fs4_c00159{font-size:44.887062px;}
.fs2_c00159{font-size:59.136936px;}
.fs0_c00159{font-size:65.550574px;}
.fs1_c00159{font-size:71.249972px;}
.ya_c00159{bottom:-0.005247px;}
.y0_c00159{bottom:0.000000px;}
.y1_c00159{bottom:0.120938px;}
.yb_c00159{bottom:6.826644px;}
.yd_c00159{bottom:65.134327px;}
.y3_c00159{bottom:83.414442px;}
.y2_c00159{bottom:84.131629px;}
.y3c_c00159{bottom:232.033260px;}
.y3b_c00159{bottom:245.574055px;}
.y3a_c00159{bottom:276.565693px;}
.y39_c00159{bottom:307.382880px;}
.y38_c00159{bottom:338.374518px;}
.y37_c00159{bottom:369.011706px;}
.y36_c00159{bottom:388.070698px;}
.y35_c00159{bottom:416.036237px;}
.y34_c00159{bottom:446.672825px;}
.y33_c00159{bottom:477.488662px;}
.y32_c00159{bottom:496.549155px;}
.y31_c00159{bottom:510.799149px;}
.y30_c00159{bottom:524.335144px;}
.y2f_c00159{bottom:542.147636px;}
.y2e_c00159{bottom:554.972631px;}
.y2d_c00159{bottom:572.963624px;}
.y2c_c00159{bottom:585.787119px;}
.y2b_c00159{bottom:603.601112px;}
.y2a_c00159{bottom:616.423107px;}
.y29_c00159{bottom:634.417100px;}
.y28_c00159{bottom:647.239094px;}
.y27_c00159{bottom:665.053087px;}
.y26_c00159{bottom:677.876582px;}
.y25_c00159{bottom:696.935574px;}
.y24_c00159{bottom:711.007069px;}
.y23_c00159{bottom:724.544563px;}
.y22_c00159{bottom:724.545763px;}
.y21_c00159{bottom:746.274455px;}
.y20_c00159{bottom:764.977647px;}
.y1f_c00159{bottom:785.462539px;}
.y1e_c00159{bottom:803.452032px;}
.y1d_c00159{bottom:816.277027px;}
.y1c_c00159{bottom:834.089520px;}
.y1b_c00159{bottom:846.913015px;}
.y1a_c00159{bottom:864.725507px;}
.y19_c00159{bottom:877.553502px;}
.y18_c00159{bottom:895.539995px;}
.y17_c00159{bottom:908.370990px;}
.y16_c00159{bottom:926.178983px;}
.y15_c00159{bottom:939.005478px;}
.y14_c00159{bottom:956.994970px;}
.y13_c00159{bottom:969.819965px;}
.y12_c00159{bottom:987.632458px;}
.y11_c00159{bottom:1000.458953px;}
.y10_c00159{bottom:1019.514945px;}
.yf_c00159{bottom:1047.127234px;}
.ye_c00159{bottom:1077.764422px;}
.yc_c00159{bottom:1097.712914px;}
.y9_c00159{bottom:1117.189800px;}
.y8_c00159{bottom:1125.434362px;}
.y4_c00159{bottom:1126.681612px;}
.y7_c00159{bottom:1146.275654px;}
.y6_c00159{bottom:1166.761146px;}
.y5_c00159{bottom:1187.243188px;}
.h5_c00159{height:16.030800px;}
.h9_c00159{height:24.315963px;}
.hc_c00159{height:26.117086px;}
.hb_c00159{height:28.368623px;}
.h7_c00159{height:37.374544px;}
.ha_c00159{height:45.029982px;}
.h3_c00159{height:49.874980px;}
.h2_c00159{height:58.733314px;}
.h8_c00159{height:63.839974px;}
.h4_c00159{height:64.053724px;}
.h6_c00159{height:1249.830756px;}
.h1_c00159{height:1262.879062px;}
.h0_c00159{height:1263.000000px;}
.w2_c00159{width:8.728200px;}
.w3_c00159{width:883.195846px;}
.w1_c00159{width:892.414744px;}
.w0_c00159{width:892.500000px;}
.x0_c00159{left:0.000000px;}
.x9_c00159{left:1.541954px;}
.xa_c00159{left:112.753050px;}
.x2_c00159{left:126.222353px;}
.xc_c00159{left:153.008984px;}
.xb_c00159{left:178.837474px;}
.xd_c00159{left:180.793648px;}
.x3_c00159{left:206.372261px;}
.x5_c00159{left:252.505788px;}
.x4_c00159{left:270.129536px;}
.x7_c00159{left:391.076818px;}
.xe_c00159{left:415.028880px;}
.x6_c00159{left:420.297322px;}
.xf_c00159{left:465.970359px;}
.x1_c00159{left:497.784645px;}
.x8_c00159{left:762.309000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws1_c00159{word-spacing:-15.833327pt;}
.ws0_c00159{word-spacing:-14.566794pt;}
.ws2_c00159{word-spacing:0.000000pt;}
._6_c00159{margin-left:-4.341123pt;}
._3_c00159{margin-left:-3.181891pt;}
._4_c00159{margin-left:-2.249320pt;}
._0_c00159{margin-left:-1.164925pt;}
._1_c00159{width:0.902574pt;}
._5_c00159{width:1.804281pt;}
._7_c00159{width:12.118386pt;}
._2_c00159{width:52.425716pt;}
.fs3_c00159{font-size:34.199666pt;}
.fs5_c00159{font-size:36.732892pt;}
.fs4_c00159{font-size:39.899611pt;}
.fs2_c00159{font-size:52.566166pt;}
.fs0_c00159{font-size:58.267177pt;}
.fs1_c00159{font-size:63.333308pt;}
.ya_c00159{bottom:-0.004664pt;}
.y0_c00159{bottom:0.000000pt;}
.y1_c00159{bottom:0.107500pt;}
.yb_c00159{bottom:6.068128pt;}
.yd_c00159{bottom:57.897180pt;}
.y3_c00159{bottom:74.146170pt;}
.y2_c00159{bottom:74.783670pt;}
.y3c_c00159{bottom:206.251787pt;}
.y3b_c00159{bottom:218.288049pt;}
.y3a_c00159{bottom:245.836171pt;}
.y39_c00159{bottom:273.229227pt;}
.y38_c00159{bottom:300.777349pt;}
.y37_c00159{bottom:328.010405pt;}
.y36_c00159{bottom:344.951732pt;}
.y35_c00159{bottom:369.809988pt;}
.y34_c00159{bottom:397.042511pt;}
.y33_c00159{bottom:424.434366pt;}
.y32_c00159{bottom:441.377026pt;}
.y31_c00159{bottom:454.043688pt;}
.y30_c00159{bottom:466.075683pt;}
.y2f_c00159{bottom:481.909010pt;}
.y2e_c00159{bottom:493.309006pt;}
.y2d_c00159{bottom:509.300999pt;}
.y2c_c00159{bottom:520.699661pt;}
.y2b_c00159{bottom:536.534322pt;}
.y2a_c00159{bottom:547.931650pt;}
.y29_c00159{bottom:563.926311pt;}
.y28_c00159{bottom:575.323639pt;}
.y27_c00159{bottom:591.158300pt;}
.y26_c00159{bottom:602.556962pt;}
.y25_c00159{bottom:619.498288pt;}
.y24_c00159{bottom:632.006283pt;}
.y23_c00159{bottom:644.039612pt;}
.y22_c00159{bottom:644.040679pt;}
.y21_c00159{bottom:663.355071pt;}
.y20_c00159{bottom:679.980131pt;}
.y1f_c00159{bottom:698.188924pt;}
.y1e_c00159{bottom:714.179584pt;}
.y1d_c00159{bottom:725.579579pt;}
.y1c_c00159{bottom:741.412906pt;}
.y1b_c00159{bottom:752.811568pt;}
.y1a_c00159{bottom:768.644895pt;}
.y19_c00159{bottom:780.047558pt;}
.y18_c00159{bottom:796.035551pt;}
.y17_c00159{bottom:807.440880pt;}
.y16_c00159{bottom:823.270207pt;}
.y15_c00159{bottom:834.671536pt;}
.y14_c00159{bottom:850.662196pt;}
.y13_c00159{bottom:862.062191pt;}
.y12_c00159{bottom:877.895518pt;}
.y11_c00159{bottom:889.296847pt;}
.y10_c00159{bottom:906.235507pt;}
.yf_c00159{bottom:930.779764pt;}
.ye_c00159{bottom:958.012820pt;}
.yc_c00159{bottom:975.744813pt;}
.y9_c00159{bottom:993.057600pt;}
.y8_c00159{bottom:1000.386100pt;}
.y4_c00159{bottom:1001.494766pt;}
.y7_c00159{bottom:1018.911692pt;}
.y6_c00159{bottom:1037.121018pt;}
.y5_c00159{bottom:1055.327278pt;}
.h5_c00159{height:14.249600pt;}
.h9_c00159{height:21.614189pt;}
.hc_c00159{height:23.215188pt;}
.hb_c00159{height:25.216554pt;}
.h7_c00159{height:33.221817pt;}
.ha_c00159{height:40.026651pt;}
.h3_c00159{height:44.333316pt;}
.h2_c00159{height:52.207390pt;}
.h8_c00159{height:56.746644pt;}
.h4_c00159{height:56.936644pt;}
.h6_c00159{height:1110.960672pt;}
.h1_c00159{height:1122.559167pt;}
.h0_c00159{height:1122.666667pt;}
.w2_c00159{width:7.758400pt;}
.w3_c00159{width:785.062974pt;}
.w1_c00159{width:793.257550pt;}
.w0_c00159{width:793.333333pt;}
.x0_c00159{left:0.000000pt;}
.x9_c00159{left:1.370626pt;}
.xa_c00159{left:100.224934pt;}
.x2_c00159{left:112.197647pt;}
.xc_c00159{left:136.007986pt;}
.xb_c00159{left:158.966644pt;}
.xd_c00159{left:160.705465pt;}
.x3_c00159{left:183.442010pt;}
.x5_c00159{left:224.449590pt;}
.x4_c00159{left:240.115143pt;}
.x7_c00159{left:347.623838pt;}
.xe_c00159{left:368.914560pt;}
.x6_c00159{left:373.597619pt;}
.xf_c00159{left:414.195875pt;}
.x1_c00159{left:442.475240pt;}
.x8_c00159{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_0ba5993a55bd22cb3a404340.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00160;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00160{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls3_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:63.565475px;}
.ls1_c00160{letter-spacing:63.602075px;}
.ls2_c00160{letter-spacing:63.615875px;}
.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:-17.812493px;}
.ws0_c00160{word-spacing:-16.387643px;}
.ws2_c00160{word-spacing:0.000000px;}
._7_c00160{margin-left:-5.625424px;}
._4_c00160{margin-left:-3.972938px;}
._5_c00160{margin-left:-2.469651px;}
._0_c00160{margin-left:-1.310540px;}
._1_c00160{width:1.015395px;}
._a_c00160{width:2.912998px;}
._e_c00160{width:5.199027px;}
._b_c00160{width:6.456145px;}
._c_c00160{width:7.595707px;}
._d_c00160{width:9.184489px;}
._9_c00160{width:10.464329px;}
._11_c00160{width:11.676265px;}
._8_c00160{width:12.679391px;}
._3_c00160{width:14.165601px;}
._2_c00160{width:15.990064px;}
._f_c00160{width:23.096126px;}
._10_c00160{width:24.622377px;}
._6_c00160{width:58.978931px;}
.fc1_c00160{color:rgb(105,148,45);}
.fc0_c00160{color:rgb(16,15,13);}
.fs4_c00160{font-size:38.474625px;}
.fs5_c00160{font-size:44.887062px;}
.fs3_c00160{font-size:47.737061px;}
.fs2_c00160{font-size:59.136936px;}
.fs0_c00160{font-size:65.550574px;}
.fs1_c00160{font-size:71.249972px;}
.ya_c00160{bottom:-0.005247px;}
.y0_c00160{bottom:0.000000px;}
.y1_c00160{bottom:0.120938px;}
.yb_c00160{bottom:6.826644px;}
.yd_c00160{bottom:65.134327px;}
.y3_c00160{bottom:83.414442px;}
.y2_c00160{bottom:84.131629px;}
.y3c_c00160{bottom:97.906614px;}
.y3b_c00160{bottom:128.721102px;}
.y3a_c00160{bottom:159.356940px;}
.y39_c00160{bottom:190.172777px;}
.y38_c00160{bottom:209.234770px;}
.y37_c00160{bottom:237.199108px;}
.y36_c00160{bottom:267.836296px;}
.y35_c00160{bottom:298.472134px;}
.y34_c00160{bottom:329.288722px;}
.y33_c00160{bottom:348.348914px;}
.y32_c00160{bottom:364.735207px;}
.y31_c00160{bottom:391.099197px;}
.y30_c00160{bottom:421.736385px;}
.y2f_c00160{bottom:452.374322px;}
.y2e_c00160{bottom:483.010160px;}
.y2d_c00160{bottom:502.067652px;}
.y2c_c00160{bottom:518.278146px;}
.y2b_c00160{bottom:538.762138px;}
.y2a_c00160{bottom:575.992123px;}
.y29_c00160{bottom:603.600062px;}
.y28_c00160{bottom:634.417250px;}
.y27_c00160{bottom:665.053087px;}
.y26_c00160{bottom:683.399580px;}
.y25_c00160{bottom:694.798075px;}
.y24_c00160{bottom:708.158570px;}
.y23_c00160{bottom:728.107062px;}
.y22_c00160{bottom:740.932057px;}
.y21_c00160{bottom:758.923050px;}
.y20_c00160{bottom:771.746545px;}
.y1f_c00160{bottom:789.559037px;}
.y1e_c00160{bottom:802.384032px;}
.y1d_c00160{bottom:820.375025px;}
.y1c_c00160{bottom:833.200020px;}
.y1b_c00160{bottom:851.014013px;}
.y1a_c00160{bottom:863.836008px;}
.y19_c00160{bottom:881.827001px;}
.y18_c00160{bottom:894.651995px;}
.y17_c00160{bottom:912.464488px;}
.y16_c00160{bottom:925.290983px;}
.y15_c00160{bottom:943.278976px;}
.y14_c00160{bottom:956.105471px;}
.y13_c00160{bottom:973.917964px;}
.y12_c00160{bottom:986.741459px;}
.y11_c00160{bottom:1005.800451px;}
.y10_c00160{bottom:1032.164740px;}
.yf_c00160{bottom:1062.981928px;}
.ye_c00160{bottom:1082.037920px;}
.yc_c00160{bottom:1097.712914px;}
.y9_c00160{bottom:1117.189800px;}
.y8_c00160{bottom:1125.434362px;}
.y4_c00160{bottom:1126.681612px;}
.y7_c00160{bottom:1146.275654px;}
.y6_c00160{bottom:1166.761146px;}
.y5_c00160{bottom:1187.243188px;}
.h5_c00160{height:16.030800px;}
.ha_c00160{height:24.315963px;}
.hb_c00160{height:28.368623px;}
.h8_c00160{height:30.169822px;}
.h7_c00160{height:37.374544px;}
.h3_c00160{height:49.874980px;}
.h2_c00160{height:58.733314px;}
.h9_c00160{height:63.839974px;}
.hc_c00160{height:63.911224px;}
.h4_c00160{height:64.053724px;}
.h6_c00160{height:1249.830756px;}
.h1_c00160{height:1262.879062px;}
.h0_c00160{height:1263.000000px;}
.w2_c00160{width:8.728200px;}
.w3_c00160{width:883.195846px;}
.w1_c00160{width:892.414744px;}
.w0_c00160{width:892.500000px;}
.x0_c00160{left:0.000000px;}
.x9_c00160{left:1.541954px;}
.xa_c00160{left:112.753050px;}
.x2_c00160{left:126.222353px;}
.xc_c00160{left:153.008984px;}
.xb_c00160{left:178.837474px;}
.x3_c00160{left:206.372261px;}
.x5_c00160{left:252.505788px;}
.x4_c00160{left:270.129536px;}
.x7_c00160{left:391.076818px;}
.x6_c00160{left:420.297322px;}
.x1_c00160{left:497.784645px;}
.x8_c00160{left:762.309000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls3_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:56.502644pt;}
.ls1_c00160{letter-spacing:56.535177pt;}
.ls2_c00160{letter-spacing:56.547444pt;}
.ws1_c00160{word-spacing:-15.833327pt;}
.ws0_c00160{word-spacing:-14.566794pt;}
.ws2_c00160{word-spacing:0.000000pt;}
._7_c00160{margin-left:-5.000377pt;}
._4_c00160{margin-left:-3.531500pt;}
._5_c00160{margin-left:-2.195245pt;}
._0_c00160{margin-left:-1.164925pt;}
._1_c00160{width:0.902574pt;}
._a_c00160{width:2.589332pt;}
._e_c00160{width:4.621357pt;}
._b_c00160{width:5.738796pt;}
._c_c00160{width:6.751739pt;}
._d_c00160{width:8.163990pt;}
._9_c00160{width:9.301626pt;}
._11_c00160{width:10.378902pt;}
._8_c00160{width:11.270569pt;}
._3_c00160{width:12.591645pt;}
._2_c00160{width:14.213390pt;}
._f_c00160{width:20.529890pt;}
._10_c00160{width:21.886557pt;}
._6_c00160{width:52.425716pt;}
.fs4_c00160{font-size:34.199666pt;}
.fs5_c00160{font-size:39.899611pt;}
.fs3_c00160{font-size:42.432943pt;}
.fs2_c00160{font-size:52.566166pt;}
.fs0_c00160{font-size:58.267177pt;}
.fs1_c00160{font-size:63.333308pt;}
.ya_c00160{bottom:-0.004664pt;}
.y0_c00160{bottom:0.000000pt;}
.y1_c00160{bottom:0.107500pt;}
.yb_c00160{bottom:6.068128pt;}
.yd_c00160{bottom:57.897180pt;}
.y3_c00160{bottom:74.146170pt;}
.y2_c00160{bottom:74.783670pt;}
.y3c_c00160{bottom:87.028101pt;}
.y3b_c00160{bottom:114.418757pt;}
.y3a_c00160{bottom:141.650613pt;}
.y39_c00160{bottom:169.042469pt;}
.y38_c00160{bottom:185.986462pt;}
.y37_c00160{bottom:210.843652pt;}
.y36_c00160{bottom:238.076708pt;}
.y35_c00160{bottom:265.308563pt;}
.y34_c00160{bottom:292.701086pt;}
.y33_c00160{bottom:309.643479pt;}
.y32_c00160{bottom:324.209073pt;}
.y31_c00160{bottom:347.643731pt;}
.y30_c00160{bottom:374.876786pt;}
.y2f_c00160{bottom:402.110509pt;}
.y2e_c00160{bottom:429.342365pt;}
.y2d_c00160{bottom:446.282358pt;}
.y2c_c00160{bottom:460.691685pt;}
.y2b_c00160{bottom:478.899678pt;}
.y2a_c00160{bottom:511.992998pt;}
.y29_c00160{bottom:536.533388pt;}
.y28_c00160{bottom:563.926444pt;}
.y27_c00160{bottom:591.158300pt;}
.y26_c00160{bottom:607.466293pt;}
.y25_c00160{bottom:617.598289pt;}
.y24_c00160{bottom:629.474284pt;}
.y23_c00160{bottom:647.206277pt;}
.y22_c00160{bottom:658.606273pt;}
.y21_c00160{bottom:674.598266pt;}
.y20_c00160{bottom:685.996929pt;}
.y1f_c00160{bottom:701.830256pt;}
.y1e_c00160{bottom:713.230251pt;}
.y1d_c00160{bottom:729.222245pt;}
.y1c_c00160{bottom:740.622240pt;}
.y1b_c00160{bottom:756.456900pt;}
.y1a_c00160{bottom:767.854229pt;}
.y19_c00160{bottom:783.846223pt;}
.y18_c00160{bottom:795.246218pt;}
.y17_c00160{bottom:811.079545pt;}
.y16_c00160{bottom:822.480874pt;}
.y15_c00160{bottom:838.470201pt;}
.y14_c00160{bottom:849.871530pt;}
.y13_c00160{bottom:865.704857pt;}
.y12_c00160{bottom:877.103519pt;}
.y11_c00160{bottom:894.044845pt;}
.y10_c00160{bottom:917.479769pt;}
.yf_c00160{bottom:944.872825pt;}
.ye_c00160{bottom:961.811485pt;}
.yc_c00160{bottom:975.744813pt;}
.y9_c00160{bottom:993.057600pt;}
.y8_c00160{bottom:1000.386100pt;}
.y4_c00160{bottom:1001.494766pt;}
.y7_c00160{bottom:1018.911692pt;}
.y6_c00160{bottom:1037.121018pt;}
.y5_c00160{bottom:1055.327278pt;}
.h5_c00160{height:14.249600pt;}
.ha_c00160{height:21.614189pt;}
.hb_c00160{height:25.216554pt;}
.h8_c00160{height:26.817620pt;}
.h7_c00160{height:33.221817pt;}
.h3_c00160{height:44.333316pt;}
.h2_c00160{height:52.207390pt;}
.h9_c00160{height:56.746644pt;}
.hc_c00160{height:56.809977pt;}
.h4_c00160{height:56.936644pt;}
.h6_c00160{height:1110.960672pt;}
.h1_c00160{height:1122.559167pt;}
.h0_c00160{height:1122.666667pt;}
.w2_c00160{width:7.758400pt;}
.w3_c00160{width:785.062974pt;}
.w1_c00160{width:793.257550pt;}
.w0_c00160{width:793.333333pt;}
.x0_c00160{left:0.000000pt;}
.x9_c00160{left:1.370626pt;}
.xa_c00160{left:100.224934pt;}
.x2_c00160{left:112.197647pt;}
.xc_c00160{left:136.007986pt;}
.xb_c00160{left:158.966644pt;}
.x3_c00160{left:183.442010pt;}
.x5_c00160{left:224.449590pt;}
.x4_c00160{left:240.115143pt;}
.x7_c00160{left:347.623838pt;}
.x6_c00160{left:373.597619pt;}
.x1_c00160{left:442.475240pt;}
.x8_c00160{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df81740f1a6b1bae1e2aa6e2.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:0.916000;font-style:normal;font-weight:normal;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_d290b9f325e9de61a42b8981.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.112000;font-style:normal;font-weight:normal;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_cb9e55b4fafb4d9d22d64652.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00161;src:url('chunks/assets/font_367337b5989f6ad89a41f62b.woff2')format("woff");}.ff5_c00161{font-family:ff5_c00161;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00161{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00161{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls5_c00161{letter-spacing:0.000000px;}
.ls3_c00161{letter-spacing:63.573875px;}
.ls0_c00161{letter-spacing:63.599075px;}
.ls2_c00161{letter-spacing:63.602075px;}
.ls1_c00161{letter-spacing:63.605075px;}
.ls4_c00161{letter-spacing:63.607475px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00161{word-spacing:-17.812493px;}
.ws0_c00161{word-spacing:-16.387643px;}
.ws2_c00161{word-spacing:0.000000px;}
._8_c00161{margin-left:-2.540991px;}
._0_c00161{margin-left:-1.310540px;}
._1_c00161{width:1.015395px;}
._2_c00161{width:2.105634px;}
._3_c00161{width:4.114704px;}
._4_c00161{width:5.172301px;}
._b_c00161{width:6.470085px;}
._c_c00161{width:7.539355px;}
._5_c00161{width:9.098889px;}
._9_c00161{width:10.138976px;}
._6_c00161{width:11.292296px;}
._7_c00161{width:13.146925px;}
._a_c00161{width:15.109853px;}
._e_c00161{width:20.094314px;}
._d_c00161{width:21.223629px;}
.fc1_c00161{color:rgb(105,148,45);}
.fc0_c00161{color:rgb(16,15,13);}
.fs3_c00161{font-size:47.737061px;}
.fs2_c00161{font-size:59.136936px;}
.fs0_c00161{font-size:65.550574px;}
.fs1_c00161{font-size:71.249972px;}
.ya_c00161{bottom:-0.005247px;}
.y0_c00161{bottom:0.000000px;}
.y1_c00161{bottom:0.120938px;}
.yb_c00161{bottom:6.826644px;}
.yd_c00161{bottom:65.134327px;}
.y3_c00161{bottom:83.414442px;}
.y2_c00161{bottom:84.131629px;}
.y2e_c00161{bottom:149.740443px;}
.y2d_c00161{bottom:180.379131px;}
.y2c_c00161{bottom:211.196319px;}
.y2b_c00161{bottom:241.832907px;}
.y2a_c00161{bottom:272.648744px;}
.y29_c00161{bottom:303.283232px;}
.y28_c00161{bottom:334.097720px;}
.y27_c00161{bottom:353.158212px;}
.y26_c00161{bottom:379.696351px;}
.y25_c00161{bottom:410.333539px;}
.y24_c00161{bottom:441.148027px;}
.y23_c00161{bottom:471.785965px;}
.y22_c00161{bottom:502.601802px;}
.y21_c00161{bottom:533.237640px;}
.y20_c00161{bottom:552.478132px;}
.y1f_c00161{bottom:580.085621px;}
.y1e_c00161{bottom:610.900109px;}
.y1d_c00161{bottom:629.960601px;}
.y1c_c00161{bottom:657.927490px;}
.y1b_c00161{bottom:688.566928px;}
.y1a_c00161{bottom:719.379916px;}
.y19_c00161{bottom:750.015753px;}
.y18_c00161{bottom:780.831591px;}
.y17_c00161{bottom:811.469529px;}
.y16_c00161{bottom:842.285366px;}
.y15_c00161{bottom:872.922554px;}
.y14_c00161{bottom:903.735542px;}
.y13_c00161{bottom:934.372130px;}
.y12_c00161{bottom:965.189317px;}
.y11_c00161{bottom:995.828755px;}
.y10_c00161{bottom:1026.643243px;}
.yf_c00161{bottom:1057.280430px;}
.ye_c00161{bottom:1083.282920px;}
.yc_c00161{bottom:1097.712914px;}
.y9_c00161{bottom:1117.189800px;}
.y8_c00161{bottom:1125.434362px;}
.y4_c00161{bottom:1126.681612px;}
.y7_c00161{bottom:1146.275654px;}
.y6_c00161{bottom:1166.761146px;}
.y5_c00161{bottom:1187.243188px;}
.h5_c00161{height:16.030800px;}
.h7_c00161{height:37.374544px;}
.h8_c00161{height:42.772407px;}
.h3_c00161{height:49.874980px;}
.h2_c00161{height:58.733314px;}
.h9_c00161{height:63.839974px;}
.h4_c00161{height:64.053724px;}
.h6_c00161{height:1249.830756px;}
.h1_c00161{height:1262.879062px;}
.h0_c00161{height:1263.000000px;}
.w2_c00161{width:8.728200px;}
.w3_c00161{width:883.195846px;}
.w1_c00161{width:892.414744px;}
.w0_c00161{width:892.500000px;}
.x0_c00161{left:0.000000px;}
.x9_c00161{left:1.541954px;}
.xa_c00161{left:112.753050px;}
.x2_c00161{left:126.222353px;}
.xb_c00161{left:152.995735px;}
.xc_c00161{left:178.837474px;}
.x3_c00161{left:206.372261px;}
.x5_c00161{left:252.505788px;}
.x4_c00161{left:270.129536px;}
.x7_c00161{left:391.076818px;}
.x6_c00161{left:420.297322px;}
.x1_c00161{left:497.784645px;}
.x8_c00161{left:762.309000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls5_c00161{letter-spacing:0.000000pt;}
.ls3_c00161{letter-spacing:56.510111pt;}
.ls0_c00161{letter-spacing:56.532511pt;}
.ls2_c00161{letter-spacing:56.535177pt;}
.ls1_c00161{letter-spacing:56.537844pt;}
.ls4_c00161{letter-spacing:56.539977pt;}
.ws1_c00161{word-spacing:-15.833327pt;}
.ws0_c00161{word-spacing:-14.566794pt;}
.ws2_c00161{word-spacing:0.000000pt;}
._8_c00161{margin-left:-2.258659pt;}
._0_c00161{margin-left:-1.164925pt;}
._1_c00161{width:0.902574pt;}
._2_c00161{width:1.871675pt;}
._3_c00161{width:3.657515pt;}
._4_c00161{width:4.597601pt;}
._b_c00161{width:5.751187pt;}
._c_c00161{width:6.701649pt;}
._5_c00161{width:8.087901pt;}
._9_c00161{width:9.012423pt;}
._6_c00161{width:10.037597pt;}
._7_c00161{width:11.686155pt;}
._a_c00161{width:13.430981pt;}
._e_c00161{width:17.861613pt;}
._d_c00161{width:18.865448pt;}
.fs3_c00161{font-size:42.432943pt;}
.fs2_c00161{font-size:52.566166pt;}
.fs0_c00161{font-size:58.267177pt;}
.fs1_c00161{font-size:63.333308pt;}
.ya_c00161{bottom:-0.004664pt;}
.y0_c00161{bottom:0.000000pt;}
.y1_c00161{bottom:0.107500pt;}
.yb_c00161{bottom:6.068128pt;}
.yd_c00161{bottom:57.897180pt;}
.y3_c00161{bottom:74.146170pt;}
.y2_c00161{bottom:74.783670pt;}
.y2e_c00161{bottom:133.102616pt;}
.y2d_c00161{bottom:160.337005pt;}
.y2c_c00161{bottom:187.730061pt;}
.y2b_c00161{bottom:214.962584pt;}
.y2a_c00161{bottom:242.354439pt;}
.y29_c00161{bottom:269.585095pt;}
.y28_c00161{bottom:296.975751pt;}
.y27_c00161{bottom:313.918411pt;}
.y26_c00161{bottom:337.507868pt;}
.y25_c00161{bottom:364.740924pt;}
.y24_c00161{bottom:392.131579pt;}
.y23_c00161{bottom:419.365302pt;}
.y22_c00161{bottom:446.757158pt;}
.y21_c00161{bottom:473.989013pt;}
.y20_c00161{bottom:491.091673pt;}
.y1f_c00161{bottom:515.631663pt;}
.y1e_c00161{bottom:543.022319pt;}
.y1d_c00161{bottom:559.964979pt;}
.y1c_c00161{bottom:584.824436pt;}
.y1b_c00161{bottom:612.059491pt;}
.y1a_c00161{bottom:639.448814pt;}
.y19_c00161{bottom:666.680670pt;}
.y18_c00161{bottom:694.072525pt;}
.y17_c00161{bottom:721.306248pt;}
.y16_c00161{bottom:748.698103pt;}
.y15_c00161{bottom:775.931159pt;}
.y14_c00161{bottom:803.320482pt;}
.y13_c00161{bottom:830.553004pt;}
.y12_c00161{bottom:857.946060pt;}
.y11_c00161{bottom:885.181116pt;}
.y10_c00161{bottom:912.571771pt;}
.yf_c00161{bottom:939.804827pt;}
.ye_c00161{bottom:962.918151pt;}
.yc_c00161{bottom:975.744813pt;}
.y9_c00161{bottom:993.057600pt;}
.y8_c00161{bottom:1000.386100pt;}
.y4_c00161{bottom:1001.494766pt;}
.y7_c00161{bottom:1018.911692pt;}
.y6_c00161{bottom:1037.121018pt;}
.y5_c00161{bottom:1055.327278pt;}
.h5_c00161{height:14.249600pt;}
.h7_c00161{height:33.221817pt;}
.h8_c00161{height:38.019917pt;}
.h3_c00161{height:44.333316pt;}
.h2_c00161{height:52.207390pt;}
.h9_c00161{height:56.746644pt;}
.h4_c00161{height:56.936644pt;}
.h6_c00161{height:1110.960672pt;}
.h1_c00161{height:1122.559167pt;}
.h0_c00161{height:1122.666667pt;}
.w2_c00161{width:7.758400pt;}
.w3_c00161{width:785.062974pt;}
.w1_c00161{width:793.257550pt;}
.w0_c00161{width:793.333333pt;}
.x0_c00161{left:0.000000pt;}
.x9_c00161{left:1.370626pt;}
.xa_c00161{left:100.224934pt;}
.x2_c00161{left:112.197647pt;}
.xb_c00161{left:135.996209pt;}
.xc_c00161{left:158.966644pt;}
.x3_c00161{left:183.442010pt;}
.x5_c00161{left:224.449590pt;}
.x4_c00161{left:240.115143pt;}
.x7_c00161{left:347.623838pt;}
.x6_c00161{left:373.597619pt;}
.x1_c00161{left:442.475240pt;}
.x8_c00161{left:677.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls0_c00162{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00162{margin-left:-1.114395px;}
._0_c00162{width:1.197984px;}
.fc0_c00162{color:rgb(35,31,32);}
.fs0_c00162{font-size:106.873757px;}
.y0_c00162{bottom:0.000000px;}
.y1_c00162{bottom:0.120938px;}
.y2_c00162{bottom:382.485409px;}
.h2_c00162{height:95.865760px;}
.h1_c00162{height:1262.879062px;}
.h0_c00162{height:1263.000000px;}
.w1_c00162{width:892.414744px;}
.w0_c00162{width:892.500000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:108.404900px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws0_c00162{word-spacing:0.000000pt;}
._1_c00162{margin-left:-0.990573pt;}
._0_c00162{width:1.064875pt;}
.fs0_c00162{font-size:94.998895pt;}
.y0_c00162{bottom:0.000000pt;}
.y1_c00162{bottom:0.107500pt;}
.y2_c00162{bottom:339.987031pt;}
.h2_c00162{height:85.214009pt;}
.h1_c00162{height:1122.559167pt;}
.h0_c00162{height:1122.666667pt;}
.w1_c00162{width:793.257550pt;}
.w0_c00162{width:793.333333pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.112000;font-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_c00163{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls0_c00163{letter-spacing:0.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00163{word-spacing:0.000000px;}
._3_c00163{margin-left:-2.671776px;}
._0_c00163{margin-left:-1.339562px;}
._1_c00163{width:1.056287px;}
._7_c00163{width:2.095472px;}
._c_c00163{width:3.277212px;}
._2_c00163{width:4.306332px;}
._8_c00163{width:7.176825px;}
._5_c00163{width:9.147275px;}
._4_c00163{width:10.238667px;}
._6_c00163{width:12.243212px;}
._b_c00163{width:13.300602px;}
._d_c00163{width:15.810510px;}
._a_c00163{width:19.907419px;}
._9_c00163{width:21.166939px;}
.fc1_c00163{color:rgb(105,148,45);}
.fc0_c00163{color:rgb(35,31,32);}
.fs3_c00163{font-size:47.737061px;}
.fs2_c00163{font-size:59.136936px;}
.fs0_c00163{font-size:65.550574px;}
.fs1_c00163{font-size:71.249972px;}
.y0_c00163{bottom:0.000000px;}
.y1_c00163{bottom:0.120938px;}
.y8_c00163{bottom:6.826644px;}
.ya_c00163{bottom:65.133277px;}
.y3_c00163{bottom:83.414442px;}
.y2_c00163{bottom:84.131629px;}
.y2a_c00163{bottom:185.542579px;}
.y29_c00163{bottom:216.180517px;}
.y28_c00163{bottom:246.999204px;}
.y27_c00163{bottom:277.635792px;}
.y26_c00163{bottom:308.450280px;}
.y25_c00163{bottom:339.087468px;}
.y24_c00163{bottom:369.900455px;}
.y23_c00163{bottom:400.537043px;}
.y22_c00163{bottom:431.355731px;}
.y21_c00163{bottom:461.993668px;}
.y20_c00163{bottom:492.808156px;}
.y1f_c00163{bottom:512.045648px;}
.y1e_c00163{bottom:528.782642px;}
.y1d_c00163{bottom:558.886280px;}
.y1c_c00163{bottom:589.705717px;}
.y1b_c00163{bottom:620.340205px;}
.y1a_c00163{bottom:651.157393px;}
.y19_c00163{bottom:681.793981px;}
.y18_c00163{bottom:712.611168px;}
.y17_c00163{bottom:743.245656px;}
.y16_c00163{bottom:774.060144px;}
.y15_c00163{bottom:804.699581px;}
.y14_c00163{bottom:835.514069px;}
.y13_c00163{bottom:866.149907px;}
.y12_c00163{bottom:896.966494px;}
.y11_c00163{bottom:927.606532px;}
.y10_c00163{bottom:958.419520px;}
.yf_c00163{bottom:989.057458px;}
.ye_c00163{bottom:1008.116450px;}
.yd_c00163{bottom:1022.544944px;}
.yc_c00163{bottom:1040.537437px;}
.yb_c00163{bottom:1077.586372px;}
.y9_c00163{bottom:1094.153416px;}
.y7_c00163{bottom:1125.258112px;}
.y6_c00163{bottom:1146.098804px;}
.y5_c00163{bottom:1166.584296px;}
.y4_c00163{bottom:1187.067088px;}
.h9_c00163{height:30.169822px;}
.h7_c00163{height:37.374544px;}
.h6_c00163{height:41.427963px;}
.hb_c00163{height:45.029982px;}
.h2_c00163{height:58.667764px;}
.h3_c00163{height:63.768724px;}
.ha_c00163{height:63.839974px;}
.h8_c00163{height:63.911224px;}
.h4_c00163{height:64.053724px;}
.h5_c00163{height:1249.830756px;}
.h1_c00163{height:1262.879062px;}
.h0_c00163{height:1263.000000px;}
.w2_c00163{width:883.195846px;}
.w1_c00163{width:892.414744px;}
.w0_c00163{width:892.500000px;}
.x0_c00163{left:0.000000px;}
.x7_c00163{left:1.541954px;}
.x8_c00163{left:112.753050px;}
.x2_c00163{left:126.216356px;}
.xa_c00163{left:166.192479px;}
.x9_c00163{left:178.837474px;}
.x4_c00163{left:252.504495px;}
.x3_c00163{left:270.140236px;}
.x6_c00163{left:412.280403px;}
.x5_c00163{left:420.296029px;}
.x1_c00163{left:497.784645px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws0_c00163{word-spacing:0.000000pt;}
._3_c00163{margin-left:-2.374912pt;}
._0_c00163{margin-left:-1.190722pt;}
._1_c00163{width:0.938922pt;}
._7_c00163{width:1.862642pt;}
._c_c00163{width:2.913077pt;}
._2_c00163{width:3.827851pt;}
._8_c00163{width:6.379400pt;}
._5_c00163{width:8.130911pt;}
._4_c00163{width:9.101037pt;}
._6_c00163{width:10.882855pt;}
._b_c00163{width:11.822757pt;}
._d_c00163{width:14.053786pt;}
._a_c00163{width:17.695483pt;}
._9_c00163{width:18.815056pt;}
.fs3_c00163{font-size:42.432943pt;}
.fs2_c00163{font-size:52.566166pt;}
.fs0_c00163{font-size:58.267177pt;}
.fs1_c00163{font-size:63.333308pt;}
.y0_c00163{bottom:0.000000pt;}
.y1_c00163{bottom:0.107500pt;}
.y8_c00163{bottom:6.068128pt;}
.ya_c00163{bottom:57.896246pt;}
.y3_c00163{bottom:74.146170pt;}
.y2_c00163{bottom:74.783670pt;}
.y2a_c00163{bottom:164.926737pt;}
.y29_c00163{bottom:192.160459pt;}
.y28_c00163{bottom:219.554848pt;}
.y27_c00163{bottom:246.787371pt;}
.y26_c00163{bottom:274.178027pt;}
.y25_c00163{bottom:301.411082pt;}
.y24_c00163{bottom:328.800405pt;}
.y23_c00163{bottom:356.032927pt;}
.y22_c00163{bottom:383.427316pt;}
.y21_c00163{bottom:410.661039pt;}
.y20_c00163{bottom:438.051694pt;}
.y1f_c00163{bottom:455.151688pt;}
.y1e_c00163{bottom:470.029015pt;}
.y1d_c00163{bottom:496.787804pt;}
.y1c_c00163{bottom:524.182860pt;}
.y1b_c00163{bottom:551.413516pt;}
.y1a_c00163{bottom:578.806571pt;}
.y19_c00163{bottom:606.039094pt;}
.y18_c00163{bottom:633.432150pt;}
.y17_c00163{bottom:660.662805pt;}
.y16_c00163{bottom:688.053461pt;}
.y15_c00163{bottom:715.288517pt;}
.y14_c00163{bottom:742.679173pt;}
.y13_c00163{bottom:769.911028pt;}
.y12_c00163{bottom:797.303551pt;}
.y11_c00163{bottom:824.539140pt;}
.y10_c00163{bottom:851.928462pt;}
.yf_c00163{bottom:879.162185pt;}
.ye_c00163{bottom:896.103511pt;}
.yd_c00163{bottom:908.928839pt;}
.yc_c00163{bottom:924.922166pt;}
.yb_c00163{bottom:957.854553pt;}
.y9_c00163{bottom:972.580814pt;}
.y7_c00163{bottom:1000.229433pt;}
.y6_c00163{bottom:1018.754492pt;}
.y5_c00163{bottom:1036.963819pt;}
.y4_c00163{bottom:1055.170745pt;}
.h9_c00163{height:26.817620pt;}
.h7_c00163{height:33.221817pt;}
.h6_c00163{height:36.824856pt;}
.hb_c00163{height:40.026651pt;}
.h2_c00163{height:52.149123pt;}
.h3_c00163{height:56.683311pt;}
.ha_c00163{height:56.746644pt;}
.h8_c00163{height:56.809977pt;}
.h4_c00163{height:56.936644pt;}
.h5_c00163{height:1110.960672pt;}
.h1_c00163{height:1122.559167pt;}
.h0_c00163{height:1122.666667pt;}
.w2_c00163{width:785.062974pt;}
.w1_c00163{width:793.257550pt;}
.w0_c00163{width:793.333333pt;}
.x0_c00163{left:0.000000pt;}
.x7_c00163{left:1.370626pt;}
.x8_c00163{left:100.224934pt;}
.x2_c00163{left:112.192317pt;}
.xa_c00163{left:147.726648pt;}
.x9_c00163{left:158.966644pt;}
.x4_c00163{left:224.448440pt;}
.x3_c00163{left:240.124654pt;}
.x6_c00163{left:366.471469pt;}
.x5_c00163{left:373.596470pt;}
.x1_c00163{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:1.113000;font-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_c00164{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls0_c00164{letter-spacing:0.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:-17.812493px;}
.ws1_c00164{word-spacing:0.000000px;}
._0_c00164{margin-left:-1.339562px;}
._1_c00164{width:1.056287px;}
._4_c00164{width:2.639180px;}
._5_c00164{width:3.647368px;}
._d_c00164{width:4.810478px;}
._c_c00164{width:6.033488px;}
._f_c00164{width:7.887418px;}
._7_c00164{width:9.028153px;}
._8_c00164{width:10.197483px;}
._a_c00164{width:11.261896px;}
._b_c00164{width:12.558104px;}
._6_c00164{width:13.564682px;}
._9_c00164{width:18.889471px;}
._e_c00164{width:20.058742px;}
._3_c00164{width:21.234579px;}
._2_c00164{width:22.416843px;}
.fc1_c00164{color:rgb(105,148,45);}
.fc0_c00164{color:rgb(35,31,32);}
.fs2_c00164{font-size:59.136936px;}
.fs0_c00164{font-size:65.550574px;}
.fs1_c00164{font-size:71.249972px;}
.y0_c00164{bottom:0.000000px;}
.y1_c00164{bottom:0.120938px;}
.y2b_c00164{bottom:3.558595px;}
.y25_c00164{bottom:3.560313px;}
.y27_c00164{bottom:3.562420px;}
.y2d_c00164{bottom:3.737762px;}
.y29_c00164{bottom:3.739007px;}
.y23_c00164{bottom:3.740005px;}
.y8_c00164{bottom:6.826644px;}
.ya_c00164{bottom:65.133277px;}
.y3_c00164{bottom:83.414442px;}
.y2_c00164{bottom:84.131629px;}
.y2c_c00164{bottom:140.360580px;}
.y2a_c00164{bottom:159.063840px;}
.y28_c00164{bottom:177.586920px;}
.y26_c00164{bottom:196.290000px;}
.y24_c00164{bottom:214.995600px;}
.y22_c00164{bottom:233.519400px;}
.y21_c00164{bottom:292.598586px;}
.y20_c00164{bottom:323.233074px;}
.y1f_c00164{bottom:354.050262px;}
.y1e_c00164{bottom:384.685349px;}
.y1d_c00164{bottom:415.502537px;}
.y1c_c00164{bottom:446.140475px;}
.y1b_c00164{bottom:491.738807px;}
.y1a_c00164{bottom:522.375994px;}
.y19_c00164{bottom:552.835432px;}
.y18_c00164{bottom:583.828420px;}
.y17_c00164{bottom:614.641407px;}
.y16_c00164{bottom:645.280095px;}
.y15_c00164{bottom:690.877677px;}
.y14_c00164{bottom:721.693515px;}
.y13_c00164{bottom:767.116796px;}
.y12_c00164{bottom:797.931284px;}
.y11_c00164{bottom:828.568472px;}
.y10_c00164{bottom:859.385060px;}
.yf_c00164{bottom:889.663747px;}
.ye_c00164{bottom:935.619229px;}
.yd_c00164{bottom:966.434317px;}
.yc_c00164{bottom:997.070154px;}
.yb_c00164{bottom:1027.890942px;}
.y9_c00164{bottom:1094.153416px;}
.y7_c00164{bottom:1125.258112px;}
.y6_c00164{bottom:1146.098804px;}
.y5_c00164{bottom:1166.584296px;}
.y4_c00164{bottom:1187.067088px;}
.hb_c00164{height:17.809200px;}
.he_c00164{height:17.812260px;}
.hc_c00164{height:17.814600px;}
.ha_c00164{height:17.989200px;}
.hf_c00164{height:17.990820px;}
.hd_c00164{height:17.992080px;}
.h7_c00164{height:37.374544px;}
.h6_c00164{height:41.427963px;}
.h2_c00164{height:58.667764px;}
.h3_c00164{height:63.768724px;}
.h8_c00164{height:63.839974px;}
.h9_c00164{height:63.911224px;}
.h4_c00164{height:64.053724px;}
.h5_c00164{height:1249.830756px;}
.h1_c00164{height:1262.879062px;}
.h0_c00164{height:1263.000000px;}
.w8_c00164{width:8.905140px;}
.we_c00164{width:8.906400px;}
.wa_c00164{width:17.816400px;}
.wd_c00164{width:26.719200px;}
.w10_c00164{width:30.457800px;}
.w13_c00164{width:35.625600px;}
.wf_c00164{width:35.627400px;}
.w9_c00164{width:44.533800px;}
.w15_c00164{width:61.455600px;}
.w3_c00164{width:68.219460px;}
.w4_c00164{width:86.034600px;}
.w7_c00164{width:87.096600px;}
.w5_c00164{width:97.963200px;}
.w6_c00164{width:125.757000px;}
.wc_c00164{width:138.938400px;}
.w11_c00164{width:172.958400px;}
.w14_c00164{width:188.989200px;}
.wb_c00164{width:203.416200px;}
.w12_c00164{width:215.173800px;}
.w2_c00164{width:883.195846px;}
.w1_c00164{width:892.414744px;}
.w0_c00164{width:892.500000px;}
.x0_c00164{left:0.000000px;}
.x7_c00164{left:1.541954px;}
.x8_c00164{left:112.753050px;}
.xa_c00164{left:114.295140px;}
.x2_c00164{left:126.216356px;}
.xe_c00164{left:143.865000px;}
.x9_c00164{left:166.192479px;}
.xb_c00164{left:204.247800px;}
.xf_c00164{left:224.910000px;}
.x16_c00164{left:229.365000px;}
.x13_c00164{left:233.816400px;}
.x4_c00164{left:252.504495px;}
.x3_c00164{left:270.140236px;}
.xc_c00164{left:323.235000px;}
.x10_c00164{left:363.310200px;}
.x6_c00164{left:412.280403px;}
.x5_c00164{left:420.296029px;}
.x15_c00164{left:453.976200px;}
.x11_c00164{left:459.856800px;}
.x17_c00164{left:467.159400px;}
.x14_c00164{left:490.314600px;}
.x1_c00164{left:497.784645px;}
.x12_c00164{left:691.948800px;}
.xd_c00164{left:717.782400px;}
.x18_c00164{left:730.778400px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws0_c00164{word-spacing:-15.833327pt;}
.ws1_c00164{word-spacing:0.000000pt;}
._0_c00164{margin-left:-1.190722pt;}
._1_c00164{width:0.938922pt;}
._4_c00164{width:2.345938pt;}
._5_c00164{width:3.242105pt;}
._d_c00164{width:4.275981pt;}
._c_c00164{width:5.363100pt;}
._f_c00164{width:7.011038pt;}
._7_c00164{width:8.025025pt;}
._8_c00164{width:9.064430pt;}
._a_c00164{width:10.010574pt;}
._b_c00164{width:11.162759pt;}
._6_c00164{width:12.057495pt;}
._9_c00164{width:16.790641pt;}
._e_c00164{width:17.829993pt;}
._3_c00164{width:18.875181pt;}
._2_c00164{width:19.926082pt;}
.fs2_c00164{font-size:52.566166pt;}
.fs0_c00164{font-size:58.267177pt;}
.fs1_c00164{font-size:63.333308pt;}
.y0_c00164{bottom:0.000000pt;}
.y1_c00164{bottom:0.107500pt;}
.y2b_c00164{bottom:3.163196pt;}
.y25_c00164{bottom:3.164722pt;}
.y27_c00164{bottom:3.166596pt;}
.y2d_c00164{bottom:3.322455pt;}
.y29_c00164{bottom:3.323562pt;}
.y23_c00164{bottom:3.324449pt;}
.y8_c00164{bottom:6.068128pt;}
.ya_c00164{bottom:57.896246pt;}
.y3_c00164{bottom:74.146170pt;}
.y2_c00164{bottom:74.783670pt;}
.y2c_c00164{bottom:124.764960pt;}
.y2a_c00164{bottom:141.390080pt;}
.y28_c00164{bottom:157.855040pt;}
.y26_c00164{bottom:174.480000pt;}
.y24_c00164{bottom:191.107200pt;}
.y22_c00164{bottom:207.572800pt;}
.y21_c00164{bottom:260.087632pt;}
.y20_c00164{bottom:287.318288pt;}
.y1f_c00164{bottom:314.711344pt;}
.y1e_c00164{bottom:341.942533pt;}
.y1d_c00164{bottom:369.335589pt;}
.y1c_c00164{bottom:396.569311pt;}
.y1b_c00164{bottom:437.101161pt;}
.y1a_c00164{bottom:464.334217pt;}
.y19_c00164{bottom:491.409273pt;}
.y18_c00164{bottom:518.958595pt;}
.y17_c00164{bottom:546.347918pt;}
.y16_c00164{bottom:573.582307pt;}
.y15_c00164{bottom:614.113491pt;}
.y14_c00164{bottom:641.505346pt;}
.y13_c00164{bottom:681.881597pt;}
.y12_c00164{bottom:709.272253pt;}
.y11_c00164{bottom:736.505308pt;}
.y10_c00164{bottom:763.897831pt;}
.yf_c00164{bottom:790.812220pt;}
.ye_c00164{bottom:831.661537pt;}
.yd_c00164{bottom:859.052726pt;}
.yc_c00164{bottom:886.284582pt;}
.yb_c00164{bottom:913.680837pt;}
.y9_c00164{bottom:972.580814pt;}
.y7_c00164{bottom:1000.229433pt;}
.y6_c00164{bottom:1018.754492pt;}
.y5_c00164{bottom:1036.963819pt;}
.y4_c00164{bottom:1055.170745pt;}
.hb_c00164{height:15.830400pt;}
.he_c00164{height:15.833120pt;}
.hc_c00164{height:15.835200pt;}
.ha_c00164{height:15.990400pt;}
.hf_c00164{height:15.991840pt;}
.hd_c00164{height:15.992960pt;}
.h7_c00164{height:33.221817pt;}
.h6_c00164{height:36.824856pt;}
.h2_c00164{height:52.149123pt;}
.h3_c00164{height:56.683311pt;}
.h8_c00164{height:56.746644pt;}
.h9_c00164{height:56.809977pt;}
.h4_c00164{height:56.936644pt;}
.h5_c00164{height:1110.960672pt;}
.h1_c00164{height:1122.559167pt;}
.h0_c00164{height:1122.666667pt;}
.w8_c00164{width:7.915680pt;}
.we_c00164{width:7.916800pt;}
.wa_c00164{width:15.836800pt;}
.wd_c00164{width:23.750400pt;}
.w10_c00164{width:27.073600pt;}
.w13_c00164{width:31.667200pt;}
.wf_c00164{width:31.668800pt;}
.w9_c00164{width:39.585600pt;}
.w15_c00164{width:54.627200pt;}
.w3_c00164{width:60.639520pt;}
.w4_c00164{width:76.475200pt;}
.w7_c00164{width:77.419200pt;}
.w5_c00164{width:87.078400pt;}
.w6_c00164{width:111.784000pt;}
.wc_c00164{width:123.500800pt;}
.w11_c00164{width:153.740800pt;}
.w14_c00164{width:167.990400pt;}
.wb_c00164{width:180.814400pt;}
.w12_c00164{width:191.265600pt;}
.w2_c00164{width:785.062974pt;}
.w1_c00164{width:793.257550pt;}
.w0_c00164{width:793.333333pt;}
.x0_c00164{left:0.000000pt;}
.x7_c00164{left:1.370626pt;}
.x8_c00164{left:100.224934pt;}
.xa_c00164{left:101.595680pt;}
.x2_c00164{left:112.192317pt;}
.xe_c00164{left:127.880000pt;}
.x9_c00164{left:147.726648pt;}
.xb_c00164{left:181.553600pt;}
.xf_c00164{left:199.920000pt;}
.x16_c00164{left:203.880000pt;}
.x13_c00164{left:207.836800pt;}
.x4_c00164{left:224.448440pt;}
.x3_c00164{left:240.124654pt;}
.xc_c00164{left:287.320000pt;}
.x10_c00164{left:322.942400pt;}
.x6_c00164{left:366.471469pt;}
.x5_c00164{left:373.596470pt;}
.x15_c00164{left:403.534400pt;}
.x11_c00164{left:408.761600pt;}
.x17_c00164{left:415.252800pt;}
.x14_c00164{left:435.835200pt;}
.x1_c00164{left:442.475240pt;}
.x12_c00164{left:615.065600pt;}
.xd_c00164{left:638.028800pt;}
.x18_c00164{left:649.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls0_c00165{letter-spacing:0.000000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00165{word-spacing:0.000000px;}
._0_c00165{width:1.050373px;}
.fc0_c00165{color:rgb(35,31,32);}
.fs0_c00165{font-size:106.873757px;}
.y0_c00165{bottom:0.000000px;}
.y1_c00165{bottom:0.120938px;}
.y2_c00165{bottom:433.606889px;}
.h2_c00165{height:95.865760px;}
.h1_c00165{height:1262.879062px;}
.h0_c00165{height:1263.000000px;}
.w1_c00165{width:892.414744px;}
.w0_c00165{width:892.500000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:108.404900px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws0_c00165{word-spacing:0.000000pt;}
._0_c00165{width:0.933665pt;}
.fs0_c00165{font-size:94.998895pt;}
.y0_c00165{bottom:0.000000pt;}
.y1_c00165{bottom:0.107500pt;}
.y2_c00165{bottom:385.428346pt;}
.h2_c00165{height:85.214009pt;}
.h1_c00165{height:1122.559167pt;}
.h0_c00165{height:1122.666667pt;}
.w1_c00165{width:793.257550pt;}
.w0_c00165{width:793.333333pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.113000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00166{word-spacing:0.000000px;}
._5_c00166{margin-left:-17.015092px;}
._7_c00166{margin-left:-15.049465px;}
._6_c00166{margin-left:-13.081808px;}
._4_c00166{margin-left:-11.969092px;}
._8_c00166{margin-left:-10.685185px;}
._a_c00166{margin-left:-8.111031px;}
._9_c00166{margin-left:-7.006878px;}
._3_c00166{margin-left:-3.358298px;}
._0_c00166{margin-left:-1.488896px;}
._1_c00166{width:1.017256px;}
._2_c00166{width:696.529746px;}
.fc1_c00166{color:rgb(105,148,45);}
.fc0_c00166{color:rgb(35,31,32);}
.fs0_c00166{font-size:65.550574px;}
.fs1_c00166{font-size:71.249972px;}
.fs2_c00166{font-size:83.362767px;}
.y0_c00166{bottom:0.000000px;}
.y1_c00166{bottom:0.120938px;}
.y8_c00166{bottom:6.826644px;}
.y3_c00166{bottom:83.237254px;}
.y2_c00166{bottom:83.951629px;}
.y15_c00166{bottom:564.408678px;}
.y14_c00166{bottom:604.306862px;}
.y13_c00166{bottom:644.207146px;}
.y12_c00166{bottom:684.106680px;}
.y11_c00166{bottom:724.009064px;}
.y10_c00166{bottom:753.222152px;}
.yf_c00166{bottom:781.361841px;}
.ye_c00166{bottom:809.506479px;}
.yd_c00166{bottom:837.651868px;}
.yc_c00166{bottom:865.796507px;}
.yb_c00166{bottom:904.626091px;}
.ya_c00166{bottom:944.526975px;}
.y9_c00166{bottom:1007.225450px;}
.y7_c00166{bottom:1123.478963px;}
.y6_c00166{bottom:1144.496805px;}
.y5_c00166{bottom:1165.515246px;}
.y4_c00166{bottom:1186.533088px;}
.h2_c00166{height:58.667764px;}
.h7_c00166{height:58.929966px;}
.h3_c00166{height:63.768724px;}
.h4_c00166{height:64.053724px;}
.h6_c00166{height:74.776402px;}
.h5_c00166{height:1249.830756px;}
.h1_c00166{height:1262.879062px;}
.h0_c00166{height:1263.000000px;}
.w2_c00166{width:883.195846px;}
.w1_c00166{width:892.414744px;}
.w0_c00166{width:892.500000px;}
.x0_c00166{left:0.000000px;}
.x7_c00166{left:1.541954px;}
.x9_c00166{left:112.753050px;}
.x2_c00166{left:126.216356px;}
.xa_c00166{left:127.537645px;}
.x5_c00166{left:238.075785px;}
.x4_c00166{left:252.684537px;}
.x3_c00166{left:270.140236px;}
.x6_c00166{left:338.892520px;}
.x8_c00166{left:401.669885px;}
.x1_c00166{left:497.784645px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:0.000000pt;}
._5_c00166{margin-left:-15.124526pt;}
._7_c00166{margin-left:-13.377302pt;}
._6_c00166{margin-left:-11.628274pt;}
._4_c00166{margin-left:-10.639193pt;}
._8_c00166{margin-left:-9.497942pt;}
._a_c00166{margin-left:-7.209805pt;}
._9_c00166{margin-left:-6.228336pt;}
._3_c00166{margin-left:-2.985154pt;}
._0_c00166{margin-left:-1.323463pt;}
._1_c00166{width:0.904228pt;}
._2_c00166{width:619.137552pt;}
.fs0_c00166{font-size:58.267177pt;}
.fs1_c00166{font-size:63.333308pt;}
.fs2_c00166{font-size:74.100237pt;}
.y0_c00166{bottom:0.000000pt;}
.y1_c00166{bottom:0.107500pt;}
.y8_c00166{bottom:6.068128pt;}
.y3_c00166{bottom:73.988670pt;}
.y2_c00166{bottom:74.623670pt;}
.y15_c00166{bottom:501.696602pt;}
.y14_c00166{bottom:537.161655pt;}
.y13_c00166{bottom:572.628574pt;}
.y12_c00166{bottom:608.094826pt;}
.y11_c00166{bottom:643.563612pt;}
.y10_c00166{bottom:669.530802pt;}
.yf_c00166{bottom:694.543858pt;}
.ye_c00166{bottom:719.561315pt;}
.yd_c00166{bottom:744.579438pt;}
.yc_c00166{bottom:769.596895pt;}
.yb_c00166{bottom:804.112081pt;}
.ya_c00166{bottom:839.579534pt;}
.y9_c00166{bottom:895.311511pt;}
.y7_c00166{bottom:998.647967pt;}
.y6_c00166{bottom:1017.330493pt;}
.y5_c00166{bottom:1036.013552pt;}
.y4_c00166{bottom:1054.696078pt;}
.h2_c00166{height:52.149123pt;}
.h7_c00166{height:52.382192pt;}
.h3_c00166{height:56.683311pt;}
.h4_c00166{height:56.936644pt;}
.h6_c00166{height:66.467913pt;}
.h5_c00166{height:1110.960672pt;}
.h1_c00166{height:1122.559167pt;}
.h0_c00166{height:1122.666667pt;}
.w2_c00166{width:785.062974pt;}
.w1_c00166{width:793.257550pt;}
.w0_c00166{width:793.333333pt;}
.x0_c00166{left:0.000000pt;}
.x7_c00166{left:1.370626pt;}
.x9_c00166{left:100.224934pt;}
.x2_c00166{left:112.192317pt;}
.xa_c00166{left:113.366795pt;}
.x5_c00166{left:211.622920pt;}
.x4_c00166{left:224.608478pt;}
.x3_c00166{left:240.124654pt;}
.x6_c00166{left:301.237795pt;}
.x8_c00166{left:357.039898pt;}
.x1_c00166{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.112000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls0_c00167{letter-spacing:0.000000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:0.000000px;}
._6_c00167{margin-left:-3.574989px;}
._0_c00167{margin-left:-1.488896px;}
._1_c00167{width:1.017256px;}
._d_c00167{width:2.164200px;}
._a_c00167{width:3.215077px;}
._8_c00167{width:4.673462px;}
._7_c00167{width:6.701210px;}
._9_c00167{width:7.739053px;}
._f_c00167{width:9.400436px;}
._10_c00167{width:10.543504px;}
._e_c00167{width:19.364321px;}
._c_c00167{width:22.131522px;}
._b_c00167{width:23.153009px;}
._4_c00167{width:24.280040px;}
._5_c00167{width:25.653088px;}
._3_c00167{width:27.073038px;}
._13_c00167{width:33.601985px;}
._12_c00167{width:35.467768px;}
._11_c00167{width:78.436244px;}
._2_c00167{width:696.529746px;}
.fc1_c00167{color:rgb(105,148,45);}
.fc0_c00167{color:rgb(35,31,32);}
.fs0_c00167{font-size:65.550574px;}
.fs1_c00167{font-size:71.249972px;}
.y0_c00167{bottom:0.000000px;}
.y1_c00167{bottom:0.120938px;}
.y8_c00167{bottom:6.826644px;}
.y3_c00167{bottom:83.237254px;}
.y2_c00167{bottom:83.951629px;}
.y1c_c00167{bottom:135.672099px;}
.y1b_c00167{bottom:167.198786px;}
.y1a_c00167{bottom:230.254261px;}
.y19_c00167{bottom:261.783049px;}
.y18_c00167{bottom:293.311236px;}
.y17_c00167{bottom:324.837923px;}
.y16_c00167{bottom:356.366711px;}
.y15_c00167{bottom:421.553685px;}
.y14_c00167{bottom:488.707458px;}
.y13_c00167{bottom:551.761583px;}
.y12_c00167{bottom:583.291120px;}
.y11_c00167{bottom:637.621098px;}
.y10_c00167{bottom:708.870470px;}
.yf_c00167{bottom:791.162837px;}
.ye_c00167{bottom:822.693124px;}
.yd_c00167{bottom:854.218462px;}
.yc_c00167{bottom:885.747249px;}
.yb_c00167{bottom:948.269774px;}
.ya_c00167{bottom:979.797211px;}
.y9_c00167{bottom:1034.483439px;}
.y7_c00167{bottom:1123.478963px;}
.y6_c00167{bottom:1144.496805px;}
.y5_c00167{bottom:1165.515246px;}
.y4_c00167{bottom:1186.533088px;}
.h2_c00167{height:58.667764px;}
.h8_c00167{height:58.929966px;}
.h3_c00167{height:63.768724px;}
.h7_c00167{height:63.839974px;}
.h6_c00167{height:63.911224px;}
.h4_c00167{height:64.053724px;}
.h5_c00167{height:1249.830756px;}
.h1_c00167{height:1262.879062px;}
.h0_c00167{height:1263.000000px;}
.w2_c00167{width:883.195846px;}
.w1_c00167{width:892.414744px;}
.w0_c00167{width:892.500000px;}
.x0_c00167{left:0.000000px;}
.x7_c00167{left:1.541954px;}
.x8_c00167{left:112.753050px;}
.x2_c00167{left:126.216356px;}
.xb_c00167{left:139.471103px;}
.xa_c00167{left:165.296979px;}
.x9_c00167{left:178.834084px;}
.x5_c00167{left:238.075785px;}
.x4_c00167{left:252.684537px;}
.x3_c00167{left:270.140236px;}
.x6_c00167{left:338.892520px;}
.x1_c00167{left:497.784645px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws0_c00167{word-spacing:0.000000pt;}
._6_c00167{margin-left:-3.177768pt;}
._0_c00167{margin-left:-1.323463pt;}
._1_c00167{width:0.904228pt;}
._d_c00167{width:1.923733pt;}
._a_c00167{width:2.857846pt;}
._8_c00167{width:4.154189pt;}
._7_c00167{width:5.956631pt;}
._9_c00167{width:6.879158pt;}
._f_c00167{width:8.355943pt;}
._10_c00167{width:9.372003pt;}
._e_c00167{width:17.212729pt;}
._c_c00167{width:19.672464pt;}
._b_c00167{width:20.580453pt;}
._4_c00167{width:21.582258pt;}
._5_c00167{width:22.802745pt;}
._3_c00167{width:24.064923pt;}
._13_c00167{width:29.868431pt;}
._12_c00167{width:31.526905pt;}
._11_c00167{width:69.721105pt;}
._2_c00167{width:619.137552pt;}
.fs0_c00167{font-size:58.267177pt;}
.fs1_c00167{font-size:63.333308pt;}
.y0_c00167{bottom:0.000000pt;}
.y1_c00167{bottom:0.107500pt;}
.y8_c00167{bottom:6.068128pt;}
.y3_c00167{bottom:73.988670pt;}
.y2_c00167{bottom:74.623670pt;}
.y1c_c00167{bottom:120.597421pt;}
.y1b_c00167{bottom:148.621143pt;}
.y1a_c00167{bottom:204.670454pt;}
.y19_c00167{bottom:232.696043pt;}
.y18_c00167{bottom:260.721099pt;}
.y17_c00167{bottom:288.744821pt;}
.y16_c00167{bottom:316.770410pt;}
.y15_c00167{bottom:374.714386pt;}
.y14_c00167{bottom:434.406629pt;}
.y13_c00167{bottom:490.454740pt;}
.y12_c00167{bottom:518.480996pt;}
.y11_c00167{bottom:566.774310pt;}
.y10_c00167{bottom:630.107084pt;}
.yf_c00167{bottom:703.255855pt;}
.ye_c00167{bottom:731.282777pt;}
.yd_c00167{bottom:759.305299pt;}
.yc_c00167{bottom:787.330888pt;}
.yb_c00167{bottom:842.906466pt;}
.ya_c00167{bottom:870.930855pt;}
.y9_c00167{bottom:919.540835pt;}
.y7_c00167{bottom:998.647967pt;}
.y6_c00167{bottom:1017.330493pt;}
.y5_c00167{bottom:1036.013552pt;}
.y4_c00167{bottom:1054.696078pt;}
.h2_c00167{height:52.149123pt;}
.h8_c00167{height:52.382192pt;}
.h3_c00167{height:56.683311pt;}
.h7_c00167{height:56.746644pt;}
.h6_c00167{height:56.809977pt;}
.h4_c00167{height:56.936644pt;}
.h5_c00167{height:1110.960672pt;}
.h1_c00167{height:1122.559167pt;}
.h0_c00167{height:1122.666667pt;}
.w2_c00167{width:785.062974pt;}
.w1_c00167{width:793.257550pt;}
.w0_c00167{width:793.333333pt;}
.x0_c00167{left:0.000000pt;}
.x7_c00167{left:1.370626pt;}
.x8_c00167{left:100.224934pt;}
.x2_c00167{left:112.192317pt;}
.xb_c00167{left:123.974314pt;}
.xa_c00167{left:146.930648pt;}
.x9_c00167{left:158.963630pt;}
.x5_c00167{left:211.622920pt;}
.x4_c00167{left:224.608478pt;}
.x3_c00167{left:240.124654pt;}
.x6_c00167{left:301.237795pt;}
.x1_c00167{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.112000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls0_c00168{letter-spacing:0.000000px;}
.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:0.000000px;}
._e_c00168{margin-left:-4.072794px;}
._5_c00168{margin-left:-2.555826px;}
._0_c00168{margin-left:-1.488896px;}
._1_c00168{width:1.017256px;}
._7_c00168{width:2.268275px;}
._6_c00168{width:3.810282px;}
._10_c00168{width:5.928387px;}
._8_c00168{width:7.677337px;}
._4_c00168{width:8.696948px;}
._c_c00168{width:19.742958px;}
._a_c00168{width:20.835556px;}
._9_c00168{width:21.939745px;}
._d_c00168{width:35.683850px;}
._b_c00168{width:37.490216px;}
._f_c00168{width:58.979415px;}
._3_c00168{width:78.432681px;}
._2_c00168{width:696.529746px;}
.fc1_c00168{color:rgb(105,148,45);}
.fc0_c00168{color:rgb(35,31,32);}
.fs0_c00168{font-size:65.550574px;}
.fs1_c00168{font-size:71.249972px;}
.y0_c00168{bottom:0.000000px;}
.y1_c00168{bottom:0.120938px;}
.y8_c00168{bottom:6.826644px;}
.y3_c00168{bottom:83.237254px;}
.y2_c00168{bottom:83.951629px;}
.y1f_c00168{bottom:162.033238px;}
.y1e_c00168{bottom:193.559926px;}
.y1d_c00168{bottom:256.079601px;}
.y1c_c00168{bottom:287.608388px;}
.y1b_c00168{bottom:319.135076px;}
.y1a_c00168{bottom:381.834151px;}
.y19_c00168{bottom:413.363688px;}
.y18_c00168{bottom:463.774168px;}
.y17_c00168{bottom:543.392936px;}
.y16_c00168{bottom:574.921123px;}
.y15_c00168{bottom:629.251102px;}
.y14_c00168{bottom:693.907076px;}
.y13_c00168{bottom:725.435563px;}
.y12_c00168{bottom:756.963450px;}
.y11_c00168{bottom:788.490138px;}
.y10_c00168{bottom:851.188463px;}
.yf_c00168{bottom:882.715900px;}
.ye_c00168{bottom:914.242588px;}
.yd_c00168{bottom:945.774225px;}
.yc_c00168{bottom:977.300912px;}
.yb_c00168{bottom:1008.827600px;}
.ya_c00168{bottom:1040.353537px;}
.y9_c00168{bottom:1071.884425px;}
.y7_c00168{bottom:1123.478963px;}
.y6_c00168{bottom:1144.496805px;}
.y5_c00168{bottom:1165.515246px;}
.y4_c00168{bottom:1186.533088px;}
.h2_c00168{height:58.667764px;}
.h7_c00168{height:58.929966px;}
.h3_c00168{height:63.768724px;}
.h6_c00168{height:63.839974px;}
.h4_c00168{height:64.053724px;}
.h5_c00168{height:1249.830756px;}
.h1_c00168{height:1262.879062px;}
.h0_c00168{height:1263.000000px;}
.w2_c00168{width:883.195846px;}
.w1_c00168{width:892.414744px;}
.w0_c00168{width:892.500000px;}
.x0_c00168{left:0.000000px;}
.x7_c00168{left:1.541954px;}
.xa_c00168{left:112.753050px;}
.x2_c00168{left:126.216356px;}
.x8_c00168{left:139.472540px;}
.xc_c00168{left:153.011238px;}
.x9_c00168{left:166.188044px;}
.xb_c00168{left:178.837474px;}
.x5_c00168{left:238.075785px;}
.x4_c00168{left:252.684537px;}
.x3_c00168{left:270.140236px;}
.x6_c00168{left:338.892520px;}
.x1_c00168{left:497.784645px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws0_c00168{word-spacing:0.000000pt;}
._e_c00168{margin-left:-3.620261pt;}
._5_c00168{margin-left:-2.271845pt;}
._0_c00168{margin-left:-1.323463pt;}
._1_c00168{width:0.904228pt;}
._7_c00168{width:2.016245pt;}
._6_c00168{width:3.386917pt;}
._10_c00168{width:5.269677pt;}
._8_c00168{width:6.824299pt;}
._4_c00168{width:7.730620pt;}
._c_c00168{width:17.549296pt;}
._a_c00168{width:18.520494pt;}
._9_c00168{width:19.501995pt;}
._d_c00168{width:31.718978pt;}
._b_c00168{width:33.324637pt;}
._f_c00168{width:52.426146pt;}
._3_c00168{width:69.717939pt;}
._2_c00168{width:619.137552pt;}
.fs0_c00168{font-size:58.267177pt;}
.fs1_c00168{font-size:63.333308pt;}
.y0_c00168{bottom:0.000000pt;}
.y1_c00168{bottom:0.107500pt;}
.y8_c00168{bottom:6.068128pt;}
.y3_c00168{bottom:73.988670pt;}
.y2_c00168{bottom:74.623670pt;}
.y1f_c00168{bottom:144.029545pt;}
.y1e_c00168{bottom:172.053267pt;}
.y1d_c00168{bottom:227.626312pt;}
.y1c_c00168{bottom:255.651901pt;}
.y1b_c00168{bottom:283.675623pt;}
.y1a_c00168{bottom:339.408134pt;}
.y19_c00168{bottom:367.434389pt;}
.y18_c00168{bottom:412.243705pt;}
.y17_c00168{bottom:483.015943pt;}
.y16_c00168{bottom:511.040998pt;}
.y15_c00168{bottom:559.334313pt;}
.y14_c00168{bottom:616.806290pt;}
.y13_c00168{bottom:644.831612pt;}
.y12_c00168{bottom:672.856400pt;}
.y11_c00168{bottom:700.880123pt;}
.y10_c00168{bottom:756.611967pt;}
.yf_c00168{bottom:784.636356pt;}
.ye_c00168{bottom:812.660078pt;}
.yd_c00168{bottom:840.688200pt;}
.yc_c00168{bottom:868.711922pt;}
.yb_c00168{bottom:896.735644pt;}
.ya_c00168{bottom:924.758700pt;}
.y9_c00168{bottom:952.786155pt;}
.y7_c00168{bottom:998.647967pt;}
.y6_c00168{bottom:1017.330493pt;}
.y5_c00168{bottom:1036.013552pt;}
.y4_c00168{bottom:1054.696078pt;}
.h2_c00168{height:52.149123pt;}
.h7_c00168{height:52.382192pt;}
.h3_c00168{height:56.683311pt;}
.h6_c00168{height:56.746644pt;}
.h4_c00168{height:56.936644pt;}
.h5_c00168{height:1110.960672pt;}
.h1_c00168{height:1122.559167pt;}
.h0_c00168{height:1122.666667pt;}
.w2_c00168{width:785.062974pt;}
.w1_c00168{width:793.257550pt;}
.w0_c00168{width:793.333333pt;}
.x0_c00168{left:0.000000pt;}
.x7_c00168{left:1.370626pt;}
.xa_c00168{left:100.224934pt;}
.x2_c00168{left:112.192317pt;}
.x8_c00168{left:123.975591pt;}
.xc_c00168{left:136.009989pt;}
.x9_c00168{left:147.722705pt;}
.xb_c00168{left:158.966644pt;}
.x5_c00168{left:211.622920pt;}
.x4_c00168{left:224.608478pt;}
.x3_c00168{left:240.124654pt;}
.x6_c00168{left:301.237795pt;}
.x1_c00168{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.112000;font-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_c00169{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls0_c00169{letter-spacing:0.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00169{word-spacing:0.000000px;}
._9_c00169{margin-left:-3.350602px;}
._0_c00169{margin-left:-1.488896px;}
._1_c00169{width:1.017256px;}
._3_c00169{width:2.120754px;}
._8_c00169{width:3.148420px;}
._5_c00169{width:14.393179px;}
._6_c00169{width:15.714291px;}
._7_c00169{width:16.789385px;}
._4_c00169{width:19.191795px;}
._2_c00169{width:696.529746px;}
.fc1_c00169{color:rgb(105,148,45);}
.fc0_c00169{color:rgb(35,31,32);}
.fs0_c00169{font-size:65.550574px;}
.fs1_c00169{font-size:71.249972px;}
.y0_c00169{bottom:0.000000px;}
.y1_c00169{bottom:0.120938px;}
.y8_c00169{bottom:6.826644px;}
.y3_c00169{bottom:83.237254px;}
.y2_c00169{bottom:83.951629px;}
.y10_c00169{bottom:720.449565px;}
.ye_c00169{bottom:751.972502px;}
.yf_c00169{bottom:751.975052px;}
.yd_c00169{bottom:783.502040px;}
.yc_c00169{bottom:848.696514px;}
.yb_c00169{bottom:943.992076px;}
.ya_c00169{bottom:975.518763px;}
.y9_c00169{bottom:1007.046950px;}
.y7_c00169{bottom:1123.478963px;}
.y6_c00169{bottom:1144.496805px;}
.y5_c00169{bottom:1165.515246px;}
.y4_c00169{bottom:1186.533088px;}
.h2_c00169{height:58.667764px;}
.h7_c00169{height:58.929966px;}
.h3_c00169{height:63.768724px;}
.h6_c00169{height:63.839974px;}
.h4_c00169{height:64.053724px;}
.h5_c00169{height:1249.830756px;}
.h1_c00169{height:1262.879062px;}
.h0_c00169{height:1263.000000px;}
.w2_c00169{width:883.195846px;}
.w1_c00169{width:892.414744px;}
.w0_c00169{width:892.500000px;}
.x0_c00169{left:0.000000px;}
.x7_c00169{left:1.541954px;}
.x9_c00169{left:112.753050px;}
.x2_c00169{left:126.216356px;}
.x8_c00169{left:178.837474px;}
.x5_c00169{left:238.075785px;}
.x4_c00169{left:252.684537px;}
.x3_c00169{left:270.140236px;}
.x6_c00169{left:338.892520px;}
.x1_c00169{left:497.784645px;}
.xa_c00169{left:688.267270px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.000000pt;}
._9_c00169{margin-left:-2.978312pt;}
._0_c00169{margin-left:-1.323463pt;}
._1_c00169{width:0.904228pt;}
._3_c00169{width:1.885115pt;}
._8_c00169{width:2.798595pt;}
._5_c00169{width:12.793937pt;}
._6_c00169{width:13.968259pt;}
._7_c00169{width:14.923898pt;}
._4_c00169{width:17.059373pt;}
._2_c00169{width:619.137552pt;}
.fs0_c00169{font-size:58.267177pt;}
.fs1_c00169{font-size:63.333308pt;}
.y0_c00169{bottom:0.000000pt;}
.y1_c00169{bottom:0.107500pt;}
.y8_c00169{bottom:6.068128pt;}
.y3_c00169{bottom:73.988670pt;}
.y2_c00169{bottom:74.623670pt;}
.y10_c00169{bottom:640.399613pt;}
.ye_c00169{bottom:668.420002pt;}
.yf_c00169{bottom:668.422269pt;}
.yd_c00169{bottom:696.446258pt;}
.yc_c00169{bottom:754.396901pt;}
.yb_c00169{bottom:839.104067pt;}
.ya_c00169{bottom:867.127789pt;}
.y9_c00169{bottom:895.152845pt;}
.y7_c00169{bottom:998.647967pt;}
.y6_c00169{bottom:1017.330493pt;}
.y5_c00169{bottom:1036.013552pt;}
.y4_c00169{bottom:1054.696078pt;}
.h2_c00169{height:52.149123pt;}
.h7_c00169{height:52.382192pt;}
.h3_c00169{height:56.683311pt;}
.h6_c00169{height:56.746644pt;}
.h4_c00169{height:56.936644pt;}
.h5_c00169{height:1110.960672pt;}
.h1_c00169{height:1122.559167pt;}
.h0_c00169{height:1122.666667pt;}
.w2_c00169{width:785.062974pt;}
.w1_c00169{width:793.257550pt;}
.w0_c00169{width:793.333333pt;}
.x0_c00169{left:0.000000pt;}
.x7_c00169{left:1.370626pt;}
.x9_c00169{left:100.224934pt;}
.x2_c00169{left:112.192317pt;}
.x8_c00169{left:158.966644pt;}
.x5_c00169{left:211.622920pt;}
.x4_c00169{left:224.608478pt;}
.x3_c00169{left:240.124654pt;}
.x6_c00169{left:301.237795pt;}
.x1_c00169{left:442.475240pt;}
.xa_c00169{left:611.793129pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.113000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls0_c00170{letter-spacing:0.000000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00170{word-spacing:0.000000px;}
._7_c00170{margin-left:-2.992319px;}
._0_c00170{margin-left:-1.488897px;}
._1_c00170{width:1.017520px;}
._4_c00170{width:2.424603px;}
._3_c00170{width:4.392861px;}
._5_c00170{width:5.630110px;}
._6_c00170{width:7.072175px;}
._d_c00170{width:8.745473px;}
._c_c00170{width:10.096108px;}
._12_c00170{width:11.211026px;}
._11_c00170{width:12.643953px;}
._b_c00170{width:14.015101px;}
._a_c00170{width:15.048056px;}
._13_c00170{width:16.517288px;}
._e_c00170{width:20.124446px;}
._f_c00170{width:21.720351px;}
._9_c00170{width:22.940622px;}
._8_c00170{width:24.077925px;}
._10_c00170{width:58.979415px;}
._2_c00170{width:696.529746px;}
.fc1_c00170{color:rgb(105,148,45);}
.fc0_c00170{color:rgb(35,31,32);}
.fs0_c00170{font-size:65.550574px;}
.fs1_c00170{font-size:71.249972px;}
.y0_c00170{bottom:0.000000px;}
.y1_c00170{bottom:0.120938px;}
.y7_c00170{bottom:6.826644px;}
.y8_c00170{bottom:88.469218px;}
.y2_c00170{bottom:95.885774px;}
.y1e_c00170{bottom:131.395001px;}
.y1d_c00170{bottom:162.925288px;}
.y1c_c00170{bottom:194.449275px;}
.y1b_c00170{bottom:225.975963px;}
.y1a_c00170{bottom:274.783393px;}
.y19_c00170{bottom:306.311581px;}
.y18_c00170{bottom:337.838268px;}
.y17_c00170{bottom:400.360193px;}
.y16_c00170{bottom:463.061668px;}
.y15_c00170{bottom:494.584905px;}
.y14_c00170{bottom:588.634868px;}
.y13_c00170{bottom:620.160205px;}
.y12_c00170{bottom:651.688393px;}
.y11_c00170{bottom:714.745367px;}
.y10_c00170{bottom:746.274155px;}
.yf_c00170{bottom:777.800842px;}
.ye_c00170{bottom:840.497817px;}
.yd_c00170{bottom:872.028104px;}
.yc_c00170{bottom:937.221078px;}
.yb_c00170{bottom:968.747766px;}
.ya_c00170{bottom:1000.278053px;}
.y9_c00170{bottom:1052.825432px;}
.y6_c00170{bottom:1122.588113px;}
.y5_c00170{bottom:1143.604455px;}
.y4_c00170{bottom:1164.623647px;}
.y3_c00170{bottom:1185.642088px;}
.h2_c00170{height:58.667764px;}
.h3_c00170{height:63.768724px;}
.h6_c00170{height:63.839974px;}
.h7_c00170{height:63.911224px;}
.h4_c00170{height:64.053724px;}
.h5_c00170{height:1249.830756px;}
.h1_c00170{height:1262.879062px;}
.h0_c00170{height:1263.000000px;}
.w2_c00170{width:883.195846px;}
.w1_c00170{width:892.414744px;}
.w0_c00170{width:892.500000px;}
.x0_c00170{left:0.000000px;}
.x6_c00170{left:1.541954px;}
.x7_c00170{left:126.289645px;}
.x9_c00170{left:139.831487px;}
.xa_c00170{left:166.548490px;}
.x8_c00170{left:192.373527px;}
.x4_c00170{left:251.613879px;}
.x3_c00170{left:266.222632px;}
.x2_c00170{left:283.677730px;}
.x5_c00170{left:352.431363px;}
.x1_c00170{left:501.521143px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:0.000000pt;}
._7_c00170{margin-left:-2.659839pt;}
._0_c00170{margin-left:-1.323464pt;}
._1_c00170{width:0.904463pt;}
._4_c00170{width:2.155202pt;}
._3_c00170{width:3.904765pt;}
._5_c00170{width:5.004542pt;}
._6_c00170{width:6.286378pt;}
._d_c00170{width:7.773754pt;}
._c_c00170{width:8.974318pt;}
._12_c00170{width:9.965357pt;}
._11_c00170{width:11.239069pt;}
._b_c00170{width:12.457868pt;}
._a_c00170{width:13.376050pt;}
._13_c00170{width:14.682033pt;}
._e_c00170{width:17.888396pt;}
._f_c00170{width:19.306979pt;}
._9_c00170{width:20.391664pt;}
._8_c00170{width:21.402600pt;}
._10_c00170{width:52.426146pt;}
._2_c00170{width:619.137552pt;}
.fs0_c00170{font-size:58.267177pt;}
.fs1_c00170{font-size:63.333308pt;}
.y0_c00170{bottom:0.000000pt;}
.y1_c00170{bottom:0.107500pt;}
.y7_c00170{bottom:6.068128pt;}
.y8_c00170{bottom:78.639305pt;}
.y2_c00170{bottom:85.231799pt;}
.y1e_c00170{bottom:116.795556pt;}
.y1d_c00170{bottom:144.822478pt;}
.y1c_c00170{bottom:172.843800pt;}
.y1b_c00170{bottom:200.867523pt;}
.y1a_c00170{bottom:244.251905pt;}
.y19_c00170{bottom:272.276961pt;}
.y18_c00170{bottom:300.300683pt;}
.y17_c00170{bottom:355.875727pt;}
.y16_c00170{bottom:411.610372pt;}
.y15_c00170{bottom:439.631027pt;}
.y14_c00170{bottom:523.230994pt;}
.y13_c00170{bottom:551.253516pt;}
.y12_c00170{bottom:579.278571pt;}
.y11_c00170{bottom:635.329215pt;}
.y10_c00170{bottom:663.354804pt;}
.yf_c00170{bottom:691.378526pt;}
.ye_c00170{bottom:747.109171pt;}
.yd_c00170{bottom:775.136093pt;}
.yc_c00170{bottom:833.085403pt;}
.yb_c00170{bottom:861.109125pt;}
.ya_c00170{bottom:889.136047pt;}
.y9_c00170{bottom:935.844829pt;}
.y6_c00170{bottom:997.856101pt;}
.y5_c00170{bottom:1016.537293pt;}
.y4_c00170{bottom:1035.221019pt;}
.y3_c00170{bottom:1053.904078pt;}
.h2_c00170{height:52.149123pt;}
.h3_c00170{height:56.683311pt;}
.h6_c00170{height:56.746644pt;}
.h7_c00170{height:56.809977pt;}
.h4_c00170{height:56.936644pt;}
.h5_c00170{height:1110.960672pt;}
.h1_c00170{height:1122.559167pt;}
.h0_c00170{height:1122.666667pt;}
.w2_c00170{width:785.062974pt;}
.w1_c00170{width:793.257550pt;}
.w0_c00170{width:793.333333pt;}
.x0_c00170{left:0.000000pt;}
.x6_c00170{left:1.370626pt;}
.x7_c00170{left:112.257462pt;}
.x9_c00170{left:124.294655pt;}
.xa_c00170{left:148.043102pt;}
.x8_c00170{left:170.998690pt;}
.x4_c00170{left:223.656781pt;}
.x3_c00170{left:236.642339pt;}
.x2_c00170{left:252.157982pt;}
.x5_c00170{left:313.272323pt;}
.x1_c00170{left:445.796572pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.112000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00171{word-spacing:0.000000px;}
._7_c00171{margin-left:-4.252328px;}
._8_c00171{margin-left:-2.594229px;}
._0_c00171{margin-left:-1.488896px;}
._1_c00171{width:1.017520px;}
._d_c00171{width:2.440432px;}
._e_c00171{width:3.571896px;}
._c_c00171{width:4.854000px;}
._9_c00171{width:6.448453px;}
._b_c00171{width:7.585054px;}
._a_c00171{width:9.095380px;}
._16_c00171{width:10.540723px;}
._5_c00171{width:12.749412px;}
._6_c00171{width:15.102567px;}
._4_c00171{width:16.235672px;}
._12_c00171{width:19.361686px;}
._14_c00171{width:20.668165px;}
._15_c00171{width:21.724674px;}
._13_c00171{width:22.928710px;}
._11_c00171{width:24.297217px;}
._10_c00171{width:25.661502px;}
._f_c00171{width:27.394634px;}
._3_c00171{width:58.979415px;}
._2_c00171{width:696.529746px;}
.fc1_c00171{color:rgb(105,148,45);}
.fc0_c00171{color:rgb(35,31,32);}
.fs0_c00171{font-size:65.550574px;}
.fs1_c00171{font-size:71.249972px;}
.y0_c00171{bottom:0.000000px;}
.y1_c00171{bottom:0.120938px;}
.y8_c00171{bottom:6.826644px;}
.y3_c00171{bottom:83.237254px;}
.y2_c00171{bottom:83.951629px;}
.y20_c00171{bottom:161.851739px;}
.y1f_c00171{bottom:193.381276px;}
.y1e_c00171{bottom:255.904251px;}
.y1d_c00171{bottom:287.431238px;}
.y1c_c00171{bottom:318.954776px;}
.y1b_c00171{bottom:365.270257px;}
.y1a_c00171{bottom:396.796195px;}
.y19_c00171{bottom:428.324382px;}
.y18_c00171{bottom:459.853169px;}
.y17_c00171{bottom:491.379857px;}
.y16_c00171{bottom:553.903132px;}
.y15_c00171{bottom:585.429819px;}
.y14_c00171{bottom:616.956506px;}
.y13_c00171{bottom:664.160138px;}
.y12_c00171{bottom:726.682063px;}
.y11_c00171{bottom:758.207400px;}
.y10_c00171{bottom:789.737687px;}
.yf_c00171{bottom:821.265875px;}
.ye_c00171{bottom:882.361150px;}
.yd_c00171{bottom:913.891438px;}
.yc_c00171{bottom:945.415275px;}
.yb_c00171{bottom:976.945562px;}
.ya_c00171{bottom:1024.682743px;}
.y9_c00171{bottom:1056.210931px;}
.y7_c00171{bottom:1122.588113px;}
.y6_c00171{bottom:1143.604455px;}
.y5_c00171{bottom:1164.623647px;}
.y4_c00171{bottom:1185.642088px;}
.h2_c00171{height:58.667764px;}
.h3_c00171{height:63.768724px;}
.h6_c00171{height:63.839974px;}
.h4_c00171{height:64.053724px;}
.h5_c00171{height:1249.830756px;}
.h1_c00171{height:1262.879062px;}
.h0_c00171{height:1263.000000px;}
.w2_c00171{width:883.195846px;}
.w1_c00171{width:892.414744px;}
.w0_c00171{width:892.500000px;}
.x0_c00171{left:0.000000px;}
.x7_c00171{left:1.541954px;}
.x2_c00171{left:126.216356px;}
.x8_c00171{left:166.544979px;}
.x9_c00171{left:193.257485px;}
.x5_c00171{left:251.613879px;}
.x4_c00171{left:266.222632px;}
.x3_c00171{left:283.677730px;}
.x6_c00171{left:352.431363px;}
.x1_c00171{left:497.784645px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:0.000000pt;}
._7_c00171{margin-left:-3.779847pt;}
._8_c00171{margin-left:-2.305981pt;}
._0_c00171{margin-left:-1.323463pt;}
._1_c00171{width:0.904462pt;}
._d_c00171{width:2.169273pt;}
._e_c00171{width:3.175019pt;}
._c_c00171{width:4.314666pt;}
._9_c00171{width:5.731958pt;}
._b_c00171{width:6.742270pt;}
._a_c00171{width:8.084782pt;}
._16_c00171{width:9.369532pt;}
._5_c00171{width:11.332811pt;}
._6_c00171{width:13.424504pt;}
._4_c00171{width:14.431709pt;}
._12_c00171{width:17.210388pt;}
._14_c00171{width:18.371702pt;}
._15_c00171{width:19.310822pt;}
._13_c00171{width:20.381075pt;}
._11_c00171{width:21.597527pt;}
._10_c00171{width:22.810224pt;}
._f_c00171{width:24.350786pt;}
._3_c00171{width:52.426146pt;}
._2_c00171{width:619.137552pt;}
.fs0_c00171{font-size:58.267177pt;}
.fs1_c00171{font-size:63.333308pt;}
.y0_c00171{bottom:0.000000pt;}
.y1_c00171{bottom:0.107500pt;}
.y8_c00171{bottom:6.068128pt;}
.y3_c00171{bottom:73.988670pt;}
.y2_c00171{bottom:74.623670pt;}
.y20_c00171{bottom:143.868212pt;}
.y1f_c00171{bottom:171.894467pt;}
.y1e_c00171{bottom:227.470445pt;}
.y1d_c00171{bottom:255.494434pt;}
.y1c_c00171{bottom:283.515356pt;}
.y1b_c00171{bottom:324.684673pt;}
.y1a_c00171{bottom:352.707728pt;}
.y19_c00171{bottom:380.732784pt;}
.y18_c00171{bottom:408.758373pt;}
.y17_c00171{bottom:436.782095pt;}
.y16_c00171{bottom:492.358339pt;}
.y15_c00171{bottom:520.382061pt;}
.y14_c00171{bottom:548.405784pt;}
.y13_c00171{bottom:590.364567pt;}
.y12_c00171{bottom:645.939611pt;}
.y11_c00171{bottom:673.962133pt;}
.y10_c00171{bottom:701.989055pt;}
.yf_c00171{bottom:730.014111pt;}
.ye_c00171{bottom:784.321023pt;}
.yd_c00171{bottom:812.347945pt;}
.yc_c00171{bottom:840.369133pt;}
.yb_c00171{bottom:868.396056pt;}
.ya_c00171{bottom:910.829105pt;}
.y9_c00171{bottom:938.854161pt;}
.y7_c00171{bottom:997.856101pt;}
.y6_c00171{bottom:1016.537293pt;}
.y5_c00171{bottom:1035.221019pt;}
.y4_c00171{bottom:1053.904078pt;}
.h2_c00171{height:52.149123pt;}
.h3_c00171{height:56.683311pt;}
.h6_c00171{height:56.746644pt;}
.h4_c00171{height:56.936644pt;}
.h5_c00171{height:1110.960672pt;}
.h1_c00171{height:1122.559167pt;}
.h0_c00171{height:1122.666667pt;}
.w2_c00171{width:785.062974pt;}
.w1_c00171{width:793.257550pt;}
.w0_c00171{width:793.333333pt;}
.x0_c00171{left:0.000000pt;}
.x7_c00171{left:1.370626pt;}
.x2_c00171{left:112.192317pt;}
.x8_c00171{left:148.039981pt;}
.x9_c00171{left:171.784431pt;}
.x5_c00171{left:223.656781pt;}
.x4_c00171{left:236.642339pt;}
.x3_c00171{left:252.157982pt;}
.x6_c00171{left:313.272323pt;}
.x1_c00171{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_6a5df09709f11ef4b8f8d413.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.107000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.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:0.000000px;}
._10_c00172{margin-left:-3.693052px;}
._7_c00172{margin-left:-2.546838px;}
._0_c00172{margin-left:-1.488896px;}
._1_c00172{width:1.017520px;}
._14_c00172{width:2.613225px;}
._13_c00172{width:4.052716px;}
._12_c00172{width:5.225974px;}
._11_c00172{width:6.513495px;}
._e_c00172{width:8.020825px;}
._f_c00172{width:9.541712px;}
._d_c00172{width:10.877537px;}
._5_c00172{width:14.139672px;}
._4_c00172{width:15.968556px;}
._6_c00172{width:19.095487px;}
._a_c00172{width:20.583766px;}
._8_c00172{width:21.672133px;}
._9_c00172{width:22.776040px;}
._c_c00172{width:24.870270px;}
._b_c00172{width:26.090423px;}
._3_c00172{width:58.979415px;}
._2_c00172{width:696.529746px;}
.fc1_c00172{color:rgb(105,148,45);}
.fc0_c00172{color:rgb(35,31,32);}
.fs0_c00172{font-size:65.550574px;}
.fs1_c00172{font-size:71.249972px;}
.y0_c00172{bottom:0.000000px;}
.y1_c00172{bottom:0.120938px;}
.y8_c00172{bottom:6.826644px;}
.y3_c00172{bottom:83.237254px;}
.y2_c00172{bottom:83.951629px;}
.y1f_c00172{bottom:111.447709px;}
.y1e_c00172{bottom:142.973046px;}
.y1d_c00172{bottom:193.204276px;}
.y1c_c00172{bottom:258.573050px;}
.y1b_c00172{bottom:290.102587px;}
.y1a_c00172{bottom:321.630025px;}
.y19_c00172{bottom:353.158212px;}
.y18_c00172{bottom:403.388692px;}
.y17_c00172{bottom:472.677264px;}
.y16_c00172{bottom:504.205452px;}
.y15_c00172{bottom:535.735739px;}
.y14_c00172{bottom:567.261076px;}
.y13_c00172{bottom:598.789864px;}
.y12_c00172{bottom:649.021094px;}
.y11_c00172{bottom:703.344922px;}
.y10_c00172{bottom:787.062438px;}
.yf_c00172{bottom:818.588376px;}
.ye_c00172{bottom:881.112401px;}
.yd_c00172{bottom:912.642688px;}
.yc_c00172{bottom:944.168026px;}
.yb_c00172{bottom:1007.937950px;}
.ya_c00172{bottom:1039.463287px;}
.y9_c00172{bottom:1070.994925px;}
.y7_c00172{bottom:1122.588113px;}
.y6_c00172{bottom:1143.604455px;}
.y5_c00172{bottom:1164.623647px;}
.y4_c00172{bottom:1185.642088px;}
.h2_c00172{height:58.667764px;}
.h3_c00172{height:63.768724px;}
.h6_c00172{height:63.839974px;}
.h7_c00172{height:63.911224px;}
.h4_c00172{height:64.053724px;}
.h5_c00172{height:1249.830756px;}
.h1_c00172{height:1262.879062px;}
.h0_c00172{height:1263.000000px;}
.w2_c00172{width:883.195846px;}
.w1_c00172{width:892.414744px;}
.w0_c00172{width:892.500000px;}
.x0_c00172{left:0.000000px;}
.x7_c00172{left:1.541954px;}
.x2_c00172{left:126.216356px;}
.xa_c00172{left:139.830118px;}
.x8_c00172{left:166.544979px;}
.xb_c00172{left:191.663969px;}
.x9_c00172{left:193.261982px;}
.x5_c00172{left:251.613879px;}
.x4_c00172{left:266.222632px;}
.x3_c00172{left:283.677730px;}
.x6_c00172{left:352.431363px;}
.x1_c00172{left:497.784645px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws0_c00172{word-spacing:0.000000pt;}
._10_c00172{margin-left:-3.282713pt;}
._7_c00172{margin-left:-2.263856pt;}
._0_c00172{margin-left:-1.323463pt;}
._1_c00172{width:0.904462pt;}
._14_c00172{width:2.322867pt;}
._13_c00172{width:3.602414pt;}
._12_c00172{width:4.645310pt;}
._11_c00172{width:5.789773pt;}
._e_c00172{width:7.129622pt;}
._f_c00172{width:8.481522pt;}
._d_c00172{width:9.668922pt;}
._5_c00172{width:12.568598pt;}
._4_c00172{width:14.194272pt;}
._6_c00172{width:16.973766pt;}
._a_c00172{width:18.296681pt;}
._8_c00172{width:19.264118pt;}
._9_c00172{width:20.245369pt;}
._c_c00172{width:22.106907pt;}
._b_c00172{width:23.191487pt;}
._3_c00172{width:52.426146pt;}
._2_c00172{width:619.137552pt;}
.fs0_c00172{font-size:58.267177pt;}
.fs1_c00172{font-size:63.333308pt;}
.y0_c00172{bottom:0.000000pt;}
.y1_c00172{bottom:0.107500pt;}
.y8_c00172{bottom:6.068128pt;}
.y3_c00172{bottom:73.988670pt;}
.y2_c00172{bottom:74.623670pt;}
.y1f_c00172{bottom:99.064630pt;}
.y1e_c00172{bottom:127.087152pt;}
.y1d_c00172{bottom:171.737134pt;}
.y1c_c00172{bottom:229.842711pt;}
.y1b_c00172{bottom:257.868966pt;}
.y1a_c00172{bottom:285.893355pt;}
.y19_c00172{bottom:313.918411pt;}
.y18_c00172{bottom:358.567726pt;}
.y17_c00172{bottom:420.157568pt;}
.y16_c00172{bottom:448.182624pt;}
.y15_c00172{bottom:476.209546pt;}
.y14_c00172{bottom:504.232068pt;}
.y13_c00172{bottom:532.257657pt;}
.y12_c00172{bottom:576.907639pt;}
.y11_c00172{bottom:625.195486pt;}
.y10_c00172{bottom:699.611056pt;}
.yf_c00172{bottom:727.634112pt;}
.ye_c00172{bottom:783.211023pt;}
.yd_c00172{bottom:811.237945pt;}
.yc_c00172{bottom:839.260467pt;}
.yb_c00172{bottom:895.944845pt;}
.ya_c00172{bottom:923.967367pt;}
.y9_c00172{bottom:951.995489pt;}
.y7_c00172{bottom:997.856101pt;}
.y6_c00172{bottom:1016.537293pt;}
.y5_c00172{bottom:1035.221019pt;}
.y4_c00172{bottom:1053.904078pt;}
.h2_c00172{height:52.149123pt;}
.h3_c00172{height:56.683311pt;}
.h6_c00172{height:56.746644pt;}
.h7_c00172{height:56.809977pt;}
.h4_c00172{height:56.936644pt;}
.h5_c00172{height:1110.960672pt;}
.h1_c00172{height:1122.559167pt;}
.h0_c00172{height:1122.666667pt;}
.w2_c00172{width:785.062974pt;}
.w1_c00172{width:793.257550pt;}
.w0_c00172{width:793.333333pt;}
.x0_c00172{left:0.000000pt;}
.x7_c00172{left:1.370626pt;}
.x2_c00172{left:112.192317pt;}
.xa_c00172{left:124.293438pt;}
.x8_c00172{left:148.039981pt;}
.xb_c00172{left:170.367972pt;}
.x9_c00172{left:171.788428pt;}
.x5_c00172{left:223.656781pt;}
.x4_c00172{left:236.642339pt;}
.x3_c00172{left:252.157982pt;}
.x6_c00172{left:313.272323pt;}
.x1_c00172{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_6a5df09709f11ef4b8f8d413.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.113000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:0.000000px;}
._16_c00173{margin-left:-4.075904px;}
._10_c00173{margin-left:-3.035284px;}
._0_c00173{margin-left:-1.488896px;}
._1_c00173{width:1.017520px;}
._5_c00173{width:2.691203px;}
._6_c00173{width:4.698420px;}
._f_c00173{width:5.763430px;}
._b_c00173{width:7.010810px;}
._c_c00173{width:8.301959px;}
._e_c00173{width:9.547299px;}
._d_c00173{width:10.567229px;}
._14_c00173{width:11.616658px;}
._15_c00173{width:12.891697px;}
._4_c00173{width:14.369204px;}
._3_c00173{width:15.764897px;}
._11_c00173{width:16.811819px;}
._17_c00173{width:21.298860px;}
._a_c00173{width:24.013686px;}
._9_c00173{width:26.145663px;}
._7_c00173{width:27.265017px;}
._8_c00173{width:29.123085px;}
._13_c00173{width:38.355093px;}
._12_c00173{width:40.729376px;}
._2_c00173{width:696.529746px;}
.fc1_c00173{color:rgb(105,148,45);}
.fc0_c00173{color:rgb(35,31,32);}
.fs0_c00173{font-size:65.550574px;}
.fs1_c00173{font-size:71.249972px;}
.y0_c00173{bottom:0.000000px;}
.y1_c00173{bottom:0.120938px;}
.y8_c00173{bottom:6.826644px;}
.y3_c00173{bottom:83.237254px;}
.y2_c00173{bottom:83.951629px;}
.y1e_c00173{bottom:113.934408px;}
.y1d_c00173{bottom:145.464695px;}
.y1c_c00173{bottom:176.990032px;}
.y1b_c00173{bottom:239.511957px;}
.y1a_c00173{bottom:271.040145px;}
.y19_c00173{bottom:302.568932px;}
.y18_c00173{bottom:365.265907px;}
.y17_c00173{bottom:396.794095px;}
.y16_c00173{bottom:459.316020px;}
.y15_c00173{bottom:490.844807px;}
.y14_c00173{bottom:522.371494px;}
.y13_c00173{bottom:583.468120px;}
.y12_c00173{bottom:647.949644px;}
.y11_c00173{bottom:679.478431px;}
.y10_c00173{bottom:740.575057px;}
.yf_c00173{bottom:809.866329px;}
.ye_c00173{bottom:841.392267px;}
.yd_c00173{bottom:872.918954px;}
.yc_c00173{bottom:945.416025px;}
.yb_c00173{bottom:976.946312px;}
.ya_c00173{bottom:1008.471650px;}
.y9_c00173{bottom:1040.001937px;}
.y7_c00173{bottom:1122.588113px;}
.y6_c00173{bottom:1143.604455px;}
.y5_c00173{bottom:1164.623647px;}
.y4_c00173{bottom:1185.642088px;}
.h2_c00173{height:58.667764px;}
.h3_c00173{height:63.768724px;}
.h6_c00173{height:63.839974px;}
.h7_c00173{height:63.911224px;}
.h4_c00173{height:64.053724px;}
.h5_c00173{height:1249.830756px;}
.h1_c00173{height:1262.879062px;}
.h0_c00173{height:1263.000000px;}
.w2_c00173{width:883.195846px;}
.w1_c00173{width:892.414744px;}
.w0_c00173{width:892.500000px;}
.x0_c00173{left:0.000000px;}
.x7_c00173{left:1.541954px;}
.x2_c00173{left:126.216356px;}
.x9_c00173{left:139.825432px;}
.x8_c00173{left:192.373469px;}
.x5_c00173{left:251.613879px;}
.x4_c00173{left:266.222632px;}
.x3_c00173{left:283.677730px;}
.x6_c00173{left:352.431363px;}
.x1_c00173{left:497.784645px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws0_c00173{word-spacing:0.000000pt;}
._16_c00173{margin-left:-3.623026pt;}
._10_c00173{margin-left:-2.698030pt;}
._0_c00173{margin-left:-1.323463pt;}
._1_c00173{width:0.904462pt;}
._5_c00173{width:2.392180pt;}
._6_c00173{width:4.176373pt;}
._f_c00173{width:5.123049pt;}
._b_c00173{width:6.231831pt;}
._c_c00173{width:7.379519pt;}
._e_c00173{width:8.486488pt;}
._d_c00173{width:9.393093pt;}
._14_c00173{width:10.325918pt;}
._15_c00173{width:11.459286pt;}
._4_c00173{width:12.772626pt;}
._3_c00173{width:14.013242pt;}
._11_c00173{width:14.943839pt;}
._17_c00173{width:18.932320pt;}
._a_c00173{width:21.345499pt;}
._9_c00173{width:23.240589pt;}
._7_c00173{width:24.235571pt;}
._8_c00173{width:25.887187pt;}
._13_c00173{width:34.093416pt;}
._12_c00173{width:36.203890pt;}
._2_c00173{width:619.137552pt;}
.fs0_c00173{font-size:58.267177pt;}
.fs1_c00173{font-size:63.333308pt;}
.y0_c00173{bottom:0.000000pt;}
.y1_c00173{bottom:0.107500pt;}
.y8_c00173{bottom:6.068128pt;}
.y3_c00173{bottom:73.988670pt;}
.y2_c00173{bottom:74.623670pt;}
.y1e_c00173{bottom:101.275029pt;}
.y1d_c00173{bottom:129.301951pt;}
.y1c_c00173{bottom:157.324473pt;}
.y1b_c00173{bottom:212.899518pt;}
.y1a_c00173{bottom:240.924573pt;}
.y19_c00173{bottom:268.950162pt;}
.y18_c00173{bottom:324.680806pt;}
.y17_c00173{bottom:352.705862pt;}
.y16_c00173{bottom:408.280906pt;}
.y15_c00173{bottom:436.306495pt;}
.y14_c00173{bottom:464.330217pt;}
.y13_c00173{bottom:518.638329pt;}
.y12_c00173{bottom:575.955239pt;}
.y11_c00173{bottom:603.980828pt;}
.y10_c00173{bottom:658.288940pt;}
.yf_c00173{bottom:719.881182pt;}
.ye_c00173{bottom:747.904237pt;}
.yd_c00173{bottom:775.927959pt;}
.yc_c00173{bottom:840.369800pt;}
.yb_c00173{bottom:868.396722pt;}
.ya_c00173{bottom:896.419244pt;}
.y9_c00173{bottom:924.446166pt;}
.y7_c00173{bottom:997.856101pt;}
.y6_c00173{bottom:1016.537293pt;}
.y5_c00173{bottom:1035.221019pt;}
.y4_c00173{bottom:1053.904078pt;}
.h2_c00173{height:52.149123pt;}
.h3_c00173{height:56.683311pt;}
.h6_c00173{height:56.746644pt;}
.h7_c00173{height:56.809977pt;}
.h4_c00173{height:56.936644pt;}
.h5_c00173{height:1110.960672pt;}
.h1_c00173{height:1122.559167pt;}
.h0_c00173{height:1122.666667pt;}
.w2_c00173{width:785.062974pt;}
.w1_c00173{width:793.257550pt;}
.w0_c00173{width:793.333333pt;}
.x0_c00173{left:0.000000pt;}
.x7_c00173{left:1.370626pt;}
.x2_c00173{left:112.192317pt;}
.x9_c00173{left:124.289273pt;}
.x8_c00173{left:170.998639pt;}
.x5_c00173{left:223.656781pt;}
.x4_c00173{left:236.642339pt;}
.x3_c00173{left:252.157982pt;}
.x6_c00173{left:313.272323pt;}
.x1_c00173{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.115000;font-style:normal;font-weight:normal;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_6a5df09709f11ef4b8f8d413.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.112000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls0_c00174{letter-spacing:0.000000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00174{word-spacing:0.000000px;}
._b_c00174{margin-left:-4.705724px;}
._3_c00174{margin-left:-3.052396px;}
._0_c00174{margin-left:-1.488896px;}
._1_c00174{width:1.017520px;}
._7_c00174{width:2.962637px;}
._6_c00174{width:4.880711px;}
._9_c00174{width:11.896251px;}
._8_c00174{width:13.777967px;}
._a_c00174{width:15.119978px;}
._5_c00174{width:16.324340px;}
._4_c00174{width:19.966616px;}
._10_c00174{width:34.146153px;}
._d_c00174{width:35.772903px;}
._13_c00174{width:38.906046px;}
._12_c00174{width:41.105950px;}
._11_c00174{width:49.201169px;}
._e_c00174{width:50.627451px;}
._f_c00174{width:51.907450px;}
._c_c00174{width:59.692528px;}
._2_c00174{width:696.529746px;}
.fc1_c00174{color:rgb(105,148,45);}
.fc0_c00174{color:rgb(35,31,32);}
.fs0_c00174{font-size:65.550574px;}
.fs1_c00174{font-size:71.249972px;}
.y0_c00174{bottom:0.000000px;}
.y1_c00174{bottom:0.120938px;}
.y8_c00174{bottom:6.826644px;}
.y3_c00174{bottom:83.237254px;}
.y2_c00174{bottom:83.951629px;}
.y1a_c00174{bottom:202.107072px;}
.y19_c00174{bottom:233.636610px;}
.y18_c00174{bottom:296.334185px;}
.y17_c00174{bottom:327.860872px;}
.y16_c00174{bottom:390.382047px;}
.y15_c00174{bottom:421.912335px;}
.y14_c00174{bottom:483.896960px;}
.y13_c00174{bottom:545.885785px;}
.y12_c00174{bottom:608.407710px;}
.y11_c00174{bottom:639.934397px;}
.y10_c00174{bottom:671.466035px;}
.yf_c00174{bottom:738.791708px;}
.ye_c00174{bottom:807.726130px;}
.yd_c00174{bottom:839.256418px;}
.yc_c00174{bottom:870.783855px;}
.yb_c00174{bottom:931.880481px;}
.ya_c00174{bottom:990.656457px;}
.y9_c00174{bottom:1036.971938px;}
.y7_c00174{bottom:1122.588113px;}
.y6_c00174{bottom:1143.604455px;}
.y5_c00174{bottom:1164.623647px;}
.y4_c00174{bottom:1185.642088px;}
.h2_c00174{height:58.667764px;}
.h3_c00174{height:63.768724px;}
.h7_c00174{height:63.839974px;}
.h6_c00174{height:63.911224px;}
.h4_c00174{height:64.053724px;}
.h5_c00174{height:1249.830756px;}
.h1_c00174{height:1262.879062px;}
.h0_c00174{height:1263.000000px;}
.w2_c00174{width:883.195846px;}
.w1_c00174{width:892.414744px;}
.w0_c00174{width:892.500000px;}
.x0_c00174{left:0.000000px;}
.x7_c00174{left:1.541954px;}
.x2_c00174{left:126.216356px;}
.x8_c00174{left:139.826840px;}
.x9_c00174{left:193.088968px;}
.xa_c00174{left:227.103893px;}
.x5_c00174{left:251.613879px;}
.xb_c00174{left:253.820896px;}
.x4_c00174{left:266.222632px;}
.x3_c00174{left:283.677730px;}
.x6_c00174{left:352.431363px;}
.x1_c00174{left:497.784645px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:0.000000pt;}
._b_c00174{margin-left:-4.182866pt;}
._3_c00174{margin-left:-2.713241pt;}
._0_c00174{margin-left:-1.323463pt;}
._1_c00174{width:0.904462pt;}
._7_c00174{width:2.633455pt;}
._6_c00174{width:4.338410pt;}
._9_c00174{width:10.574445pt;}
._8_c00174{width:12.247082pt;}
._a_c00174{width:13.439981pt;}
._5_c00174{width:14.510524pt;}
._4_c00174{width:17.748103pt;}
._10_c00174{width:30.352136pt;}
._d_c00174{width:31.798136pt;}
._13_c00174{width:34.583152pt;}
._12_c00174{width:36.538622pt;}
._11_c00174{width:43.734373pt;}
._e_c00174{width:45.002179pt;}
._f_c00174{width:46.139955pt;}
._c_c00174{width:53.060025pt;}
._2_c00174{width:619.137552pt;}
.fs0_c00174{font-size:58.267177pt;}
.fs1_c00174{font-size:63.333308pt;}
.y0_c00174{bottom:0.000000pt;}
.y1_c00174{bottom:0.107500pt;}
.y8_c00174{bottom:6.068128pt;}
.y3_c00174{bottom:73.988670pt;}
.y2_c00174{bottom:74.623670pt;}
.y1a_c00174{bottom:179.650731pt;}
.y19_c00174{bottom:207.676987pt;}
.y18_c00174{bottom:263.408164pt;}
.y17_c00174{bottom:291.431886pt;}
.y16_c00174{bottom:347.006264pt;}
.y15_c00174{bottom:375.033186pt;}
.y14_c00174{bottom:430.130631pt;}
.y13_c00174{bottom:485.231809pt;}
.y12_c00174{bottom:540.806853pt;}
.y11_c00174{bottom:568.830575pt;}
.y10_c00174{bottom:596.858697pt;}
.yf_c00174{bottom:656.703740pt;}
.ye_c00174{bottom:717.978782pt;}
.yd_c00174{bottom:746.005705pt;}
.yc_c00174{bottom:774.030093pt;}
.yb_c00174{bottom:828.338205pt;}
.ya_c00174{bottom:880.583517pt;}
.y9_c00174{bottom:921.752834pt;}
.y7_c00174{bottom:997.856101pt;}
.y6_c00174{bottom:1016.537293pt;}
.y5_c00174{bottom:1035.221019pt;}
.y4_c00174{bottom:1053.904078pt;}
.h2_c00174{height:52.149123pt;}
.h3_c00174{height:56.683311pt;}
.h7_c00174{height:56.746644pt;}
.h6_c00174{height:56.809977pt;}
.h4_c00174{height:56.936644pt;}
.h5_c00174{height:1110.960672pt;}
.h1_c00174{height:1122.559167pt;}
.h0_c00174{height:1122.666667pt;}
.w2_c00174{width:785.062974pt;}
.w1_c00174{width:793.257550pt;}
.w0_c00174{width:793.333333pt;}
.x0_c00174{left:0.000000pt;}
.x7_c00174{left:1.370626pt;}
.x2_c00174{left:112.192317pt;}
.x8_c00174{left:124.290524pt;}
.x9_c00174{left:171.634639pt;}
.xa_c00174{left:201.870127pt;}
.x5_c00174{left:223.656781pt;}
.xb_c00174{left:225.618574pt;}
.x4_c00174{left:236.642339pt;}
.x3_c00174{left:252.157982pt;}
.x6_c00174{left:313.272323pt;}
.x1_c00174{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.113000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:-16.387643px;}
.ws1_c00175{word-spacing:0.000000px;}
._1e_c00175{margin-left:-4.153357px;}
._17_c00175{margin-left:-2.832392px;}
._0_c00175{margin-left:-1.488896px;}
._1_c00175{width:1.017520px;}
._16_c00175{width:2.145467px;}
._1a_c00175{width:3.281509px;}
._19_c00175{width:4.340451px;}
._e_c00175{width:6.126843px;}
._f_c00175{width:8.357290px;}
._1b_c00175{width:10.586726px;}
._18_c00175{width:11.681989px;}
._1d_c00175{width:13.095518px;}
._13_c00175{width:14.478828px;}
._15_c00175{width:16.448011px;}
._1c_c00175{width:18.878327px;}
._14_c00175{width:20.094188px;}
._8_c00175{width:22.140963px;}
._7_c00175{width:23.459460px;}
._9_c00175{width:24.848222px;}
._1f_c00175{width:26.923903px;}
._20_c00175{width:30.426455px;}
._4_c00175{width:32.319061px;}
._5_c00175{width:34.002975px;}
._6_c00175{width:36.252554px;}
._10_c00175{width:43.342268px;}
._12_c00175{width:44.924243px;}
._11_c00175{width:46.254361px;}
._3_c00175{width:59.692528px;}
._a_c00175{width:62.683532px;}
._b_c00175{width:65.328170px;}
._c_c00175{width:71.174628px;}
._d_c00175{width:72.543736px;}
._2_c00175{width:696.529746px;}
.fc1_c00175{color:rgb(105,148,45);}
.fc0_c00175{color:rgb(35,31,32);}
.fs0_c00175{font-size:65.550574px;}
.fs1_c00175{font-size:71.249972px;}
.y0_c00175{bottom:0.000000px;}
.y1_c00175{bottom:0.120938px;}
.y8_c00175{bottom:6.826644px;}
.y3_c00175{bottom:83.237254px;}
.y2_c00175{bottom:83.951629px;}
.y1e_c00175{bottom:129.790001px;}
.y1d_c00175{bottom:161.316689px;}
.y1c_c00175{bottom:223.839964px;}
.y1b_c00175{bottom:255.366651px;}
.y1a_c00175{bottom:318.064976px;}
.y19_c00175{bottom:349.593763px;}
.y18_c00175{bottom:412.117038px;}
.y17_c00175{bottom:443.642376px;}
.y16_c00175{bottom:510.973599px;}
.y15_c00175{bottom:579.907271px;}
.y14_c00175{bottom:611.433959px;}
.y13_c00175{bottom:642.961396px;}
.y12_c00175{bottom:674.489583px;}
.y11_c00175{bottom:756.782551px;}
.y10_c00175{bottom:788.312088px;}
.yf_c00175{bottom:850.832513px;}
.ye_c00175{bottom:882.360700px;}
.yd_c00175{bottom:913.889488px;}
.yc_c00175{bottom:976.409163px;}
.yb_c00175{bottom:1007.937950px;}
.ya_c00175{bottom:1039.463287px;}
.y9_c00175{bottom:1070.994925px;}
.y7_c00175{bottom:1122.588113px;}
.y6_c00175{bottom:1143.604455px;}
.y5_c00175{bottom:1164.623647px;}
.y4_c00175{bottom:1185.642088px;}
.h2_c00175{height:58.667764px;}
.h3_c00175{height:63.768724px;}
.h6_c00175{height:63.839974px;}
.h7_c00175{height:63.911224px;}
.h4_c00175{height:64.053724px;}
.h5_c00175{height:1249.830756px;}
.h1_c00175{height:1262.879062px;}
.h0_c00175{height:1263.000000px;}
.w2_c00175{width:883.195846px;}
.w1_c00175{width:892.414744px;}
.w0_c00175{width:892.500000px;}
.x0_c00175{left:0.000000px;}
.x7_c00175{left:1.541954px;}
.x2_c00175{left:126.216356px;}
.xb_c00175{left:139.832112px;}
.xc_c00175{left:166.553012px;}
.xa_c00175{left:192.377150px;}
.x8_c00175{left:227.107455px;}
.x5_c00175{left:251.613879px;}
.x9_c00175{left:253.821460px;}
.x4_c00175{left:266.222632px;}
.x3_c00175{left:283.677730px;}
.x6_c00175{left:352.431363px;}
.x1_c00175{left:497.784645px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:-14.566794pt;}
.ws1_c00175{word-spacing:0.000000pt;}
._1e_c00175{margin-left:-3.691873pt;}
._17_c00175{margin-left:-2.517682pt;}
._0_c00175{margin-left:-1.323463pt;}
._1_c00175{width:0.904462pt;}
._16_c00175{width:1.907082pt;}
._1a_c00175{width:2.916897pt;}
._19_c00175{width:3.858178pt;}
._e_c00175{width:5.446083pt;}
._f_c00175{width:7.428703pt;}
._1b_c00175{width:9.410423pt;}
._18_c00175{width:10.383990pt;}
._1d_c00175{width:11.640461pt;}
._13_c00175{width:12.870070pt;}
._15_c00175{width:14.620454pt;}
._1c_c00175{width:16.780735pt;}
._14_c00175{width:17.861500pt;}
._8_c00175{width:19.680856pt;}
._7_c00175{width:20.852853pt;}
._9_c00175{width:22.087309pt;}
._1f_c00175{width:23.932358pt;}
._20_c00175{width:27.045738pt;}
._4_c00175{width:28.728054pt;}
._5_c00175{width:30.224866pt;}
._6_c00175{width:32.224493pt;}
._10_c00175{width:38.526461pt;}
._12_c00175{width:39.932660pt;}
._11_c00175{width:41.114987pt;}
._3_c00175{width:53.060025pt;}
._a_c00175{width:55.718695pt;}
._b_c00175{width:58.069485pt;}
._c_c00175{width:63.266336pt;}
._d_c00175{width:64.483321pt;}
._2_c00175{width:619.137552pt;}
.fs0_c00175{font-size:58.267177pt;}
.fs1_c00175{font-size:63.333308pt;}
.y0_c00175{bottom:0.000000pt;}
.y1_c00175{bottom:0.107500pt;}
.y8_c00175{bottom:6.068128pt;}
.y3_c00175{bottom:73.988670pt;}
.y2_c00175{bottom:74.623670pt;}
.y1e_c00175{bottom:115.368890pt;}
.y1d_c00175{bottom:143.392612pt;}
.y1c_c00175{bottom:198.968857pt;}
.y1b_c00175{bottom:226.992579pt;}
.y1a_c00175{bottom:282.724423pt;}
.y19_c00175{bottom:310.750012pt;}
.y18_c00175{bottom:366.326256pt;}
.y17_c00175{bottom:394.348778pt;}
.y16_c00175{bottom:454.198755pt;}
.y15_c00175{bottom:515.473130pt;}
.y14_c00175{bottom:543.496852pt;}
.y13_c00175{bottom:571.521241pt;}
.y12_c00175{bottom:599.546296pt;}
.y11_c00175{bottom:672.695600pt;}
.y10_c00175{bottom:700.721856pt;}
.yf_c00175{bottom:756.295567pt;}
.ye_c00175{bottom:784.320623pt;}
.yd_c00175{bottom:812.346211pt;}
.yc_c00175{bottom:867.919256pt;}
.yb_c00175{bottom:895.944845pt;}
.ya_c00175{bottom:923.967367pt;}
.y9_c00175{bottom:951.995489pt;}
.y7_c00175{bottom:997.856101pt;}
.y6_c00175{bottom:1016.537293pt;}
.y5_c00175{bottom:1035.221019pt;}
.y4_c00175{bottom:1053.904078pt;}
.h2_c00175{height:52.149123pt;}
.h3_c00175{height:56.683311pt;}
.h6_c00175{height:56.746644pt;}
.h7_c00175{height:56.809977pt;}
.h4_c00175{height:56.936644pt;}
.h5_c00175{height:1110.960672pt;}
.h1_c00175{height:1122.559167pt;}
.h0_c00175{height:1122.666667pt;}
.w2_c00175{width:785.062974pt;}
.w1_c00175{width:793.257550pt;}
.w0_c00175{width:793.333333pt;}
.x0_c00175{left:0.000000pt;}
.x7_c00175{left:1.370626pt;}
.x2_c00175{left:112.192317pt;}
.xb_c00175{left:124.295210pt;}
.xc_c00175{left:148.047122pt;}
.xa_c00175{left:171.001911pt;}
.x8_c00175{left:201.873293pt;}
.x5_c00175{left:223.656781pt;}
.x9_c00175{left:225.619075pt;}
.x4_c00175{left:236.642339pt;}
.x3_c00175{left:252.157982pt;}
.x6_c00175{left:313.272323pt;}
.x1_c00175{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.113000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls0_c00176{letter-spacing:0.000000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00176{word-spacing:-16.387643px;}
.ws1_c00176{word-spacing:0.000000px;}
._8_c00176{margin-left:-3.582025px;}
._0_c00176{margin-left:-1.488896px;}
._1_c00176{width:1.017520px;}
._14_c00176{width:2.623349px;}
._15_c00176{width:3.862044px;}
._f_c00176{width:4.916475px;}
._10_c00176{width:6.093399px;}
._5_c00176{width:7.695911px;}
._4_c00176{width:8.916161px;}
._3_c00176{width:10.809106px;}
._c_c00176{width:12.473829px;}
._b_c00176{width:13.527170px;}
._13_c00176{width:14.592156px;}
._a_c00176{width:15.607858px;}
._7_c00176{width:16.741496px;}
._6_c00176{width:19.347939px;}
._d_c00176{width:21.342255px;}
._e_c00176{width:22.602322px;}
._12_c00176{width:29.558230px;}
._11_c00176{width:30.884448px;}
._16_c00176{width:37.102643px;}
._18_c00176{width:39.198935px;}
._17_c00176{width:40.417437px;}
._9_c00176{width:59.692528px;}
._2_c00176{width:696.529746px;}
.fc1_c00176{color:rgb(105,148,45);}
.fc0_c00176{color:rgb(35,31,32);}
.fs0_c00176{font-size:65.550574px;}
.fs1_c00176{font-size:71.249972px;}
.y0_c00176{bottom:0.000000px;}
.y1_c00176{bottom:0.120938px;}
.y8_c00176{bottom:6.826644px;}
.y3_c00176{bottom:83.237254px;}
.y2_c00176{bottom:83.951629px;}
.y1d_c00176{bottom:136.555749px;}
.y1c_c00176{bottom:168.087386px;}
.y1b_c00176{bottom:199.611223px;}
.y1a_c00176{bottom:231.140011px;}
.y19_c00176{bottom:262.668198px;}
.y18_c00176{bottom:294.195636px;}
.y17_c00176{bottom:357.075310px;}
.y16_c00176{bottom:388.601998px;}
.y15_c00176{bottom:420.127935px;}
.y14_c00176{bottom:451.657473px;}
.y13_c00176{bottom:483.183410px;}
.y12_c00176{bottom:550.517483px;}
.y11_c00176{bottom:623.724054px;}
.y10_c00176{bottom:685.711529px;}
.yf_c00176{bottom:748.231954px;}
.ye_c00176{bottom:779.760141px;}
.yd_c00176{bottom:841.747617px;}
.yc_c00176{bottom:914.246038px;}
.yb_c00176{bottom:976.766463px;}
.ya_c00176{bottom:1008.293150px;}
.y9_c00176{bottom:1039.823437px;}
.y7_c00176{bottom:1122.588113px;}
.y6_c00176{bottom:1143.604455px;}
.y5_c00176{bottom:1164.623647px;}
.y4_c00176{bottom:1185.642088px;}
.h2_c00176{height:58.667764px;}
.h3_c00176{height:63.768724px;}
.h6_c00176{height:63.839974px;}
.h7_c00176{height:63.911224px;}
.h4_c00176{height:64.053724px;}
.h5_c00176{height:1249.830756px;}
.h1_c00176{height:1262.879062px;}
.h0_c00176{height:1263.000000px;}
.w2_c00176{width:883.195846px;}
.w1_c00176{width:892.414744px;}
.w0_c00176{width:892.500000px;}
.x0_c00176{left:0.000000px;}
.x7_c00176{left:1.541954px;}
.x2_c00176{left:126.216356px;}
.x9_c00176{left:139.823933px;}
.xb_c00176{left:166.545433px;}
.x8_c00176{left:192.373469px;}
.xa_c00176{left:227.102574px;}
.x5_c00176{left:251.613879px;}
.x4_c00176{left:266.222632px;}
.x3_c00176{left:283.677730px;}
.x6_c00176{left:352.431363px;}
.x1_c00176{left:497.784645px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:-14.566794pt;}
.ws1_c00176{word-spacing:0.000000pt;}
._8_c00176{margin-left:-3.184022pt;}
._0_c00176{margin-left:-1.323463pt;}
._1_c00176{width:0.904462pt;}
._14_c00176{width:2.331866pt;}
._15_c00176{width:3.432928pt;}
._f_c00176{width:4.370200pt;}
._10_c00176{width:5.416355pt;}
._5_c00176{width:6.840810pt;}
._4_c00176{width:7.925476pt;}
._3_c00176{width:9.608094pt;}
._c_c00176{width:11.087848pt;}
._b_c00176{width:12.024151pt;}
._13_c00176{width:12.970806pt;}
._a_c00176{width:13.873652pt;}
._7_c00176{width:14.881330pt;}
._6_c00176{width:17.198168pt;}
._d_c00176{width:18.970894pt;}
._e_c00176{width:20.090953pt;}
._12_c00176{width:26.273982pt;}
._11_c00176{width:27.452843pt;}
._16_c00176{width:32.980127pt;}
._18_c00176{width:34.843497pt;}
._17_c00176{width:35.926610pt;}
._9_c00176{width:53.060025pt;}
._2_c00176{width:619.137552pt;}
.fs0_c00176{font-size:58.267177pt;}
.fs1_c00176{font-size:63.333308pt;}
.y0_c00176{bottom:0.000000pt;}
.y1_c00176{bottom:0.107500pt;}
.y8_c00176{bottom:6.068128pt;}
.y3_c00176{bottom:73.988670pt;}
.y2_c00176{bottom:74.623670pt;}
.y1d_c00176{bottom:121.382888pt;}
.y1c_c00176{bottom:149.411010pt;}
.y1b_c00176{bottom:177.432199pt;}
.y1a_c00176{bottom:205.457787pt;}
.y19_c00176{bottom:233.482843pt;}
.y18_c00176{bottom:261.507232pt;}
.y17_c00176{bottom:317.400276pt;}
.y16_c00176{bottom:345.423998pt;}
.y15_c00176{bottom:373.447054pt;}
.y14_c00176{bottom:401.473309pt;}
.y13_c00176{bottom:429.496364pt;}
.y12_c00176{bottom:489.348874pt;}
.y11_c00176{bottom:554.421381pt;}
.y10_c00176{bottom:609.521359pt;}
.yf_c00176{bottom:665.095070pt;}
.ye_c00176{bottom:693.120126pt;}
.yd_c00176{bottom:748.220104pt;}
.yc_c00176{bottom:812.663145pt;}
.yb_c00176{bottom:868.236856pt;}
.ya_c00176{bottom:896.260578pt;}
.y9_c00176{bottom:924.287500pt;}
.y7_c00176{bottom:997.856101pt;}
.y6_c00176{bottom:1016.537293pt;}
.y5_c00176{bottom:1035.221019pt;}
.y4_c00176{bottom:1053.904078pt;}
.h2_c00176{height:52.149123pt;}
.h3_c00176{height:56.683311pt;}
.h6_c00176{height:56.746644pt;}
.h7_c00176{height:56.809977pt;}
.h4_c00176{height:56.936644pt;}
.h5_c00176{height:1110.960672pt;}
.h1_c00176{height:1122.559167pt;}
.h0_c00176{height:1122.666667pt;}
.w2_c00176{width:785.062974pt;}
.w1_c00176{width:793.257550pt;}
.w0_c00176{width:793.333333pt;}
.x0_c00176{left:0.000000pt;}
.x7_c00176{left:1.370626pt;}
.x2_c00176{left:112.192317pt;}
.x9_c00176{left:124.287941pt;}
.xb_c00176{left:148.040385pt;}
.x8_c00176{left:170.998639pt;}
.xa_c00176{left:201.868955pt;}
.x5_c00176{left:223.656781pt;}
.x4_c00176{left:236.642339pt;}
.x3_c00176{left:252.157982pt;}
.x6_c00176{left:313.272323pt;}
.x1_c00176{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.113000;font-style: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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls0_c00177{letter-spacing:0.000000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-16.387643px;}
.ws1_c00177{word-spacing:0.000000px;}
._c_c00177{margin-left:-4.213808px;}
._0_c00177{margin-left:-1.488896px;}
._1_c00177{width:1.017520px;}
._3_c00177{width:2.385908px;}
._11_c00177{width:3.521077px;}
._10_c00177{width:5.249605px;}
._7_c00177{width:6.515888px;}
._5_c00177{width:7.814422px;}
._e_c00177{width:12.151661px;}
._f_c00177{width:14.269089px;}
._6_c00177{width:16.407800px;}
._d_c00177{width:29.012455px;}
._8_c00177{width:30.384765px;}
._b_c00177{width:31.745953px;}
._a_c00177{width:32.788495px;}
._9_c00177{width:34.078426px;}
._4_c00177{width:58.994826px;}
._2_c00177{width:696.529746px;}
.fc1_c00177{color:rgb(105,148,45);}
.fc0_c00177{color:rgb(35,31,32);}
.fs0_c00177{font-size:65.550574px;}
.fs1_c00177{font-size:71.249972px;}
.y0_c00177{bottom:0.000000px;}
.y1_c00177{bottom:0.120938px;}
.y8_c00177{bottom:6.826644px;}
.y3_c00177{bottom:83.237254px;}
.y2_c00177{bottom:83.951629px;}
.y10_c00177{bottom:787.599738px;}
.yf_c00177{bottom:819.126426px;}
.ye_c00177{bottom:850.653863px;}
.yd_c00177{bottom:913.532188px;}
.yc_c00177{bottom:945.058875px;}
.yb_c00177{bottom:976.589163px;}
.ya_c00177{bottom:1039.463287px;}
.y9_c00177{bottom:1070.994925px;}
.y7_c00177{bottom:1122.588113px;}
.y6_c00177{bottom:1143.604455px;}
.y5_c00177{bottom:1164.623647px;}
.y4_c00177{bottom:1185.642088px;}
.h2_c00177{height:58.667764px;}
.h3_c00177{height:63.768724px;}
.h6_c00177{height:63.839974px;}
.h7_c00177{height:63.911224px;}
.h4_c00177{height:64.053724px;}
.h5_c00177{height:1249.830756px;}
.h1_c00177{height:1262.879062px;}
.h0_c00177{height:1263.000000px;}
.w2_c00177{width:883.195846px;}
.w1_c00177{width:892.414744px;}
.w0_c00177{width:892.500000px;}
.x0_c00177{left:0.000000px;}
.x7_c00177{left:1.541954px;}
.x2_c00177{left:126.216356px;}
.x9_c00177{left:166.545817px;}
.x8_c00177{left:193.265968px;}
.x5_c00177{left:251.613879px;}
.x4_c00177{left:266.222632px;}
.x3_c00177{left:283.677730px;}
.x6_c00177{left:352.431363px;}
.x1_c00177{left:497.784645px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:-14.566794pt;}
.ws1_c00177{word-spacing:0.000000pt;}
._c_c00177{margin-left:-3.745607pt;}
._0_c00177{margin-left:-1.323463pt;}
._1_c00177{width:0.904462pt;}
._3_c00177{width:2.120807pt;}
._11_c00177{width:3.129846pt;}
._10_c00177{width:4.666316pt;}
._7_c00177{width:5.791900pt;}
._5_c00177{width:6.946153pt;}
._e_c00177{width:10.801477pt;}
._f_c00177{width:12.683635pt;}
._6_c00177{width:14.584711pt;}
._d_c00177{width:25.788849pt;}
._8_c00177{width:27.008680pt;}
._b_c00177{width:28.218625pt;}
._a_c00177{width:29.145329pt;}
._9_c00177{width:30.291934pt;}
._4_c00177{width:52.439846pt;}
._2_c00177{width:619.137552pt;}
.fs0_c00177{font-size:58.267177pt;}
.fs1_c00177{font-size:63.333308pt;}
.y0_c00177{bottom:0.000000pt;}
.y1_c00177{bottom:0.107500pt;}
.y8_c00177{bottom:6.068128pt;}
.y3_c00177{bottom:73.988670pt;}
.y2_c00177{bottom:74.623670pt;}
.y10_c00177{bottom:700.088656pt;}
.yf_c00177{bottom:728.112378pt;}
.ye_c00177{bottom:756.136767pt;}
.yd_c00177{bottom:812.028611pt;}
.yc_c00177{bottom:840.052334pt;}
.yb_c00177{bottom:868.079256pt;}
.ya_c00177{bottom:923.967367pt;}
.y9_c00177{bottom:951.995489pt;}
.y7_c00177{bottom:997.856101pt;}
.y6_c00177{bottom:1016.537293pt;}
.y5_c00177{bottom:1035.221019pt;}
.y4_c00177{bottom:1053.904078pt;}
.h2_c00177{height:52.149123pt;}
.h3_c00177{height:56.683311pt;}
.h6_c00177{height:56.746644pt;}
.h7_c00177{height:56.809977pt;}
.h4_c00177{height:56.936644pt;}
.h5_c00177{height:1110.960672pt;}
.h1_c00177{height:1122.559167pt;}
.h0_c00177{height:1122.666667pt;}
.w2_c00177{width:785.062974pt;}
.w1_c00177{width:793.257550pt;}
.w0_c00177{width:793.333333pt;}
.x0_c00177{left:0.000000pt;}
.x7_c00177{left:1.370626pt;}
.x2_c00177{left:112.192317pt;}
.x9_c00177{left:148.040726pt;}
.x8_c00177{left:171.791972pt;}
.x5_c00177{left:223.656781pt;}
.x4_c00177{left:236.642339pt;}
.x3_c00177{left:252.157982pt;}
.x6_c00177{left:313.272323pt;}
.x1_c00177{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls0_c00178{letter-spacing:0.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:0.000000px;}
._0_c00178{width:1.223265px;}
.fc0_c00178{color:rgb(35,31,32);}
.fs0_c00178{font-size:106.873757px;}
.y0_c00178{bottom:0.000000px;}
.y1_c00178{bottom:0.120938px;}
.y2_c00178{bottom:433.606889px;}
.h2_c00178{height:95.865760px;}
.h1_c00178{height:1262.879062px;}
.h0_c00178{height:1263.000000px;}
.w1_c00178{width:892.414744px;}
.w0_c00178{width:892.500000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:108.404900px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:0.000000pt;}
._0_c00178{width:1.087346pt;}
.fs0_c00178{font-size:94.998895pt;}
.y0_c00178{bottom:0.000000pt;}
.y1_c00178{bottom:0.107500pt;}
.y2_c00178{bottom:385.428346pt;}
.h2_c00178{height:85.214009pt;}
.h1_c00178{height:1122.559167pt;}
.h0_c00178{height:1122.666667pt;}
.w1_c00178{width:793.257550pt;}
.w0_c00178{width:793.333333pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.115000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.113000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:0.632000;font-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_c00179{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00179{word-spacing:-17.812493px;}
.ws0_c00179{word-spacing:-4.273914px;}
.ws4_c00179{word-spacing:-4.258427px;}
.ws2_c00179{word-spacing:-4.258034px;}
.ws1_c00179{word-spacing:-4.257706px;}
.ws3_c00179{word-spacing:-4.256985px;}
.ws6_c00179{word-spacing:0.000000px;}
._0_c00179{margin-left:-1.029993px;}
._1_c00179{width:1.238859px;}
._6_c00179{width:2.655579px;}
._2_c00179{width:4.501901px;}
._4_c00179{width:5.639363px;}
._9_c00179{width:7.402906px;}
._3_c00179{width:9.332752px;}
._5_c00179{width:10.765209px;}
._8_c00179{width:11.910619px;}
._7_c00179{width:13.917927px;}
.fc1_c00179{color:rgb(35,31,32);}
.fc0_c00179{color:rgb(105,148,45);}
.fs2_c00179{font-size:65.550574px;}
.fs0_c00179{font-size:71.249972px;}
.fs1_c00179{font-size:83.362767px;}
.y0_c00179{bottom:0.000000px;}
.y1_c00179{bottom:0.120938px;}
.y6_c00179{bottom:6.826644px;}
.y17_c00179{bottom:489.956657px;}
.y16_c00179{bottom:529.856641px;}
.y15_c00179{bottom:569.755125px;}
.y14_c00179{bottom:598.966564px;}
.y13_c00179{bottom:627.114052px;}
.y12_c00179{bottom:665.944087px;}
.y11_c00179{bottom:705.841071px;}
.y10_c00179{bottom:745.742555px;}
.yf_c00179{bottom:785.641039px;}
.ye_c00179{bottom:814.849777px;}
.yd_c00179{bottom:842.995916px;}
.yc_c00179{bottom:871.140555px;}
.yb_c00179{bottom:899.283844px;}
.ya_c00179{bottom:927.425782px;}
.y9_c00179{bottom:955.567721px;}
.y8_c00179{bottom:994.401956px;}
.y7_c00179{bottom:1057.100430px;}
.y5_c00179{bottom:1122.588113px;}
.y4_c00179{bottom:1143.604455px;}
.y3_c00179{bottom:1164.623647px;}
.y2_c00179{bottom:1185.642088px;}
.h6_c00179{height:41.427963px;}
.h7_c00179{height:58.929966px;}
.h2_c00179{height:63.768724px;}
.h3_c00179{height:64.053724px;}
.h5_c00179{height:74.776402px;}
.h4_c00179{height:1249.830756px;}
.h1_c00179{height:1262.879062px;}
.h0_c00179{height:1263.000000px;}
.w2_c00179{width:883.195846px;}
.w1_c00179{width:892.414744px;}
.w0_c00179{width:892.500000px;}
.x0_c00179{left:0.000000px;}
.x5_c00179{left:1.541954px;}
.x7_c00179{left:126.289645px;}
.x9_c00179{left:141.074072px;}
.xa_c00179{left:145.529237px;}
.xb_c00179{left:161.915981px;}
.x2_c00179{left:266.222632px;}
.x1_c00179{left:283.677730px;}
.x4_c00179{left:328.922440px;}
.x6_c00179{left:404.339884px;}
.x3_c00179{left:434.014165px;}
.x8_c00179{left:757.559743px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws5_c00179{word-spacing:-15.833327pt;}
.ws0_c00179{word-spacing:-3.799035pt;}
.ws4_c00179{word-spacing:-3.785269pt;}
.ws2_c00179{word-spacing:-3.784919pt;}
.ws1_c00179{word-spacing:-3.784628pt;}
.ws3_c00179{word-spacing:-3.783987pt;}
.ws6_c00179{word-spacing:0.000000pt;}
._0_c00179{margin-left:-0.915549pt;}
._1_c00179{width:1.101208pt;}
._6_c00179{width:2.360515pt;}
._2_c00179{width:4.001690pt;}
._4_c00179{width:5.012767pt;}
._9_c00179{width:6.580361pt;}
._3_c00179{width:8.295780pt;}
._5_c00179{width:9.569075pt;}
._8_c00179{width:10.587216pt;}
._7_c00179{width:12.371491pt;}
.fs2_c00179{font-size:58.267177pt;}
.fs0_c00179{font-size:63.333308pt;}
.fs1_c00179{font-size:74.100237pt;}
.y0_c00179{bottom:0.000000pt;}
.y1_c00179{bottom:0.107500pt;}
.y6_c00179{bottom:6.068128pt;}
.y17_c00179{bottom:435.517029pt;}
.y16_c00179{bottom:470.983681pt;}
.y15_c00179{bottom:506.449000pt;}
.y14_c00179{bottom:532.414723pt;}
.y13_c00179{bottom:557.434713pt;}
.y12_c00179{bottom:591.950299pt;}
.y11_c00179{bottom:627.414285pt;}
.y10_c00179{bottom:662.882271pt;}
.yf_c00179{bottom:698.347590pt;}
.ye_c00179{bottom:724.310913pt;}
.yd_c00179{bottom:749.329703pt;}
.yc_c00179{bottom:774.347160pt;}
.yb_c00179{bottom:799.363416pt;}
.ya_c00179{bottom:824.378473pt;}
.y9_c00179{bottom:849.393530pt;}
.y8_c00179{bottom:883.912849pt;}
.y7_c00179{bottom:939.644827pt;}
.y5_c00179{bottom:997.856101pt;}
.y4_c00179{bottom:1016.537293pt;}
.y3_c00179{bottom:1035.221019pt;}
.y2_c00179{bottom:1053.904078pt;}
.h6_c00179{height:36.824856pt;}
.h7_c00179{height:52.382192pt;}
.h2_c00179{height:56.683311pt;}
.h3_c00179{height:56.936644pt;}
.h5_c00179{height:66.467913pt;}
.h4_c00179{height:1110.960672pt;}
.h1_c00179{height:1122.559167pt;}
.h0_c00179{height:1122.666667pt;}
.w2_c00179{width:785.062974pt;}
.w1_c00179{width:793.257550pt;}
.w0_c00179{width:793.333333pt;}
.x0_c00179{left:0.000000pt;}
.x5_c00179{left:1.370626pt;}
.x7_c00179{left:112.257462pt;}
.x9_c00179{left:125.399175pt;}
.xa_c00179{left:129.359322pt;}
.xb_c00179{left:143.925316pt;}
.x2_c00179{left:236.642339pt;}
.x1_c00179{left:252.157982pt;}
.x4_c00179{left:292.375502pt;}
.x6_c00179{left:359.413230pt;}
.x3_c00179{left:385.790369pt;}
.x8_c00179{left:673.386438pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00180;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:0.632000;font-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_c00180{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls2_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:74.158170px;}
.ls1_c00180{letter-spacing:74.164170px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:-17.812493px;}
.ws1_c00180{word-spacing:0.000000px;}
._5_c00180{margin-left:-2.551431px;}
._0_c00180{margin-left:-1.029993px;}
._1_c00180{width:1.238859px;}
._6_c00180{width:2.411498px;}
._4_c00180{width:4.393099px;}
._9_c00180{width:5.856571px;}
._a_c00180{width:8.013160px;}
._7_c00180{width:9.182821px;}
._c_c00180{width:10.216873px;}
._8_c00180{width:11.232029px;}
._b_c00180{width:12.521470px;}
._11_c00180{width:14.367339px;}
._3_c00180{width:19.364409px;}
._2_c00180{width:21.507441px;}
._e_c00180{width:36.965164px;}
._10_c00180{width:44.044339px;}
._f_c00180{width:45.214095px;}
._d_c00180{width:47.528334px;}
.fc1_c00180{color:rgb(105,148,45);}
.fc0_c00180{color:rgb(35,31,32);}
.fs1_c00180{font-size:65.550574px;}
.fs0_c00180{font-size:71.249972px;}
.y0_c00180{bottom:0.000000px;}
.y3_c00180{bottom:0.120938px;}
.y2_c00180{bottom:4.277752px;}
.y8_c00180{bottom:6.826644px;}
.y9_c00180{bottom:88.469218px;}
.y1_c00180{bottom:89.593560px;}
.y22_c00180{bottom:126.406153px;}
.y21_c00180{bottom:157.933590px;}
.y20_c00180{bottom:189.461777px;}
.y1f_c00180{bottom:220.989215px;}
.y1e_c00180{bottom:252.518752px;}
.y1d_c00180{bottom:308.981130px;}
.y1c_c00180{bottom:331.247721px;}
.y1b_c00180{bottom:353.158212px;}
.y1a_c00180{bottom:424.049684px;}
.y19_c00180{bottom:455.577721px;}
.y18_c00180{bottom:502.957152px;}
.y17_c00180{bottom:534.665339px;}
.y16_c00180{bottom:566.014127px;}
.y15_c00180{bottom:598.076614px;}
.y14_c00180{bottom:654.184092px;}
.y13_c00180{bottom:685.711529px;}
.y12_c00180{bottom:735.943509px;}
.y11_c00180{bottom:783.680690px;}
.y10_c00180{bottom:815.207377px;}
.yf_c00180{bottom:846.734815px;}
.ye_c00180{bottom:878.265102px;}
.yd_c00180{bottom:909.790439px;}
.yc_c00180{bottom:941.319977px;}
.yb_c00180{bottom:997.965954px;}
.ya_c00180{bottom:1052.825432px;}
.y7_c00180{bottom:1122.588113px;}
.y6_c00180{bottom:1143.604455px;}
.y5_c00180{bottom:1164.623647px;}
.y4_c00180{bottom:1185.642088px;}
.h1_c00180{height:19.060380px;}
.h9_c00180{height:45.029982px;}
.h8_c00180{height:58.929966px;}
.h2_c00180{height:63.768724px;}
.h6_c00180{height:63.839974px;}
.ha_c00180{height:63.848374px;}
.h7_c00180{height:63.911224px;}
.h4_c00180{height:64.053724px;}
.h5_c00180{height:1249.830756px;}
.h3_c00180{height:1262.879062px;}
.h0_c00180{height:1263.000000px;}
.wd_c00180{width:4.451400px;}
.w14_c00180{width:4.453200px;}
.w5_c00180{width:5.340600px;}
.w7_c00180{width:6.769800px;}
.w12_c00180{width:6.773400px;}
.wa_c00180{width:7.830000px;}
.wf_c00180{width:8.011800px;}
.w11_c00180{width:8.722800px;}
.wb_c00180{width:8.728200px;}
.w6_c00180{width:8.906400px;}
.wc_c00180{width:11.935800px;}
.w3_c00180{width:12.825000px;}
.w1_c00180{width:12.999600px;}
.w8_c00180{width:13.357800px;}
.w10_c00180{width:13.361400px;}
.w4_c00180{width:16.745400px;}
.w9_c00180{width:16.921800px;}
.w13_c00180{width:22.264200px;}
.w2_c00180{width:25.651800px;}
.we_c00180{width:28.677600px;}
.w16_c00180{width:883.195846px;}
.w15_c00180{width:892.414744px;}
.w0_c00180{width:892.500000px;}
.x0_c00180{left:0.000000px;}
.x12_c00180{left:1.067131px;}
.x14_c00180{left:3.024320px;}
.x1e_c00180{left:126.289645px;}
.x20_c00180{left:139.828730px;}
.x21_c00180{left:153.008984px;}
.x22_c00180{left:178.837474px;}
.x1f_c00180{left:192.373469px;}
.x1b_c00180{left:266.222632px;}
.x1a_c00180{left:283.677730px;}
.x1d_c00180{left:328.922440px;}
.x1c_c00180{left:434.014165px;}
.x1_c00180{left:480.519000px;}
.x2_c00180{left:493.518600px;}
.x3_c00180{left:519.170400px;}
.x4_c00180{left:531.995400px;}
.x5_c00180{left:548.740800px;}
.x6_c00180{left:553.726800px;}
.x7_c00180{left:566.906400px;}
.x8_c00180{left:575.812800px;}
.x9_c00180{left:581.335200px;}
.xa_c00180{left:598.791600px;}
.xb_c00180{left:613.760400px;}
.xc_c00180{left:621.590400px;}
.xd_c00180{left:634.415400px;}
.xe_c00180{left:643.143600px;}
.xf_c00180{left:655.079400px;}
.x10_c00180{left:663.807600px;}
.x11_c00180{left:671.466600px;}
.x13_c00180{left:697.118400px;}
.x15_c00180{left:705.130200px;}
.x16_c00180{left:718.491600px;}
.x17_c00180{left:727.214400px;}
.x18_c00180{left:732.740400px;}
.x19_c00180{left:755.004600px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls2_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:65.918374pt;}
.ls1_c00180{letter-spacing:65.923707pt;}
.ws0_c00180{word-spacing:-15.833327pt;}
.ws1_c00180{word-spacing:0.000000pt;}
._5_c00180{margin-left:-2.267938pt;}
._0_c00180{margin-left:-0.915549pt;}
._1_c00180{width:1.101208pt;}
._6_c00180{width:2.143554pt;}
._4_c00180{width:3.904977pt;}
._9_c00180{width:5.205841pt;}
._a_c00180{width:7.122809pt;}
._7_c00180{width:8.162508pt;}
._c_c00180{width:9.081665pt;}
._8_c00180{width:9.984026pt;}
._b_c00180{width:11.130196pt;}
._11_c00180{width:12.770968pt;}
._3_c00180{width:17.212808pt;}
._2_c00180{width:19.117726pt;}
._e_c00180{width:32.857923pt;}
._10_c00180{width:39.150524pt;}
._f_c00180{width:40.190307pt;}
._d_c00180{width:42.247408pt;}
.fs1_c00180{font-size:58.267177pt;}
.fs0_c00180{font-size:63.333308pt;}
.y0_c00180{bottom:0.000000pt;}
.y3_c00180{bottom:0.107500pt;}
.y2_c00180{bottom:3.802447pt;}
.y8_c00180{bottom:6.068128pt;}
.y9_c00180{bottom:78.639305pt;}
.y1_c00180{bottom:79.638720pt;}
.y22_c00180{bottom:112.361025pt;}
.y21_c00180{bottom:140.385413pt;}
.y20_c00180{bottom:168.410469pt;}
.y1f_c00180{bottom:196.434858pt;}
.y1e_c00180{bottom:224.461113pt;}
.y1d_c00180{bottom:274.649893pt;}
.y1c_c00180{bottom:294.442418pt;}
.y1b_c00180{bottom:313.918411pt;}
.y1a_c00180{bottom:376.933052pt;}
.y19_c00180{bottom:404.957974pt;}
.y18_c00180{bottom:447.073024pt;}
.y17_c00180{bottom:475.258079pt;}
.y16_c00180{bottom:503.123668pt;}
.y15_c00180{bottom:531.623657pt;}
.y14_c00180{bottom:581.496970pt;}
.y13_c00180{bottom:609.521359pt;}
.y12_c00180{bottom:654.172008pt;}
.y11_c00180{bottom:696.605058pt;}
.y10_c00180{bottom:724.628780pt;}
.yf_c00180{bottom:752.653169pt;}
.ye_c00180{bottom:780.680091pt;}
.yd_c00180{bottom:808.702613pt;}
.yc_c00180{bottom:836.728868pt;}
.yb_c00180{bottom:887.080848pt;}
.ya_c00180{bottom:935.844829pt;}
.y7_c00180{bottom:997.856101pt;}
.y6_c00180{bottom:1016.537293pt;}
.y5_c00180{bottom:1035.221019pt;}
.y4_c00180{bottom:1053.904078pt;}
.h1_c00180{height:16.942560pt;}
.h9_c00180{height:40.026651pt;}
.h8_c00180{height:52.382192pt;}
.h2_c00180{height:56.683311pt;}
.h6_c00180{height:56.746644pt;}
.ha_c00180{height:56.754111pt;}
.h7_c00180{height:56.809977pt;}
.h4_c00180{height:56.936644pt;}
.h5_c00180{height:1110.960672pt;}
.h3_c00180{height:1122.559167pt;}
.h0_c00180{height:1122.666667pt;}
.wd_c00180{width:3.956800pt;}
.w14_c00180{width:3.958400pt;}
.w5_c00180{width:4.747200pt;}
.w7_c00180{width:6.017600pt;}
.w12_c00180{width:6.020800pt;}
.wa_c00180{width:6.960000pt;}
.wf_c00180{width:7.121600pt;}
.w11_c00180{width:7.753600pt;}
.wb_c00180{width:7.758400pt;}
.w6_c00180{width:7.916800pt;}
.wc_c00180{width:10.609600pt;}
.w3_c00180{width:11.400000pt;}
.w1_c00180{width:11.555200pt;}
.w8_c00180{width:11.873600pt;}
.w10_c00180{width:11.876800pt;}
.w4_c00180{width:14.884800pt;}
.w9_c00180{width:15.041600pt;}
.w13_c00180{width:19.790400pt;}
.w2_c00180{width:22.801600pt;}
.we_c00180{width:25.491200pt;}
.w16_c00180{width:785.062974pt;}
.w15_c00180{width:793.257550pt;}
.w0_c00180{width:793.333333pt;}
.x0_c00180{left:0.000000pt;}
.x12_c00180{left:0.948561pt;}
.x14_c00180{left:2.688284pt;}
.x1e_c00180{left:112.257462pt;}
.x20_c00180{left:124.292205pt;}
.x21_c00180{left:136.007986pt;}
.x22_c00180{left:158.966644pt;}
.x1f_c00180{left:170.998639pt;}
.x1b_c00180{left:236.642339pt;}
.x1a_c00180{left:252.157982pt;}
.x1d_c00180{left:292.375502pt;}
.x1c_c00180{left:385.790369pt;}
.x1_c00180{left:427.128000pt;}
.x2_c00180{left:438.683200pt;}
.x3_c00180{left:461.484800pt;}
.x4_c00180{left:472.884800pt;}
.x5_c00180{left:487.769600pt;}
.x6_c00180{left:492.201600pt;}
.x7_c00180{left:503.916800pt;}
.x8_c00180{left:511.833600pt;}
.x9_c00180{left:516.742400pt;}
.xa_c00180{left:532.259200pt;}
.xb_c00180{left:545.564800pt;}
.xc_c00180{left:552.524800pt;}
.xd_c00180{left:563.924800pt;}
.xe_c00180{left:571.683200pt;}
.xf_c00180{left:582.292800pt;}
.x10_c00180{left:590.051200pt;}
.x11_c00180{left:596.859200pt;}
.x13_c00180{left:619.660800pt;}
.x15_c00180{left:626.782400pt;}
.x16_c00180{left:638.659200pt;}
.x17_c00180{left:646.412800pt;}
.x18_c00180{left:651.324800pt;}
.x19_c00180{left:671.115200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00181;src:url('chunks/assets/font_6a5df09709f11ef4b8f8d413.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.107000;font-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_c00181{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls1_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:74.152770px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:-17.812493px;}
.ws1_c00181{word-spacing:0.000000px;}
._6_c00181{margin-left:-3.527764px;}
._5_c00181{margin-left:-2.471023px;}
._0_c00181{margin-left:-1.029993px;}
._1_c00181{width:1.238859px;}
._12_c00181{width:2.394697px;}
._4_c00181{width:3.521956px;}
._3_c00181{width:5.245422px;}
._f_c00181{width:7.736120px;}
._d_c00181{width:8.760244px;}
._e_c00181{width:10.065274px;}
._9_c00181{width:13.667598px;}
._8_c00181{width:14.728049px;}
._13_c00181{width:15.972652px;}
._2_c00181{width:19.008849px;}
._b_c00181{width:20.018537px;}
._a_c00181{width:21.310604px;}
._c_c00181{width:23.051438px;}
._10_c00181{width:24.725973px;}
._11_c00181{width:25.865212px;}
._7_c00181{width:73.301698px;}
._14_c00181{width:138.318995px;}
.fc1_c00181{color:rgb(105,148,45);}
.fc0_c00181{color:rgb(35,31,32);}
.fs1_c00181{font-size:65.550574px;}
.fs0_c00181{font-size:71.249972px;}
.y0_c00181{bottom:0.000000px;}
.y3_c00181{bottom:0.120938px;}
.y2_c00181{bottom:4.274933px;}
.y8_c00181{bottom:6.826644px;}
.y9_c00181{bottom:88.469218px;}
.y1_c00181{bottom:89.237880px;}
.y23_c00181{bottom:117.144706px;}
.y22_c00181{bottom:148.673494px;}
.y21_c00181{bottom:180.200181px;}
.y20_c00181{bottom:232.923360px;}
.y1f_c00181{bottom:264.452147px;}
.y1e_c00181{bottom:295.981685px;}
.y1d_c00181{bottom:327.509122px;}
.y1c_c00181{bottom:359.034460px;}
.y1b_c00181{bottom:390.563997px;}
.y1a_c00181{bottom:443.290626px;}
.y19_c00181{bottom:474.815963px;}
.y18_c00181{bottom:506.344151px;}
.y17_c00181{bottom:537.872938px;}
.y16_c00181{bottom:569.401126px;}
.y15_c00181{bottom:615.176607px;}
.y14_c00181{bottom:663.272588px;}
.y13_c00181{bottom:694.798525px;}
.y12_c00181{bottom:726.328063px;}
.y11_c00181{bottom:787.066038px;}
.y10_c00181{bottom:835.694519px;}
.yf_c00181{bottom:874.346504px;}
.ye_c00181{bottom:896.787995px;}
.yd_c00181{bottom:960.557469px;}
.yc_c00181{bottom:992.085356px;}
.yb_c00181{bottom:1039.463287px;}
.ya_c00181{bottom:1070.994925px;}
.y7_c00181{bottom:1122.588113px;}
.y6_c00181{bottom:1143.604455px;}
.y5_c00181{bottom:1164.623647px;}
.y4_c00181{bottom:1185.642088px;}
.h1_c00181{height:19.060200px;}
.h8_c00181{height:58.929966px;}
.h2_c00181{height:63.768724px;}
.h6_c00181{height:63.839974px;}
.h7_c00181{height:63.911224px;}
.h4_c00181{height:64.053724px;}
.h5_c00181{height:1249.830756px;}
.h3_c00181{height:1262.879062px;}
.h0_c00181{height:1263.000000px;}
.w17_c00181{width:4.451400px;}
.w10_c00181{width:4.453200px;}
.w6_c00181{width:5.344200px;}
.w9_c00181{width:6.768000px;}
.w15_c00181{width:6.771600px;}
.wc_c00181{width:7.837200px;}
.w12_c00181{width:8.015400px;}
.wf_c00181{width:8.722800px;}
.wd_c00181{width:8.728200px;}
.w14_c00181{width:8.730000px;}
.w8_c00181{width:8.904600px;}
.w7_c00181{width:8.908200px;}
.we_c00181{width:11.935800px;}
.w4_c00181{width:12.823200px;}
.w2_c00181{width:13.010400px;}
.w13_c00181{width:13.354200px;}
.wa_c00181{width:13.359600px;}
.w5_c00181{width:16.745400px;}
.wb_c00181{width:16.923600px;}
.w16_c00181{width:22.262400px;}
.w3_c00181{width:25.644600px;}
.w1_c00181{width:26.715600px;}
.w11_c00181{width:28.677600px;}
.w19_c00181{width:883.195846px;}
.w18_c00181{width:892.414744px;}
.w0_c00181{width:892.500000px;}
.x0_c00181{left:0.000000px;}
.x13_c00181{left:1.066223px;}
.x15_c00181{left:3.023712px;}
.x1f_c00181{left:126.289645px;}
.x20_c00181{left:139.826840px;}
.x21_c00181{left:153.008984px;}
.x22_c00181{left:192.373469px;}
.x1c_c00181{left:266.222632px;}
.x1b_c00181{left:283.677730px;}
.x1e_c00181{left:328.922440px;}
.x1d_c00181{left:434.014165px;}
.x1_c00181{left:474.107400px;}
.x2_c00181{left:500.643000px;}
.x3_c00181{left:513.653400px;}
.x4_c00181{left:539.298000px;}
.x5_c00181{left:552.121200px;}
.x6_c00181{left:568.866600px;}
.x7_c00181{left:573.852600px;}
.x8_c00181{left:587.037600px;}
.x9_c00181{left:595.942200px;}
.xa_c00181{left:601.462800px;}
.xb_c00181{left:618.919200px;}
.xc_c00181{left:633.884400px;}
.xd_c00181{left:641.721600px;}
.xe_c00181{left:654.544800px;}
.xf_c00181{left:663.273000px;}
.x10_c00181{left:675.208800px;}
.x11_c00181{left:683.931600px;}
.x12_c00181{left:691.596000px;}
.x14_c00181{left:717.246000px;}
.x16_c00181{left:725.261400px;}
.x17_c00181{left:738.615600px;}
.x18_c00181{left:747.345600px;}
.x19_c00181{left:752.869800px;}
.x1a_c00181{left:775.132200px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls1_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:65.913574pt;}
.ws0_c00181{word-spacing:-15.833327pt;}
.ws1_c00181{word-spacing:0.000000pt;}
._6_c00181{margin-left:-3.135790pt;}
._5_c00181{margin-left:-2.196465pt;}
._0_c00181{margin-left:-0.915549pt;}
._1_c00181{width:1.101208pt;}
._12_c00181{width:2.128620pt;}
._4_c00181{width:3.130627pt;}
._3_c00181{width:4.662598pt;}
._f_c00181{width:6.876551pt;}
._d_c00181{width:7.786883pt;}
._e_c00181{width:8.946910pt;}
._9_c00181{width:12.148976pt;}
._8_c00181{width:13.091599pt;}
._13_c00181{width:14.197913pt;}
._2_c00181{width:16.896754pt;}
._b_c00181{width:17.794256pt;}
._a_c00181{width:18.942759pt;}
._c_c00181{width:20.490167pt;}
._10_c00181{width:21.978642pt;}
._11_c00181{width:22.991300pt;}
._7_c00181{width:65.157065pt;}
._14_c00181{width:122.950217pt;}
.fs1_c00181{font-size:58.267177pt;}
.fs0_c00181{font-size:63.333308pt;}
.y0_c00181{bottom:0.000000pt;}
.y3_c00181{bottom:0.107500pt;}
.y2_c00181{bottom:3.799940pt;}
.y8_c00181{bottom:6.068128pt;}
.y9_c00181{bottom:78.639305pt;}
.y1_c00181{bottom:79.322560pt;}
.y23_c00181{bottom:104.128628pt;}
.y22_c00181{bottom:132.154217pt;}
.y21_c00181{bottom:160.177939pt;}
.y20_c00181{bottom:207.042987pt;}
.y1f_c00181{bottom:235.068576pt;}
.y1e_c00181{bottom:263.094831pt;}
.y1d_c00181{bottom:291.119220pt;}
.y1c_c00181{bottom:319.141742pt;}
.y1b_c00181{bottom:347.167997pt;}
.y1a_c00181{bottom:394.036112pt;}
.y19_c00181{bottom:422.058634pt;}
.y18_c00181{bottom:450.083690pt;}
.y17_c00181{bottom:478.109278pt;}
.y16_c00181{bottom:506.134334pt;}
.y15_c00181{bottom:546.823651pt;}
.y14_c00181{bottom:589.575634pt;}
.y13_c00181{bottom:617.598689pt;}
.y12_c00181{bottom:645.624945pt;}
.y11_c00181{bottom:699.614256pt;}
.y10_c00181{bottom:742.839572pt;}
.yf_c00181{bottom:777.196892pt;}
.ye_c00181{bottom:797.144884pt;}
.yd_c00181{bottom:853.828861pt;}
.yc_c00181{bottom:881.853650pt;}
.yb_c00181{bottom:923.967367pt;}
.ya_c00181{bottom:951.995489pt;}
.y7_c00181{bottom:997.856101pt;}
.y6_c00181{bottom:1016.537293pt;}
.y5_c00181{bottom:1035.221019pt;}
.y4_c00181{bottom:1053.904078pt;}
.h1_c00181{height:16.942400pt;}
.h8_c00181{height:52.382192pt;}
.h2_c00181{height:56.683311pt;}
.h6_c00181{height:56.746644pt;}
.h7_c00181{height:56.809977pt;}
.h4_c00181{height:56.936644pt;}
.h5_c00181{height:1110.960672pt;}
.h3_c00181{height:1122.559167pt;}
.h0_c00181{height:1122.666667pt;}
.w17_c00181{width:3.956800pt;}
.w10_c00181{width:3.958400pt;}
.w6_c00181{width:4.750400pt;}
.w9_c00181{width:6.016000pt;}
.w15_c00181{width:6.019200pt;}
.wc_c00181{width:6.966400pt;}
.w12_c00181{width:7.124800pt;}
.wf_c00181{width:7.753600pt;}
.wd_c00181{width:7.758400pt;}
.w14_c00181{width:7.760000pt;}
.w8_c00181{width:7.915200pt;}
.w7_c00181{width:7.918400pt;}
.we_c00181{width:10.609600pt;}
.w4_c00181{width:11.398400pt;}
.w2_c00181{width:11.564800pt;}
.w13_c00181{width:11.870400pt;}
.wa_c00181{width:11.875200pt;}
.w5_c00181{width:14.884800pt;}
.wb_c00181{width:15.043200pt;}
.w16_c00181{width:19.788800pt;}
.w3_c00181{width:22.795200pt;}
.w1_c00181{width:23.747200pt;}
.w11_c00181{width:25.491200pt;}
.w19_c00181{width:785.062974pt;}
.w18_c00181{width:793.257550pt;}
.w0_c00181{width:793.333333pt;}
.x0_c00181{left:0.000000pt;}
.x13_c00181{left:0.947754pt;}
.x15_c00181{left:2.687744pt;}
.x1f_c00181{left:112.257462pt;}
.x20_c00181{left:124.290524pt;}
.x21_c00181{left:136.007986pt;}
.x22_c00181{left:170.998639pt;}
.x1c_c00181{left:236.642339pt;}
.x1b_c00181{left:252.157982pt;}
.x1e_c00181{left:292.375502pt;}
.x1d_c00181{left:385.790369pt;}
.x1_c00181{left:421.428800pt;}
.x2_c00181{left:445.016000pt;}
.x3_c00181{left:456.580800pt;}
.x4_c00181{left:479.376000pt;}
.x5_c00181{left:490.774400pt;}
.x6_c00181{left:505.659200pt;}
.x7_c00181{left:510.091200pt;}
.x8_c00181{left:521.811200pt;}
.x9_c00181{left:529.726400pt;}
.xa_c00181{left:534.633600pt;}
.xb_c00181{left:550.150400pt;}
.xc_c00181{left:563.452800pt;}
.xd_c00181{left:570.419200pt;}
.xe_c00181{left:581.817600pt;}
.xf_c00181{left:589.576000pt;}
.x10_c00181{left:600.185600pt;}
.x11_c00181{left:607.939200pt;}
.x12_c00181{left:614.752000pt;}
.x14_c00181{left:637.552000pt;}
.x16_c00181{left:644.676800pt;}
.x17_c00181{left:656.547200pt;}
.x18_c00181{left:664.307200pt;}
.x19_c00181{left:669.217600pt;}
.x1a_c00181{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.113000;font-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_c00182{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v1_c00182{vertical-align:-1.425935px;}
.v0_c00182{vertical-align:0.000000px;}
.ls0_c00182{letter-spacing:0.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:-17.812493px;}
.ws1_c00182{word-spacing:0.000000px;}
._3_c00182{margin-left:-2.117941px;}
._0_c00182{margin-left:-1.029993px;}
._1_c00182{width:1.238859px;}
._14_c00182{width:2.708837px;}
._2_c00182{width:4.183465px;}
._7_c00182{width:5.262522px;}
._6_c00182{width:6.345031px;}
._5_c00182{width:8.391388px;}
._4_c00182{width:9.552584px;}
._18_c00182{width:10.622184px;}
._17_c00182{width:12.005578px;}
._11_c00182{width:14.260198px;}
._10_c00182{width:15.439502px;}
._13_c00182{width:20.411987px;}
._a_c00182{width:50.503213px;}
._9_c00182{width:52.073854px;}
._1b_c00182{width:55.085921px;}
._f_c00182{width:75.380426px;}
._c_c00182{width:125.151781px;}
._8_c00182{width:138.318995px;}
._e_c00182{width:168.430280px;}
._16_c00182{width:199.443261px;}
._1a_c00182{width:244.910640px;}
._15_c00182{width:290.695598px;}
._d_c00182{width:312.140867px;}
._b_c00182{width:395.187612px;}
._12_c00182{width:430.118069px;}
._19_c00182{width:465.406843px;}
.fc1_c00182{color:rgb(105,148,45);}
.fc0_c00182{color:rgb(35,31,32);}
.fs2_c00182{font-size:59.136936px;}
.fs1_c00182{font-size:65.550574px;}
.fs0_c00182{font-size:71.249972px;}
.y0_c00182{bottom:0.000000px;}
.y3_c00182{bottom:0.120938px;}
.y31_c00182{bottom:0.485156px;}
.y26_c00182{bottom:4.268246px;}
.y2a_c00182{bottom:4.272463px;}
.y30_c00182{bottom:4.274298px;}
.y2_c00182{bottom:4.274933px;}
.y28_c00182{bottom:4.276955px;}
.y8_c00182{bottom:6.826644px;}
.y9_c00182{bottom:88.469218px;}
.y1_c00182{bottom:89.237880px;}
.y36_c00182{bottom:143.793186px;}
.y35_c00182{bottom:167.124777px;}
.y34_c00182{bottom:189.213768px;}
.y33_c00182{bottom:211.298259px;}
.y32_c00182{bottom:233.390251px;}
.y2f_c00182{bottom:250.617600px;}
.y2e_c00182{bottom:254.770961px;}
.y2d_c00182{bottom:276.858452px;}
.y2c_c00182{bottom:298.947443px;}
.y2b_c00182{bottom:321.033434px;}
.y29_c00182{bottom:337.901400px;}
.y27_c00182{bottom:358.916400px;}
.y24_c00182{bottom:377.380202px;}
.y25_c00182{bottom:379.938600px;}
.y23_c00182{bottom:399.470693px;}
.y22_c00182{bottom:433.314880px;}
.y21_c00182{bottom:464.843667px;}
.y20_c00182{bottom:503.671152px;}
.y1f_c00182{bottom:577.415622px;}
.y1e_c00182{bottom:600.391113px;}
.y1d_c00182{bottom:620.701105px;}
.y1c_c00182{bottom:641.006597px;}
.y1b_c00182{bottom:661.312089px;}
.y1a_c00182{bottom:681.619081px;}
.y19_c00182{bottom:701.921723px;}
.y17_c00182{bottom:719.732565px;}
.y18_c00182{bottom:721.160565px;}
.y15_c00182{bottom:741.109357px;}
.y16_c00182{bottom:741.110557px;}
.y14_c00182{bottom:759.991049px;}
.y12_c00182{bottom:774.598043px;}
.y13_c00182{bottom:777.271042px;}
.y11_c00182{bottom:796.679835px;}
.y10_c00182{bottom:830.524021px;}
.yf_c00182{bottom:869.360506px;}
.ye_c00182{bottom:931.523031px;}
.yd_c00182{bottom:963.051218px;}
.yc_c00182{bottom:994.577155px;}
.yb_c00182{bottom:1039.463287px;}
.ya_c00182{bottom:1070.994925px;}
.y7_c00182{bottom:1122.588113px;}
.y6_c00182{bottom:1143.604455px;}
.y5_c00182{bottom:1164.623647px;}
.y4_c00182{bottom:1185.642088px;}
.h1_c00182{height:19.060200px;}
.hd_c00182{height:20.302200px;}
.hb_c00182{height:20.305800px;}
.hc_c00182{height:20.307600px;}
.h8_c00182{height:53.045832px;}
.ha_c00182{height:58.733314px;}
.h9_c00182{height:58.798865px;}
.h7_c00182{height:58.929966px;}
.h2_c00182{height:63.768724px;}
.h6_c00182{height:63.839974px;}
.h4_c00182{height:64.053724px;}
.h5_c00182{height:1249.830756px;}
.he_c00182{height:1262.514600px;}
.h3_c00182{height:1262.879062px;}
.h0_c00182{height:1263.000000px;}
.w17_c00182{width:4.451400px;}
.w10_c00182{width:4.453200px;}
.w6_c00182{width:5.344200px;}
.w9_c00182{width:6.768000px;}
.w15_c00182{width:6.771600px;}
.wc_c00182{width:7.837200px;}
.w12_c00182{width:8.015400px;}
.wf_c00182{width:8.722800px;}
.wd_c00182{width:8.728200px;}
.w14_c00182{width:8.730000px;}
.w8_c00182{width:8.904600px;}
.w7_c00182{width:8.908200px;}
.we_c00182{width:11.935800px;}
.w4_c00182{width:12.823200px;}
.w2_c00182{width:13.010400px;}
.w13_c00182{width:13.354200px;}
.wa_c00182{width:13.359600px;}
.w5_c00182{width:16.745400px;}
.wb_c00182{width:16.923600px;}
.w16_c00182{width:22.262400px;}
.w3_c00182{width:25.644600px;}
.w1_c00182{width:26.715600px;}
.w11_c00182{width:28.677600px;}
.w1a_c00182{width:216.783000px;}
.w1b_c00182{width:398.644200px;}
.w19_c00182{width:883.195846px;}
.w1c_c00182{width:892.161000px;}
.w18_c00182{width:892.414744px;}
.w0_c00182{width:892.500000px;}
.x0_c00182{left:0.000000px;}
.x13_c00182{left:1.066223px;}
.x15_c00182{left:3.023712px;}
.x1f_c00182{left:126.289645px;}
.x28_c00182{left:127.818943px;}
.x20_c00182{left:139.826840px;}
.x21_c00182{left:192.373377px;}
.x1c_c00182{left:266.222632px;}
.x1b_c00182{left:283.677730px;}
.x25_c00182{left:314.383914px;}
.x22_c00182{left:323.826760px;}
.x1e_c00182{left:328.922440px;}
.x23_c00182{left:331.487913px;}
.x27_c00182{left:364.559400px;}
.x24_c00182{left:422.152377px;}
.x1d_c00182{left:434.014165px;}
.x1_c00182{left:474.107400px;}
.x2_c00182{left:500.643000px;}
.x3_c00182{left:513.653400px;}
.x4_c00182{left:539.298000px;}
.x26_c00182{left:546.420600px;}
.x5_c00182{left:552.121200px;}
.x6_c00182{left:568.866600px;}
.x7_c00182{left:573.852600px;}
.x8_c00182{left:587.037600px;}
.x9_c00182{left:595.942200px;}
.xa_c00182{left:601.462800px;}
.xb_c00182{left:618.919200px;}
.xc_c00182{left:633.884400px;}
.xd_c00182{left:641.721600px;}
.xe_c00182{left:654.544800px;}
.xf_c00182{left:663.273000px;}
.x10_c00182{left:675.208800px;}
.x11_c00182{left:683.931600px;}
.x12_c00182{left:691.596000px;}
.x14_c00182{left:717.246000px;}
.x16_c00182{left:725.261400px;}
.x17_c00182{left:738.615600px;}
.x18_c00182{left:747.345600px;}
.x19_c00182{left:752.869800px;}
.x1a_c00182{left:775.132200px;}
@media print{
.v1_c00182{vertical-align:-1.267498pt;}
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:-15.833327pt;}
.ws1_c00182{word-spacing:0.000000pt;}
._3_c00182{margin-left:-1.882614pt;}
._0_c00182{margin-left:-0.915549pt;}
._1_c00182{width:1.101208pt;}
._14_c00182{width:2.407855pt;}
._2_c00182{width:3.718636pt;}
._7_c00182{width:4.677798pt;}
._6_c00182{width:5.640028pt;}
._5_c00182{width:7.459012pt;}
._4_c00182{width:8.491186pt;}
._18_c00182{width:9.441942pt;}
._17_c00182{width:10.671625pt;}
._11_c00182{width:12.675732pt;}
._10_c00182{width:13.724002pt;}
._13_c00182{width:18.143989pt;}
._a_c00182{width:44.891744pt;}
._9_c00182{width:46.287870pt;}
._1b_c00182{width:48.965263pt;}
._f_c00182{width:67.004823pt;}
._c_c00182{width:111.246028pt;}
._8_c00182{width:122.950217pt;}
._e_c00182{width:149.715804pt;}
._16_c00182{width:177.282899pt;}
._1a_c00182{width:217.698346pt;}
._15_c00182{width:258.396088pt;}
._d_c00182{width:277.458548pt;}
._b_c00182{width:351.277878pt;}
._12_c00182{width:382.327173pt;}
._19_c00182{width:413.694972pt;}
.fs2_c00182{font-size:52.566166pt;}
.fs1_c00182{font-size:58.267177pt;}
.fs0_c00182{font-size:63.333308pt;}
.y0_c00182{bottom:0.000000pt;}
.y3_c00182{bottom:0.107500pt;}
.y31_c00182{bottom:0.431250pt;}
.y26_c00182{bottom:3.793997pt;}
.y2a_c00182{bottom:3.797745pt;}
.y30_c00182{bottom:3.799376pt;}
.y2_c00182{bottom:3.799940pt;}
.y28_c00182{bottom:3.801738pt;}
.y8_c00182{bottom:6.068128pt;}
.y9_c00182{bottom:78.639305pt;}
.y1_c00182{bottom:79.322560pt;}
.y36_c00182{bottom:127.816166pt;}
.y35_c00182{bottom:148.555357pt;}
.y34_c00182{bottom:168.190016pt;}
.y33_c00182{bottom:187.820675pt;}
.y32_c00182{bottom:207.458001pt;}
.y2f_c00182{bottom:222.771200pt;}
.y2e_c00182{bottom:226.463076pt;}
.y2d_c00182{bottom:246.096402pt;}
.y2c_c00182{bottom:265.731060pt;}
.y2b_c00182{bottom:285.363052pt;}
.y29_c00182{bottom:300.356800pt;}
.y27_c00182{bottom:319.036800pt;}
.y24_c00182{bottom:335.449069pt;}
.y25_c00182{bottom:337.723200pt;}
.y23_c00182{bottom:355.085061pt;}
.y22_c00182{bottom:385.168782pt;}
.y21_c00182{bottom:413.194371pt;}
.y20_c00182{bottom:447.707690pt;}
.y1f_c00182{bottom:513.258331pt;}
.y1e_c00182{bottom:533.680989pt;}
.y1d_c00182{bottom:551.734316pt;}
.y1c_c00182{bottom:569.783642pt;}
.y1b_c00182{bottom:587.832968pt;}
.y1a_c00182{bottom:605.883627pt;}
.y19_c00182{bottom:623.930420pt;}
.y17_c00182{bottom:639.762280pt;}
.y18_c00182{bottom:641.031613pt;}
.y15_c00182{bottom:658.763873pt;}
.y16_c00182{bottom:658.764939pt;}
.y14_c00182{bottom:675.547599pt;}
.y12_c00182{bottom:688.531594pt;}
.y13_c00182{bottom:690.907593pt;}
.y11_c00182{bottom:708.159853pt;}
.y10_c00182{bottom:738.243574pt;}
.yf_c00182{bottom:772.764894pt;}
.ye_c00182{bottom:828.020472pt;}
.yd_c00182{bottom:856.045527pt;}
.yc_c00182{bottom:884.068583pt;}
.yb_c00182{bottom:923.967367pt;}
.ya_c00182{bottom:951.995489pt;}
.y7_c00182{bottom:997.856101pt;}
.y6_c00182{bottom:1016.537293pt;}
.y5_c00182{bottom:1035.221019pt;}
.y4_c00182{bottom:1053.904078pt;}
.h1_c00182{height:16.942400pt;}
.hd_c00182{height:18.046400pt;}
.hb_c00182{height:18.049600pt;}
.hc_c00182{height:18.051200pt;}
.h8_c00182{height:47.151851pt;}
.ha_c00182{height:52.207390pt;}
.h9_c00182{height:52.265657pt;}
.h7_c00182{height:52.382192pt;}
.h2_c00182{height:56.683311pt;}
.h6_c00182{height:56.746644pt;}
.h4_c00182{height:56.936644pt;}
.h5_c00182{height:1110.960672pt;}
.he_c00182{height:1122.235200pt;}
.h3_c00182{height:1122.559167pt;}
.h0_c00182{height:1122.666667pt;}
.w17_c00182{width:3.956800pt;}
.w10_c00182{width:3.958400pt;}
.w6_c00182{width:4.750400pt;}
.w9_c00182{width:6.016000pt;}
.w15_c00182{width:6.019200pt;}
.wc_c00182{width:6.966400pt;}
.w12_c00182{width:7.124800pt;}
.wf_c00182{width:7.753600pt;}
.wd_c00182{width:7.758400pt;}
.w14_c00182{width:7.760000pt;}
.w8_c00182{width:7.915200pt;}
.w7_c00182{width:7.918400pt;}
.we_c00182{width:10.609600pt;}
.w4_c00182{width:11.398400pt;}
.w2_c00182{width:11.564800pt;}
.w13_c00182{width:11.870400pt;}
.wa_c00182{width:11.875200pt;}
.w5_c00182{width:14.884800pt;}
.wb_c00182{width:15.043200pt;}
.w16_c00182{width:19.788800pt;}
.w3_c00182{width:22.795200pt;}
.w1_c00182{width:23.747200pt;}
.w11_c00182{width:25.491200pt;}
.w1a_c00182{width:192.696000pt;}
.w1b_c00182{width:354.350400pt;}
.w19_c00182{width:785.062974pt;}
.w1c_c00182{width:793.032000pt;}
.w18_c00182{width:793.257550pt;}
.w0_c00182{width:793.333333pt;}
.x0_c00182{left:0.000000pt;}
.x13_c00182{left:0.947754pt;}
.x15_c00182{left:2.687744pt;}
.x1f_c00182{left:112.257462pt;}
.x28_c00182{left:113.616838pt;}
.x20_c00182{left:124.290524pt;}
.x21_c00182{left:170.998557pt;}
.x1c_c00182{left:236.642339pt;}
.x1b_c00182{left:252.157982pt;}
.x25_c00182{left:279.452368pt;}
.x22_c00182{left:287.846009pt;}
.x1e_c00182{left:292.375502pt;}
.x23_c00182{left:294.655923pt;}
.x27_c00182{left:324.052800pt;}
.x24_c00182{left:375.246557pt;}
.x1d_c00182{left:385.790369pt;}
.x1_c00182{left:421.428800pt;}
.x2_c00182{left:445.016000pt;}
.x3_c00182{left:456.580800pt;}
.x4_c00182{left:479.376000pt;}
.x26_c00182{left:485.707200pt;}
.x5_c00182{left:490.774400pt;}
.x6_c00182{left:505.659200pt;}
.x7_c00182{left:510.091200pt;}
.x8_c00182{left:521.811200pt;}
.x9_c00182{left:529.726400pt;}
.xa_c00182{left:534.633600pt;}
.xb_c00182{left:550.150400pt;}
.xc_c00182{left:563.452800pt;}
.xd_c00182{left:570.419200pt;}
.xe_c00182{left:581.817600pt;}
.xf_c00182{left:589.576000pt;}
.x10_c00182{left:600.185600pt;}
.x11_c00182{left:607.939200pt;}
.x12_c00182{left:614.752000pt;}
.x14_c00182{left:637.552000pt;}
.x16_c00182{left:644.676800pt;}
.x17_c00182{left:656.547200pt;}
.x18_c00182{left:664.307200pt;}
.x19_c00182{left:669.217600pt;}
.x1a_c00182{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.112000;font-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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-17.812493px;}
.ws1_c00183{word-spacing:0.000000px;}
._2_c00183{margin-left:-2.121827px;}
._0_c00183{margin-left:-1.029993px;}
._1_c00183{width:1.238859px;}
._8_c00183{width:3.566220px;}
._4_c00183{width:5.282095px;}
._3_c00183{width:6.535299px;}
._7_c00183{width:8.040996px;}
._6_c00183{width:14.061971px;}
._5_c00183{width:15.129023px;}
.fc1_c00183{color:rgb(105,148,45);}
.fc0_c00183{color:rgb(35,31,32);}
.fs2_c00183{font-size:59.136936px;}
.fs1_c00183{font-size:65.550574px;}
.fs0_c00183{font-size:71.249972px;}
.y0_c00183{bottom:0.000000px;}
.y3_c00183{bottom:0.120938px;}
.y2_c00183{bottom:4.274933px;}
.y8_c00183{bottom:6.826644px;}
.y9_c00183{bottom:88.469218px;}
.y1_c00183{bottom:89.237880px;}
.y39_c00183{bottom:175.040483px;}
.y38_c00183{bottom:194.274526px;}
.y37_c00183{bottom:213.514868px;}
.y36_c00183{bottom:232.748910px;}
.y35_c00183{bottom:251.985652px;}
.y34_c00183{bottom:271.222395px;}
.y33_c00183{bottom:290.461237px;}
.y32_c00183{bottom:291.883237px;}
.y31_c00183{bottom:330.002121px;}
.y30_c00183{bottom:349.238864px;}
.y2f_c00183{bottom:368.477706px;}
.y2e_c00183{bottom:369.904205px;}
.y2d_c00183{bottom:408.022490px;}
.y2c_c00183{bottom:427.260732px;}
.y2b_c00183{bottom:446.498975px;}
.y2a_c00183{bottom:465.735117px;}
.y29_c00183{bottom:484.971259px;}
.y28_c00183{bottom:504.207402px;}
.y27_c00183{bottom:523.445644px;}
.y26_c00183{bottom:542.683136px;}
.y25_c00183{bottom:544.108136px;}
.y24_c00183{bottom:582.217420px;}
.y23_c00183{bottom:601.454913px;}
.y22_c00183{bottom:620.695855px;}
.y21_c00183{bottom:639.931997px;}
.y20_c00183{bottom:659.168740px;}
.y1f_c00183{bottom:678.406982px;}
.y1e_c00183{bottom:697.645824px;}
.y1d_c00183{bottom:716.884067px;}
.y1c_c00183{bottom:736.124409px;}
.y1b_c00183{bottom:755.358451px;}
.y1a_c00183{bottom:774.597293px;}
.y19_c00183{bottom:793.832686px;}
.y18_c00183{bottom:813.073028px;}
.y17_c00183{bottom:814.496527px;}
.y16_c00183{bottom:852.613012px;}
.y15_c00183{bottom:871.848405px;}
.y14_c00183{bottom:891.085897px;}
.y13_c00183{bottom:910.322639px;}
.y12_c00183{bottom:929.560131px;}
.y11_c00183{bottom:948.795524px;}
.y10_c00183{bottom:968.035866px;}
.yf_c00183{bottom:987.272608px;}
.yd_c00183{bottom:990.480807px;}
.ye_c00183{bottom:1006.511451px;}
.yc_c00183{bottom:1007.937950px;}
.yb_c00183{bottom:1028.067942px;}
.ya_c00183{bottom:1070.994925px;}
.y7_c00183{bottom:1122.588113px;}
.y6_c00183{bottom:1143.604455px;}
.y5_c00183{bottom:1164.623647px;}
.y4_c00183{bottom:1185.642088px;}
.h1_c00183{height:19.060200px;}
.h8_c00183{height:52.986695px;}
.h7_c00183{height:58.733314px;}
.h2_c00183{height:63.768724px;}
.h6_c00183{height:63.839974px;}
.h4_c00183{height:64.053724px;}
.h5_c00183{height:1249.830756px;}
.h3_c00183{height:1262.879062px;}
.h0_c00183{height:1263.000000px;}
.w17_c00183{width:4.451400px;}
.w10_c00183{width:4.453200px;}
.w6_c00183{width:5.344200px;}
.w9_c00183{width:6.768000px;}
.w15_c00183{width:6.771600px;}
.wc_c00183{width:7.837200px;}
.w12_c00183{width:8.015400px;}
.wf_c00183{width:8.722800px;}
.wd_c00183{width:8.728200px;}
.w14_c00183{width:8.730000px;}
.w8_c00183{width:8.904600px;}
.w7_c00183{width:8.908200px;}
.we_c00183{width:11.935800px;}
.w4_c00183{width:12.823200px;}
.w2_c00183{width:13.010400px;}
.w13_c00183{width:13.354200px;}
.wa_c00183{width:13.359600px;}
.w5_c00183{width:16.745400px;}
.wb_c00183{width:16.923600px;}
.w16_c00183{width:22.262400px;}
.w3_c00183{width:25.644600px;}
.w1_c00183{width:26.715600px;}
.w11_c00183{width:28.677600px;}
.w19_c00183{width:883.195846px;}
.w18_c00183{width:892.414744px;}
.w0_c00183{width:892.500000px;}
.x0_c00183{left:0.000000px;}
.x13_c00183{left:1.066223px;}
.x15_c00183{left:3.023712px;}
.x1f_c00183{left:126.289645px;}
.x1c_c00183{left:266.222632px;}
.x1b_c00183{left:283.677730px;}
.x20_c00183{left:305.128424px;}
.x1e_c00183{left:328.922440px;}
.x21_c00183{left:384.037392px;}
.x1d_c00183{left:434.014165px;}
.x1_c00183{left:474.107400px;}
.x2_c00183{left:500.643000px;}
.x3_c00183{left:513.653400px;}
.x4_c00183{left:539.298000px;}
.x5_c00183{left:552.121200px;}
.x6_c00183{left:568.866600px;}
.x7_c00183{left:573.852600px;}
.x8_c00183{left:587.037600px;}
.x9_c00183{left:595.942200px;}
.xa_c00183{left:601.462800px;}
.xb_c00183{left:618.919200px;}
.xc_c00183{left:633.884400px;}
.xd_c00183{left:641.721600px;}
.xe_c00183{left:654.544800px;}
.xf_c00183{left:663.273000px;}
.x10_c00183{left:675.208800px;}
.x11_c00183{left:683.931600px;}
.x12_c00183{left:691.596000px;}
.x14_c00183{left:717.246000px;}
.x16_c00183{left:725.261400px;}
.x17_c00183{left:738.615600px;}
.x18_c00183{left:747.345600px;}
.x19_c00183{left:752.869800px;}
.x1a_c00183{left:775.132200px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws0_c00183{word-spacing:-15.833327pt;}
.ws1_c00183{word-spacing:0.000000pt;}
._2_c00183{margin-left:-1.886069pt;}
._0_c00183{margin-left:-0.915549pt;}
._1_c00183{width:1.101208pt;}
._8_c00183{width:3.169973pt;}
._4_c00183{width:4.695196pt;}
._3_c00183{width:5.809155pt;}
._7_c00183{width:7.147552pt;}
._6_c00183{width:12.499530pt;}
._5_c00183{width:13.448020pt;}
.fs2_c00183{font-size:52.566166pt;}
.fs1_c00183{font-size:58.267177pt;}
.fs0_c00183{font-size:63.333308pt;}
.y0_c00183{bottom:0.000000pt;}
.y3_c00183{bottom:0.107500pt;}
.y2_c00183{bottom:3.799940pt;}
.y8_c00183{bottom:6.068128pt;}
.y9_c00183{bottom:78.639305pt;}
.y1_c00183{bottom:79.322560pt;}
.y39_c00183{bottom:155.591541pt;}
.y38_c00183{bottom:172.688467pt;}
.y37_c00183{bottom:189.790994pt;}
.y36_c00183{bottom:206.887920pt;}
.y35_c00183{bottom:223.987247pt;}
.y34_c00183{bottom:241.086573pt;}
.y33_c00183{bottom:258.187766pt;}
.y32_c00183{bottom:259.451766pt;}
.y31_c00183{bottom:293.335219pt;}
.y30_c00183{bottom:310.434545pt;}
.y2f_c00183{bottom:327.535739pt;}
.y2e_c00183{bottom:328.803738pt;}
.y2d_c00183{bottom:362.686658pt;}
.y2c_c00183{bottom:379.787318pt;}
.y2b_c00183{bottom:396.887977pt;}
.y2a_c00183{bottom:413.986771pt;}
.y29_c00183{bottom:431.085564pt;}
.y28_c00183{bottom:448.184357pt;}
.y27_c00183{bottom:465.285017pt;}
.y26_c00183{bottom:482.385010pt;}
.y25_c00183{bottom:483.651676pt;}
.y24_c00183{bottom:517.526596pt;}
.y23_c00183{bottom:534.626589pt;}
.y22_c00183{bottom:551.729649pt;}
.y21_c00183{bottom:568.828442pt;}
.y20_c00183{bottom:585.927769pt;}
.y1f_c00183{bottom:603.028428pt;}
.y1e_c00183{bottom:620.129622pt;}
.y1d_c00183{bottom:637.230281pt;}
.y1c_c00183{bottom:654.332808pt;}
.y1b_c00183{bottom:671.429734pt;}
.y1a_c00183{bottom:688.530927pt;}
.y19_c00183{bottom:705.629054pt;}
.y18_c00183{bottom:722.731580pt;}
.y17_c00183{bottom:723.996913pt;}
.y16_c00183{bottom:757.878233pt;}
.y15_c00183{bottom:774.976360pt;}
.y14_c00183{bottom:792.076353pt;}
.y13_c00183{bottom:809.175679pt;}
.y12_c00183{bottom:826.275672pt;}
.y11_c00183{bottom:843.373799pt;}
.y10_c00183{bottom:860.476325pt;}
.yf_c00183{bottom:877.575652pt;}
.yd_c00183{bottom:880.427384pt;}
.ye_c00183{bottom:894.676845pt;}
.yc_c00183{bottom:895.944845pt;}
.yb_c00183{bottom:913.838171pt;}
.ya_c00183{bottom:951.995489pt;}
.y7_c00183{bottom:997.856101pt;}
.y6_c00183{bottom:1016.537293pt;}
.y5_c00183{bottom:1035.221019pt;}
.y4_c00183{bottom:1053.904078pt;}
.h1_c00183{height:16.942400pt;}
.h8_c00183{height:47.099284pt;}
.h7_c00183{height:52.207390pt;}
.h2_c00183{height:56.683311pt;}
.h6_c00183{height:56.746644pt;}
.h4_c00183{height:56.936644pt;}
.h5_c00183{height:1110.960672pt;}
.h3_c00183{height:1122.559167pt;}
.h0_c00183{height:1122.666667pt;}
.w17_c00183{width:3.956800pt;}
.w10_c00183{width:3.958400pt;}
.w6_c00183{width:4.750400pt;}
.w9_c00183{width:6.016000pt;}
.w15_c00183{width:6.019200pt;}
.wc_c00183{width:6.966400pt;}
.w12_c00183{width:7.124800pt;}
.wf_c00183{width:7.753600pt;}
.wd_c00183{width:7.758400pt;}
.w14_c00183{width:7.760000pt;}
.w8_c00183{width:7.915200pt;}
.w7_c00183{width:7.918400pt;}
.we_c00183{width:10.609600pt;}
.w4_c00183{width:11.398400pt;}
.w2_c00183{width:11.564800pt;}
.w13_c00183{width:11.870400pt;}
.wa_c00183{width:11.875200pt;}
.w5_c00183{width:14.884800pt;}
.wb_c00183{width:15.043200pt;}
.w16_c00183{width:19.788800pt;}
.w3_c00183{width:22.795200pt;}
.w1_c00183{width:23.747200pt;}
.w11_c00183{width:25.491200pt;}
.w19_c00183{width:785.062974pt;}
.w18_c00183{width:793.257550pt;}
.w0_c00183{width:793.333333pt;}
.x0_c00183{left:0.000000pt;}
.x13_c00183{left:0.947754pt;}
.x15_c00183{left:2.687744pt;}
.x1f_c00183{left:112.257462pt;}
.x1c_c00183{left:236.642339pt;}
.x1b_c00183{left:252.157982pt;}
.x20_c00183{left:271.225265pt;}
.x1e_c00183{left:292.375502pt;}
.x21_c00183{left:341.366571pt;}
.x1d_c00183{left:385.790369pt;}
.x1_c00183{left:421.428800pt;}
.x2_c00183{left:445.016000pt;}
.x3_c00183{left:456.580800pt;}
.x4_c00183{left:479.376000pt;}
.x5_c00183{left:490.774400pt;}
.x6_c00183{left:505.659200pt;}
.x7_c00183{left:510.091200pt;}
.x8_c00183{left:521.811200pt;}
.x9_c00183{left:529.726400pt;}
.xa_c00183{left:534.633600pt;}
.xb_c00183{left:550.150400pt;}
.xc_c00183{left:563.452800pt;}
.xd_c00183{left:570.419200pt;}
.xe_c00183{left:581.817600pt;}
.xf_c00183{left:589.576000pt;}
.x10_c00183{left:600.185600pt;}
.x11_c00183{left:607.939200pt;}
.x12_c00183{left:614.752000pt;}
.x14_c00183{left:637.552000pt;}
.x16_c00183{left:644.676800pt;}
.x17_c00183{left:656.547200pt;}
.x18_c00183{left:664.307200pt;}
.x19_c00183{left:669.217600pt;}
.x1a_c00183{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.112000;font-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_c00184{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls0_c00184{letter-spacing:0.000000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00184{word-spacing:-17.812493px;}
.ws1_c00184{word-spacing:0.000000px;}
._5_c00184{margin-left:-2.565924px;}
._0_c00184{margin-left:-1.029993px;}
._1_c00184{width:1.238859px;}
._4_c00184{width:9.111237px;}
._3_c00184{width:10.315886px;}
._e_c00184{width:14.264960px;}
._c_c00184{width:60.916623px;}
._7_c00184{width:89.114194px;}
._f_c00184{width:129.762586px;}
._a_c00184{width:153.007942px;}
._6_c00184{width:160.507855px;}
._2_c00184{width:192.500323px;}
._8_c00184{width:427.655506px;}
._d_c00184{width:431.312814px;}
._9_c00184{width:452.989261px;}
._b_c00184{width:775.692808px;}
.fc1_c00184{color:rgb(105,148,45);}
.fc0_c00184{color:rgb(35,31,32);}
.fs1_c00184{font-size:59.136936px;}
.fs2_c00184{font-size:65.550574px;}
.fs0_c00184{font-size:71.249972px;}
.y0_c00184{bottom:0.000000px;}
.y3_c00184{bottom:0.120938px;}
.y2_c00184{bottom:4.274933px;}
.y8_c00184{bottom:6.826644px;}
.y9_c00184{bottom:88.469218px;}
.y1_c00184{bottom:89.237880px;}
.y29_c00184{bottom:261.604249px;}
.y28_c00184{bottom:283.690240px;}
.y27_c00184{bottom:305.779231px;}
.y26_c00184{bottom:327.868222px;}
.y25_c00184{bottom:349.954213px;}
.y24_c00184{bottom:372.040204px;}
.y23_c00184{bottom:394.126196px;}
.y22_c00184{bottom:416.215037px;}
.y21_c00184{bottom:460.567469px;}
.y20_c00184{bottom:481.588161px;}
.y1f_c00184{bottom:527.365142px;}
.y1e_c00184{bottom:567.262126px;}
.y1d_c00184{bottom:589.351118px;}
.y1c_c00184{bottom:611.440109px;}
.y1b_c00184{bottom:633.703100px;}
.y1a_c00184{bottom:655.787591px;}
.y19_c00184{bottom:700.138523px;}
.y18_c00184{bottom:721.160565px;}
.y17_c00184{bottom:762.841048px;}
.y16_c00184{bottom:839.794017px;}
.y15_c00184{bottom:877.908402px;}
.y14_c00184{bottom:897.148744px;}
.y13_c00184{bottom:916.384137px;}
.y12_c00184{bottom:935.622979px;}
.y11_c00184{bottom:937.047978px;}
.y10_c00184{bottom:975.160263px;}
.yf_c00184{bottom:994.397756px;}
.ye_c00184{bottom:1013.635248px;}
.yd_c00184{bottom:1032.872740px;}
.yc_c00184{bottom:1052.111582px;}
.yb_c00184{bottom:1071.350425px;}
.ya_c00184{bottom:1072.776924px;}
.y7_c00184{bottom:1122.588113px;}
.y6_c00184{bottom:1143.604455px;}
.y5_c00184{bottom:1164.623647px;}
.y4_c00184{bottom:1185.642088px;}
.h1_c00184{height:19.060200px;}
.h7_c00184{height:52.986695px;}
.h9_c00184{height:58.667764px;}
.h8_c00184{height:58.733314px;}
.ha_c00184{height:58.929966px;}
.h2_c00184{height:63.768724px;}
.h6_c00184{height:63.839974px;}
.h4_c00184{height:64.053724px;}
.h5_c00184{height:1249.830756px;}
.h3_c00184{height:1262.879062px;}
.h0_c00184{height:1263.000000px;}
.w17_c00184{width:4.451400px;}
.w10_c00184{width:4.453200px;}
.w6_c00184{width:5.344200px;}
.w9_c00184{width:6.768000px;}
.w15_c00184{width:6.771600px;}
.wc_c00184{width:7.837200px;}
.w12_c00184{width:8.015400px;}
.wf_c00184{width:8.722800px;}
.wd_c00184{width:8.728200px;}
.w14_c00184{width:8.730000px;}
.w8_c00184{width:8.904600px;}
.w7_c00184{width:8.908200px;}
.we_c00184{width:11.935800px;}
.w4_c00184{width:12.823200px;}
.w2_c00184{width:13.010400px;}
.w13_c00184{width:13.354200px;}
.wa_c00184{width:13.359600px;}
.w5_c00184{width:16.745400px;}
.wb_c00184{width:16.923600px;}
.w16_c00184{width:22.262400px;}
.w3_c00184{width:25.644600px;}
.w1_c00184{width:26.715600px;}
.w11_c00184{width:28.677600px;}
.w19_c00184{width:883.195846px;}
.w18_c00184{width:892.414744px;}
.w0_c00184{width:892.500000px;}
.x0_c00184{left:0.000000px;}
.x13_c00184{left:1.066223px;}
.x15_c00184{left:3.023712px;}
.x1f_c00184{left:126.289645px;}
.x22_c00184{left:145.172088px;}
.x21_c00184{left:239.219877px;}
.x1c_c00184{left:266.222632px;}
.x1b_c00184{left:283.677730px;}
.x1e_c00184{left:328.922440px;}
.x20_c00184{left:384.037392px;}
.x1d_c00184{left:434.014165px;}
.x1_c00184{left:474.107400px;}
.x2_c00184{left:500.643000px;}
.x3_c00184{left:513.653400px;}
.x4_c00184{left:539.298000px;}
.x5_c00184{left:552.121200px;}
.x6_c00184{left:568.866600px;}
.x7_c00184{left:573.852600px;}
.x8_c00184{left:587.037600px;}
.x9_c00184{left:595.942200px;}
.xa_c00184{left:601.462800px;}
.xb_c00184{left:618.919200px;}
.xc_c00184{left:633.884400px;}
.xd_c00184{left:641.721600px;}
.xe_c00184{left:654.544800px;}
.xf_c00184{left:663.273000px;}
.x10_c00184{left:675.208800px;}
.x11_c00184{left:683.931600px;}
.x12_c00184{left:691.596000px;}
.x14_c00184{left:717.246000px;}
.x16_c00184{left:725.261400px;}
.x17_c00184{left:738.615600px;}
.x18_c00184{left:747.345600px;}
.x19_c00184{left:752.869800px;}
.x1a_c00184{left:775.132200px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws0_c00184{word-spacing:-15.833327pt;}
.ws1_c00184{word-spacing:0.000000pt;}
._5_c00184{margin-left:-2.280821pt;}
._0_c00184{margin-left:-0.915549pt;}
._1_c00184{width:1.101208pt;}
._4_c00184{width:8.098878pt;}
._3_c00184{width:9.169676pt;}
._e_c00184{width:12.679965pt;}
._c_c00184{width:54.148109pt;}
._7_c00184{width:79.212617pt;}
._f_c00184{width:115.344521pt;}
._a_c00184{width:136.007060pt;}
._6_c00184{width:142.673649pt;}
._2_c00184{width:171.111398pt;}
._8_c00184{width:380.138228pt;}
._d_c00184{width:383.389168pt;}
._9_c00184{width:402.657121pt;}
._b_c00184{width:689.504718pt;}
.fs1_c00184{font-size:52.566166pt;}
.fs2_c00184{font-size:58.267177pt;}
.fs0_c00184{font-size:63.333308pt;}
.y0_c00184{bottom:0.000000pt;}
.y3_c00184{bottom:0.107500pt;}
.y2_c00184{bottom:3.799940pt;}
.y8_c00184{bottom:6.068128pt;}
.y9_c00184{bottom:78.639305pt;}
.y1_c00184{bottom:79.322560pt;}
.y29_c00184{bottom:232.537110pt;}
.y28_c00184{bottom:252.169102pt;}
.y27_c00184{bottom:271.803761pt;}
.y26_c00184{bottom:291.438420pt;}
.y25_c00184{bottom:311.070412pt;}
.y24_c00184{bottom:330.702404pt;}
.y23_c00184{bottom:350.334396pt;}
.y22_c00184{bottom:369.968922pt;}
.y21_c00184{bottom:409.393306pt;}
.y20_c00184{bottom:428.078365pt;}
.y1f_c00184{bottom:468.769015pt;}
.y1e_c00184{bottom:504.233001pt;}
.y1d_c00184{bottom:523.867660pt;}
.y1c_c00184{bottom:543.502319pt;}
.y1b_c00184{bottom:563.291644pt;}
.y1a_c00184{bottom:582.922303pt;}
.y19_c00184{bottom:622.345354pt;}
.y18_c00184{bottom:641.031613pt;}
.y17_c00184{bottom:678.080932pt;}
.y16_c00184{bottom:746.483571pt;}
.y15_c00184{bottom:780.363024pt;}
.y14_c00184{bottom:797.465551pt;}
.y13_c00184{bottom:814.563677pt;}
.y12_c00184{bottom:831.664870pt;}
.y11_c00184{bottom:832.931536pt;}
.y10_c00184{bottom:866.809123pt;}
.yf_c00184{bottom:883.909116pt;}
.ye_c00184{bottom:901.009109pt;}
.yd_c00184{bottom:918.109102pt;}
.yc_c00184{bottom:935.210295pt;}
.yb_c00184{bottom:952.311489pt;}
.ya_c00184{bottom:953.579488pt;}
.y7_c00184{bottom:997.856101pt;}
.y6_c00184{bottom:1016.537293pt;}
.y5_c00184{bottom:1035.221019pt;}
.y4_c00184{bottom:1053.904078pt;}
.h1_c00184{height:16.942400pt;}
.h7_c00184{height:47.099284pt;}
.h9_c00184{height:52.149123pt;}
.h8_c00184{height:52.207390pt;}
.ha_c00184{height:52.382192pt;}
.h2_c00184{height:56.683311pt;}
.h6_c00184{height:56.746644pt;}
.h4_c00184{height:56.936644pt;}
.h5_c00184{height:1110.960672pt;}
.h3_c00184{height:1122.559167pt;}
.h0_c00184{height:1122.666667pt;}
.w17_c00184{width:3.956800pt;}
.w10_c00184{width:3.958400pt;}
.w6_c00184{width:4.750400pt;}
.w9_c00184{width:6.016000pt;}
.w15_c00184{width:6.019200pt;}
.wc_c00184{width:6.966400pt;}
.w12_c00184{width:7.124800pt;}
.wf_c00184{width:7.753600pt;}
.wd_c00184{width:7.758400pt;}
.w14_c00184{width:7.760000pt;}
.w8_c00184{width:7.915200pt;}
.w7_c00184{width:7.918400pt;}
.we_c00184{width:10.609600pt;}
.w4_c00184{width:11.398400pt;}
.w2_c00184{width:11.564800pt;}
.w13_c00184{width:11.870400pt;}
.wa_c00184{width:11.875200pt;}
.w5_c00184{width:14.884800pt;}
.wb_c00184{width:15.043200pt;}
.w16_c00184{width:19.788800pt;}
.w3_c00184{width:22.795200pt;}
.w1_c00184{width:23.747200pt;}
.w11_c00184{width:25.491200pt;}
.w19_c00184{width:785.062974pt;}
.w18_c00184{width:793.257550pt;}
.w0_c00184{width:793.333333pt;}
.x0_c00184{left:0.000000pt;}
.x13_c00184{left:0.947754pt;}
.x15_c00184{left:2.687744pt;}
.x1f_c00184{left:112.257462pt;}
.x22_c00184{left:129.041856pt;}
.x21_c00184{left:212.639891pt;}
.x1c_c00184{left:236.642339pt;}
.x1b_c00184{left:252.157982pt;}
.x1e_c00184{left:292.375502pt;}
.x20_c00184{left:341.366571pt;}
.x1d_c00184{left:385.790369pt;}
.x1_c00184{left:421.428800pt;}
.x2_c00184{left:445.016000pt;}
.x3_c00184{left:456.580800pt;}
.x4_c00184{left:479.376000pt;}
.x5_c00184{left:490.774400pt;}
.x6_c00184{left:505.659200pt;}
.x7_c00184{left:510.091200pt;}
.x8_c00184{left:521.811200pt;}
.x9_c00184{left:529.726400pt;}
.xa_c00184{left:534.633600pt;}
.xb_c00184{left:550.150400pt;}
.xc_c00184{left:563.452800pt;}
.xd_c00184{left:570.419200pt;}
.xe_c00184{left:581.817600pt;}
.xf_c00184{left:589.576000pt;}
.x10_c00184{left:600.185600pt;}
.x11_c00184{left:607.939200pt;}
.x12_c00184{left:614.752000pt;}
.x14_c00184{left:637.552000pt;}
.x16_c00184{left:644.676800pt;}
.x17_c00184{left:656.547200pt;}
.x18_c00184{left:664.307200pt;}
.x19_c00184{left:669.217600pt;}
.x1a_c00184{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.112000;font-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_c00185{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00185{word-spacing:-17.812493px;}
.ws1_c00185{word-spacing:0.000000px;}
._3_c00185{margin-left:-2.439727px;}
._0_c00185{margin-left:-1.029993px;}
._1_c00185{width:1.238859px;}
._13_c00185{width:6.952429px;}
._14_c00185{width:8.315803px;}
._b_c00185{width:9.899072px;}
._12_c00185{width:11.397356px;}
._f_c00185{width:15.409361px;}
._11_c00185{width:21.177491px;}
._10_c00185{width:22.354119px;}
._6_c00185{width:23.443976px;}
._7_c00185{width:24.721422px;}
._d_c00185{width:28.145581px;}
._c_c00185{width:29.671730px;}
._8_c00185{width:41.130201px;}
._a_c00185{width:57.506683px;}
._9_c00185{width:58.507810px;}
._5_c00185{width:72.250215px;}
._e_c00185{width:76.299596px;}
._2_c00185{width:192.500323px;}
._4_c00185{width:796.575619px;}
.fc1_c00185{color:rgb(105,148,45);}
.fc0_c00185{color:rgb(35,31,32);}
.fs1_c00185{font-size:65.550574px;}
.fs0_c00185{font-size:71.249972px;}
.y0_c00185{bottom:0.000000px;}
.y3_c00185{bottom:0.120938px;}
.y2b_c00185{bottom:4.267910px;}
.y1f_c00185{bottom:4.268440px;}
.y3d_c00185{bottom:4.269503px;}
.y3a_c00185{bottom:4.271586px;}
.y22_c00185{bottom:4.271757px;}
.y2f_c00185{bottom:4.271827px;}
.y40_c00185{bottom:4.272520px;}
.y14_c00185{bottom:4.273164px;}
.y37_c00185{bottom:4.273669px;}
.y26_c00185{bottom:4.274174px;}
.y32_c00185{bottom:4.274844px;}
.y2_c00185{bottom:4.274933px;}
.y19_c00185{bottom:4.274998px;}
.y34_c00185{bottom:4.275752px;}
.y8_c00185{bottom:6.826644px;}
.y9_c00185{bottom:88.469218px;}
.y1_c00185{bottom:89.237880px;}
.y42_c00185{bottom:157.873999px;}
.y41_c00185{bottom:179.956990px;}
.y3f_c00185{bottom:196.826400px;}
.y3e_c00185{bottom:221.997474px;}
.y3c_c00185{bottom:238.865400px;}
.y3b_c00185{bottom:264.033457px;}
.y39_c00185{bottom:280.900800px;}
.y38_c00185{bottom:306.070940px;}
.y36_c00185{bottom:322.936200px;}
.y35_c00185{bottom:348.108423px;}
.y33_c00185{bottom:364.971600px;}
.y31_c00185{bottom:385.992000px;}
.y30_c00185{bottom:411.163898px;}
.y2e_c00185{bottom:428.031000px;}
.y2d_c00185{bottom:432.181890px;}
.y2c_c00185{bottom:454.272381px;}
.y2a_c00185{bottom:471.137400px;}
.y29_c00185{bottom:475.284372px;}
.y28_c00185{bottom:497.374864px;}
.y27_c00185{bottom:544.044345px;}
.y25_c00185{bottom:560.910600px;}
.y24_c00185{bottom:565.058886px;}
.y23_c00185{bottom:586.078828px;}
.y21_c00185{bottom:602.946000px;}
.y20_c00185{bottom:628.120811px;}
.y1e_c00185{bottom:644.986800px;}
.y1d_c00185{bottom:670.153194px;}
.y1c_c00185{bottom:691.171636px;}
.y1b_c00185{bottom:712.190078px;}
.y1a_c00185{bottom:733.210769px;}
.y18_c00185{bottom:750.076200px;}
.y17_c00185{bottom:775.246752px;}
.y16_c00185{bottom:797.334544px;}
.y15_c00185{bottom:818.355235px;}
.y13_c00185{bottom:835.218000px;}
.y12_c00185{bottom:853.684612px;}
.y11_c00185{bottom:874.702453px;}
.y10_c00185{bottom:895.720295px;}
.yf_c00185{bottom:916.740987px;}
.ye_c00185{bottom:939.005478px;}
.yd_c00185{bottom:961.092819px;}
.yc_c00185{bottom:1005.445251px;}
.yb_c00185{bottom:1026.465943px;}
.ya_c00185{bottom:1072.242924px;}
.y7_c00185{bottom:1122.588113px;}
.y6_c00185{bottom:1143.604455px;}
.y5_c00185{bottom:1164.623647px;}
.y4_c00185{bottom:1185.642088px;}
.h1_c00185{height:19.060200px;}
.hc_c00185{height:20.302200px;}
.ha_c00185{height:20.304000px;}
.h9_c00185{height:20.305800px;}
.h8_c00185{height:20.307600px;}
.hb_c00185{height:20.309400px;}
.h7_c00185{height:58.929966px;}
.h2_c00185{height:63.768724px;}
.h6_c00185{height:63.839974px;}
.h4_c00185{height:64.053724px;}
.h5_c00185{height:1249.830756px;}
.h3_c00185{height:1262.879062px;}
.h0_c00185{height:1263.000000px;}
.w17_c00185{width:4.451400px;}
.w10_c00185{width:4.453200px;}
.w6_c00185{width:5.344200px;}
.w9_c00185{width:6.768000px;}
.w15_c00185{width:6.771600px;}
.wc_c00185{width:7.837200px;}
.w12_c00185{width:8.015400px;}
.wf_c00185{width:8.722800px;}
.wd_c00185{width:8.728200px;}
.w14_c00185{width:8.730000px;}
.w8_c00185{width:8.904600px;}
.w7_c00185{width:8.908200px;}
.we_c00185{width:11.935800px;}
.w4_c00185{width:12.823200px;}
.w2_c00185{width:13.010400px;}
.w13_c00185{width:13.354200px;}
.wa_c00185{width:13.359600px;}
.w5_c00185{width:16.745400px;}
.wb_c00185{width:16.923600px;}
.w1b_c00185{width:17.101800px;}
.w16_c00185{width:22.262400px;}
.w3_c00185{width:25.644600px;}
.w1_c00185{width:26.715600px;}
.w11_c00185{width:28.677600px;}
.w1a_c00185{width:405.946800px;}
.w19_c00185{width:883.195846px;}
.w18_c00185{width:892.414744px;}
.w0_c00185{width:892.500000px;}
.x0_c00185{left:0.000000px;}
.x13_c00185{left:1.066223px;}
.x15_c00185{left:3.023712px;}
.x1f_c00185{left:126.289645px;}
.x22_c00185{left:131.458343px;}
.x24_c00185{left:132.987641px;}
.x21_c00185{left:204.484464px;}
.x1c_c00185{left:266.222632px;}
.x1b_c00185{left:283.677730px;}
.x1e_c00185{left:328.922440px;}
.x20_c00185{left:355.358488px;}
.x23_c00185{left:357.256800px;}
.x1d_c00185{left:434.014165px;}
.x1_c00185{left:474.107400px;}
.x2_c00185{left:500.643000px;}
.x3_c00185{left:513.653400px;}
.x4_c00185{left:539.298000px;}
.x5_c00185{left:552.121200px;}
.x6_c00185{left:568.866600px;}
.x7_c00185{left:573.852600px;}
.x8_c00185{left:587.037600px;}
.x9_c00185{left:595.942200px;}
.xa_c00185{left:601.462800px;}
.xb_c00185{left:618.919200px;}
.xc_c00185{left:633.884400px;}
.xd_c00185{left:641.721600px;}
.xe_c00185{left:654.544800px;}
.xf_c00185{left:663.273000px;}
.x10_c00185{left:675.208800px;}
.x11_c00185{left:683.931600px;}
.x12_c00185{left:691.596000px;}
.x14_c00185{left:717.246000px;}
.x16_c00185{left:725.261400px;}
.x17_c00185{left:738.615600px;}
.x25_c00185{left:746.101800px;}
.x18_c00185{left:747.345600px;}
.x19_c00185{left:752.869800px;}
.x1a_c00185{left:775.132200px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:-15.833327pt;}
.ws1_c00185{word-spacing:0.000000pt;}
._3_c00185{margin-left:-2.168646pt;}
._0_c00185{margin-left:-0.915549pt;}
._1_c00185{width:1.101208pt;}
._13_c00185{width:6.179937pt;}
._14_c00185{width:7.391825pt;}
._b_c00185{width:8.799175pt;}
._12_c00185{width:10.130984pt;}
._f_c00185{width:13.697209pt;}
._11_c00185{width:18.824437pt;}
._10_c00185{width:19.870328pt;}
._6_c00185{width:20.839090pt;}
._7_c00185{width:21.974597pt;}
._d_c00185{width:25.018294pt;}
._c_c00185{width:26.374871pt;}
._8_c00185{width:36.560179pt;}
._a_c00185{width:51.117052pt;}
._9_c00185{width:52.006943pt;}
._5_c00185{width:64.222414pt;}
._e_c00185{width:67.821863pt;}
._2_c00185{width:171.111398pt;}
._4_c00185{width:708.067217pt;}
.fs1_c00185{font-size:58.267177pt;}
.fs0_c00185{font-size:63.333308pt;}
.y0_c00185{bottom:0.000000pt;}
.y3_c00185{bottom:0.107500pt;}
.y2b_c00185{bottom:3.793698pt;}
.y1f_c00185{bottom:3.794169pt;}
.y3d_c00185{bottom:3.795114pt;}
.y3a_c00185{bottom:3.796965pt;}
.y22_c00185{bottom:3.797117pt;}
.y2f_c00185{bottom:3.797180pt;}
.y40_c00185{bottom:3.797795pt;}
.y14_c00185{bottom:3.798368pt;}
.y37_c00185{bottom:3.798817pt;}
.y26_c00185{bottom:3.799266pt;}
.y32_c00185{bottom:3.799861pt;}
.y2_c00185{bottom:3.799940pt;}
.y19_c00185{bottom:3.799998pt;}
.y34_c00185{bottom:3.800669pt;}
.y8_c00185{bottom:6.068128pt;}
.y9_c00185{bottom:78.639305pt;}
.y1_c00185{bottom:79.322560pt;}
.y42_c00185{bottom:140.332444pt;}
.y41_c00185{bottom:159.961769pt;}
.y3f_c00185{bottom:174.956800pt;}
.y3e_c00185{bottom:197.331088pt;}
.y3c_c00185{bottom:212.324800pt;}
.y3b_c00185{bottom:234.696406pt;}
.y39_c00185{bottom:249.689600pt;}
.y38_c00185{bottom:272.063058pt;}
.y36_c00185{bottom:287.054400pt;}
.y35_c00185{bottom:309.429710pt;}
.y33_c00185{bottom:324.419200pt;}
.y31_c00185{bottom:343.104000pt;}
.y30_c00185{bottom:365.479020pt;}
.y2e_c00185{bottom:380.472000pt;}
.y2d_c00185{bottom:384.161680pt;}
.y2c_c00185{bottom:403.797672pt;}
.y2a_c00185{bottom:418.788800pt;}
.y29_c00185{bottom:422.474998pt;}
.y28_c00185{bottom:442.110990pt;}
.y27_c00185{bottom:483.594973pt;}
.y25_c00185{bottom:498.587200pt;}
.y24_c00185{bottom:502.274566pt;}
.y23_c00185{bottom:520.958958pt;}
.y21_c00185{bottom:535.952000pt;}
.y20_c00185{bottom:558.329610pt;}
.y1e_c00185{bottom:573.321600pt;}
.y1d_c00185{bottom:595.691728pt;}
.y1c_c00185{bottom:614.374788pt;}
.y1b_c00185{bottom:633.057847pt;}
.y1a_c00185{bottom:651.742906pt;}
.y18_c00185{bottom:666.734400pt;}
.y17_c00185{bottom:689.108224pt;}
.y16_c00185{bottom:708.741816pt;}
.y15_c00185{bottom:727.426876pt;}
.y13_c00185{bottom:742.416000pt;}
.y12_c00185{bottom:758.830766pt;}
.y11_c00185{bottom:777.513292pt;}
.y10_c00185{bottom:796.195818pt;}
.yf_c00185{bottom:814.880877pt;}
.ye_c00185{bottom:834.671536pt;}
.yd_c00185{bottom:854.304728pt;}
.yc_c00185{bottom:893.729112pt;}
.yb_c00185{bottom:912.414171pt;}
.ya_c00185{bottom:953.104822pt;}
.y7_c00185{bottom:997.856101pt;}
.y6_c00185{bottom:1016.537293pt;}
.y5_c00185{bottom:1035.221019pt;}
.y4_c00185{bottom:1053.904078pt;}
.h1_c00185{height:16.942400pt;}
.hc_c00185{height:18.046400pt;}
.ha_c00185{height:18.048000pt;}
.h9_c00185{height:18.049600pt;}
.h8_c00185{height:18.051200pt;}
.hb_c00185{height:18.052800pt;}
.h7_c00185{height:52.382192pt;}
.h2_c00185{height:56.683311pt;}
.h6_c00185{height:56.746644pt;}
.h4_c00185{height:56.936644pt;}
.h5_c00185{height:1110.960672pt;}
.h3_c00185{height:1122.559167pt;}
.h0_c00185{height:1122.666667pt;}
.w17_c00185{width:3.956800pt;}
.w10_c00185{width:3.958400pt;}
.w6_c00185{width:4.750400pt;}
.w9_c00185{width:6.016000pt;}
.w15_c00185{width:6.019200pt;}
.wc_c00185{width:6.966400pt;}
.w12_c00185{width:7.124800pt;}
.wf_c00185{width:7.753600pt;}
.wd_c00185{width:7.758400pt;}
.w14_c00185{width:7.760000pt;}
.w8_c00185{width:7.915200pt;}
.w7_c00185{width:7.918400pt;}
.we_c00185{width:10.609600pt;}
.w4_c00185{width:11.398400pt;}
.w2_c00185{width:11.564800pt;}
.w13_c00185{width:11.870400pt;}
.wa_c00185{width:11.875200pt;}
.w5_c00185{width:14.884800pt;}
.wb_c00185{width:15.043200pt;}
.w1b_c00185{width:15.201600pt;}
.w16_c00185{width:19.788800pt;}
.w3_c00185{width:22.795200pt;}
.w1_c00185{width:23.747200pt;}
.w11_c00185{width:25.491200pt;}
.w1a_c00185{width:360.841600pt;}
.w19_c00185{width:785.062974pt;}
.w18_c00185{width:793.257550pt;}
.w0_c00185{width:793.333333pt;}
.x0_c00185{left:0.000000pt;}
.x13_c00185{left:0.947754pt;}
.x15_c00185{left:2.687744pt;}
.x1f_c00185{left:112.257462pt;}
.x22_c00185{left:116.851860pt;}
.x24_c00185{left:118.211236pt;}
.x21_c00185{left:181.763968pt;}
.x1c_c00185{left:236.642339pt;}
.x1b_c00185{left:252.157982pt;}
.x1e_c00185{left:292.375502pt;}
.x20_c00185{left:315.874212pt;}
.x23_c00185{left:317.561600pt;}
.x1d_c00185{left:385.790369pt;}
.x1_c00185{left:421.428800pt;}
.x2_c00185{left:445.016000pt;}
.x3_c00185{left:456.580800pt;}
.x4_c00185{left:479.376000pt;}
.x5_c00185{left:490.774400pt;}
.x6_c00185{left:505.659200pt;}
.x7_c00185{left:510.091200pt;}
.x8_c00185{left:521.811200pt;}
.x9_c00185{left:529.726400pt;}
.xa_c00185{left:534.633600pt;}
.xb_c00185{left:550.150400pt;}
.xc_c00185{left:563.452800pt;}
.xd_c00185{left:570.419200pt;}
.xe_c00185{left:581.817600pt;}
.xf_c00185{left:589.576000pt;}
.x10_c00185{left:600.185600pt;}
.x11_c00185{left:607.939200pt;}
.x12_c00185{left:614.752000pt;}
.x14_c00185{left:637.552000pt;}
.x16_c00185{left:644.676800pt;}
.x17_c00185{left:656.547200pt;}
.x25_c00185{left:663.201600pt;}
.x18_c00185{left:664.307200pt;}
.x19_c00185{left:669.217600pt;}
.x1a_c00185{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.113000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00186{word-spacing:-17.812493px;}
.ws1_c00186{word-spacing:0.000000px;}
._6_c00186{margin-left:-2.180117px;}
._0_c00186{margin-left:-1.029993px;}
._1_c00186{width:1.238859px;}
._c_c00186{width:4.360238px;}
._b_c00186{width:5.490705px;}
._8_c00186{width:12.835978px;}
._4_c00186{width:20.526543px;}
._a_c00186{width:49.643382px;}
._9_c00186{width:51.282093px;}
._7_c00186{width:58.074269px;}
._2_c00186{width:115.331672px;}
._d_c00186{width:129.762586px;}
._3_c00186{width:192.500323px;}
._5_c00186{width:333.080925px;}
._e_c00186{width:399.161764px;}
._f_c00186{width:624.612138px;}
.fc1_c00186{color:rgb(105,148,45);}
.fc0_c00186{color:rgb(35,31,32);}
.fs0_c00186{font-size:71.249972px;}
.fs1_c00186{font-size:118.985952px;}
.y0_c00186{bottom:0.000000px;}
.y3_c00186{bottom:0.120938px;}
.y13_c00186{bottom:0.485156px;}
.y12_c00186{bottom:4.274048px;}
.y2_c00186{bottom:4.274933px;}
.y8_c00186{bottom:6.826644px;}
.y9_c00186{bottom:88.469218px;}
.y1_c00186{bottom:89.237880px;}
.y2c_c00186{bottom:133.891150px;}
.y2b_c00186{bottom:156.152791px;}
.y2a_c00186{bottom:178.243282px;}
.y28_c00186{bottom:184.948988px;}
.y29_c00186{bottom:199.262774px;}
.y27_c00186{bottom:205.968480px;}
.y26_c00186{bottom:266.944246px;}
.y25_c00186{bottom:289.033238px;}
.y24_c00186{bottom:311.120729px;}
.y23_c00186{bottom:333.208220px;}
.y22_c00186{bottom:355.298711px;}
.y21_c00186{bottom:377.380202px;}
.y20_c00186{bottom:399.472193px;}
.y1f_c00186{bottom:421.553685px;}
.y1e_c00186{bottom:443.644176px;}
.y1d_c00186{bottom:465.733167px;}
.y1c_c00186{bottom:487.994658px;}
.y1b_c00186{bottom:510.085149px;}
.y1a_c00186{bottom:585.367828px;}
.y19_c00186{bottom:660.528430px;}
.y18_c00186{bottom:681.547621px;}
.y17_c00186{bottom:702.564713px;}
.y16_c00186{bottom:723.583905px;}
.y15_c00186{bottom:769.718036px;}
.y10_c00186{bottom:851.548163px;}
.y14_c00186{bottom:857.889501px;}
.yf_c00186{bottom:872.566004px;}
.y11_c00186{bottom:875.118600px;}
.ye_c00186{bottom:894.651995px;}
.yd_c00186{bottom:916.740087px;}
.yc_c00186{bottom:961.091769px;}
.yb_c00186{bottom:982.110960px;}
.ya_c00186{bottom:1028.246442px;}
.y7_c00186{bottom:1122.588113px;}
.y6_c00186{bottom:1143.604455px;}
.y5_c00186{bottom:1164.623647px;}
.y4_c00186{bottom:1185.642088px;}
.h1_c00186{height:19.060200px;}
.h8_c00186{height:20.309400px;}
.h2_c00186{height:63.768724px;}
.h6_c00186{height:63.839974px;}
.h7_c00186{height:63.911224px;}
.h4_c00186{height:64.053724px;}
.ha_c00186{height:106.968371px;}
.h5_c00186{height:1249.830756px;}
.h9_c00186{height:1262.514600px;}
.h3_c00186{height:1262.879062px;}
.h0_c00186{height:1263.000000px;}
.w17_c00186{width:4.451400px;}
.w10_c00186{width:4.453200px;}
.w6_c00186{width:5.344200px;}
.w9_c00186{width:6.768000px;}
.w15_c00186{width:6.771600px;}
.wc_c00186{width:7.837200px;}
.w12_c00186{width:8.015400px;}
.wf_c00186{width:8.722800px;}
.wd_c00186{width:8.728200px;}
.w14_c00186{width:8.730000px;}
.w8_c00186{width:8.904600px;}
.w7_c00186{width:8.908200px;}
.we_c00186{width:11.935800px;}
.w4_c00186{width:12.823200px;}
.w2_c00186{width:13.010400px;}
.w13_c00186{width:13.354200px;}
.wa_c00186{width:13.359600px;}
.w5_c00186{width:16.745400px;}
.wb_c00186{width:16.923600px;}
.w16_c00186{width:22.262400px;}
.w3_c00186{width:25.644600px;}
.w1_c00186{width:26.715600px;}
.w11_c00186{width:28.677600px;}
.w1a_c00186{width:314.569800px;}
.w19_c00186{width:883.195846px;}
.w1b_c00186{width:892.161000px;}
.w18_c00186{width:892.414744px;}
.w0_c00186{width:892.500000px;}
.x0_c00186{left:0.000000px;}
.x13_c00186{left:1.066223px;}
.x15_c00186{left:3.023712px;}
.x1f_c00186{left:126.289645px;}
.x22_c00186{left:127.780974px;}
.x25_c00186{left:165.941277px;}
.x20_c00186{left:194.332404px;}
.x1c_c00186{left:266.222632px;}
.x1b_c00186{left:283.677730px;}
.x26_c00186{left:291.161227px;}
.x1e_c00186{left:328.922440px;}
.x23_c00186{left:336.047209px;}
.x24_c00186{left:404.873884px;}
.x1d_c00186{left:434.014165px;}
.x21_c00186{left:448.633800px;}
.x1_c00186{left:474.107400px;}
.x2_c00186{left:500.643000px;}
.x3_c00186{left:513.653400px;}
.x4_c00186{left:539.298000px;}
.x5_c00186{left:552.121200px;}
.x6_c00186{left:568.866600px;}
.x7_c00186{left:573.852600px;}
.x8_c00186{left:587.037600px;}
.x9_c00186{left:595.942200px;}
.xa_c00186{left:601.462800px;}
.xb_c00186{left:618.919200px;}
.xc_c00186{left:633.884400px;}
.xd_c00186{left:641.721600px;}
.xe_c00186{left:654.544800px;}
.xf_c00186{left:663.273000px;}
.x10_c00186{left:675.208800px;}
.x11_c00186{left:683.931600px;}
.x12_c00186{left:691.596000px;}
.x14_c00186{left:717.246000px;}
.x16_c00186{left:725.261400px;}
.x17_c00186{left:738.615600px;}
.x18_c00186{left:747.345600px;}
.x19_c00186{left:752.869800px;}
.x1a_c00186{left:775.132200px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws0_c00186{word-spacing:-15.833327pt;}
.ws1_c00186{word-spacing:0.000000pt;}
._6_c00186{margin-left:-1.937882pt;}
._0_c00186{margin-left:-0.915549pt;}
._1_c00186{width:1.101208pt;}
._c_c00186{width:3.875767pt;}
._b_c00186{width:4.880627pt;}
._8_c00186{width:11.409758pt;}
._4_c00186{width:18.245816pt;}
._a_c00186{width:44.127451pt;}
._9_c00186{width:45.584082pt;}
._7_c00186{width:51.621572pt;}
._2_c00186{width:102.517042pt;}
._d_c00186{width:115.344521pt;}
._3_c00186{width:171.111398pt;}
._5_c00186{width:296.071933pt;}
._e_c00186{width:354.810457pt;}
._f_c00186{width:555.210789pt;}
.fs0_c00186{font-size:63.333308pt;}
.fs1_c00186{font-size:105.765291pt;}
.y0_c00186{bottom:0.000000pt;}
.y3_c00186{bottom:0.107500pt;}
.y13_c00186{bottom:0.431250pt;}
.y12_c00186{bottom:3.799154pt;}
.y2_c00186{bottom:3.799940pt;}
.y8_c00186{bottom:6.068128pt;}
.y9_c00186{bottom:78.639305pt;}
.y1_c00186{bottom:79.322560pt;}
.y2c_c00186{bottom:119.014355pt;}
.y2b_c00186{bottom:138.802481pt;}
.y2a_c00186{bottom:158.438473pt;}
.y28_c00186{bottom:164.399101pt;}
.y29_c00186{bottom:177.122465pt;}
.y27_c00186{bottom:183.083093pt;}
.y26_c00186{bottom:237.283775pt;}
.y25_c00186{bottom:256.918433pt;}
.y24_c00186{bottom:276.551759pt;}
.y23_c00186{bottom:296.185084pt;}
.y22_c00186{bottom:315.821077pt;}
.y21_c00186{bottom:335.449069pt;}
.y20_c00186{bottom:355.086394pt;}
.y1f_c00186{bottom:374.714386pt;}
.y1e_c00186{bottom:394.350378pt;}
.y1d_c00186{bottom:413.985037pt;}
.y1c_c00186{bottom:433.773029pt;}
.y1b_c00186{bottom:453.409022pt;}
.y1a_c00186{bottom:520.326958pt;}
.y19_c00186{bottom:587.136382pt;}
.y18_c00186{bottom:605.820108pt;}
.y17_c00186{bottom:624.501967pt;}
.y16_c00186{bottom:643.185693pt;}
.y15_c00186{bottom:684.193810pt;}
.y10_c00186{bottom:756.931700pt;}
.y14_c00186{bottom:762.568445pt;}
.yf_c00186{bottom:775.614226pt;}
.y11_c00186{bottom:777.883200pt;}
.ye_c00186{bottom:795.246218pt;}
.yd_c00186{bottom:814.880077pt;}
.yc_c00186{bottom:854.303795pt;}
.yb_c00186{bottom:872.987520pt;}
.ya_c00186{bottom:913.996837pt;}
.y7_c00186{bottom:997.856101pt;}
.y6_c00186{bottom:1016.537293pt;}
.y5_c00186{bottom:1035.221019pt;}
.y4_c00186{bottom:1053.904078pt;}
.h1_c00186{height:16.942400pt;}
.h8_c00186{height:18.052800pt;}
.h2_c00186{height:56.683311pt;}
.h6_c00186{height:56.746644pt;}
.h7_c00186{height:56.809977pt;}
.h4_c00186{height:56.936644pt;}
.ha_c00186{height:95.082997pt;}
.h5_c00186{height:1110.960672pt;}
.h9_c00186{height:1122.235200pt;}
.h3_c00186{height:1122.559167pt;}
.h0_c00186{height:1122.666667pt;}
.w17_c00186{width:3.956800pt;}
.w10_c00186{width:3.958400pt;}
.w6_c00186{width:4.750400pt;}
.w9_c00186{width:6.016000pt;}
.w15_c00186{width:6.019200pt;}
.wc_c00186{width:6.966400pt;}
.w12_c00186{width:7.124800pt;}
.wf_c00186{width:7.753600pt;}
.wd_c00186{width:7.758400pt;}
.w14_c00186{width:7.760000pt;}
.w8_c00186{width:7.915200pt;}
.w7_c00186{width:7.918400pt;}
.we_c00186{width:10.609600pt;}
.w4_c00186{width:11.398400pt;}
.w2_c00186{width:11.564800pt;}
.w13_c00186{width:11.870400pt;}
.wa_c00186{width:11.875200pt;}
.w5_c00186{width:14.884800pt;}
.wb_c00186{width:15.043200pt;}
.w16_c00186{width:19.788800pt;}
.w3_c00186{width:22.795200pt;}
.w1_c00186{width:23.747200pt;}
.w11_c00186{width:25.491200pt;}
.w1a_c00186{width:279.617600pt;}
.w19_c00186{width:785.062974pt;}
.w1b_c00186{width:793.032000pt;}
.w18_c00186{width:793.257550pt;}
.w0_c00186{width:793.333333pt;}
.x0_c00186{left:0.000000pt;}
.x13_c00186{left:0.947754pt;}
.x15_c00186{left:2.687744pt;}
.x1f_c00186{left:112.257462pt;}
.x22_c00186{left:113.583088pt;}
.x25_c00186{left:147.503358pt;}
.x20_c00186{left:172.739915pt;}
.x1c_c00186{left:236.642339pt;}
.x1b_c00186{left:252.157982pt;}
.x26_c00186{left:258.809980pt;}
.x1e_c00186{left:292.375502pt;}
.x23_c00186{left:298.708631pt;}
.x24_c00186{left:359.887897pt;}
.x1d_c00186{left:385.790369pt;}
.x21_c00186{left:398.785600pt;}
.x1_c00186{left:421.428800pt;}
.x2_c00186{left:445.016000pt;}
.x3_c00186{left:456.580800pt;}
.x4_c00186{left:479.376000pt;}
.x5_c00186{left:490.774400pt;}
.x6_c00186{left:505.659200pt;}
.x7_c00186{left:510.091200pt;}
.x8_c00186{left:521.811200pt;}
.x9_c00186{left:529.726400pt;}
.xa_c00186{left:534.633600pt;}
.xb_c00186{left:550.150400pt;}
.xc_c00186{left:563.452800pt;}
.xd_c00186{left:570.419200pt;}
.xe_c00186{left:581.817600pt;}
.xf_c00186{left:589.576000pt;}
.x10_c00186{left:600.185600pt;}
.x11_c00186{left:607.939200pt;}
.x12_c00186{left:614.752000pt;}
.x14_c00186{left:637.552000pt;}
.x16_c00186{left:644.676800pt;}
.x17_c00186{left:656.547200pt;}
.x18_c00186{left:664.307200pt;}
.x19_c00186{left:669.217600pt;}
.x1a_c00186{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls0_c00187{letter-spacing:0.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:-17.812493px;}
.ws1_c00187{word-spacing:0.000000px;}
._4_c00187{margin-left:-2.781920px;}
._0_c00187{margin-left:-1.029993px;}
._1_c00187{width:1.238859px;}
._b_c00187{width:3.327429px;}
._8_c00187{width:5.226656px;}
._7_c00187{width:6.454343px;}
._a_c00187{width:26.774374px;}
._3_c00187{width:28.472269px;}
._e_c00187{width:50.103178px;}
._d_c00187{width:51.318123px;}
._2_c00187{width:129.762586px;}
._5_c00187{width:257.386696px;}
._6_c00187{width:312.046292px;}
._f_c00187{width:487.628407px;}
._c_c00187{width:583.007048px;}
._9_c00187{width:676.779298px;}
._14_c00187{width:729.472780px;}
._15_c00187{width:745.867398px;}
._19_c00187{width:773.885032px;}
._1b_c00187{width:836.750813px;}
._13_c00187{width:996.074081px;}
._12_c00187{width:1094.842281px;}
._10_c00187{width:1121.006947px;}
._16_c00187{width:1245.771608px;}
._11_c00187{width:1295.023338px;}
._1a_c00187{width:1316.013823px;}
._17_c00187{width:1317.986585px;}
._18_c00187{width:1375.342812px;}
.fc1_c00187{color:rgb(105,148,45);}
.fc0_c00187{color:rgb(35,31,32);}
.fs0_c00187{font-size:71.249972px;}
.y0_c00187{bottom:0.000000px;}
.y3_c00187{bottom:0.120938px;}
.y2_c00187{bottom:4.274933px;}
.y8_c00187{bottom:6.826644px;}
.y9_c00187{bottom:88.469218px;}
.y1_c00187{bottom:89.237880px;}
.y2d_c00187{bottom:277.990242px;}
.y2c_c00187{bottom:300.076233px;}
.y2b_c00187{bottom:322.166724px;}
.y2a_c00187{bottom:344.429715px;}
.y29_c00187{bottom:366.696007px;}
.y28_c00187{bottom:387.716698px;}
.y27_c00187{bottom:409.801189px;}
.y26_c00187{bottom:431.890181px;}
.y25_c00187{bottom:453.977672px;}
.y24_c00187{bottom:476.063663px;}
.y23_c00187{bottom:498.151154px;}
.y22_c00187{bottom:520.237145px;}
.y21_c00187{bottom:542.506136px;}
.y20_c00187{bottom:564.587627px;}
.y1f_c00187{bottom:571.293334px;}
.y1e_c00187{bottom:632.276600px;}
.y1d_c00187{bottom:654.362592px;}
.y1c_c00187{bottom:676.450083px;}
.y1b_c00187{bottom:698.542074px;}
.y1a_c00187{bottom:720.625065px;}
.y19_c00187{bottom:742.714056px;}
.y18_c00187{bottom:764.801547px;}
.y17_c00187{bottom:786.887839px;}
.y16_c00187{bottom:807.908530px;}
.y15_c00187{bottom:829.993021px;}
.y14_c00187{bottom:852.079312px;}
.y13_c00187{bottom:873.100004px;}
.y12_c00187{bottom:895.186295px;}
.y11_c00187{bottom:916.205487px;}
.y10_c00187{bottom:938.294478px;}
.yf_c00187{bottom:960.379269px;}
.ye_c00187{bottom:981.399961px;}
.yd_c00187{bottom:1003.484452px;}
.yc_c00187{bottom:1025.573443px;}
.yb_c00187{bottom:1047.656734px;}
.ya_c00187{bottom:1068.677426px;}
.y7_c00187{bottom:1122.588113px;}
.y6_c00187{bottom:1143.604455px;}
.y5_c00187{bottom:1164.623647px;}
.y4_c00187{bottom:1185.642088px;}
.h1_c00187{height:19.060200px;}
.h2_c00187{height:63.768724px;}
.h6_c00187{height:63.839974px;}
.h4_c00187{height:64.053724px;}
.h5_c00187{height:1249.830756px;}
.h3_c00187{height:1262.879062px;}
.h0_c00187{height:1263.000000px;}
.w17_c00187{width:4.451400px;}
.w10_c00187{width:4.453200px;}
.w6_c00187{width:5.344200px;}
.w9_c00187{width:6.768000px;}
.w15_c00187{width:6.771600px;}
.wc_c00187{width:7.837200px;}
.w12_c00187{width:8.015400px;}
.wf_c00187{width:8.722800px;}
.wd_c00187{width:8.728200px;}
.w14_c00187{width:8.730000px;}
.w8_c00187{width:8.904600px;}
.w7_c00187{width:8.908200px;}
.we_c00187{width:11.935800px;}
.w4_c00187{width:12.823200px;}
.w2_c00187{width:13.010400px;}
.w13_c00187{width:13.354200px;}
.wa_c00187{width:13.359600px;}
.w5_c00187{width:16.745400px;}
.wb_c00187{width:16.923600px;}
.w16_c00187{width:22.262400px;}
.w3_c00187{width:25.644600px;}
.w1_c00187{width:26.715600px;}
.w11_c00187{width:28.677600px;}
.w19_c00187{width:883.195846px;}
.w18_c00187{width:892.414744px;}
.w0_c00187{width:892.500000px;}
.x0_c00187{left:0.000000px;}
.x13_c00187{left:1.066223px;}
.x15_c00187{left:3.023712px;}
.x1f_c00187{left:126.289645px;}
.x25_c00187{left:154.075484px;}
.x20_c00187{left:163.163666px;}
.x23_c00187{left:182.504271px;}
.x1c_c00187{left:266.222632px;}
.x1b_c00187{left:283.677730px;}
.x26_c00187{left:288.379918px;}
.x1e_c00187{left:328.922440px;}
.x1d_c00187{left:434.014165px;}
.x1_c00187{left:474.107400px;}
.x2_c00187{left:500.643000px;}
.x3_c00187{left:513.653400px;}
.x4_c00187{left:539.298000px;}
.x5_c00187{left:552.121200px;}
.x6_c00187{left:568.866600px;}
.x7_c00187{left:573.852600px;}
.x27_c00187{left:576.759249px;}
.x8_c00187{left:587.037600px;}
.x22_c00187{left:588.878766px;}
.x9_c00187{left:595.942200px;}
.xa_c00187{left:601.462800px;}
.xb_c00187{left:618.919200px;}
.x21_c00187{left:623.963759px;}
.x24_c00187{left:629.843794px;}
.xc_c00187{left:633.884400px;}
.xd_c00187{left:641.721600px;}
.xe_c00187{left:654.544800px;}
.xf_c00187{left:663.273000px;}
.x10_c00187{left:675.208800px;}
.x11_c00187{left:683.931600px;}
.x12_c00187{left:691.596000px;}
.x14_c00187{left:717.246000px;}
.x16_c00187{left:725.261400px;}
.x17_c00187{left:738.615600px;}
.x18_c00187{left:747.345600px;}
.x19_c00187{left:752.869800px;}
.x1a_c00187{left:775.132200px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws0_c00187{word-spacing:-15.833327pt;}
.ws1_c00187{word-spacing:0.000000pt;}
._4_c00187{margin-left:-2.472818pt;}
._0_c00187{margin-left:-0.915549pt;}
._1_c00187{width:1.101208pt;}
._b_c00187{width:2.957715pt;}
._8_c00187{width:4.645916pt;}
._7_c00187{width:5.737194pt;}
._a_c00187{width:23.799444pt;}
._3_c00187{width:25.308684pt;}
._e_c00187{width:44.536158pt;}
._d_c00187{width:45.616109pt;}
._2_c00187{width:115.344521pt;}
._5_c00187{width:228.788174pt;}
._6_c00187{width:277.374482pt;}
._f_c00187{width:433.447473pt;}
._c_c00187{width:518.228487pt;}
._9_c00187{width:601.581598pt;}
._14_c00187{width:648.420248pt;}
._15_c00187{width:662.993243pt;}
._19_c00187{width:687.897806pt;}
._1b_c00187{width:743.778501pt;}
._13_c00187{width:885.399183pt;}
._12_c00187{width:973.193139pt;}
._10_c00187{width:996.450620pt;}
._16_c00187{width:1107.352540pt;}
._11_c00187{width:1151.131856pt;}
._1a_c00187{width:1169.790065pt;}
._17_c00187{width:1171.543631pt;}
._18_c00187{width:1222.526944pt;}
.fs0_c00187{font-size:63.333308pt;}
.y0_c00187{bottom:0.000000pt;}
.y3_c00187{bottom:0.107500pt;}
.y2_c00187{bottom:3.799940pt;}
.y8_c00187{bottom:6.068128pt;}
.y9_c00187{bottom:78.639305pt;}
.y1_c00187{bottom:79.322560pt;}
.y2d_c00187{bottom:247.102437pt;}
.y2c_c00187{bottom:266.734430pt;}
.y2b_c00187{bottom:286.370422pt;}
.y2a_c00187{bottom:306.159747pt;}
.y29_c00187{bottom:325.952006pt;}
.y28_c00187{bottom:344.637065pt;}
.y27_c00187{bottom:364.267724pt;}
.y26_c00187{bottom:383.902383pt;}
.y25_c00187{bottom:403.535708pt;}
.y24_c00187{bottom:423.167700pt;}
.y23_c00187{bottom:442.801026pt;}
.y22_c00187{bottom:462.433018pt;}
.y21_c00187{bottom:482.227677pt;}
.y20_c00187{bottom:501.855669pt;}
.y1f_c00187{bottom:507.816297pt;}
.y1e_c00187{bottom:562.023645pt;}
.y1d_c00187{bottom:581.655637pt;}
.y1c_c00187{bottom:601.288962pt;}
.y1b_c00187{bottom:620.926288pt;}
.y1a_c00187{bottom:640.555613pt;}
.y19_c00187{bottom:660.190272pt;}
.y18_c00187{bottom:679.823598pt;}
.y17_c00187{bottom:699.455856pt;}
.y16_c00187{bottom:718.140916pt;}
.y15_c00187{bottom:737.771574pt;}
.y14_c00187{bottom:757.403833pt;}
.y13_c00187{bottom:776.088892pt;}
.y12_c00187{bottom:795.721151pt;}
.y11_c00187{bottom:814.404877pt;}
.y10_c00187{bottom:834.039536pt;}
.yf_c00187{bottom:853.670461pt;}
.ye_c00187{bottom:872.355521pt;}
.yd_c00187{bottom:891.986179pt;}
.yc_c00187{bottom:911.620838pt;}
.yb_c00187{bottom:931.250430pt;}
.ya_c00187{bottom:949.935490pt;}
.y7_c00187{bottom:997.856101pt;}
.y6_c00187{bottom:1016.537293pt;}
.y5_c00187{bottom:1035.221019pt;}
.y4_c00187{bottom:1053.904078pt;}
.h1_c00187{height:16.942400pt;}
.h2_c00187{height:56.683311pt;}
.h6_c00187{height:56.746644pt;}
.h4_c00187{height:56.936644pt;}
.h5_c00187{height:1110.960672pt;}
.h3_c00187{height:1122.559167pt;}
.h0_c00187{height:1122.666667pt;}
.w17_c00187{width:3.956800pt;}
.w10_c00187{width:3.958400pt;}
.w6_c00187{width:4.750400pt;}
.w9_c00187{width:6.016000pt;}
.w15_c00187{width:6.019200pt;}
.wc_c00187{width:6.966400pt;}
.w12_c00187{width:7.124800pt;}
.wf_c00187{width:7.753600pt;}
.wd_c00187{width:7.758400pt;}
.w14_c00187{width:7.760000pt;}
.w8_c00187{width:7.915200pt;}
.w7_c00187{width:7.918400pt;}
.we_c00187{width:10.609600pt;}
.w4_c00187{width:11.398400pt;}
.w2_c00187{width:11.564800pt;}
.w13_c00187{width:11.870400pt;}
.wa_c00187{width:11.875200pt;}
.w5_c00187{width:14.884800pt;}
.wb_c00187{width:15.043200pt;}
.w16_c00187{width:19.788800pt;}
.w3_c00187{width:22.795200pt;}
.w1_c00187{width:23.747200pt;}
.w11_c00187{width:25.491200pt;}
.w19_c00187{width:785.062974pt;}
.w18_c00187{width:793.257550pt;}
.w0_c00187{width:793.333333pt;}
.x0_c00187{left:0.000000pt;}
.x13_c00187{left:0.947754pt;}
.x15_c00187{left:2.687744pt;}
.x1f_c00187{left:112.257462pt;}
.x25_c00187{left:136.955986pt;}
.x20_c00187{left:145.034370pt;}
.x23_c00187{left:162.226018pt;}
.x1c_c00187{left:236.642339pt;}
.x1b_c00187{left:252.157982pt;}
.x26_c00187{left:256.337705pt;}
.x1e_c00187{left:292.375502pt;}
.x1d_c00187{left:385.790369pt;}
.x1_c00187{left:421.428800pt;}
.x2_c00187{left:445.016000pt;}
.x3_c00187{left:456.580800pt;}
.x4_c00187{left:479.376000pt;}
.x5_c00187{left:490.774400pt;}
.x6_c00187{left:505.659200pt;}
.x7_c00187{left:510.091200pt;}
.x27_c00187{left:512.674888pt;}
.x8_c00187{left:521.811200pt;}
.x22_c00187{left:523.447792pt;}
.x9_c00187{left:529.726400pt;}
.xa_c00187{left:534.633600pt;}
.xb_c00187{left:550.150400pt;}
.x21_c00187{left:554.634452pt;}
.x24_c00187{left:559.861150pt;}
.xc_c00187{left:563.452800pt;}
.xd_c00187{left:570.419200pt;}
.xe_c00187{left:581.817600pt;}
.xf_c00187{left:589.576000pt;}
.x10_c00187{left:600.185600pt;}
.x11_c00187{left:607.939200pt;}
.x12_c00187{left:614.752000pt;}
.x14_c00187{left:637.552000pt;}
.x16_c00187{left:644.676800pt;}
.x17_c00187{left:656.547200pt;}
.x18_c00187{left:664.307200pt;}
.x19_c00187{left:669.217600pt;}
.x1a_c00187{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls0_c00188{letter-spacing:0.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;}
}
.ws0_c00188{word-spacing:-17.812493px;}
.ws1_c00188{word-spacing:0.000000px;}
._3_c00188{margin-left:-2.455245px;}
._0_c00188{margin-left:-1.029993px;}
._1_c00188{width:1.238859px;}
._2_c00188{width:129.762586px;}
._7_c00188{width:705.458511px;}
._4_c00188{width:713.641406px;}
._f_c00188{width:800.552645px;}
._d_c00188{width:831.506540px;}
._13_c00188{width:856.383387px;}
._a_c00188{width:996.367999px;}
._14_c00188{width:1071.030253px;}
._9_c00188{width:1124.085644px;}
._5_c00188{width:1142.112282px;}
._c_c00188{width:1150.776560px;}
._12_c00188{width:1258.225859px;}
._e_c00188{width:1286.740594px;}
._11_c00188{width:1313.729587px;}
._10_c00188{width:1316.013823px;}
._8_c00188{width:1361.520318px;}
._6_c00188{width:1365.325066px;}
._b_c00188{width:1391.506552px;}
.fc1_c00188{color:rgb(105,148,45);}
.fc0_c00188{color:rgb(35,31,32);}
.fs0_c00188{font-size:71.249972px;}
.fs1_c00188{font-size:118.985952px;}
.y0_c00188{bottom:0.000000px;}
.y3_c00188{bottom:0.120938px;}
.y2_c00188{bottom:4.274933px;}
.ya_c00188{bottom:6.826644px;}
.y1_c00188{bottom:89.237880px;}
.y8_c00188{bottom:95.174924px;}
.y31_c00188{bottom:123.558704px;}
.y30_c00188{bottom:145.645295px;}
.y2f_c00188{bottom:167.729786px;}
.y2e_c00188{bottom:189.817277px;}
.y2d_c00188{bottom:211.907769px;}
.y2c_c00188{bottom:233.993760px;}
.y2b_c00188{bottom:256.258251px;}
.y2a_c00188{bottom:278.345742px;}
.y29_c00188{bottom:285.051448px;}
.y28_c00188{bottom:346.033215px;}
.y27_c00188{bottom:368.122206px;}
.y26_c00188{bottom:390.209697px;}
.y25_c00188{bottom:412.294188px;}
.y24_c00188{bottom:434.386180px;}
.y23_c00188{bottom:456.469171px;}
.y22_c00188{bottom:478.559662px;}
.y21_c00188{bottom:500.642653px;}
.y20_c00188{bottom:522.733144px;}
.y1f_c00188{bottom:544.817635px;}
.y1e_c00188{bottom:566.906627px;}
.y1d_c00188{bottom:588.995618px;}
.y1c_c00188{bottom:611.080109px;}
.y1b_c00188{bottom:633.347600px;}
.y1a_c00188{bottom:655.430591px;}
.y18_c00188{bottom:662.136298px;}
.y19_c00188{bottom:676.450083px;}
.y17_c00188{bottom:683.155789px;}
.y16_c00188{bottom:744.139056px;}
.y15_c00188{bottom:766.225047px;}
.y14_c00188{bottom:788.312538px;}
.y13_c00188{bottom:810.403029px;}
.y12_c00188{bottom:832.486020px;}
.y11_c00188{bottom:854.578011px;}
.y10_c00188{bottom:876.662503px;}
.yf_c00188{bottom:898.749994px;}
.ye_c00188{bottom:920.837485px;}
.yd_c00188{bottom:942.923476px;}
.yc_c00188{bottom:965.190967px;}
.yb_c00188{bottom:987.278458px;}
.y9_c00188{bottom:1064.163137px;}
.y7_c00188{bottom:1122.588113px;}
.y6_c00188{bottom:1143.604455px;}
.y5_c00188{bottom:1164.623647px;}
.y4_c00188{bottom:1185.642088px;}
.h1_c00188{height:19.060200px;}
.h2_c00188{height:63.768724px;}
.h5_c00188{height:63.839974px;}
.h4_c00188{height:64.053724px;}
.h6_c00188{height:106.611413px;}
.h7_c00188{height:1249.830756px;}
.h3_c00188{height:1262.879062px;}
.h0_c00188{height:1263.000000px;}
.w17_c00188{width:4.451400px;}
.w10_c00188{width:4.453200px;}
.w6_c00188{width:5.344200px;}
.w9_c00188{width:6.768000px;}
.w15_c00188{width:6.771600px;}
.wc_c00188{width:7.837200px;}
.w12_c00188{width:8.015400px;}
.wf_c00188{width:8.722800px;}
.wd_c00188{width:8.728200px;}
.w14_c00188{width:8.730000px;}
.w8_c00188{width:8.904600px;}
.w7_c00188{width:8.908200px;}
.we_c00188{width:11.935800px;}
.w4_c00188{width:12.823200px;}
.w2_c00188{width:13.010400px;}
.w13_c00188{width:13.354200px;}
.wa_c00188{width:13.359600px;}
.w5_c00188{width:16.745400px;}
.wb_c00188{width:16.923600px;}
.w16_c00188{width:22.262400px;}
.w3_c00188{width:25.644600px;}
.w1_c00188{width:26.715600px;}
.w11_c00188{width:28.677600px;}
.w19_c00188{width:883.195846px;}
.w18_c00188{width:892.414744px;}
.w0_c00188{width:892.500000px;}
.x0_c00188{left:0.000000px;}
.x13_c00188{left:1.066223px;}
.x15_c00188{left:3.023712px;}
.x22_c00188{left:126.289645px;}
.x1f_c00188{left:127.818943px;}
.x23_c00188{left:165.941277px;}
.x25_c00188{left:182.504271px;}
.x1c_c00188{left:266.222632px;}
.x1b_c00188{left:283.677730px;}
.x20_c00188{left:287.418729px;}
.x24_c00188{left:291.161227px;}
.x1e_c00188{left:328.922440px;}
.x21_c00188{left:404.873884px;}
.x1d_c00188{left:434.014165px;}
.x1_c00188{left:474.107400px;}
.x2_c00188{left:500.643000px;}
.x3_c00188{left:513.653400px;}
.x4_c00188{left:539.298000px;}
.x5_c00188{left:552.121200px;}
.x6_c00188{left:568.866600px;}
.x7_c00188{left:573.852600px;}
.x8_c00188{left:587.037600px;}
.x9_c00188{left:595.942200px;}
.xa_c00188{left:601.462800px;}
.xb_c00188{left:618.919200px;}
.x26_c00188{left:629.843794px;}
.xc_c00188{left:633.884400px;}
.xd_c00188{left:641.721600px;}
.xe_c00188{left:654.544800px;}
.xf_c00188{left:663.273000px;}
.x10_c00188{left:675.208800px;}
.x11_c00188{left:683.931600px;}
.x12_c00188{left:691.596000px;}
.x14_c00188{left:717.246000px;}
.x16_c00188{left:725.261400px;}
.x17_c00188{left:738.615600px;}
.x18_c00188{left:747.345600px;}
.x19_c00188{left:752.869800px;}
.x1a_c00188{left:775.132200px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws0_c00188{word-spacing:-15.833327pt;}
.ws1_c00188{word-spacing:0.000000pt;}
._3_c00188{margin-left:-2.182440pt;}
._0_c00188{margin-left:-0.915549pt;}
._1_c00188{width:1.101208pt;}
._2_c00188{width:115.344521pt;}
._7_c00188{width:627.074232pt;}
._4_c00188{width:634.347917pt;}
._f_c00188{width:711.602351pt;}
._d_c00188{width:739.116925pt;}
._13_c00188{width:761.229677pt;}
._a_c00188{width:885.660444pt;}
._14_c00188{width:952.026892pt;}
._9_c00188{width:999.187240pt;}
._5_c00188{width:1015.210917pt;}
._c_c00188{width:1022.912498pt;}
._12_c00188{width:1118.422986pt;}
._e_c00188{width:1143.769417pt;}
._11_c00188{width:1167.759633pt;}
._10_c00188{width:1169.790065pt;}
._8_c00188{width:1210.240283pt;}
._6_c00188{width:1213.622281pt;}
._b_c00188{width:1236.894713pt;}
.fs0_c00188{font-size:63.333308pt;}
.fs1_c00188{font-size:105.765291pt;}
.y0_c00188{bottom:0.000000pt;}
.y3_c00188{bottom:0.107500pt;}
.y2_c00188{bottom:3.799940pt;}
.ya_c00188{bottom:6.068128pt;}
.y1_c00188{bottom:79.322560pt;}
.y8_c00188{bottom:84.599933pt;}
.y31_c00188{bottom:109.829959pt;}
.y30_c00188{bottom:129.462484pt;}
.y2f_c00188{bottom:149.093143pt;}
.y2e_c00188{bottom:168.726469pt;}
.y2d_c00188{bottom:188.362461pt;}
.y2c_c00188{bottom:207.994453pt;}
.y2b_c00188{bottom:227.785112pt;}
.y2a_c00188{bottom:247.418437pt;}
.y29_c00188{bottom:253.379065pt;}
.y28_c00188{bottom:307.585080pt;}
.y27_c00188{bottom:327.219739pt;}
.y26_c00188{bottom:346.853064pt;}
.y25_c00188{bottom:366.483723pt;}
.y24_c00188{bottom:386.121048pt;}
.y23_c00188{bottom:405.750374pt;}
.y22_c00188{bottom:425.386366pt;}
.y21_c00188{bottom:445.015692pt;}
.y20_c00188{bottom:464.651684pt;}
.y1f_c00188{bottom:484.282343pt;}
.y1e_c00188{bottom:503.917001pt;}
.y1d_c00188{bottom:523.551660pt;}
.y1c_c00188{bottom:543.182319pt;}
.y1b_c00188{bottom:562.975644pt;}
.y1a_c00188{bottom:582.604970pt;}
.y18_c00188{bottom:588.565598pt;}
.y19_c00188{bottom:601.288962pt;}
.y17_c00188{bottom:607.249590pt;}
.y16_c00188{bottom:661.456938pt;}
.y15_c00188{bottom:681.088930pt;}
.y14_c00188{bottom:700.722256pt;}
.y13_c00188{bottom:720.358248pt;}
.y12_c00188{bottom:739.987574pt;}
.y11_c00188{bottom:759.624899pt;}
.y10_c00188{bottom:779.255558pt;}
.yf_c00188{bottom:798.888883pt;}
.ye_c00188{bottom:818.522209pt;}
.yd_c00188{bottom:838.154201pt;}
.yc_c00188{bottom:857.947526pt;}
.yb_c00188{bottom:877.580852pt;}
.y9_c00188{bottom:945.922788pt;}
.y7_c00188{bottom:997.856101pt;}
.y6_c00188{bottom:1016.537293pt;}
.y5_c00188{bottom:1035.221019pt;}
.y4_c00188{bottom:1053.904078pt;}
.h1_c00188{height:16.942400pt;}
.h2_c00188{height:56.683311pt;}
.h5_c00188{height:56.746644pt;}
.h4_c00188{height:56.936644pt;}
.h6_c00188{height:94.765701pt;}
.h7_c00188{height:1110.960672pt;}
.h3_c00188{height:1122.559167pt;}
.h0_c00188{height:1122.666667pt;}
.w17_c00188{width:3.956800pt;}
.w10_c00188{width:3.958400pt;}
.w6_c00188{width:4.750400pt;}
.w9_c00188{width:6.016000pt;}
.w15_c00188{width:6.019200pt;}
.wc_c00188{width:6.966400pt;}
.w12_c00188{width:7.124800pt;}
.wf_c00188{width:7.753600pt;}
.wd_c00188{width:7.758400pt;}
.w14_c00188{width:7.760000pt;}
.w8_c00188{width:7.915200pt;}
.w7_c00188{width:7.918400pt;}
.we_c00188{width:10.609600pt;}
.w4_c00188{width:11.398400pt;}
.w2_c00188{width:11.564800pt;}
.w13_c00188{width:11.870400pt;}
.wa_c00188{width:11.875200pt;}
.w5_c00188{width:14.884800pt;}
.wb_c00188{width:15.043200pt;}
.w16_c00188{width:19.788800pt;}
.w3_c00188{width:22.795200pt;}
.w1_c00188{width:23.747200pt;}
.w11_c00188{width:25.491200pt;}
.w19_c00188{width:785.062974pt;}
.w18_c00188{width:793.257550pt;}
.w0_c00188{width:793.333333pt;}
.x0_c00188{left:0.000000pt;}
.x13_c00188{left:0.947754pt;}
.x15_c00188{left:2.687744pt;}
.x22_c00188{left:112.257462pt;}
.x1f_c00188{left:113.616838pt;}
.x23_c00188{left:147.503358pt;}
.x25_c00188{left:162.226018pt;}
.x1c_c00188{left:236.642339pt;}
.x1b_c00188{left:252.157982pt;}
.x20_c00188{left:255.483314pt;}
.x24_c00188{left:258.809980pt;}
.x1e_c00188{left:292.375502pt;}
.x21_c00188{left:359.887897pt;}
.x1d_c00188{left:385.790369pt;}
.x1_c00188{left:421.428800pt;}
.x2_c00188{left:445.016000pt;}
.x3_c00188{left:456.580800pt;}
.x4_c00188{left:479.376000pt;}
.x5_c00188{left:490.774400pt;}
.x6_c00188{left:505.659200pt;}
.x7_c00188{left:510.091200pt;}
.x8_c00188{left:521.811200pt;}
.x9_c00188{left:529.726400pt;}
.xa_c00188{left:534.633600pt;}
.xb_c00188{left:550.150400pt;}
.x26_c00188{left:559.861150pt;}
.xc_c00188{left:563.452800pt;}
.xd_c00188{left:570.419200pt;}
.xe_c00188{left:581.817600pt;}
.xf_c00188{left:589.576000pt;}
.x10_c00188{left:600.185600pt;}
.x11_c00188{left:607.939200pt;}
.x12_c00188{left:614.752000pt;}
.x14_c00188{left:637.552000pt;}
.x16_c00188{left:644.676800pt;}
.x17_c00188{left:656.547200pt;}
.x18_c00188{left:664.307200pt;}
.x19_c00188{left:669.217600pt;}
.x1a_c00188{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-17.812493px;}
.ws1_c00189{word-spacing:0.000000px;}
._2_c00189{margin-left:-2.168072px;}
._0_c00189{margin-left:-1.029993px;}
._1_c00189{width:1.238859px;}
._3_c00189{width:129.762586px;}
._f_c00189{width:293.040542px;}
._8_c00189{width:410.603310px;}
._11_c00189{width:449.278682px;}
._c_c00189{width:484.084649px;}
._10_c00189{width:506.072913px;}
._13_c00189{width:595.908426px;}
._e_c00189{width:606.667397px;}
._12_c00189{width:659.320132px;}
._d_c00189{width:705.458511px;}
._4_c00189{width:878.690791px;}
._7_c00189{width:1068.282720px;}
._5_c00189{width:1121.127520px;}
._9_c00189{width:1139.680485px;}
._b_c00189{width:1333.977152px;}
._a_c00189{width:1356.373643px;}
._6_c00189{width:1492.644265px;}
.fc1_c00189{color:rgb(105,148,45);}
.fc0_c00189{color:rgb(35,31,32);}
.fs0_c00189{font-size:71.249972px;}
.fs1_c00189{font-size:118.985952px;}
.y0_c00189{bottom:0.000000px;}
.y3_c00189{bottom:0.120938px;}
.y2_c00189{bottom:4.274933px;}
.y8_c00189{bottom:6.826644px;}
.y9_c00189{bottom:88.469218px;}
.y1_c00189{bottom:89.237880px;}
.y30_c00189{bottom:124.626103px;}
.y2f_c00189{bottom:146.714795px;}
.y2e_c00189{bottom:168.803786px;}
.y2d_c00189{bottom:190.886777px;}
.y2c_c00189{bottom:212.977268px;}
.y2b_c00189{bottom:235.063259px;}
.y2a_c00189{bottom:257.152250px;}
.y29_c00189{bottom:279.238242px;}
.y28_c00189{bottom:301.324233px;}
.y27_c00189{bottom:323.413224px;}
.y26_c00189{bottom:345.497715px;}
.y25_c00189{bottom:367.588206px;}
.y24_c00189{bottom:389.672697px;}
.y23_c00189{bottom:411.760189px;}
.y22_c00189{bottom:433.847680px;}
.y21_c00189{bottom:456.113671px;}
.y20_c00189{bottom:478.202662px;}
.y1e_c00189{bottom:484.908368px;}
.y1f_c00189{bottom:499.219154px;}
.y1d_c00189{bottom:505.924860px;}
.y1c_c00189{bottom:545.885635px;}
.y1b_c00189{bottom:567.974626px;}
.y1a_c00189{bottom:590.063617px;}
.y19_c00189{bottom:612.148108px;}
.y18_c00189{bottom:634.237100px;}
.y17_c00189{bottom:656.324591px;}
.y16_c00189{bottom:678.409082px;}
.y15_c00189{bottom:700.499573px;}
.y14_c00189{bottom:722.585564px;}
.y13_c00189{bottom:744.673055px;}
.y12_c00189{bottom:766.939046px;}
.y11_c00189{bottom:789.025038px;}
.y10_c00189{bottom:865.914216px;}
.yf_c00189{bottom:959.132470px;}
.ye_c00189{bottom:981.221461px;}
.yd_c00189{bottom:1003.305952px;}
.yc_c00189{bottom:1025.573443px;}
.yb_c00189{bottom:1047.656734px;}
.ya_c00189{bottom:1068.677426px;}
.y7_c00189{bottom:1122.588113px;}
.y6_c00189{bottom:1143.604455px;}
.y5_c00189{bottom:1164.623647px;}
.y4_c00189{bottom:1185.642088px;}
.h1_c00189{height:19.060200px;}
.h2_c00189{height:63.768724px;}
.h6_c00189{height:63.839974px;}
.h4_c00189{height:64.053724px;}
.h7_c00189{height:106.611413px;}
.h5_c00189{height:1249.830756px;}
.h3_c00189{height:1262.879062px;}
.h0_c00189{height:1263.000000px;}
.w17_c00189{width:4.451400px;}
.w10_c00189{width:4.453200px;}
.w6_c00189{width:5.344200px;}
.w9_c00189{width:6.768000px;}
.w15_c00189{width:6.771600px;}
.wc_c00189{width:7.837200px;}
.w12_c00189{width:8.015400px;}
.wf_c00189{width:8.722800px;}
.wd_c00189{width:8.728200px;}
.w14_c00189{width:8.730000px;}
.w8_c00189{width:8.904600px;}
.w7_c00189{width:8.908200px;}
.we_c00189{width:11.935800px;}
.w4_c00189{width:12.823200px;}
.w2_c00189{width:13.010400px;}
.w13_c00189{width:13.354200px;}
.wa_c00189{width:13.359600px;}
.w5_c00189{width:16.745400px;}
.wb_c00189{width:16.923600px;}
.w16_c00189{width:22.262400px;}
.w3_c00189{width:25.644600px;}
.w1_c00189{width:26.715600px;}
.w11_c00189{width:28.677600px;}
.w19_c00189{width:883.195846px;}
.w18_c00189{width:892.414744px;}
.w0_c00189{width:892.500000px;}
.x0_c00189{left:0.000000px;}
.x13_c00189{left:1.066223px;}
.x15_c00189{left:3.023712px;}
.x1f_c00189{left:126.289645px;}
.x20_c00189{left:154.075484px;}
.x25_c00189{left:165.941277px;}
.x23_c00189{left:212.252259px;}
.x1c_c00189{left:266.222632px;}
.x1b_c00189{left:283.677730px;}
.x21_c00189{left:288.379918px;}
.x26_c00189{left:291.161227px;}
.x1e_c00189{left:328.922440px;}
.x24_c00189{left:404.873884px;}
.x1d_c00189{left:434.014165px;}
.x1_c00189{left:474.107400px;}
.x2_c00189{left:500.643000px;}
.x3_c00189{left:513.653400px;}
.x4_c00189{left:539.298000px;}
.x5_c00189{left:552.121200px;}
.x6_c00189{left:568.866600px;}
.x7_c00189{left:573.852600px;}
.x22_c00189{left:576.759249px;}
.x8_c00189{left:587.037600px;}
.x9_c00189{left:595.942200px;}
.xa_c00189{left:601.462800px;}
.xb_c00189{left:618.919200px;}
.xc_c00189{left:633.884400px;}
.xd_c00189{left:641.721600px;}
.xe_c00189{left:654.544800px;}
.xf_c00189{left:663.273000px;}
.x10_c00189{left:675.208800px;}
.x11_c00189{left:683.931600px;}
.x12_c00189{left:691.596000px;}
.x14_c00189{left:717.246000px;}
.x16_c00189{left:725.261400px;}
.x17_c00189{left:738.615600px;}
.x18_c00189{left:747.345600px;}
.x19_c00189{left:752.869800px;}
.x1a_c00189{left:775.132200px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:-15.833327pt;}
.ws1_c00189{word-spacing:0.000000pt;}
._2_c00189{margin-left:-1.927175pt;}
._0_c00189{margin-left:-0.915549pt;}
._1_c00189{width:1.101208pt;}
._3_c00189{width:115.344521pt;}
._f_c00189{width:260.480482pt;}
._8_c00189{width:364.980720pt;}
._11_c00189{width:399.358829pt;}
._c_c00189{width:430.297466pt;}
._10_c00189{width:449.842590pt;}
._13_c00189{width:529.696379pt;}
._e_c00189{width:539.259909pt;}
._12_c00189{width:586.062340pt;}
._d_c00189{width:627.074232pt;}
._4_c00189{width:781.058481pt;}
._7_c00189{width:949.584640pt;}
._5_c00189{width:996.557795pt;}
._9_c00189{width:1013.049320pt;}
._b_c00189{width:1185.757469pt;}
._a_c00189{width:1205.665461pt;}
._6_c00189{width:1326.794903pt;}
.fs0_c00189{font-size:63.333308pt;}
.fs1_c00189{font-size:105.765291pt;}
.y0_c00189{bottom:0.000000pt;}
.y3_c00189{bottom:0.107500pt;}
.y2_c00189{bottom:3.799940pt;}
.y8_c00189{bottom:6.068128pt;}
.y9_c00189{bottom:78.639305pt;}
.y1_c00189{bottom:79.322560pt;}
.y30_c00189{bottom:110.778759pt;}
.y2f_c00189{bottom:130.413151pt;}
.y2e_c00189{bottom:150.047810pt;}
.y2d_c00189{bottom:169.677135pt;}
.y2c_c00189{bottom:189.313127pt;}
.y2b_c00189{bottom:208.945119pt;}
.y2a_c00189{bottom:228.579778pt;}
.y29_c00189{bottom:248.211770pt;}
.y28_c00189{bottom:267.843762pt;}
.y27_c00189{bottom:287.478421pt;}
.y26_c00189{bottom:307.109080pt;}
.y25_c00189{bottom:326.745072pt;}
.y24_c00189{bottom:346.375731pt;}
.y23_c00189{bottom:366.009057pt;}
.y22_c00189{bottom:385.642382pt;}
.y21_c00189{bottom:405.434374pt;}
.y20_c00189{bottom:425.069033pt;}
.y1e_c00189{bottom:431.029661pt;}
.y1f_c00189{bottom:443.750359pt;}
.y1d_c00189{bottom:449.710987pt;}
.y1c_c00189{bottom:485.231675pt;}
.y1b_c00189{bottom:504.866334pt;}
.y1a_c00189{bottom:524.500993pt;}
.y19_c00189{bottom:544.131652pt;}
.y18_c00189{bottom:563.766311pt;}
.y17_c00189{bottom:583.399636pt;}
.y16_c00189{bottom:603.030295pt;}
.y15_c00189{bottom:622.666287pt;}
.y14_c00189{bottom:642.298279pt;}
.y13_c00189{bottom:661.931605pt;}
.y12_c00189{bottom:681.723597pt;}
.y11_c00189{bottom:701.355589pt;}
.y10_c00189{bottom:769.701525pt;}
.yf_c00189{bottom:852.562195pt;}
.ye_c00189{bottom:872.196854pt;}
.yd_c00189{bottom:891.827513pt;}
.yc_c00189{bottom:911.620838pt;}
.yb_c00189{bottom:931.250430pt;}
.ya_c00189{bottom:949.935490pt;}
.y7_c00189{bottom:997.856101pt;}
.y6_c00189{bottom:1016.537293pt;}
.y5_c00189{bottom:1035.221019pt;}
.y4_c00189{bottom:1053.904078pt;}
.h1_c00189{height:16.942400pt;}
.h2_c00189{height:56.683311pt;}
.h6_c00189{height:56.746644pt;}
.h4_c00189{height:56.936644pt;}
.h7_c00189{height:94.765701pt;}
.h5_c00189{height:1110.960672pt;}
.h3_c00189{height:1122.559167pt;}
.h0_c00189{height:1122.666667pt;}
.w17_c00189{width:3.956800pt;}
.w10_c00189{width:3.958400pt;}
.w6_c00189{width:4.750400pt;}
.w9_c00189{width:6.016000pt;}
.w15_c00189{width:6.019200pt;}
.wc_c00189{width:6.966400pt;}
.w12_c00189{width:7.124800pt;}
.wf_c00189{width:7.753600pt;}
.wd_c00189{width:7.758400pt;}
.w14_c00189{width:7.760000pt;}
.w8_c00189{width:7.915200pt;}
.w7_c00189{width:7.918400pt;}
.we_c00189{width:10.609600pt;}
.w4_c00189{width:11.398400pt;}
.w2_c00189{width:11.564800pt;}
.w13_c00189{width:11.870400pt;}
.wa_c00189{width:11.875200pt;}
.w5_c00189{width:14.884800pt;}
.wb_c00189{width:15.043200pt;}
.w16_c00189{width:19.788800pt;}
.w3_c00189{width:22.795200pt;}
.w1_c00189{width:23.747200pt;}
.w11_c00189{width:25.491200pt;}
.w19_c00189{width:785.062974pt;}
.w18_c00189{width:793.257550pt;}
.w0_c00189{width:793.333333pt;}
.x0_c00189{left:0.000000pt;}
.x13_c00189{left:0.947754pt;}
.x15_c00189{left:2.687744pt;}
.x1f_c00189{left:112.257462pt;}
.x20_c00189{left:136.955986pt;}
.x25_c00189{left:147.503358pt;}
.x23_c00189{left:188.668675pt;}
.x1c_c00189{left:236.642339pt;}
.x1b_c00189{left:252.157982pt;}
.x21_c00189{left:256.337705pt;}
.x26_c00189{left:258.809980pt;}
.x1e_c00189{left:292.375502pt;}
.x24_c00189{left:359.887897pt;}
.x1d_c00189{left:385.790369pt;}
.x1_c00189{left:421.428800pt;}
.x2_c00189{left:445.016000pt;}
.x3_c00189{left:456.580800pt;}
.x4_c00189{left:479.376000pt;}
.x5_c00189{left:490.774400pt;}
.x6_c00189{left:505.659200pt;}
.x7_c00189{left:510.091200pt;}
.x22_c00189{left:512.674888pt;}
.x8_c00189{left:521.811200pt;}
.x9_c00189{left:529.726400pt;}
.xa_c00189{left:534.633600pt;}
.xb_c00189{left:550.150400pt;}
.xc_c00189{left:563.452800pt;}
.xd_c00189{left:570.419200pt;}
.xe_c00189{left:581.817600pt;}
.xf_c00189{left:589.576000pt;}
.x10_c00189{left:600.185600pt;}
.x11_c00189{left:607.939200pt;}
.x12_c00189{left:614.752000pt;}
.x14_c00189{left:637.552000pt;}
.x16_c00189{left:644.676800pt;}
.x17_c00189{left:656.547200pt;}
.x18_c00189{left:664.307200pt;}
.x19_c00189{left:669.217600pt;}
.x1a_c00189{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls0_c00190{letter-spacing:0.000000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-17.812493px;}
.ws1_c00190{word-spacing:0.000000px;}
._3_c00190{margin-left:-2.217580px;}
._0_c00190{margin-left:-1.029993px;}
._1_c00190{width:1.238859px;}
._2_c00190{width:129.762586px;}
._4_c00190{width:333.261423px;}
._5_c00190{width:1286.502929px;}
._7_c00190{width:1364.278310px;}
._6_c00190{width:1435.334509px;}
.fc1_c00190{color:rgb(105,148,45);}
.fc0_c00190{color:rgb(35,31,32);}
.fs0_c00190{font-size:71.249972px;}
.fs1_c00190{font-size:118.985952px;}
.y0_c00190{bottom:0.000000px;}
.y3_c00190{bottom:0.120938px;}
.yb_c00190{bottom:0.485156px;}
.y2_c00190{bottom:4.274933px;}
.yd_c00190{bottom:6.826644px;}
.y1_c00190{bottom:89.237880px;}
.y8_c00190{bottom:95.174924px;}
.y2c_c00190{bottom:189.640277px;}
.y2b_c00190{bottom:211.729269px;}
.y2a_c00190{bottom:233.816760px;}
.y29_c00190{bottom:255.904251px;}
.y28_c00190{bottom:277.990242px;}
.y27_c00190{bottom:300.076233px;}
.y26_c00190{bottom:322.166724px;}
.y25_c00190{bottom:344.251216px;}
.y24_c00190{bottom:366.340207px;}
.y23_c00190{bottom:388.427698px;}
.y22_c00190{bottom:410.512189px;}
.y21_c00190{bottom:432.602680px;}
.y20_c00190{bottom:454.690171px;}
.y1f_c00190{bottom:476.774663px;}
.y1e_c00190{bottom:498.862154px;}
.y1d_c00190{bottom:520.949645px;}
.y1c_c00190{bottom:543.215636px;}
.y1b_c00190{bottom:565.300127px;}
.y1a_c00190{bottom:642.190806px;}
.y19_c00190{bottom:714.394068px;}
.y18_c00190{bottom:736.657059px;}
.y17_c00190{bottom:758.924100px;}
.y16_c00190{bottom:779.942541px;}
.y15_c00190{bottom:802.028532px;}
.y14_c00190{bottom:824.116024px;}
.y13_c00190{bottom:846.205015px;}
.y12_c00190{bottom:868.291006px;}
.y11_c00190{bottom:890.376997px;}
.y10_c00190{bottom:912.464488px;}
.yf_c00190{bottom:934.731979px;}
.ye_c00190{bottom:956.814971px;}
.yc_c00190{bottom:963.156459px;}
.ya_c00190{bottom:1053.298641px;}
.y9_c00190{bottom:1075.383132px;}
.y7_c00190{bottom:1122.588113px;}
.y6_c00190{bottom:1143.604455px;}
.y5_c00190{bottom:1164.623647px;}
.y4_c00190{bottom:1185.642088px;}
.h1_c00190{height:19.060200px;}
.h2_c00190{height:63.768724px;}
.h5_c00190{height:63.839974px;}
.h4_c00190{height:64.053724px;}
.h8_c00190{height:106.611413px;}
.h7_c00190{height:1249.830756px;}
.h6_c00190{height:1262.514600px;}
.h3_c00190{height:1262.879062px;}
.h0_c00190{height:1263.000000px;}
.w17_c00190{width:4.451400px;}
.w10_c00190{width:4.453200px;}
.w6_c00190{width:5.344200px;}
.w9_c00190{width:6.768000px;}
.w15_c00190{width:6.771600px;}
.wc_c00190{width:7.837200px;}
.w12_c00190{width:8.015400px;}
.wf_c00190{width:8.722800px;}
.wd_c00190{width:8.728200px;}
.w14_c00190{width:8.730000px;}
.w8_c00190{width:8.904600px;}
.w7_c00190{width:8.908200px;}
.we_c00190{width:11.935800px;}
.w4_c00190{width:12.823200px;}
.w2_c00190{width:13.010400px;}
.w13_c00190{width:13.354200px;}
.wa_c00190{width:13.359600px;}
.w5_c00190{width:16.745400px;}
.wb_c00190{width:16.923600px;}
.w16_c00190{width:22.262400px;}
.w3_c00190{width:25.644600px;}
.w1_c00190{width:26.715600px;}
.w11_c00190{width:28.677600px;}
.w1a_c00190{width:883.195846px;}
.w19_c00190{width:892.161000px;}
.w18_c00190{width:892.414744px;}
.w0_c00190{width:892.500000px;}
.x0_c00190{left:0.000000px;}
.x13_c00190{left:1.066223px;}
.x15_c00190{left:3.023712px;}
.x22_c00190{left:126.289645px;}
.x1f_c00190{left:127.818943px;}
.x23_c00190{left:154.075484px;}
.x26_c00190{left:170.925775px;}
.x20_c00190{left:182.466302px;}
.x1c_c00190{left:266.222632px;}
.x1b_c00190{left:283.677730px;}
.x24_c00190{left:288.379918px;}
.x1e_c00190{left:328.922440px;}
.x27_c00190{left:404.873884px;}
.x1d_c00190{left:434.014165px;}
.x1_c00190{left:474.107400px;}
.x2_c00190{left:500.643000px;}
.x3_c00190{left:513.653400px;}
.x4_c00190{left:539.298000px;}
.x5_c00190{left:552.121200px;}
.x6_c00190{left:568.866600px;}
.x7_c00190{left:573.852600px;}
.x25_c00190{left:576.759249px;}
.x8_c00190{left:587.037600px;}
.x9_c00190{left:595.942200px;}
.xa_c00190{left:601.462800px;}
.xb_c00190{left:618.919200px;}
.x21_c00190{left:629.843794px;}
.xc_c00190{left:633.884400px;}
.xd_c00190{left:641.721600px;}
.xe_c00190{left:654.544800px;}
.xf_c00190{left:663.273000px;}
.x10_c00190{left:675.208800px;}
.x11_c00190{left:683.931600px;}
.x12_c00190{left:691.596000px;}
.x14_c00190{left:717.246000px;}
.x16_c00190{left:725.261400px;}
.x17_c00190{left:738.615600px;}
.x18_c00190{left:747.345600px;}
.x19_c00190{left:752.869800px;}
.x1a_c00190{left:775.132200px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws0_c00190{word-spacing:-15.833327pt;}
.ws1_c00190{word-spacing:0.000000pt;}
._3_c00190{margin-left:-1.971182pt;}
._0_c00190{margin-left:-0.915549pt;}
._1_c00190{width:1.101208pt;}
._2_c00190{width:115.344521pt;}
._4_c00190{width:296.232376pt;}
._5_c00190{width:1143.558159pt;}
._7_c00190{width:1212.691831pt;}
._6_c00190{width:1275.852897pt;}
.fs0_c00190{font-size:63.333308pt;}
.fs1_c00190{font-size:105.765291pt;}
.y0_c00190{bottom:0.000000pt;}
.y3_c00190{bottom:0.107500pt;}
.yb_c00190{bottom:0.431250pt;}
.y2_c00190{bottom:3.799940pt;}
.yd_c00190{bottom:6.068128pt;}
.y1_c00190{bottom:79.322560pt;}
.y8_c00190{bottom:84.599933pt;}
.y2c_c00190{bottom:168.569135pt;}
.y2b_c00190{bottom:188.203794pt;}
.y2a_c00190{bottom:207.837120pt;}
.y29_c00190{bottom:227.470445pt;}
.y28_c00190{bottom:247.102437pt;}
.y27_c00190{bottom:266.734430pt;}
.y26_c00190{bottom:286.370422pt;}
.y25_c00190{bottom:306.001081pt;}
.y24_c00190{bottom:325.635739pt;}
.y23_c00190{bottom:345.269065pt;}
.y22_c00190{bottom:364.899724pt;}
.y21_c00190{bottom:384.535716pt;}
.y20_c00190{bottom:404.169041pt;}
.y1f_c00190{bottom:423.799700pt;}
.y1e_c00190{bottom:443.433026pt;}
.y1d_c00190{bottom:463.066351pt;}
.y1c_c00190{bottom:482.858343pt;}
.y1b_c00190{bottom:502.489002pt;}
.y1a_c00190{bottom:570.836272pt;}
.y19_c00190{bottom:635.016949pt;}
.y18_c00190{bottom:654.806274pt;}
.y17_c00190{bottom:674.599200pt;}
.y16_c00190{bottom:693.282259pt;}
.y15_c00190{bottom:712.914251pt;}
.y14_c00190{bottom:732.547577pt;}
.y13_c00190{bottom:752.182235pt;}
.y12_c00190{bottom:771.814228pt;}
.y11_c00190{bottom:791.446220pt;}
.y10_c00190{bottom:811.079545pt;}
.yf_c00190{bottom:830.872871pt;}
.ye_c00190{bottom:850.502196pt;}
.yc_c00190{bottom:856.139074pt;}
.ya_c00190{bottom:936.265459pt;}
.y9_c00190{bottom:955.896118pt;}
.y7_c00190{bottom:997.856101pt;}
.y6_c00190{bottom:1016.537293pt;}
.y5_c00190{bottom:1035.221019pt;}
.y4_c00190{bottom:1053.904078pt;}
.h1_c00190{height:16.942400pt;}
.h2_c00190{height:56.683311pt;}
.h5_c00190{height:56.746644pt;}
.h4_c00190{height:56.936644pt;}
.h8_c00190{height:94.765701pt;}
.h7_c00190{height:1110.960672pt;}
.h6_c00190{height:1122.235200pt;}
.h3_c00190{height:1122.559167pt;}
.h0_c00190{height:1122.666667pt;}
.w17_c00190{width:3.956800pt;}
.w10_c00190{width:3.958400pt;}
.w6_c00190{width:4.750400pt;}
.w9_c00190{width:6.016000pt;}
.w15_c00190{width:6.019200pt;}
.wc_c00190{width:6.966400pt;}
.w12_c00190{width:7.124800pt;}
.wf_c00190{width:7.753600pt;}
.wd_c00190{width:7.758400pt;}
.w14_c00190{width:7.760000pt;}
.w8_c00190{width:7.915200pt;}
.w7_c00190{width:7.918400pt;}
.we_c00190{width:10.609600pt;}
.w4_c00190{width:11.398400pt;}
.w2_c00190{width:11.564800pt;}
.w13_c00190{width:11.870400pt;}
.wa_c00190{width:11.875200pt;}
.w5_c00190{width:14.884800pt;}
.wb_c00190{width:15.043200pt;}
.w16_c00190{width:19.788800pt;}
.w3_c00190{width:22.795200pt;}
.w1_c00190{width:23.747200pt;}
.w11_c00190{width:25.491200pt;}
.w1a_c00190{width:785.062974pt;}
.w19_c00190{width:793.032000pt;}
.w18_c00190{width:793.257550pt;}
.w0_c00190{width:793.333333pt;}
.x0_c00190{left:0.000000pt;}
.x13_c00190{left:0.947754pt;}
.x15_c00190{left:2.687744pt;}
.x22_c00190{left:112.257462pt;}
.x1f_c00190{left:113.616838pt;}
.x23_c00190{left:136.955986pt;}
.x26_c00190{left:151.934023pt;}
.x20_c00190{left:162.192268pt;}
.x1c_c00190{left:236.642339pt;}
.x1b_c00190{left:252.157982pt;}
.x24_c00190{left:256.337705pt;}
.x1e_c00190{left:292.375502pt;}
.x27_c00190{left:359.887897pt;}
.x1d_c00190{left:385.790369pt;}
.x1_c00190{left:421.428800pt;}
.x2_c00190{left:445.016000pt;}
.x3_c00190{left:456.580800pt;}
.x4_c00190{left:479.376000pt;}
.x5_c00190{left:490.774400pt;}
.x6_c00190{left:505.659200pt;}
.x7_c00190{left:510.091200pt;}
.x25_c00190{left:512.674888pt;}
.x8_c00190{left:521.811200pt;}
.x9_c00190{left:529.726400pt;}
.xa_c00190{left:534.633600pt;}
.xb_c00190{left:550.150400pt;}
.x21_c00190{left:559.861150pt;}
.xc_c00190{left:563.452800pt;}
.xd_c00190{left:570.419200pt;}
.xe_c00190{left:581.817600pt;}
.xf_c00190{left:589.576000pt;}
.x10_c00190{left:600.185600pt;}
.x11_c00190{left:607.939200pt;}
.x12_c00190{left:614.752000pt;}
.x14_c00190{left:637.552000pt;}
.x16_c00190{left:644.676800pt;}
.x17_c00190{left:656.547200pt;}
.x18_c00190{left:664.307200pt;}
.x19_c00190{left:669.217600pt;}
.x1a_c00190{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00191{word-spacing:-17.812493px;}
.ws1_c00191{word-spacing:0.000000px;}
._2_c00191{margin-left:-2.039848px;}
._0_c00191{margin-left:-1.029993px;}
._1_c00191{width:1.238859px;}
._16_c00191{width:36.433955px;}
._f_c00191{width:59.798456px;}
._3_c00191{width:129.762586px;}
._11_c00191{width:259.544040px;}
._c_c00191{width:369.218038px;}
._10_c00191{width:379.896343px;}
._d_c00191{width:441.251170px;}
._b_c00191{width:505.715239px;}
._7_c00191{width:516.125925px;}
._e_c00191{width:558.000353px;}
._9_c00191{width:606.667397px;}
._a_c00191{width:628.957682px;}
._8_c00191{width:706.468366px;}
._17_c00191{width:938.013500px;}
._15_c00191{width:1056.469423px;}
._18_c00191{width:1105.167961px;}
._4_c00191{width:1108.188023px;}
._13_c00191{width:1137.836976px;}
._14_c00191{width:1286.325197px;}
._12_c00191{width:1313.865824px;}
._6_c00191{width:1333.848928px;}
._5_c00191{width:1355.537419px;}
.fc1_c00191{color:rgb(105,148,45);}
.fc0_c00191{color:rgb(35,31,32);}
.fs0_c00191{font-size:71.249972px;}
.y0_c00191{bottom:0.000000px;}
.y3_c00191{bottom:0.120938px;}
.y2_c00191{bottom:4.274933px;}
.yb_c00191{bottom:6.826644px;}
.y1_c00191{bottom:89.237880px;}
.y8_c00191{bottom:95.174924px;}
.y30_c00191{bottom:299.006734px;}
.y2f_c00191{bottom:321.095725px;}
.y2e_c00191{bottom:343.183216px;}
.y2d_c00191{bottom:365.447707px;}
.y2c_c00191{bottom:387.709498px;}
.y2b_c00191{bottom:408.730190px;}
.y2a_c00191{bottom:430.822181px;}
.y29_c00191{bottom:452.905172px;}
.y28_c00191{bottom:474.996713px;}
.y27_c00191{bottom:496.015155px;}
.y26_c00191{bottom:518.098146px;}
.y25_c00191{bottom:540.188637px;}
.y24_c00191{bottom:562.276128px;}
.y23_c00191{bottom:584.540619px;}
.y22_c00191{bottom:606.808111px;}
.y21_c00191{bottom:613.513817px;}
.y20_c00191{bottom:628.891102px;}
.y1f_c00191{bottom:650.983093px;}
.y1e_c00191{bottom:673.066084px;}
.y1d_c00191{bottom:695.155075px;}
.y1c_c00191{bottom:717.244066px;}
.y1b_c00191{bottom:739.327358px;}
.y1a_c00191{bottom:760.348049px;}
.y19_c00191{bottom:782.432540px;}
.y18_c00191{bottom:804.521531px;}
.y17_c00191{bottom:826.612023px;}
.y16_c00191{bottom:848.696514px;}
.y15_c00191{bottom:870.784005px;}
.y14_c00191{bottom:892.871496px;}
.y13_c00191{bottom:914.958987px;}
.y12_c00191{bottom:937.047978px;}
.y11_c00191{bottom:959.132470px;}
.y10_c00191{bottom:981.221461px;}
.yf_c00191{bottom:1003.305952px;}
.ye_c00191{bottom:1025.573443px;}
.yd_c00191{bottom:1047.660934px;}
.ya_c00191{bottom:1054.366641px;}
.yc_c00191{bottom:1068.677426px;}
.y9_c00191{bottom:1075.383132px;}
.y7_c00191{bottom:1122.588113px;}
.y6_c00191{bottom:1143.604455px;}
.y5_c00191{bottom:1164.623647px;}
.y4_c00191{bottom:1185.642088px;}
.h1_c00191{height:19.060200px;}
.h2_c00191{height:63.768724px;}
.h5_c00191{height:63.839974px;}
.h4_c00191{height:64.053724px;}
.h6_c00191{height:1249.830756px;}
.h3_c00191{height:1262.879062px;}
.h0_c00191{height:1263.000000px;}
.w17_c00191{width:4.451400px;}
.w10_c00191{width:4.453200px;}
.w6_c00191{width:5.344200px;}
.w9_c00191{width:6.768000px;}
.w15_c00191{width:6.771600px;}
.wc_c00191{width:7.837200px;}
.w12_c00191{width:8.015400px;}
.wf_c00191{width:8.722800px;}
.wd_c00191{width:8.728200px;}
.w14_c00191{width:8.730000px;}
.w8_c00191{width:8.904600px;}
.w7_c00191{width:8.908200px;}
.we_c00191{width:11.935800px;}
.w4_c00191{width:12.823200px;}
.w2_c00191{width:13.010400px;}
.w13_c00191{width:13.354200px;}
.wa_c00191{width:13.359600px;}
.w5_c00191{width:16.745400px;}
.wb_c00191{width:16.923600px;}
.w16_c00191{width:22.262400px;}
.w3_c00191{width:25.644600px;}
.w1_c00191{width:26.715600px;}
.w11_c00191{width:28.677600px;}
.w19_c00191{width:883.195846px;}
.w18_c00191{width:892.414744px;}
.w0_c00191{width:892.500000px;}
.x0_c00191{left:0.000000px;}
.x13_c00191{left:1.066223px;}
.x15_c00191{left:3.023712px;}
.x22_c00191{left:126.289645px;}
.x1f_c00191{left:127.818943px;}
.x27_c00191{left:154.075484px;}
.x23_c00191{left:163.163666px;}
.x20_c00191{left:165.941277px;}
.x25_c00191{left:182.504271px;}
.x1c_c00191{left:266.222632px;}
.x1b_c00191{left:283.677730px;}
.x28_c00191{left:288.379918px;}
.x21_c00191{left:291.161227px;}
.x1e_c00191{left:328.922440px;}
.x1d_c00191{left:434.014165px;}
.x1_c00191{left:474.107400px;}
.x2_c00191{left:500.643000px;}
.x3_c00191{left:513.653400px;}
.x4_c00191{left:539.298000px;}
.x5_c00191{left:552.121200px;}
.x6_c00191{left:568.866600px;}
.x7_c00191{left:573.852600px;}
.x29_c00191{left:576.759249px;}
.x8_c00191{left:587.037600px;}
.x9_c00191{left:595.942200px;}
.xa_c00191{left:601.462800px;}
.xb_c00191{left:618.919200px;}
.x24_c00191{left:623.963759px;}
.x26_c00191{left:629.843794px;}
.xc_c00191{left:633.884400px;}
.xd_c00191{left:641.721600px;}
.xe_c00191{left:654.544800px;}
.xf_c00191{left:663.273000px;}
.x10_c00191{left:675.208800px;}
.x11_c00191{left:683.931600px;}
.x12_c00191{left:691.596000px;}
.x14_c00191{left:717.246000px;}
.x16_c00191{left:725.261400px;}
.x17_c00191{left:738.615600px;}
.x18_c00191{left:747.345600px;}
.x19_c00191{left:752.869800px;}
.x1a_c00191{left:775.132200px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:-15.833327pt;}
.ws1_c00191{word-spacing:0.000000pt;}
._2_c00191{margin-left:-1.813198pt;}
._0_c00191{margin-left:-0.915549pt;}
._1_c00191{width:1.101208pt;}
._16_c00191{width:32.385738pt;}
._f_c00191{width:53.154183pt;}
._3_c00191{width:115.344521pt;}
._11_c00191{width:230.705813pt;}
._c_c00191{width:328.193811pt;}
._10_c00191{width:337.685638pt;}
._d_c00191{width:392.223263pt;}
._b_c00191{width:449.524657pt;}
._7_c00191{width:458.778600pt;}
._e_c00191{width:496.000314pt;}
._9_c00191{width:539.259909pt;}
._a_c00191{width:559.073495pt;}
._8_c00191{width:627.971881pt;}
._17_c00191{width:833.789778pt;}
._15_c00191{width:939.083932pt;}
._18_c00191{width:982.371520pt;}
._4_c00191{width:985.056020pt;}
._13_c00191{width:1011.410645pt;}
._14_c00191{width:1143.400175pt;}
._12_c00191{width:1167.880732pt;}
._6_c00191{width:1185.643491pt;}
._5_c00191{width:1204.922150pt;}
.fs0_c00191{font-size:63.333308pt;}
.y0_c00191{bottom:0.000000pt;}
.y3_c00191{bottom:0.107500pt;}
.y2_c00191{bottom:3.799940pt;}
.yb_c00191{bottom:6.068128pt;}
.y1_c00191{bottom:79.322560pt;}
.y8_c00191{bottom:84.599933pt;}
.y30_c00191{bottom:265.783763pt;}
.y2f_c00191{bottom:285.418422pt;}
.y2e_c00191{bottom:305.051748pt;}
.y2d_c00191{bottom:324.842406pt;}
.y2c_c00191{bottom:344.630665pt;}
.y2b_c00191{bottom:363.315724pt;}
.y2a_c00191{bottom:382.953050pt;}
.y29_c00191{bottom:402.582375pt;}
.y28_c00191{bottom:422.219301pt;}
.y27_c00191{bottom:440.902360pt;}
.y26_c00191{bottom:460.531685pt;}
.y25_c00191{bottom:480.167678pt;}
.y24_c00191{bottom:499.801003pt;}
.y23_c00191{bottom:519.591662pt;}
.y22_c00191{bottom:539.384987pt;}
.y21_c00191{bottom:545.345615pt;}
.y20_c00191{bottom:559.014313pt;}
.y1f_c00191{bottom:578.651638pt;}
.y1e_c00191{bottom:598.280964pt;}
.y1d_c00191{bottom:617.915622pt;}
.y1c_c00191{bottom:637.550281pt;}
.y1b_c00191{bottom:657.179873pt;}
.y1a_c00191{bottom:675.864933pt;}
.y19_c00191{bottom:695.495591pt;}
.y18_c00191{bottom:715.130250pt;}
.y17_c00191{bottom:734.766242pt;}
.y16_c00191{bottom:754.396901pt;}
.y15_c00191{bottom:774.030227pt;}
.y14_c00191{bottom:793.663552pt;}
.y13_c00191{bottom:813.296878pt;}
.y12_c00191{bottom:832.931536pt;}
.y11_c00191{bottom:852.562195pt;}
.y10_c00191{bottom:872.196854pt;}
.yf_c00191{bottom:891.827513pt;}
.ye_c00191{bottom:911.620838pt;}
.yd_c00191{bottom:931.254164pt;}
.ya_c00191{bottom:937.214792pt;}
.yc_c00191{bottom:949.935490pt;}
.y9_c00191{bottom:955.896118pt;}
.y7_c00191{bottom:997.856101pt;}
.y6_c00191{bottom:1016.537293pt;}
.y5_c00191{bottom:1035.221019pt;}
.y4_c00191{bottom:1053.904078pt;}
.h1_c00191{height:16.942400pt;}
.h2_c00191{height:56.683311pt;}
.h5_c00191{height:56.746644pt;}
.h4_c00191{height:56.936644pt;}
.h6_c00191{height:1110.960672pt;}
.h3_c00191{height:1122.559167pt;}
.h0_c00191{height:1122.666667pt;}
.w17_c00191{width:3.956800pt;}
.w10_c00191{width:3.958400pt;}
.w6_c00191{width:4.750400pt;}
.w9_c00191{width:6.016000pt;}
.w15_c00191{width:6.019200pt;}
.wc_c00191{width:6.966400pt;}
.w12_c00191{width:7.124800pt;}
.wf_c00191{width:7.753600pt;}
.wd_c00191{width:7.758400pt;}
.w14_c00191{width:7.760000pt;}
.w8_c00191{width:7.915200pt;}
.w7_c00191{width:7.918400pt;}
.we_c00191{width:10.609600pt;}
.w4_c00191{width:11.398400pt;}
.w2_c00191{width:11.564800pt;}
.w13_c00191{width:11.870400pt;}
.wa_c00191{width:11.875200pt;}
.w5_c00191{width:14.884800pt;}
.wb_c00191{width:15.043200pt;}
.w16_c00191{width:19.788800pt;}
.w3_c00191{width:22.795200pt;}
.w1_c00191{width:23.747200pt;}
.w11_c00191{width:25.491200pt;}
.w19_c00191{width:785.062974pt;}
.w18_c00191{width:793.257550pt;}
.w0_c00191{width:793.333333pt;}
.x0_c00191{left:0.000000pt;}
.x13_c00191{left:0.947754pt;}
.x15_c00191{left:2.687744pt;}
.x22_c00191{left:112.257462pt;}
.x1f_c00191{left:113.616838pt;}
.x27_c00191{left:136.955986pt;}
.x23_c00191{left:145.034370pt;}
.x20_c00191{left:147.503358pt;}
.x25_c00191{left:162.226018pt;}
.x1c_c00191{left:236.642339pt;}
.x1b_c00191{left:252.157982pt;}
.x28_c00191{left:256.337705pt;}
.x21_c00191{left:258.809980pt;}
.x1e_c00191{left:292.375502pt;}
.x1d_c00191{left:385.790369pt;}
.x1_c00191{left:421.428800pt;}
.x2_c00191{left:445.016000pt;}
.x3_c00191{left:456.580800pt;}
.x4_c00191{left:479.376000pt;}
.x5_c00191{left:490.774400pt;}
.x6_c00191{left:505.659200pt;}
.x7_c00191{left:510.091200pt;}
.x29_c00191{left:512.674888pt;}
.x8_c00191{left:521.811200pt;}
.x9_c00191{left:529.726400pt;}
.xa_c00191{left:534.633600pt;}
.xb_c00191{left:550.150400pt;}
.x24_c00191{left:554.634452pt;}
.x26_c00191{left:559.861150pt;}
.xc_c00191{left:563.452800pt;}
.xd_c00191{left:570.419200pt;}
.xe_c00191{left:581.817600pt;}
.xf_c00191{left:589.576000pt;}
.x10_c00191{left:600.185600pt;}
.x11_c00191{left:607.939200pt;}
.x12_c00191{left:614.752000pt;}
.x14_c00191{left:637.552000pt;}
.x16_c00191{left:644.676800pt;}
.x17_c00191{left:656.547200pt;}
.x18_c00191{left:664.307200pt;}
.x19_c00191{left:669.217600pt;}
.x1a_c00191{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:-17.812493px;}
.ws1_c00192{word-spacing:0.000000px;}
._3_c00192{margin-left:-2.726639px;}
._0_c00192{margin-left:-1.029993px;}
._1_c00192{width:1.238859px;}
._2_c00192{width:129.762586px;}
._5_c00192{width:559.101463px;}
._4_c00192{width:565.311148px;}
._7_c00192{width:828.104978px;}
._d_c00192{width:856.654782px;}
._9_c00192{width:936.177453px;}
._e_c00192{width:1071.301647px;}
._c_c00192{width:1104.348252px;}
._6_c00192{width:1188.344131px;}
._a_c00192{width:1242.746615px;}
._b_c00192{width:1316.683329px;}
._8_c00192{width:1334.762822px;}
.fc1_c00192{color:rgb(105,148,45);}
.fc0_c00192{color:rgb(35,31,32);}
.fs0_c00192{font-size:71.249972px;}
.fs1_c00192{font-size:118.985952px;}
.y0_c00192{bottom:0.000000px;}
.y3_c00192{bottom:0.120938px;}
.y2_c00192{bottom:4.274933px;}
.ya_c00192{bottom:6.826644px;}
.y1_c00192{bottom:89.237880px;}
.y8_c00192{bottom:95.174924px;}
.y33_c00192{bottom:141.903247px;}
.y32_c00192{bottom:164.170288px;}
.y31_c00192{bottom:186.433579px;}
.y30_c00192{bottom:207.452770px;}
.y2f_c00192{bottom:229.540261px;}
.y2e_c00192{bottom:251.626253px;}
.y2d_c00192{bottom:273.715244px;}
.y2c_c00192{bottom:295.801235px;}
.y2b_c00192{bottom:318.067226px;}
.y2a_c00192{bottom:340.154717px;}
.y29_c00192{bottom:346.860424px;}
.y28_c00192{bottom:401.966692px;}
.y27_c00192{bottom:424.049684px;}
.y26_c00192{bottom:446.138675px;}
.y25_c00192{bottom:468.226166px;}
.y24_c00192{bottom:490.312157px;}
.y23_c00192{bottom:512.399648px;}
.y22_c00192{bottom:534.485639px;}
.y21_c00192{bottom:556.753131px;}
.y20_c00192{bottom:578.840622px;}
.y1e_c00192{bottom:585.546328px;}
.y1f_c00192{bottom:599.857113px;}
.y1d_c00192{bottom:606.562820px;}
.y1c_c00192{bottom:639.581597px;}
.y1b_c00192{bottom:661.667589px;}
.y1a_c00192{bottom:683.756580px;}
.y19_c00192{bottom:705.841071px;}
.y18_c00192{bottom:727.930062px;}
.y17_c00192{bottom:750.017553px;}
.y16_c00192{bottom:772.103544px;}
.y15_c00192{bottom:794.194036px;}
.y14_c00192{bottom:816.277027px;}
.y13_c00192{bottom:838.366018px;}
.y12_c00192{bottom:860.453509px;}
.y11_c00192{bottom:882.539500px;}
.y10_c00192{bottom:904.629991px;}
.yf_c00192{bottom:926.712983px;}
.ye_c00192{bottom:948.803474px;}
.yd_c00192{bottom:970.887965px;}
.yc_c00192{bottom:993.153956px;}
.yb_c00192{bottom:1015.244447px;}
.y9_c00192{bottom:1064.163137px;}
.y7_c00192{bottom:1122.588113px;}
.y6_c00192{bottom:1143.604455px;}
.y5_c00192{bottom:1164.623647px;}
.y4_c00192{bottom:1185.642088px;}
.h1_c00192{height:19.060200px;}
.h2_c00192{height:63.768724px;}
.h5_c00192{height:63.839974px;}
.h4_c00192{height:64.053724px;}
.h6_c00192{height:106.611413px;}
.h7_c00192{height:1249.830756px;}
.h3_c00192{height:1262.879062px;}
.h0_c00192{height:1263.000000px;}
.w17_c00192{width:4.451400px;}
.w10_c00192{width:4.453200px;}
.w6_c00192{width:5.344200px;}
.w9_c00192{width:6.768000px;}
.w15_c00192{width:6.771600px;}
.wc_c00192{width:7.837200px;}
.w12_c00192{width:8.015400px;}
.wf_c00192{width:8.722800px;}
.wd_c00192{width:8.728200px;}
.w14_c00192{width:8.730000px;}
.w8_c00192{width:8.904600px;}
.w7_c00192{width:8.908200px;}
.we_c00192{width:11.935800px;}
.w4_c00192{width:12.823200px;}
.w2_c00192{width:13.010400px;}
.w13_c00192{width:13.354200px;}
.wa_c00192{width:13.359600px;}
.w5_c00192{width:16.745400px;}
.wb_c00192{width:16.923600px;}
.w16_c00192{width:22.262400px;}
.w3_c00192{width:25.644600px;}
.w1_c00192{width:26.715600px;}
.w11_c00192{width:28.677600px;}
.w19_c00192{width:883.195846px;}
.w18_c00192{width:892.414744px;}
.w0_c00192{width:892.500000px;}
.x0_c00192{left:0.000000px;}
.x13_c00192{left:1.066223px;}
.x15_c00192{left:3.023712px;}
.x22_c00192{left:126.289645px;}
.x1f_c00192{left:127.818943px;}
.x27_c00192{left:154.075484px;}
.x23_c00192{left:165.941277px;}
.x25_c00192{left:182.504271px;}
.x1c_c00192{left:266.222632px;}
.x1b_c00192{left:283.677730px;}
.x28_c00192{left:288.379918px;}
.x24_c00192{left:291.161227px;}
.x20_c00192{left:319.658216px;}
.x1e_c00192{left:328.922440px;}
.x21_c00192{left:404.873884px;}
.x1d_c00192{left:434.014165px;}
.x1_c00192{left:474.107400px;}
.x2_c00192{left:500.643000px;}
.x3_c00192{left:513.653400px;}
.x4_c00192{left:539.298000px;}
.x5_c00192{left:552.121200px;}
.x6_c00192{left:568.866600px;}
.x7_c00192{left:573.852600px;}
.x29_c00192{left:576.940640px;}
.x8_c00192{left:587.037600px;}
.x9_c00192{left:595.942200px;}
.xa_c00192{left:601.462800px;}
.xb_c00192{left:618.919200px;}
.x26_c00192{left:630.023794px;}
.xc_c00192{left:633.884400px;}
.xd_c00192{left:641.721600px;}
.xe_c00192{left:654.544800px;}
.xf_c00192{left:663.273000px;}
.x10_c00192{left:675.208800px;}
.x11_c00192{left:683.931600px;}
.x12_c00192{left:691.596000px;}
.x14_c00192{left:717.246000px;}
.x16_c00192{left:725.261400px;}
.x17_c00192{left:738.615600px;}
.x18_c00192{left:747.345600px;}
.x19_c00192{left:752.869800px;}
.x1a_c00192{left:775.132200px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws0_c00192{word-spacing:-15.833327pt;}
.ws1_c00192{word-spacing:0.000000pt;}
._3_c00192{margin-left:-2.423679pt;}
._0_c00192{margin-left:-0.915549pt;}
._1_c00192{width:1.101208pt;}
._2_c00192{width:115.344521pt;}
._5_c00192{width:496.979078pt;}
._4_c00192{width:502.498799pt;}
._7_c00192{width:736.093314pt;}
._d_c00192{width:761.470917pt;}
._9_c00192{width:832.157736pt;}
._e_c00192{width:952.268131pt;}
._c_c00192{width:981.642891pt;}
._6_c00192{width:1056.305894pt;}
._a_c00192{width:1104.663658pt;}
._b_c00192{width:1170.385182pt;}
._8_c00192{width:1186.455842pt;}
.fs0_c00192{font-size:63.333308pt;}
.fs1_c00192{font-size:105.765291pt;}
.y0_c00192{bottom:0.000000pt;}
.y3_c00192{bottom:0.107500pt;}
.y2_c00192{bottom:3.799940pt;}
.ya_c00192{bottom:6.068128pt;}
.y1_c00192{bottom:79.322560pt;}
.y8_c00192{bottom:84.599933pt;}
.y33_c00192{bottom:126.136219pt;}
.y32_c00192{bottom:145.929145pt;}
.y31_c00192{bottom:165.718737pt;}
.y30_c00192{bottom:184.402462pt;}
.y2f_c00192{bottom:204.035788pt;}
.y2e_c00192{bottom:223.667780pt;}
.y2d_c00192{bottom:243.302439pt;}
.y2c_c00192{bottom:262.934431pt;}
.y2b_c00192{bottom:282.726423pt;}
.y2a_c00192{bottom:302.359749pt;}
.y29_c00192{bottom:308.320377pt;}
.y28_c00192{bottom:357.303727pt;}
.y27_c00192{bottom:376.933052pt;}
.y26_c00192{bottom:396.567711pt;}
.y25_c00192{bottom:416.201036pt;}
.y24_c00192{bottom:435.833029pt;}
.y23_c00192{bottom:455.466354pt;}
.y22_c00192{bottom:475.098346pt;}
.y21_c00192{bottom:494.891672pt;}
.y20_c00192{bottom:514.524997pt;}
.y1e_c00192{bottom:520.485625pt;}
.y1f_c00192{bottom:533.206323pt;}
.y1d_c00192{bottom:539.166951pt;}
.y1c_c00192{bottom:568.516975pt;}
.y1b_c00192{bottom:588.148968pt;}
.y1a_c00192{bottom:607.783626pt;}
.y19_c00192{bottom:627.414285pt;}
.y18_c00192{bottom:647.048944pt;}
.y17_c00192{bottom:666.682270pt;}
.y16_c00192{bottom:686.314262pt;}
.y15_c00192{bottom:705.950254pt;}
.y14_c00192{bottom:725.579579pt;}
.y13_c00192{bottom:745.214238pt;}
.y12_c00192{bottom:764.847564pt;}
.y11_c00192{bottom:784.479556pt;}
.y10_c00192{bottom:804.115548pt;}
.yf_c00192{bottom:823.744873pt;}
.ye_c00192{bottom:843.380866pt;}
.yd_c00192{bottom:863.011524pt;}
.yc_c00192{bottom:882.803516pt;}
.yb_c00192{bottom:902.439509pt;}
.y9_c00192{bottom:945.922788pt;}
.y7_c00192{bottom:997.856101pt;}
.y6_c00192{bottom:1016.537293pt;}
.y5_c00192{bottom:1035.221019pt;}
.y4_c00192{bottom:1053.904078pt;}
.h1_c00192{height:16.942400pt;}
.h2_c00192{height:56.683311pt;}
.h5_c00192{height:56.746644pt;}
.h4_c00192{height:56.936644pt;}
.h6_c00192{height:94.765701pt;}
.h7_c00192{height:1110.960672pt;}
.h3_c00192{height:1122.559167pt;}
.h0_c00192{height:1122.666667pt;}
.w17_c00192{width:3.956800pt;}
.w10_c00192{width:3.958400pt;}
.w6_c00192{width:4.750400pt;}
.w9_c00192{width:6.016000pt;}
.w15_c00192{width:6.019200pt;}
.wc_c00192{width:6.966400pt;}
.w12_c00192{width:7.124800pt;}
.wf_c00192{width:7.753600pt;}
.wd_c00192{width:7.758400pt;}
.w14_c00192{width:7.760000pt;}
.w8_c00192{width:7.915200pt;}
.w7_c00192{width:7.918400pt;}
.we_c00192{width:10.609600pt;}
.w4_c00192{width:11.398400pt;}
.w2_c00192{width:11.564800pt;}
.w13_c00192{width:11.870400pt;}
.wa_c00192{width:11.875200pt;}
.w5_c00192{width:14.884800pt;}
.wb_c00192{width:15.043200pt;}
.w16_c00192{width:19.788800pt;}
.w3_c00192{width:22.795200pt;}
.w1_c00192{width:23.747200pt;}
.w11_c00192{width:25.491200pt;}
.w19_c00192{width:785.062974pt;}
.w18_c00192{width:793.257550pt;}
.w0_c00192{width:793.333333pt;}
.x0_c00192{left:0.000000pt;}
.x13_c00192{left:0.947754pt;}
.x15_c00192{left:2.687744pt;}
.x22_c00192{left:112.257462pt;}
.x1f_c00192{left:113.616838pt;}
.x27_c00192{left:136.955986pt;}
.x23_c00192{left:147.503358pt;}
.x25_c00192{left:162.226018pt;}
.x1c_c00192{left:236.642339pt;}
.x1b_c00192{left:252.157982pt;}
.x28_c00192{left:256.337705pt;}
.x24_c00192{left:258.809980pt;}
.x20_c00192{left:284.140636pt;}
.x1e_c00192{left:292.375502pt;}
.x21_c00192{left:359.887897pt;}
.x1d_c00192{left:385.790369pt;}
.x1_c00192{left:421.428800pt;}
.x2_c00192{left:445.016000pt;}
.x3_c00192{left:456.580800pt;}
.x4_c00192{left:479.376000pt;}
.x5_c00192{left:490.774400pt;}
.x6_c00192{left:505.659200pt;}
.x7_c00192{left:510.091200pt;}
.x29_c00192{left:512.836124pt;}
.x8_c00192{left:521.811200pt;}
.x9_c00192{left:529.726400pt;}
.xa_c00192{left:534.633600pt;}
.xb_c00192{left:550.150400pt;}
.x26_c00192{left:560.021150pt;}
.xc_c00192{left:563.452800pt;}
.xd_c00192{left:570.419200pt;}
.xe_c00192{left:581.817600pt;}
.xf_c00192{left:589.576000pt;}
.x10_c00192{left:600.185600pt;}
.x11_c00192{left:607.939200pt;}
.x12_c00192{left:614.752000pt;}
.x14_c00192{left:637.552000pt;}
.x16_c00192{left:644.676800pt;}
.x17_c00192{left:656.547200pt;}
.x18_c00192{left:664.307200pt;}
.x19_c00192{left:669.217600pt;}
.x1a_c00192{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-17.812493px;}
.ws1_c00193{word-spacing:0.000000px;}
._3_c00193{margin-left:-2.455245px;}
._0_c00193{margin-left:-1.029993px;}
._1_c00193{width:1.238859px;}
._8_c00193{width:60.027461px;}
._2_c00193{width:129.762586px;}
._6_c00193{width:363.663107px;}
._9_c00193{width:380.125347px;}
._7_c00193{width:558.830069px;}
._a_c00193{width:827.833584px;}
._f_c00193{width:889.906499px;}
._b_c00193{width:1024.080080px;}
._10_c00193{width:1104.553365px;}
._4_c00193{width:1108.603420px;}
._d_c00193{width:1137.857114px;}
._e_c00193{width:1286.740594px;}
._c_c00193{width:1316.013823px;}
._5_c00193{width:1334.264325px;}
.fc1_c00193{color:rgb(105,148,45);}
.fc0_c00193{color:rgb(35,31,32);}
.fs0_c00193{font-size:71.249972px;}
.fs1_c00193{font-size:118.985952px;}
.y0_c00193{bottom:0.000000px;}
.y3_c00193{bottom:0.120938px;}
.y2_c00193{bottom:4.274933px;}
.ya_c00193{bottom:6.826644px;}
.y1_c00193{bottom:89.237880px;}
.y8_c00193{bottom:95.174924px;}
.y31_c00193{bottom:146.359295px;}
.y30_c00193{bottom:168.443786px;}
.y2f_c00193{bottom:190.709777px;}
.y2e_c00193{bottom:212.973068px;}
.y2d_c00193{bottom:233.993760px;}
.y2c_c00193{bottom:256.081251px;}
.y2b_c00193{bottom:278.168742px;}
.y2a_c00193{bottom:300.254733px;}
.y29_c00193{bottom:322.345224px;}
.y28_c00193{bottom:344.429715px;}
.y27_c00193{bottom:366.694207px;}
.y26_c00193{bottom:388.783198px;}
.y25_c00193{bottom:395.488904px;}
.y24_c00193{bottom:456.469171px;}
.y23_c00193{bottom:478.559662px;}
.y22_c00193{bottom:500.642653px;}
.y21_c00193{bottom:522.731044px;}
.y20_c00193{bottom:543.748136px;}
.y1f_c00193{bottom:565.837127px;}
.y1e_c00193{bottom:587.923118px;}
.y1d_c00193{bottom:610.010609px;}
.y1c_c00193{bottom:632.276600px;}
.y1b_c00193{bottom:654.362592px;}
.y19_c00193{bottom:661.068298px;}
.y1a_c00193{bottom:675.380583px;}
.y18_c00193{bottom:682.086290px;}
.y17_c00193{bottom:722.050064px;}
.y16_c00193{bottom:744.139056px;}
.y15_c00193{bottom:766.225047px;}
.y14_c00193{bottom:788.312538px;}
.y13_c00193{bottom:810.403029px;}
.y12_c00193{bottom:832.486020px;}
.y11_c00193{bottom:854.578011px;}
.y10_c00193{bottom:876.662503px;}
.yf_c00193{bottom:898.749994px;}
.ye_c00193{bottom:920.837485px;}
.yd_c00193{bottom:942.923476px;}
.yc_c00193{bottom:965.190967px;}
.yb_c00193{bottom:987.278458px;}
.y9_c00193{bottom:1064.163137px;}
.y7_c00193{bottom:1122.588113px;}
.y6_c00193{bottom:1143.604455px;}
.y5_c00193{bottom:1164.623647px;}
.y4_c00193{bottom:1185.642088px;}
.h1_c00193{height:19.060200px;}
.h2_c00193{height:63.768724px;}
.h5_c00193{height:63.839974px;}
.h4_c00193{height:64.053724px;}
.h6_c00193{height:106.492427px;}
.h7_c00193{height:1249.830756px;}
.h3_c00193{height:1262.879062px;}
.h0_c00193{height:1263.000000px;}
.w17_c00193{width:4.451400px;}
.w10_c00193{width:4.453200px;}
.w6_c00193{width:5.344200px;}
.w9_c00193{width:6.768000px;}
.w15_c00193{width:6.771600px;}
.wc_c00193{width:7.837200px;}
.w12_c00193{width:8.015400px;}
.wf_c00193{width:8.722800px;}
.wd_c00193{width:8.728200px;}
.w14_c00193{width:8.730000px;}
.w8_c00193{width:8.904600px;}
.w7_c00193{width:8.908200px;}
.we_c00193{width:11.935800px;}
.w4_c00193{width:12.823200px;}
.w2_c00193{width:13.010400px;}
.w13_c00193{width:13.354200px;}
.wa_c00193{width:13.359600px;}
.w5_c00193{width:16.745400px;}
.wb_c00193{width:16.923600px;}
.w16_c00193{width:22.262400px;}
.w3_c00193{width:25.644600px;}
.w1_c00193{width:26.715600px;}
.w11_c00193{width:28.677600px;}
.w19_c00193{width:883.195846px;}
.w18_c00193{width:892.414744px;}
.w0_c00193{width:892.500000px;}
.x0_c00193{left:0.000000px;}
.x13_c00193{left:1.066223px;}
.x15_c00193{left:3.023712px;}
.x22_c00193{left:126.289645px;}
.x1f_c00193{left:127.818943px;}
.x29_c00193{left:154.075484px;}
.x25_c00193{left:163.163666px;}
.x23_c00193{left:165.941277px;}
.x27_c00193{left:182.504271px;}
.x1c_c00193{left:266.222632px;}
.x1b_c00193{left:283.677730px;}
.x2a_c00193{left:288.379918px;}
.x24_c00193{left:291.161227px;}
.x20_c00193{left:304.341722px;}
.x1e_c00193{left:328.922440px;}
.x21_c00193{left:404.873884px;}
.x1d_c00193{left:434.014165px;}
.x1_c00193{left:474.107400px;}
.x2_c00193{left:500.643000px;}
.x3_c00193{left:513.653400px;}
.x4_c00193{left:539.298000px;}
.x5_c00193{left:552.121200px;}
.x6_c00193{left:568.866600px;}
.x7_c00193{left:573.852600px;}
.x2b_c00193{left:576.759249px;}
.x8_c00193{left:587.037600px;}
.x9_c00193{left:595.942200px;}
.xa_c00193{left:601.462800px;}
.xb_c00193{left:618.919200px;}
.x26_c00193{left:623.963759px;}
.x28_c00193{left:629.843794px;}
.xc_c00193{left:633.884400px;}
.xd_c00193{left:641.721600px;}
.xe_c00193{left:654.544800px;}
.xf_c00193{left:663.273000px;}
.x10_c00193{left:675.208800px;}
.x11_c00193{left:683.931600px;}
.x12_c00193{left:691.596000px;}
.x14_c00193{left:717.246000px;}
.x16_c00193{left:725.261400px;}
.x17_c00193{left:738.615600px;}
.x18_c00193{left:747.345600px;}
.x19_c00193{left:752.869800px;}
.x1a_c00193{left:775.132200px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:-15.833327pt;}
.ws1_c00193{word-spacing:0.000000pt;}
._3_c00193{margin-left:-2.182440pt;}
._0_c00193{margin-left:-0.915549pt;}
._1_c00193{width:1.101208pt;}
._8_c00193{width:53.357743pt;}
._2_c00193{width:115.344521pt;}
._6_c00193{width:323.256095pt;}
._9_c00193{width:337.889198pt;}
._7_c00193{width:496.737839pt;}
._a_c00193{width:735.852074pt;}
._f_c00193{width:791.027999pt;}
._b_c00193{width:910.293404pt;}
._10_c00193{width:981.825213pt;}
._4_c00193{width:985.425262pt;}
._d_c00193{width:1011.428546pt;}
._e_c00193{width:1143.769417pt;}
._c_c00193{width:1169.790065pt;}
._5_c00193{width:1186.012733pt;}
.fs0_c00193{font-size:63.333308pt;}
.fs1_c00193{font-size:105.765291pt;}
.y0_c00193{bottom:0.000000pt;}
.y3_c00193{bottom:0.107500pt;}
.y2_c00193{bottom:3.799940pt;}
.ya_c00193{bottom:6.068128pt;}
.y1_c00193{bottom:79.322560pt;}
.y8_c00193{bottom:84.599933pt;}
.y31_c00193{bottom:130.097151pt;}
.y30_c00193{bottom:149.727810pt;}
.y2f_c00193{bottom:169.519802pt;}
.y2e_c00193{bottom:189.309394pt;}
.y2d_c00193{bottom:207.994453pt;}
.y2c_c00193{bottom:227.627779pt;}
.y2b_c00193{bottom:247.261104pt;}
.y2a_c00193{bottom:266.893096pt;}
.y29_c00193{bottom:286.529088pt;}
.y28_c00193{bottom:306.159747pt;}
.y27_c00193{bottom:325.950406pt;}
.y26_c00193{bottom:345.585065pt;}
.y25_c00193{bottom:351.545693pt;}
.y24_c00193{bottom:405.750374pt;}
.y23_c00193{bottom:425.386366pt;}
.y22_c00193{bottom:445.015692pt;}
.y21_c00193{bottom:464.649817pt;}
.y20_c00193{bottom:483.331676pt;}
.y1f_c00193{bottom:502.966335pt;}
.y1e_c00193{bottom:522.598327pt;}
.y1d_c00193{bottom:542.231653pt;}
.y1c_c00193{bottom:562.023645pt;}
.y1b_c00193{bottom:581.655637pt;}
.y19_c00193{bottom:587.616265pt;}
.y1a_c00193{bottom:600.338296pt;}
.y18_c00193{bottom:606.298924pt;}
.y17_c00193{bottom:641.822280pt;}
.y16_c00193{bottom:661.456938pt;}
.y15_c00193{bottom:681.088930pt;}
.y14_c00193{bottom:700.722256pt;}
.y13_c00193{bottom:720.358248pt;}
.y12_c00193{bottom:739.987574pt;}
.y11_c00193{bottom:759.624899pt;}
.y10_c00193{bottom:779.255558pt;}
.yf_c00193{bottom:798.888883pt;}
.ye_c00193{bottom:818.522209pt;}
.yd_c00193{bottom:838.154201pt;}
.yc_c00193{bottom:857.947526pt;}
.yb_c00193{bottom:877.580852pt;}
.y9_c00193{bottom:945.922788pt;}
.y7_c00193{bottom:997.856101pt;}
.y6_c00193{bottom:1016.537293pt;}
.y5_c00193{bottom:1035.221019pt;}
.y4_c00193{bottom:1053.904078pt;}
.h1_c00193{height:16.942400pt;}
.h2_c00193{height:56.683311pt;}
.h5_c00193{height:56.746644pt;}
.h4_c00193{height:56.936644pt;}
.h6_c00193{height:94.659935pt;}
.h7_c00193{height:1110.960672pt;}
.h3_c00193{height:1122.559167pt;}
.h0_c00193{height:1122.666667pt;}
.w17_c00193{width:3.956800pt;}
.w10_c00193{width:3.958400pt;}
.w6_c00193{width:4.750400pt;}
.w9_c00193{width:6.016000pt;}
.w15_c00193{width:6.019200pt;}
.wc_c00193{width:6.966400pt;}
.w12_c00193{width:7.124800pt;}
.wf_c00193{width:7.753600pt;}
.wd_c00193{width:7.758400pt;}
.w14_c00193{width:7.760000pt;}
.w8_c00193{width:7.915200pt;}
.w7_c00193{width:7.918400pt;}
.we_c00193{width:10.609600pt;}
.w4_c00193{width:11.398400pt;}
.w2_c00193{width:11.564800pt;}
.w13_c00193{width:11.870400pt;}
.wa_c00193{width:11.875200pt;}
.w5_c00193{width:14.884800pt;}
.wb_c00193{width:15.043200pt;}
.w16_c00193{width:19.788800pt;}
.w3_c00193{width:22.795200pt;}
.w1_c00193{width:23.747200pt;}
.w11_c00193{width:25.491200pt;}
.w19_c00193{width:785.062974pt;}
.w18_c00193{width:793.257550pt;}
.w0_c00193{width:793.333333pt;}
.x0_c00193{left:0.000000pt;}
.x13_c00193{left:0.947754pt;}
.x15_c00193{left:2.687744pt;}
.x22_c00193{left:112.257462pt;}
.x1f_c00193{left:113.616838pt;}
.x29_c00193{left:136.955986pt;}
.x25_c00193{left:145.034370pt;}
.x23_c00193{left:147.503358pt;}
.x27_c00193{left:162.226018pt;}
.x1c_c00193{left:236.642339pt;}
.x1b_c00193{left:252.157982pt;}
.x2a_c00193{left:256.337705pt;}
.x24_c00193{left:258.809980pt;}
.x20_c00193{left:270.525975pt;}
.x1e_c00193{left:292.375502pt;}
.x21_c00193{left:359.887897pt;}
.x1d_c00193{left:385.790369pt;}
.x1_c00193{left:421.428800pt;}
.x2_c00193{left:445.016000pt;}
.x3_c00193{left:456.580800pt;}
.x4_c00193{left:479.376000pt;}
.x5_c00193{left:490.774400pt;}
.x6_c00193{left:505.659200pt;}
.x7_c00193{left:510.091200pt;}
.x2b_c00193{left:512.674888pt;}
.x8_c00193{left:521.811200pt;}
.x9_c00193{left:529.726400pt;}
.xa_c00193{left:534.633600pt;}
.xb_c00193{left:550.150400pt;}
.x26_c00193{left:554.634452pt;}
.x28_c00193{left:559.861150pt;}
.xc_c00193{left:563.452800pt;}
.xd_c00193{left:570.419200pt;}
.xe_c00193{left:581.817600pt;}
.xf_c00193{left:589.576000pt;}
.x10_c00193{left:600.185600pt;}
.x11_c00193{left:607.939200pt;}
.x12_c00193{left:614.752000pt;}
.x14_c00193{left:637.552000pt;}
.x16_c00193{left:644.676800pt;}
.x17_c00193{left:656.547200pt;}
.x18_c00193{left:664.307200pt;}
.x19_c00193{left:669.217600pt;}
.x1a_c00193{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls0_c00194{letter-spacing:0.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:-17.812493px;}
.ws1_c00194{word-spacing:0.000000px;}
._3_c00194{margin-left:-2.726639px;}
._0_c00194{margin-left:-1.029993px;}
._1_c00194{width:1.238859px;}
._2_c00194{width:129.762586px;}
._6_c00194{width:604.609094px;}
._4_c00194{width:866.616943px;}
._c_c00194{width:874.307884px;}
._a_c00194{width:888.033269px;}
._5_c00194{width:1037.970035px;}
._b_c00194{width:1102.680135px;}
._8_c00194{width:1104.348252px;}
._9_c00194{width:1285.315342px;}
._7_c00194{width:1313.865824px;}
.fc1_c00194{color:rgb(105,148,45);}
.fc0_c00194{color:rgb(35,31,32);}
.fs0_c00194{font-size:71.249972px;}
.fs1_c00194{font-size:142.497543px;}
.y0_c00194{bottom:0.000000px;}
.y3_c00194{bottom:0.120938px;}
.y2_c00194{bottom:4.274933px;}
.ya_c00194{bottom:6.826644px;}
.y1_c00194{bottom:89.237880px;}
.y8_c00194{bottom:95.174924px;}
.y2a_c00194{bottom:293.488236px;}
.y29_c00194{bottom:315.751227px;}
.y28_c00194{bottom:338.017518px;}
.y27_c00194{bottom:359.036710px;}
.y26_c00194{bottom:381.124201px;}
.y25_c00194{bottom:403.213192px;}
.y24_c00194{bottom:425.296183px;}
.y23_c00194{bottom:447.388174px;}
.y22_c00194{bottom:469.472665px;}
.y21_c00194{bottom:491.561657px;}
.y20_c00194{bottom:513.826148px;}
.y1f_c00194{bottom:535.912139px;}
.y1e_c00194{bottom:542.617845px;}
.y1d_c00194{bottom:582.580120px;}
.y1c_c00194{bottom:604.669111px;}
.y1b_c00194{bottom:626.930602px;}
.y1a_c00194{bottom:649.021094px;}
.y18_c00194{bottom:655.726800px;}
.y19_c00194{bottom:670.040585px;}
.y17_c00194{bottom:676.746292px;}
.y16_c00194{bottom:716.710067px;}
.y15_c00194{bottom:738.794558px;}
.y14_c00194{bottom:760.883549px;}
.y13_c00194{bottom:782.968040px;}
.y12_c00194{bottom:805.055531px;}
.y11_c00194{bottom:827.144522px;}
.y10_c00194{bottom:849.232014px;}
.yf_c00194{bottom:871.318005px;}
.ye_c00194{bottom:893.403996px;}
.yd_c00194{bottom:915.492987px;}
.yc_c00194{bottom:937.761978px;}
.yb_c00194{bottom:959.844969px;}
.y9_c00194{bottom:1037.803647px;}
.y7_c00194{bottom:1122.588113px;}
.y6_c00194{bottom:1143.604455px;}
.y5_c00194{bottom:1164.623647px;}
.y4_c00194{bottom:1185.642088px;}
.h1_c00194{height:19.060200px;}
.h2_c00194{height:63.768724px;}
.h5_c00194{height:63.839974px;}
.h4_c00194{height:64.053724px;}
.h6_c00194{height:127.535301px;}
.h7_c00194{height:1249.830756px;}
.h3_c00194{height:1262.879062px;}
.h0_c00194{height:1263.000000px;}
.w17_c00194{width:4.451400px;}
.w10_c00194{width:4.453200px;}
.w6_c00194{width:5.344200px;}
.w9_c00194{width:6.768000px;}
.w15_c00194{width:6.771600px;}
.wc_c00194{width:7.837200px;}
.w12_c00194{width:8.015400px;}
.wf_c00194{width:8.722800px;}
.wd_c00194{width:8.728200px;}
.w14_c00194{width:8.730000px;}
.w8_c00194{width:8.904600px;}
.w7_c00194{width:8.908200px;}
.we_c00194{width:11.935800px;}
.w4_c00194{width:12.823200px;}
.w2_c00194{width:13.010400px;}
.w13_c00194{width:13.354200px;}
.wa_c00194{width:13.359600px;}
.w5_c00194{width:16.745400px;}
.wb_c00194{width:16.923600px;}
.w16_c00194{width:22.262400px;}
.w3_c00194{width:25.644600px;}
.w1_c00194{width:26.715600px;}
.w11_c00194{width:28.677600px;}
.w19_c00194{width:883.195846px;}
.w18_c00194{width:892.414744px;}
.w0_c00194{width:892.500000px;}
.x0_c00194{left:0.000000px;}
.x13_c00194{left:1.066223px;}
.x15_c00194{left:3.023712px;}
.x22_c00194{left:126.289645px;}
.x1f_c00194{left:127.818943px;}
.x27_c00194{left:154.075484px;}
.x23_c00194{left:165.941277px;}
.x25_c00194{left:182.504271px;}
.x1c_c00194{left:266.222632px;}
.x1b_c00194{left:283.677730px;}
.x28_c00194{left:288.379918px;}
.x24_c00194{left:291.161227px;}
.x20_c00194{left:301.667223px;}
.x1e_c00194{left:328.922440px;}
.x21_c00194{left:404.873884px;}
.x1d_c00194{left:434.014165px;}
.x1_c00194{left:474.107400px;}
.x2_c00194{left:500.643000px;}
.x3_c00194{left:513.653400px;}
.x4_c00194{left:539.298000px;}
.x5_c00194{left:552.121200px;}
.x6_c00194{left:568.866600px;}
.x7_c00194{left:573.852600px;}
.x29_c00194{left:576.759249px;}
.x8_c00194{left:587.037600px;}
.x9_c00194{left:595.942200px;}
.xa_c00194{left:601.462800px;}
.xb_c00194{left:618.919200px;}
.x26_c00194{left:629.843794px;}
.xc_c00194{left:633.884400px;}
.xd_c00194{left:641.721600px;}
.xe_c00194{left:654.544800px;}
.xf_c00194{left:663.273000px;}
.x10_c00194{left:675.208800px;}
.x11_c00194{left:683.931600px;}
.x12_c00194{left:691.596000px;}
.x14_c00194{left:717.246000px;}
.x16_c00194{left:725.261400px;}
.x17_c00194{left:738.615600px;}
.x18_c00194{left:747.345600px;}
.x19_c00194{left:752.869800px;}
.x1a_c00194{left:775.132200px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:-15.833327pt;}
.ws1_c00194{word-spacing:0.000000pt;}
._3_c00194{margin-left:-2.423679pt;}
._0_c00194{margin-left:-0.915549pt;}
._1_c00194{width:1.101208pt;}
._2_c00194{width:115.344521pt;}
._6_c00194{width:537.430306pt;}
._4_c00194{width:770.326171pt;}
._c_c00194{width:777.162564pt;}
._a_c00194{width:789.362905pt;}
._5_c00194{width:922.640031pt;}
._b_c00194{width:980.160120pt;}
._8_c00194{width:981.642891pt;}
._9_c00194{width:1142.502526pt;}
._7_c00194{width:1167.880732pt;}
.fs0_c00194{font-size:63.333308pt;}
.fs1_c00194{font-size:126.664483pt;}
.y0_c00194{bottom:0.000000pt;}
.y3_c00194{bottom:0.107500pt;}
.y2_c00194{bottom:3.799940pt;}
.ya_c00194{bottom:6.068128pt;}
.y1_c00194{bottom:79.322560pt;}
.y8_c00194{bottom:84.599933pt;}
.y2a_c00194{bottom:260.878432pt;}
.y29_c00194{bottom:280.667757pt;}
.y28_c00194{bottom:300.460016pt;}
.y27_c00194{bottom:319.143742pt;}
.y26_c00194{bottom:338.777067pt;}
.y25_c00194{bottom:358.411726pt;}
.y24_c00194{bottom:378.041052pt;}
.y23_c00194{bottom:397.678377pt;}
.y22_c00194{bottom:417.309036pt;}
.y21_c00194{bottom:436.943695pt;}
.y20_c00194{bottom:456.734354pt;}
.y1f_c00194{bottom:476.366346pt;}
.y1e_c00194{bottom:482.326974pt;}
.y1d_c00194{bottom:517.848996pt;}
.y1c_c00194{bottom:537.483655pt;}
.y1b_c00194{bottom:557.271647pt;}
.y1a_c00194{bottom:576.907639pt;}
.y18_c00194{bottom:582.868267pt;}
.y19_c00194{bottom:595.591631pt;}
.y17_c00194{bottom:601.552259pt;}
.y16_c00194{bottom:637.075615pt;}
.y15_c00194{bottom:656.706274pt;}
.y14_c00194{bottom:676.340932pt;}
.y13_c00194{bottom:695.971591pt;}
.y12_c00194{bottom:715.604917pt;}
.y11_c00194{bottom:735.239575pt;}
.y10_c00194{bottom:754.872901pt;}
.yf_c00194{bottom:774.504893pt;}
.ye_c00194{bottom:794.136885pt;}
.yd_c00194{bottom:813.771544pt;}
.yc_c00194{bottom:833.566203pt;}
.yb_c00194{bottom:853.195528pt;}
.y9_c00194{bottom:922.492131pt;}
.y7_c00194{bottom:997.856101pt;}
.y6_c00194{bottom:1016.537293pt;}
.y5_c00194{bottom:1035.221019pt;}
.y4_c00194{bottom:1053.904078pt;}
.h1_c00194{height:16.942400pt;}
.h2_c00194{height:56.683311pt;}
.h5_c00194{height:56.746644pt;}
.h4_c00194{height:56.936644pt;}
.h6_c00194{height:113.364712pt;}
.h7_c00194{height:1110.960672pt;}
.h3_c00194{height:1122.559167pt;}
.h0_c00194{height:1122.666667pt;}
.w17_c00194{width:3.956800pt;}
.w10_c00194{width:3.958400pt;}
.w6_c00194{width:4.750400pt;}
.w9_c00194{width:6.016000pt;}
.w15_c00194{width:6.019200pt;}
.wc_c00194{width:6.966400pt;}
.w12_c00194{width:7.124800pt;}
.wf_c00194{width:7.753600pt;}
.wd_c00194{width:7.758400pt;}
.w14_c00194{width:7.760000pt;}
.w8_c00194{width:7.915200pt;}
.w7_c00194{width:7.918400pt;}
.we_c00194{width:10.609600pt;}
.w4_c00194{width:11.398400pt;}
.w2_c00194{width:11.564800pt;}
.w13_c00194{width:11.870400pt;}
.wa_c00194{width:11.875200pt;}
.w5_c00194{width:14.884800pt;}
.wb_c00194{width:15.043200pt;}
.w16_c00194{width:19.788800pt;}
.w3_c00194{width:22.795200pt;}
.w1_c00194{width:23.747200pt;}
.w11_c00194{width:25.491200pt;}
.w19_c00194{width:785.062974pt;}
.w18_c00194{width:793.257550pt;}
.w0_c00194{width:793.333333pt;}
.x0_c00194{left:0.000000pt;}
.x13_c00194{left:0.947754pt;}
.x15_c00194{left:2.687744pt;}
.x22_c00194{left:112.257462pt;}
.x1f_c00194{left:113.616838pt;}
.x27_c00194{left:136.955986pt;}
.x23_c00194{left:147.503358pt;}
.x25_c00194{left:162.226018pt;}
.x1c_c00194{left:236.642339pt;}
.x1b_c00194{left:252.157982pt;}
.x28_c00194{left:256.337705pt;}
.x24_c00194{left:258.809980pt;}
.x20_c00194{left:268.148643pt;}
.x1e_c00194{left:292.375502pt;}
.x21_c00194{left:359.887897pt;}
.x1d_c00194{left:385.790369pt;}
.x1_c00194{left:421.428800pt;}
.x2_c00194{left:445.016000pt;}
.x3_c00194{left:456.580800pt;}
.x4_c00194{left:479.376000pt;}
.x5_c00194{left:490.774400pt;}
.x6_c00194{left:505.659200pt;}
.x7_c00194{left:510.091200pt;}
.x29_c00194{left:512.674888pt;}
.x8_c00194{left:521.811200pt;}
.x9_c00194{left:529.726400pt;}
.xa_c00194{left:534.633600pt;}
.xb_c00194{left:550.150400pt;}
.x26_c00194{left:559.861150pt;}
.xc_c00194{left:563.452800pt;}
.xd_c00194{left:570.419200pt;}
.xe_c00194{left:581.817600pt;}
.xf_c00194{left:589.576000pt;}
.x10_c00194{left:600.185600pt;}
.x11_c00194{left:607.939200pt;}
.x12_c00194{left:614.752000pt;}
.x14_c00194{left:637.552000pt;}
.x16_c00194{left:644.676800pt;}
.x17_c00194{left:656.547200pt;}
.x18_c00194{left:664.307200pt;}
.x19_c00194{left:669.217600pt;}
.x1a_c00194{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.113000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls0_c00195{letter-spacing:0.000000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:-17.812493px;}
.ws1_c00195{word-spacing:0.000000px;}
._3_c00195{margin-left:-2.726639px;}
._0_c00195{margin-left:-1.029993px;}
._1_c00195{width:1.238859px;}
._11_c00195{width:6.796564px;}
._10_c00195{width:7.889878px;}
._e_c00195{width:115.331672px;}
._2_c00195{width:129.762586px;}
._f_c00195{width:192.500323px;}
._6_c00195{width:878.882580px;}
._a_c00195{width:888.033269px;}
._5_c00195{width:1071.561428px;}
._d_c00195{width:1102.680135px;}
._8_c00195{width:1137.857114px;}
._4_c00195{width:1217.025376px;}
._7_c00195{width:1313.865824px;}
._9_c00195{width:1318.831328px;}
._c_c00195{width:1394.965055px;}
._b_c00195{width:1434.508789px;}
.fc1_c00195{color:rgb(105,148,45);}
.fc0_c00195{color:rgb(35,31,32);}
.fs0_c00195{font-size:71.249972px;}
.fs1_c00195{font-size:130.385348px;}
.y0_c00195{bottom:0.000000px;}
.y3_c00195{bottom:0.120938px;}
.y2_c00195{bottom:4.274933px;}
.ya_c00195{bottom:6.826644px;}
.y1_c00195{bottom:89.237880px;}
.y8_c00195{bottom:95.174924px;}
.y31_c00195{bottom:143.505846px;}
.y30_c00195{bottom:164.525037px;}
.y2f_c00195{bottom:185.545729px;}
.y2e_c00195{bottom:231.677761px;}
.y2d_c00195{bottom:273.180044px;}
.y2c_c00195{bottom:294.200736px;}
.y2b_c00195{bottom:316.286727px;}
.y2a_c00195{bottom:338.375718px;}
.y29_c00195{bottom:360.463209px;}
.y28_c00195{bottom:382.549200px;}
.y27_c00195{bottom:404.636691px;}
.y26_c00195{bottom:426.724183px;}
.y25_c00195{bottom:448.813174px;}
.y24_c00195{bottom:470.896165px;}
.y23_c00195{bottom:493.165156px;}
.y22_c00195{bottom:515.252647px;}
.y21_c00195{bottom:521.958354px;}
.y20_c00195{bottom:561.917629px;}
.y1f_c00195{bottom:584.006620px;}
.y1e_c00195{bottom:606.095611px;}
.y1d_c00195{bottom:628.177102px;}
.y1c_c00195{bottom:650.269093px;}
.y1b_c00195{bottom:672.358084px;}
.y1a_c00195{bottom:694.621075px;}
.y19_c00195{bottom:716.710067px;}
.y17_c00195{bottom:723.415773px;}
.y18_c00195{bottom:737.725058px;}
.y16_c00195{bottom:744.430765px;}
.y15_c00195{bottom:784.393040px;}
.y14_c00195{bottom:806.482031px;}
.y13_c00195{bottom:828.572522px;}
.y12_c00195{bottom:850.654013px;}
.y11_c00195{bottom:872.746004px;}
.y10_c00195{bottom:894.828995px;}
.yf_c00195{bottom:916.917987px;}
.ye_c00195{bottom:939.005478px;}
.yd_c00195{bottom:961.092969px;}
.yc_c00195{bottom:983.360460px;}
.yb_c00195{bottom:1005.443451px;}
.y9_c00195{bottom:1061.668638px;}
.y7_c00195{bottom:1122.588113px;}
.y6_c00195{bottom:1143.604455px;}
.y5_c00195{bottom:1164.623647px;}
.y4_c00195{bottom:1185.642088px;}
.h1_c00195{height:19.060200px;}
.h2_c00195{height:63.768724px;}
.h5_c00195{height:63.839974px;}
.h8_c00195{height:63.911224px;}
.h4_c00195{height:64.053724px;}
.h6_c00195{height:116.694886px;}
.h7_c00195{height:1249.830756px;}
.h3_c00195{height:1262.879062px;}
.h0_c00195{height:1263.000000px;}
.w17_c00195{width:4.451400px;}
.w10_c00195{width:4.453200px;}
.w6_c00195{width:5.344200px;}
.w9_c00195{width:6.768000px;}
.w15_c00195{width:6.771600px;}
.wc_c00195{width:7.837200px;}
.w12_c00195{width:8.015400px;}
.wf_c00195{width:8.722800px;}
.wd_c00195{width:8.728200px;}
.w14_c00195{width:8.730000px;}
.w8_c00195{width:8.904600px;}
.w7_c00195{width:8.908200px;}
.we_c00195{width:11.935800px;}
.w4_c00195{width:12.823200px;}
.w2_c00195{width:13.010400px;}
.w13_c00195{width:13.354200px;}
.wa_c00195{width:13.359600px;}
.w5_c00195{width:16.745400px;}
.wb_c00195{width:16.923600px;}
.w16_c00195{width:22.262400px;}
.w3_c00195{width:25.644600px;}
.w1_c00195{width:26.715600px;}
.w11_c00195{width:28.677600px;}
.w19_c00195{width:883.195846px;}
.w18_c00195{width:892.414744px;}
.w0_c00195{width:892.500000px;}
.x0_c00195{left:0.000000px;}
.x13_c00195{left:1.066223px;}
.x15_c00195{left:3.023712px;}
.x22_c00195{left:126.289645px;}
.x1f_c00195{left:127.818943px;}
.x27_c00195{left:154.075484px;}
.x23_c00195{left:165.941277px;}
.x25_c00195{left:182.504271px;}
.x1c_c00195{left:266.222632px;}
.x20_c00195{left:276.020233px;}
.x1b_c00195{left:283.677730px;}
.x28_c00195{left:288.379918px;}
.x24_c00195{left:291.161227px;}
.x1e_c00195{left:328.922440px;}
.x21_c00195{left:404.873884px;}
.x1d_c00195{left:434.014165px;}
.x1_c00195{left:474.107400px;}
.x2_c00195{left:500.643000px;}
.x3_c00195{left:513.653400px;}
.x4_c00195{left:539.298000px;}
.x5_c00195{left:552.121200px;}
.x6_c00195{left:568.866600px;}
.x7_c00195{left:573.852600px;}
.x29_c00195{left:576.759249px;}
.x8_c00195{left:587.037600px;}
.x9_c00195{left:595.942200px;}
.xa_c00195{left:601.462800px;}
.xb_c00195{left:618.919200px;}
.x26_c00195{left:629.843794px;}
.xc_c00195{left:633.884400px;}
.xd_c00195{left:641.721600px;}
.xe_c00195{left:654.544800px;}
.xf_c00195{left:663.273000px;}
.x10_c00195{left:675.208800px;}
.x11_c00195{left:683.931600px;}
.x12_c00195{left:691.596000px;}
.x14_c00195{left:717.246000px;}
.x16_c00195{left:725.261400px;}
.x17_c00195{left:738.615600px;}
.x18_c00195{left:747.345600px;}
.x19_c00195{left:752.869800px;}
.x1a_c00195{left:775.132200px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:-15.833327pt;}
.ws1_c00195{word-spacing:0.000000pt;}
._3_c00195{margin-left:-2.423679pt;}
._0_c00195{margin-left:-0.915549pt;}
._1_c00195{width:1.101208pt;}
._11_c00195{width:6.041390pt;}
._10_c00195{width:7.013225pt;}
._e_c00195{width:102.517042pt;}
._2_c00195{width:115.344521pt;}
._f_c00195{width:171.111398pt;}
._6_c00195{width:781.228960pt;}
._a_c00195{width:789.362905pt;}
._5_c00195{width:952.499047pt;}
._d_c00195{width:980.160120pt;}
._8_c00195{width:1011.428546pt;}
._4_c00195{width:1081.800334pt;}
._7_c00195{width:1167.880732pt;}
._9_c00195{width:1172.294514pt;}
._c_c00195{width:1239.968937pt;}
._b_c00195{width:1275.118923pt;}
.fs0_c00195{font-size:63.333308pt;}
.fs1_c00195{font-size:115.898087pt;}
.y0_c00195{bottom:0.000000pt;}
.y3_c00195{bottom:0.107500pt;}
.y2_c00195{bottom:3.799940pt;}
.ya_c00195{bottom:6.068128pt;}
.y1_c00195{bottom:79.322560pt;}
.y8_c00195{bottom:84.599933pt;}
.y31_c00195{bottom:127.560752pt;}
.y30_c00195{bottom:146.244478pt;}
.y2f_c00195{bottom:164.929537pt;}
.y2e_c00195{bottom:205.935787pt;}
.y2d_c00195{bottom:242.826706pt;}
.y2c_c00195{bottom:261.511765pt;}
.y2b_c00195{bottom:281.143757pt;}
.y2a_c00195{bottom:300.778416pt;}
.y29_c00195{bottom:320.411741pt;}
.y28_c00195{bottom:340.043734pt;}
.y27_c00195{bottom:359.677059pt;}
.y26_c00195{bottom:379.310385pt;}
.y25_c00195{bottom:398.945043pt;}
.y24_c00195{bottom:418.574369pt;}
.y23_c00195{bottom:438.369028pt;}
.y22_c00195{bottom:458.002353pt;}
.y21_c00195{bottom:463.962981pt;}
.y20_c00195{bottom:499.482336pt;}
.y1f_c00195{bottom:519.116995pt;}
.y1e_c00195{bottom:538.751654pt;}
.y1d_c00195{bottom:558.379646pt;}
.y1c_c00195{bottom:578.016972pt;}
.y1b_c00195{bottom:597.651631pt;}
.y1a_c00195{bottom:617.440956pt;}
.y19_c00195{bottom:637.075615pt;}
.y17_c00195{bottom:643.036243pt;}
.y18_c00195{bottom:655.755607pt;}
.y16_c00195{bottom:661.716235pt;}
.y15_c00195{bottom:697.238257pt;}
.y14_c00195{bottom:716.872916pt;}
.y13_c00195{bottom:736.508908pt;}
.y12_c00195{bottom:756.136900pt;}
.y11_c00195{bottom:775.774226pt;}
.y10_c00195{bottom:795.403551pt;}
.yf_c00195{bottom:815.038210pt;}
.ye_c00195{bottom:834.671536pt;}
.yd_c00195{bottom:854.304861pt;}
.yc_c00195{bottom:874.098187pt;}
.yb_c00195{bottom:893.727512pt;}
.y9_c00195{bottom:943.705456pt;}
.y7_c00195{bottom:997.856101pt;}
.y6_c00195{bottom:1016.537293pt;}
.y5_c00195{bottom:1035.221019pt;}
.y4_c00195{bottom:1053.904078pt;}
.h1_c00195{height:16.942400pt;}
.h2_c00195{height:56.683311pt;}
.h5_c00195{height:56.746644pt;}
.h8_c00195{height:56.809977pt;}
.h4_c00195{height:56.936644pt;}
.h6_c00195{height:103.728788pt;}
.h7_c00195{height:1110.960672pt;}
.h3_c00195{height:1122.559167pt;}
.h0_c00195{height:1122.666667pt;}
.w17_c00195{width:3.956800pt;}
.w10_c00195{width:3.958400pt;}
.w6_c00195{width:4.750400pt;}
.w9_c00195{width:6.016000pt;}
.w15_c00195{width:6.019200pt;}
.wc_c00195{width:6.966400pt;}
.w12_c00195{width:7.124800pt;}
.wf_c00195{width:7.753600pt;}
.wd_c00195{width:7.758400pt;}
.w14_c00195{width:7.760000pt;}
.w8_c00195{width:7.915200pt;}
.w7_c00195{width:7.918400pt;}
.we_c00195{width:10.609600pt;}
.w4_c00195{width:11.398400pt;}
.w2_c00195{width:11.564800pt;}
.w13_c00195{width:11.870400pt;}
.wa_c00195{width:11.875200pt;}
.w5_c00195{width:14.884800pt;}
.wb_c00195{width:15.043200pt;}
.w16_c00195{width:19.788800pt;}
.w3_c00195{width:22.795200pt;}
.w1_c00195{width:23.747200pt;}
.w11_c00195{width:25.491200pt;}
.w19_c00195{width:785.062974pt;}
.w18_c00195{width:793.257550pt;}
.w0_c00195{width:793.333333pt;}
.x0_c00195{left:0.000000pt;}
.x13_c00195{left:0.947754pt;}
.x15_c00195{left:2.687744pt;}
.x22_c00195{left:112.257462pt;}
.x1f_c00195{left:113.616838pt;}
.x27_c00195{left:136.955986pt;}
.x23_c00195{left:147.503358pt;}
.x25_c00195{left:162.226018pt;}
.x1c_c00195{left:236.642339pt;}
.x20_c00195{left:245.351319pt;}
.x1b_c00195{left:252.157982pt;}
.x28_c00195{left:256.337705pt;}
.x24_c00195{left:258.809980pt;}
.x1e_c00195{left:292.375502pt;}
.x21_c00195{left:359.887897pt;}
.x1d_c00195{left:385.790369pt;}
.x1_c00195{left:421.428800pt;}
.x2_c00195{left:445.016000pt;}
.x3_c00195{left:456.580800pt;}
.x4_c00195{left:479.376000pt;}
.x5_c00195{left:490.774400pt;}
.x6_c00195{left:505.659200pt;}
.x7_c00195{left:510.091200pt;}
.x29_c00195{left:512.674888pt;}
.x8_c00195{left:521.811200pt;}
.x9_c00195{left:529.726400pt;}
.xa_c00195{left:534.633600pt;}
.xb_c00195{left:550.150400pt;}
.x26_c00195{left:559.861150pt;}
.xc_c00195{left:563.452800pt;}
.xd_c00195{left:570.419200pt;}
.xe_c00195{left:581.817600pt;}
.xf_c00195{left:589.576000pt;}
.x10_c00195{left:600.185600pt;}
.x11_c00195{left:607.939200pt;}
.x12_c00195{left:614.752000pt;}
.x14_c00195{left:637.552000pt;}
.x16_c00195{left:644.676800pt;}
.x17_c00195{left:656.547200pt;}
.x18_c00195{left:664.307200pt;}
.x19_c00195{left:669.217600pt;}
.x1a_c00195{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.113000;font-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_c00196{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00196{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls0_c00196{letter-spacing:0.000000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00196{word-spacing:-17.812493px;}
.ws1_c00196{word-spacing:0.000000px;}
._5_c00196{margin-left:-2.117592px;}
._0_c00196{margin-left:-1.029993px;}
._1_c00196{width:1.238859px;}
._11_c00196{width:2.242572px;}
._4_c00196{width:3.766960px;}
._3_c00196{width:4.780078px;}
._14_c00196{width:9.347668px;}
._13_c00196{width:10.741532px;}
._15_c00196{width:12.690142px;}
._16_c00196{width:13.708959px;}
._12_c00196{width:15.270940px;}
._10_c00196{width:16.325330px;}
._a_c00196{width:21.915775px;}
._9_c00196{width:23.508534px;}
._7_c00196{width:35.728787px;}
._8_c00196{width:37.156121px;}
._c_c00196{width:51.883597px;}
._b_c00196{width:53.541332px;}
._f_c00196{width:76.207740px;}
._2_c00196{width:192.500323px;}
._6_c00196{width:233.932942px;}
._d_c00196{width:267.864096px;}
._e_c00196{width:827.788461px;}
.fc1_c00196{color:rgb(105,148,45);}
.fc0_c00196{color:rgb(35,31,32);}
.fs1_c00196{font-size:65.550574px;}
.fs0_c00196{font-size:71.249972px;}
.y0_c00196{bottom:0.000000px;}
.y3_c00196{bottom:0.120938px;}
.y12_c00196{bottom:4.271321px;}
.y2_c00196{bottom:4.274933px;}
.y8_c00196{bottom:6.826644px;}
.y9_c00196{bottom:88.469218px;}
.y1_c00196{bottom:89.237880px;}
.y2c_c00196{bottom:113.224608px;}
.y2b_c00196{bottom:134.245300px;}
.y2a_c00196{bottom:155.261641px;}
.y29_c00196{bottom:176.281583px;}
.y28_c00196{bottom:197.303774px;}
.y27_c00196{bottom:239.337208px;}
.y26_c00196{bottom:260.359249px;}
.y25_c00196{bottom:281.372741px;}
.y24_c00196{bottom:327.152722px;}
.y23_c00196{bottom:385.755749px;}
.y22_c00196{bottom:406.772841px;}
.y21_c00196{bottom:448.810624px;}
.y20_c00196{bottom:469.828465px;}
.y1f_c00196{bottom:511.866249px;}
.y1e_c00196{bottom:532.885440px;}
.y1d_c00196{bottom:553.904632px;}
.y1c_c00196{bottom:599.680113px;}
.y1b_c00196{bottom:662.378588px;}
.y1a_c00196{bottom:745.921055px;}
.y19_c00196{bottom:790.093337px;}
.y18_c00196{bottom:811.114029px;}
.y17_c00196{bottom:833.200020px;}
.y16_c00196{bottom:855.286011px;}
.y15_c00196{bottom:877.377102px;}
.y14_c00196{bottom:898.396294px;}
.y10_c00196{bottom:919.410536px;}
.y13_c00196{bottom:919.415486px;}
.yf_c00196{bottom:940.430477px;}
.y11_c00196{bottom:942.985800px;}
.ye_c00196{bottom:962.516768px;}
.yd_c00196{bottom:983.537460px;}
.yc_c00196{bottom:1005.621801px;}
.yb_c00196{bottom:1049.974233px;}
.ya_c00196{bottom:1070.994925px;}
.y7_c00196{bottom:1122.588113px;}
.y6_c00196{bottom:1143.604455px;}
.y5_c00196{bottom:1164.623647px;}
.y4_c00196{bottom:1185.642088px;}
.h1_c00196{height:19.060200px;}
.h7_c00196{height:20.304000px;}
.h9_c00196{height:58.929966px;}
.h2_c00196{height:63.768724px;}
.h6_c00196{height:63.839974px;}
.h8_c00196{height:63.911224px;}
.h4_c00196{height:64.053724px;}
.h5_c00196{height:1249.830756px;}
.h3_c00196{height:1262.879062px;}
.h0_c00196{height:1263.000000px;}
.w17_c00196{width:4.451400px;}
.w10_c00196{width:4.453200px;}
.w6_c00196{width:5.344200px;}
.w9_c00196{width:6.768000px;}
.w15_c00196{width:6.771600px;}
.wc_c00196{width:7.837200px;}
.w12_c00196{width:8.015400px;}
.wf_c00196{width:8.722800px;}
.wd_c00196{width:8.728200px;}
.w14_c00196{width:8.730000px;}
.w8_c00196{width:8.904600px;}
.w7_c00196{width:8.908200px;}
.we_c00196{width:11.935800px;}
.w4_c00196{width:12.823200px;}
.w2_c00196{width:13.010400px;}
.w13_c00196{width:13.354200px;}
.wa_c00196{width:13.359600px;}
.w5_c00196{width:16.745400px;}
.wb_c00196{width:16.923600px;}
.w16_c00196{width:22.262400px;}
.w3_c00196{width:25.644600px;}
.w1_c00196{width:26.715600px;}
.w11_c00196{width:28.677600px;}
.w1a_c00196{width:293.551200px;}
.w19_c00196{width:883.195846px;}
.w18_c00196{width:892.414744px;}
.w0_c00196{width:892.500000px;}
.x0_c00196{left:0.000000px;}
.x13_c00196{left:1.066223px;}
.x15_c00196{left:3.023712px;}
.x1f_c00196{left:126.289645px;}
.x20_c00196{left:132.880734px;}
.x23_c00196{left:178.837474px;}
.x1c_c00196{left:266.222632px;}
.x1b_c00196{left:283.677730px;}
.x1e_c00196{left:328.922440px;}
.x1d_c00196{left:434.014165px;}
.x22_c00196{left:468.107858px;}
.x21_c00196{left:469.652400px;}
.x1_c00196{left:474.107400px;}
.x2_c00196{left:500.643000px;}
.x3_c00196{left:513.653400px;}
.x4_c00196{left:539.298000px;}
.x5_c00196{left:552.121200px;}
.x6_c00196{left:568.866600px;}
.x7_c00196{left:573.852600px;}
.x8_c00196{left:587.037600px;}
.x9_c00196{left:595.942200px;}
.xa_c00196{left:601.462800px;}
.xb_c00196{left:618.919200px;}
.xc_c00196{left:633.884400px;}
.xd_c00196{left:641.721600px;}
.xe_c00196{left:654.544800px;}
.xf_c00196{left:663.273000px;}
.x10_c00196{left:675.208800px;}
.x11_c00196{left:683.931600px;}
.x12_c00196{left:691.596000px;}
.x14_c00196{left:717.246000px;}
.x16_c00196{left:725.261400px;}
.x17_c00196{left:738.615600px;}
.x18_c00196{left:747.345600px;}
.x19_c00196{left:752.869800px;}
.x1a_c00196{left:775.132200px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:-15.833327pt;}
.ws1_c00196{word-spacing:0.000000pt;}
._5_c00196{margin-left:-1.882304pt;}
._0_c00196{margin-left:-0.915549pt;}
._1_c00196{width:1.101208pt;}
._11_c00196{width:1.993397pt;}
._4_c00196{width:3.348409pt;}
._3_c00196{width:4.248959pt;}
._14_c00196{width:8.309038pt;}
._13_c00196{width:9.548029pt;}
._15_c00196{width:11.280126pt;}
._16_c00196{width:12.185742pt;}
._12_c00196{width:13.574169pt;}
._10_c00196{width:14.511405pt;}
._a_c00196{width:19.480689pt;}
._9_c00196{width:20.896475pt;}
._7_c00196{width:31.758922pt;}
._8_c00196{width:33.027663pt;}
._c_c00196{width:46.118753pt;}
._b_c00196{width:47.592295pt;}
._f_c00196{width:67.740213pt;}
._2_c00196{width:171.111398pt;}
._6_c00196{width:207.940393pt;}
._d_c00196{width:238.101419pt;}
._e_c00196{width:735.811966pt;}
.fs1_c00196{font-size:58.267177pt;}
.fs0_c00196{font-size:63.333308pt;}
.y0_c00196{bottom:0.000000pt;}
.y3_c00196{bottom:0.107500pt;}
.y12_c00196{bottom:3.796730pt;}
.y2_c00196{bottom:3.799940pt;}
.y8_c00196{bottom:6.068128pt;}
.y9_c00196{bottom:78.639305pt;}
.y1_c00196{bottom:79.322560pt;}
.y2c_c00196{bottom:100.644096pt;}
.y2b_c00196{bottom:119.329155pt;}
.y2a_c00196{bottom:138.010348pt;}
.y29_c00196{bottom:156.694740pt;}
.y28_c00196{bottom:175.381133pt;}
.y27_c00196{bottom:212.744184pt;}
.y26_c00196{bottom:231.430444pt;}
.y25_c00196{bottom:250.109103pt;}
.y24_c00196{bottom:290.802420pt;}
.y23_c00196{bottom:342.893999pt;}
.y22_c00196{bottom:361.575858pt;}
.y21_c00196{bottom:398.942777pt;}
.y20_c00196{bottom:417.625303pt;}
.y1f_c00196{bottom:454.992221pt;}
.y1e_c00196{bottom:473.675947pt;}
.y1d_c00196{bottom:492.359673pt;}
.y1c_c00196{bottom:533.048990pt;}
.y1b_c00196{bottom:588.780967pt;}
.y1a_c00196{bottom:663.040938pt;}
.y19_c00196{bottom:702.305189pt;}
.y18_c00196{bottom:720.990248pt;}
.y17_c00196{bottom:740.622240pt;}
.y16_c00196{bottom:760.254232pt;}
.y15_c00196{bottom:779.890758pt;}
.y14_c00196{bottom:798.574483pt;}
.y10_c00196{bottom:817.253809pt;}
.y13_c00196{bottom:817.258209pt;}
.yf_c00196{bottom:835.938202pt;}
.y11_c00196{bottom:838.209600pt;}
.ye_c00196{bottom:855.570461pt;}
.yd_c00196{bottom:874.255520pt;}
.yc_c00196{bottom:893.886045pt;}
.yb_c00196{bottom:933.310430pt;}
.ya_c00196{bottom:951.995489pt;}
.y7_c00196{bottom:997.856101pt;}
.y6_c00196{bottom:1016.537293pt;}
.y5_c00196{bottom:1035.221019pt;}
.y4_c00196{bottom:1053.904078pt;}
.h1_c00196{height:16.942400pt;}
.h7_c00196{height:18.048000pt;}
.h9_c00196{height:52.382192pt;}
.h2_c00196{height:56.683311pt;}
.h6_c00196{height:56.746644pt;}
.h8_c00196{height:56.809977pt;}
.h4_c00196{height:56.936644pt;}
.h5_c00196{height:1110.960672pt;}
.h3_c00196{height:1122.559167pt;}
.h0_c00196{height:1122.666667pt;}
.w17_c00196{width:3.956800pt;}
.w10_c00196{width:3.958400pt;}
.w6_c00196{width:4.750400pt;}
.w9_c00196{width:6.016000pt;}
.w15_c00196{width:6.019200pt;}
.wc_c00196{width:6.966400pt;}
.w12_c00196{width:7.124800pt;}
.wf_c00196{width:7.753600pt;}
.wd_c00196{width:7.758400pt;}
.w14_c00196{width:7.760000pt;}
.w8_c00196{width:7.915200pt;}
.w7_c00196{width:7.918400pt;}
.we_c00196{width:10.609600pt;}
.w4_c00196{width:11.398400pt;}
.w2_c00196{width:11.564800pt;}
.w13_c00196{width:11.870400pt;}
.wa_c00196{width:11.875200pt;}
.w5_c00196{width:14.884800pt;}
.wb_c00196{width:15.043200pt;}
.w16_c00196{width:19.788800pt;}
.w3_c00196{width:22.795200pt;}
.w1_c00196{width:23.747200pt;}
.w11_c00196{width:25.491200pt;}
.w1a_c00196{width:260.934400pt;}
.w19_c00196{width:785.062974pt;}
.w18_c00196{width:793.257550pt;}
.w0_c00196{width:793.333333pt;}
.x0_c00196{left:0.000000pt;}
.x13_c00196{left:0.947754pt;}
.x15_c00196{left:2.687744pt;}
.x1f_c00196{left:112.257462pt;}
.x20_c00196{left:118.116208pt;}
.x23_c00196{left:158.966644pt;}
.x1c_c00196{left:236.642339pt;}
.x1b_c00196{left:252.157982pt;}
.x1e_c00196{left:292.375502pt;}
.x1d_c00196{left:385.790369pt;}
.x22_c00196{left:416.095874pt;}
.x21_c00196{left:417.468800pt;}
.x1_c00196{left:421.428800pt;}
.x2_c00196{left:445.016000pt;}
.x3_c00196{left:456.580800pt;}
.x4_c00196{left:479.376000pt;}
.x5_c00196{left:490.774400pt;}
.x6_c00196{left:505.659200pt;}
.x7_c00196{left:510.091200pt;}
.x8_c00196{left:521.811200pt;}
.x9_c00196{left:529.726400pt;}
.xa_c00196{left:534.633600pt;}
.xb_c00196{left:550.150400pt;}
.xc_c00196{left:563.452800pt;}
.xd_c00196{left:570.419200pt;}
.xe_c00196{left:581.817600pt;}
.xf_c00196{left:589.576000pt;}
.x10_c00196{left:600.185600pt;}
.x11_c00196{left:607.939200pt;}
.x12_c00196{left:614.752000pt;}
.x14_c00196{left:637.552000pt;}
.x16_c00196{left:644.676800pt;}
.x17_c00196{left:656.547200pt;}
.x18_c00196{left:664.307200pt;}
.x19_c00196{left:669.217600pt;}
.x1a_c00196{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.113000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls0_c00197{letter-spacing:0.000000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:-17.812493px;}
.ws1_c00197{word-spacing:0.000000px;}
._a_c00197{margin-left:-2.470200px;}
._0_c00197{margin-left:-1.029993px;}
._1_c00197{width:1.238859px;}
._5_c00197{width:2.789610px;}
._4_c00197{width:3.853240px;}
._3_c00197{width:5.461889px;}
._2_c00197{width:6.463843px;}
._c_c00197{width:8.080970px;}
._b_c00197{width:9.312680px;}
._f_c00197{width:10.686139px;}
._d_c00197{width:11.879669px;}
._e_c00197{width:12.931994px;}
._9_c00197{width:15.197902px;}
._8_c00197{width:16.421519px;}
._6_c00197{width:29.511187px;}
._7_c00197{width:30.530653px;}
.fc1_c00197{color:rgb(105,148,45);}
.fc0_c00197{color:rgb(35,31,32);}
.fs0_c00197{font-size:71.249972px;}
.y0_c00197{bottom:0.000000px;}
.y3_c00197{bottom:0.120938px;}
.y2_c00197{bottom:4.274933px;}
.y8_c00197{bottom:6.826644px;}
.y9_c00197{bottom:88.469218px;}
.y1_c00197{bottom:89.237880px;}
.y22_c00197{bottom:308.444580px;}
.y21_c00197{bottom:329.466621px;}
.y20_c00197{bottom:350.484463px;}
.y1f_c00197{bottom:392.520746px;}
.y1e_c00197{bottom:413.541438px;}
.y1d_c00197{bottom:455.577721px;}
.y1c_c00197{bottom:476.595563px;}
.y1b_c00197{bottom:497.616254px;}
.y1a_c00197{bottom:543.746936px;}
.y19_c00197{bottom:603.955562px;}
.y18_c00197{bottom:624.971903px;}
.y17_c00197{bottom:667.008186px;}
.y16_c00197{bottom:688.028878px;}
.y15_c00197{bottom:709.048070px;}
.y14_c00197{bottom:755.183551px;}
.y13_c00197{bottom:818.771376px;}
.y12_c00197{bottom:839.788467px;}
.y11_c00197{bottom:860.806309px;}
.y10_c00197{bottom:902.844092px;}
.yf_c00197{bottom:923.863284px;}
.ye_c00197{bottom:944.879925px;}
.yd_c00197{bottom:986.918309px;}
.yc_c00197{bottom:1007.934050px;}
.yb_c00197{bottom:1028.954742px;}
.ya_c00197{bottom:1049.975433px;}
.y7_c00197{bottom:1122.588113px;}
.y6_c00197{bottom:1143.604455px;}
.y5_c00197{bottom:1164.623647px;}
.y4_c00197{bottom:1185.642088px;}
.h1_c00197{height:19.060200px;}
.h2_c00197{height:63.768724px;}
.h6_c00197{height:63.839974px;}
.h7_c00197{height:63.856174px;}
.h8_c00197{height:63.911224px;}
.h4_c00197{height:64.053724px;}
.h5_c00197{height:1249.830756px;}
.h3_c00197{height:1262.879062px;}
.h0_c00197{height:1263.000000px;}
.w17_c00197{width:4.451400px;}
.w10_c00197{width:4.453200px;}
.w6_c00197{width:5.344200px;}
.w9_c00197{width:6.768000px;}
.w15_c00197{width:6.771600px;}
.wc_c00197{width:7.837200px;}
.w12_c00197{width:8.015400px;}
.wf_c00197{width:8.722800px;}
.wd_c00197{width:8.728200px;}
.w14_c00197{width:8.730000px;}
.w8_c00197{width:8.904600px;}
.w7_c00197{width:8.908200px;}
.we_c00197{width:11.935800px;}
.w4_c00197{width:12.823200px;}
.w2_c00197{width:13.010400px;}
.w13_c00197{width:13.354200px;}
.wa_c00197{width:13.359600px;}
.w5_c00197{width:16.745400px;}
.wb_c00197{width:16.923600px;}
.w16_c00197{width:22.262400px;}
.w3_c00197{width:25.644600px;}
.w1_c00197{width:26.715600px;}
.w11_c00197{width:28.677600px;}
.w19_c00197{width:883.195846px;}
.w18_c00197{width:892.414744px;}
.w0_c00197{width:892.500000px;}
.x0_c00197{left:0.000000px;}
.x13_c00197{left:1.066223px;}
.x15_c00197{left:3.023712px;}
.x1f_c00197{left:126.289645px;}
.x20_c00197{left:178.837474px;}
.x1c_c00197{left:266.222632px;}
.x1b_c00197{left:283.677730px;}
.x1e_c00197{left:328.922440px;}
.x1d_c00197{left:434.014165px;}
.x1_c00197{left:474.107400px;}
.x2_c00197{left:500.643000px;}
.x3_c00197{left:513.653400px;}
.x4_c00197{left:539.298000px;}
.x5_c00197{left:552.121200px;}
.x6_c00197{left:568.866600px;}
.x7_c00197{left:573.852600px;}
.x8_c00197{left:587.037600px;}
.x9_c00197{left:595.942200px;}
.xa_c00197{left:601.462800px;}
.xb_c00197{left:618.919200px;}
.xc_c00197{left:633.884400px;}
.xd_c00197{left:641.721600px;}
.xe_c00197{left:654.544800px;}
.xf_c00197{left:663.273000px;}
.x10_c00197{left:675.208800px;}
.x11_c00197{left:683.931600px;}
.x12_c00197{left:691.596000px;}
.x14_c00197{left:717.246000px;}
.x16_c00197{left:725.261400px;}
.x17_c00197{left:738.615600px;}
.x18_c00197{left:747.345600px;}
.x19_c00197{left:752.869800px;}
.x1a_c00197{left:775.132200px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws0_c00197{word-spacing:-15.833327pt;}
.ws1_c00197{word-spacing:0.000000pt;}
._a_c00197{margin-left:-2.195734pt;}
._0_c00197{margin-left:-0.915549pt;}
._1_c00197{width:1.101208pt;}
._5_c00197{width:2.479653pt;}
._4_c00197{width:3.425102pt;}
._3_c00197{width:4.855013pt;}
._2_c00197{width:5.745638pt;}
._c_c00197{width:7.183084pt;}
._b_c00197{width:8.277938pt;}
._f_c00197{width:9.498791pt;}
._d_c00197{width:10.559706pt;}
._e_c00197{width:11.495106pt;}
._9_c00197{width:13.509246pt;}
._8_c00197{width:14.596906pt;}
._6_c00197{width:26.232166pt;}
._7_c00197{width:27.138358pt;}
.fs0_c00197{font-size:63.333308pt;}
.y0_c00197{bottom:0.000000pt;}
.y3_c00197{bottom:0.107500pt;}
.y2_c00197{bottom:3.799940pt;}
.y8_c00197{bottom:6.068128pt;}
.y9_c00197{bottom:78.639305pt;}
.y1_c00197{bottom:79.322560pt;}
.y22_c00197{bottom:274.172960pt;}
.y21_c00197{bottom:292.859219pt;}
.y20_c00197{bottom:311.541745pt;}
.y1f_c00197{bottom:348.907330pt;}
.y1e_c00197{bottom:367.592389pt;}
.y1d_c00197{bottom:404.957974pt;}
.y1c_c00197{bottom:423.640500pt;}
.y1b_c00197{bottom:442.325559pt;}
.y1a_c00197{bottom:483.330610pt;}
.y19_c00197{bottom:536.849388pt;}
.y18_c00197{bottom:555.530581pt;}
.y17_c00197{bottom:592.896166pt;}
.y16_c00197{bottom:611.581225pt;}
.y15_c00197{bottom:630.264951pt;}
.y14_c00197{bottom:671.274268pt;}
.y13_c00197{bottom:727.796778pt;}
.y12_c00197{bottom:746.478638pt;}
.y11_c00197{bottom:765.161164pt;}
.y10_c00197{bottom:802.528082pt;}
.yf_c00197{bottom:821.211808pt;}
.ye_c00197{bottom:839.893267pt;}
.yd_c00197{bottom:877.260719pt;}
.yc_c00197{bottom:895.941378pt;}
.yb_c00197{bottom:914.626437pt;}
.ya_c00197{bottom:933.311496pt;}
.y7_c00197{bottom:997.856101pt;}
.y6_c00197{bottom:1016.537293pt;}
.y5_c00197{bottom:1035.221019pt;}
.y4_c00197{bottom:1053.904078pt;}
.h1_c00197{height:16.942400pt;}
.h2_c00197{height:56.683311pt;}
.h6_c00197{height:56.746644pt;}
.h7_c00197{height:56.761044pt;}
.h8_c00197{height:56.809977pt;}
.h4_c00197{height:56.936644pt;}
.h5_c00197{height:1110.960672pt;}
.h3_c00197{height:1122.559167pt;}
.h0_c00197{height:1122.666667pt;}
.w17_c00197{width:3.956800pt;}
.w10_c00197{width:3.958400pt;}
.w6_c00197{width:4.750400pt;}
.w9_c00197{width:6.016000pt;}
.w15_c00197{width:6.019200pt;}
.wc_c00197{width:6.966400pt;}
.w12_c00197{width:7.124800pt;}
.wf_c00197{width:7.753600pt;}
.wd_c00197{width:7.758400pt;}
.w14_c00197{width:7.760000pt;}
.w8_c00197{width:7.915200pt;}
.w7_c00197{width:7.918400pt;}
.we_c00197{width:10.609600pt;}
.w4_c00197{width:11.398400pt;}
.w2_c00197{width:11.564800pt;}
.w13_c00197{width:11.870400pt;}
.wa_c00197{width:11.875200pt;}
.w5_c00197{width:14.884800pt;}
.wb_c00197{width:15.043200pt;}
.w16_c00197{width:19.788800pt;}
.w3_c00197{width:22.795200pt;}
.w1_c00197{width:23.747200pt;}
.w11_c00197{width:25.491200pt;}
.w19_c00197{width:785.062974pt;}
.w18_c00197{width:793.257550pt;}
.w0_c00197{width:793.333333pt;}
.x0_c00197{left:0.000000pt;}
.x13_c00197{left:0.947754pt;}
.x15_c00197{left:2.687744pt;}
.x1f_c00197{left:112.257462pt;}
.x20_c00197{left:158.966644pt;}
.x1c_c00197{left:236.642339pt;}
.x1b_c00197{left:252.157982pt;}
.x1e_c00197{left:292.375502pt;}
.x1d_c00197{left:385.790369pt;}
.x1_c00197{left:421.428800pt;}
.x2_c00197{left:445.016000pt;}
.x3_c00197{left:456.580800pt;}
.x4_c00197{left:479.376000pt;}
.x5_c00197{left:490.774400pt;}
.x6_c00197{left:505.659200pt;}
.x7_c00197{left:510.091200pt;}
.x8_c00197{left:521.811200pt;}
.x9_c00197{left:529.726400pt;}
.xa_c00197{left:534.633600pt;}
.xb_c00197{left:550.150400pt;}
.xc_c00197{left:563.452800pt;}
.xd_c00197{left:570.419200pt;}
.xe_c00197{left:581.817600pt;}
.xf_c00197{left:589.576000pt;}
.x10_c00197{left:600.185600pt;}
.x11_c00197{left:607.939200pt;}
.x12_c00197{left:614.752000pt;}
.x14_c00197{left:637.552000pt;}
.x16_c00197{left:644.676800pt;}
.x17_c00197{left:656.547200pt;}
.x18_c00197{left:664.307200pt;}
.x19_c00197{left:669.217600pt;}
.x1a_c00197{left:689.006400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:0.865062;font-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_c00198{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls0_c00198{letter-spacing:0.000000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-17.812493px;}
.ws1_c00198{word-spacing:-14.784234px;}
.ws3_c00198{word-spacing:0.000000px;}
.ws2_c00198{word-spacing:66.154717px;}
._4_c00198{margin-left:-2.532345px;}
._0_c00198{margin-left:-1.029993px;}
._1_c00198{width:1.238859px;}
._a_c00198{width:2.318255px;}
._b_c00198{width:3.989965px;}
._10_c00198{width:5.241043px;}
._19_c00198{width:9.255617px;}
._18_c00198{width:10.868571px;}
._17_c00198{width:12.226356px;}
._16_c00198{width:13.446502px;}
._3_c00198{width:16.215430px;}
._15_c00198{width:21.350750px;}
._14_c00198{width:22.714738px;}
._1a_c00198{width:24.666572px;}
._e_c00198{width:79.965209px;}
._6_c00198{width:81.487064px;}
._2_c00198{width:115.331672px;}
._1f_c00198{width:133.077020px;}
._7_c00198{width:141.085905px;}
._9_c00198{width:144.566981px;}
._22_c00198{width:145.686010px;}
._c_c00198{width:182.394316px;}
._12_c00198{width:257.553835px;}
._13_c00198{width:298.211913px;}
._1b_c00198{width:299.313952px;}
._d_c00198{width:390.067198px;}
._8_c00198{width:414.432386px;}
._f_c00198{width:418.418686px;}
._11_c00198{width:460.886665px;}
._5_c00198{width:467.974986px;}
._21_c00198{width:590.397152px;}
._20_c00198{width:605.776946px;}
._1e_c00198{width:798.631482px;}
._1c_c00198{width:906.893461px;}
._1d_c00198{width:933.418460px;}
.fc1_c00198{color:rgb(105,148,45);}
.fc0_c00198{color:rgb(35,31,32);}
.fs1_c00198{font-size:59.136936px;}
.fs0_c00198{font-size:71.249972px;}
.y0_c00198{bottom:0.000000px;}
.y3_c00198{bottom:0.120938px;}
.y34_c00198{bottom:3.557745px;}
.y1d_c00198{bottom:3.560087px;}
.y5c_c00198{bottom:3.560833px;}
.yf_c00198{bottom:3.560928px;}
.y15_c00198{bottom:3.561250px;}
.y30_c00198{bottom:3.561624px;}
.y3a_c00198{bottom:3.563460px;}
.y61_c00198{bottom:3.563547px;}
.y57_c00198{bottom:3.564418px;}
.y2_c00198{bottom:4.274933px;}
.y1_c00198{bottom:89.237880px;}
.y8_c00198{bottom:95.174924px;}
.y6b_c00198{bottom:211.487578px;}
.y6a_c00198{bottom:231.081620px;}
.y69_c00198{bottom:250.672812px;}
.y68_c00198{bottom:270.268954px;}
.y67_c00198{bottom:289.862997px;}
.y66_c00198{bottom:309.457039px;}
.y65_c00198{bottom:326.909232px;}
.y63_c00198{bottom:346.503124px;}
.y62_c00198{bottom:363.958917px;}
.y60_c00198{bottom:377.974800px;}
.y5f_c00198{bottom:381.415910px;}
.y64_c00198{bottom:381.416810px;}
.y5d_c00198{bottom:401.011902px;}
.y5b_c00198{bottom:415.026000px;}
.y5e_c00198{bottom:418.465595px;}
.y5a_c00198{bottom:418.466495px;}
.y58_c00198{bottom:438.061887px;}
.y56_c00198{bottom:452.075400px;}
.y55_c00198{bottom:455.515430px;}
.y59_c00198{bottom:455.516930px;}
.y54_c00198{bottom:475.106622px;}
.y53_c00198{bottom:492.563765px;}
.y4f_c00198{bottom:493.453265px;}
.y4a_c00198{bottom:493.454765px;}
.y45_c00198{bottom:493.454915px;}
.y41_c00198{bottom:493.455065px;}
.y4e_c00198{bottom:510.909808px;}
.y49_c00198{bottom:510.911308px;}
.y44_c00198{bottom:510.911458px;}
.y40_c00198{bottom:510.913708px;}
.y52_c00198{bottom:527.474601px;}
.y4d_c00198{bottom:528.364251px;}
.y48_c00198{bottom:528.365751px;}
.y3f_c00198{bottom:528.365901px;}
.y51_c00198{bottom:544.929644px;}
.y4c_c00198{bottom:545.822144px;}
.y47_c00198{bottom:545.823644px;}
.y43_c00198{bottom:545.823794px;}
.y3e_c00198{bottom:545.825144px;}
.y50_c00198{bottom:562.386187px;}
.y4b_c00198{bottom:563.277187px;}
.y46_c00198{bottom:563.280787px;}
.y3d_c00198{bottom:563.280937px;}
.y42_c00198{bottom:563.282437px;}
.y3b_c00198{bottom:582.876329px;}
.y39_c00198{bottom:596.890800px;}
.y38_c00198{bottom:600.327322px;}
.y3c_c00198{bottom:600.330022px;}
.y35_c00198{bottom:619.923314px;}
.y33_c00198{bottom:633.942000px;}
.y32_c00198{bottom:654.835651px;}
.y37_c00198{bottom:672.290694px;}
.y31_c00198{bottom:672.292794px;}
.y2f_c00198{bottom:686.307600px;}
.y2e_c00198{bottom:689.744537px;}
.y36_c00198{bottom:689.745737px;}
.y2d_c00198{bottom:709.339929px;}
.y20_c00198{bottom:728.936071px;}
.y2c_c00198{bottom:746.386914px;}
.y26_c00198{bottom:746.388264px;}
.y1f_c00198{bottom:746.391114px;}
.y23_c00198{bottom:746.391864px;}
.y29_c00198{bottom:746.392464px;}
.y28_c00198{bottom:763.843307px;}
.y25_c00198{bottom:763.844057px;}
.y22_c00198{bottom:763.845557px;}
.y2b_c00198{bottom:763.846157px;}
.y1e_c00198{bottom:763.848257px;}
.y1c_c00198{bottom:777.864600px;}
.y27_c00198{bottom:781.297000px;}
.y2a_c00198{bottom:781.298350px;}
.y24_c00198{bottom:781.299850px;}
.y21_c00198{bottom:781.300600px;}
.y1b_c00198{bottom:781.300750px;}
.y1a_c00198{bottom:800.896142px;}
.y19_c00198{bottom:820.488684px;}
.y18_c00198{bottom:837.945827px;}
.y16_c00198{bottom:857.539719px;}
.y14_c00198{bottom:871.556400px;}
.y17_c00198{bottom:874.993412px;}
.y13_c00198{bottom:874.997012px;}
.y11_c00198{bottom:894.591055px;}
.y10_c00198{bottom:912.048198px;}
.ye_c00198{bottom:926.062200px;}
.y12_c00198{bottom:929.499041px;}
.yd_c00198{bottom:929.499641px;}
.yc_c00198{bottom:949.092183px;}
.yb_c00198{bottom:968.689675px;}
.ya_c00198{bottom:988.634417px;}
.y9_c00198{bottom:1059.531139px;}
.y7_c00198{bottom:1122.588113px;}
.y6_c00198{bottom:1143.604455px;}
.y5_c00198{bottom:1164.623647px;}
.y4_c00198{bottom:1185.642088px;}
.hb_c00198{height:16.738200px;}
.ha_c00198{height:16.741800px;}
.h8_c00198{height:16.743600px;}
.h9_c00198{height:16.745400px;}
.hc_c00198{height:16.747200px;}
.h1_c00198{height:19.060200px;}
.h7_c00198{height:52.986695px;}
.h2_c00198{height:63.768724px;}
.h5_c00198{height:63.839974px;}
.h6_c00198{height:63.911224px;}
.h4_c00198{height:64.053724px;}
.h3_c00198{height:1262.879062px;}
.h0_c00198{height:1263.000000px;}
.w17_c00198{width:4.451400px;}
.w10_c00198{width:4.453200px;}
.w6_c00198{width:5.344200px;}
.w9_c00198{width:6.768000px;}
.w15_c00198{width:6.771600px;}
.wc_c00198{width:7.837200px;}
.w12_c00198{width:8.015400px;}
.wf_c00198{width:8.722800px;}
.wd_c00198{width:8.728200px;}
.w14_c00198{width:8.730000px;}
.w8_c00198{width:8.904600px;}
.w7_c00198{width:8.908200px;}
.we_c00198{width:11.935800px;}
.w4_c00198{width:12.823200px;}
.w2_c00198{width:13.010400px;}
.w13_c00198{width:13.354200px;}
.wa_c00198{width:13.359600px;}
.w5_c00198{width:16.745400px;}
.wb_c00198{width:16.923600px;}
.w16_c00198{width:22.262400px;}
.w3_c00198{width:25.644600px;}
.w1_c00198{width:26.715600px;}
.w11_c00198{width:28.677600px;}
.w19_c00198{width:314.208180px;}
.w18_c00198{width:892.414744px;}
.w0_c00198{width:892.500000px;}
.x0_c00198{left:0.000000px;}
.x13_c00198{left:1.066223px;}
.x15_c00198{left:3.023712px;}
.x1f_c00198{left:127.818943px;}
.x20_c00198{left:129.957847px;}
.x21_c00198{left:136.369689px;}
.x22_c00198{left:150.278220px;}
.x1c_c00198{left:266.222632px;}
.x1b_c00198{left:283.677730px;}
.x1e_c00198{left:328.922440px;}
.x1d_c00198{left:434.014165px;}
.x1_c00198{left:474.107400px;}
.x23_c00198{left:496.176085px;}
.x2_c00198{left:500.643000px;}
.x24_c00198{left:503.481072px;}
.x3_c00198{left:513.653400px;}
.x25_c00198{left:531.442218px;}
.x4_c00198{left:539.298000px;}
.x5_c00198{left:552.121200px;}
.x26_c00198{left:558.338153px;}
.x6_c00198{left:568.866600px;}
.x7_c00198{left:573.852600px;}
.x8_c00198{left:587.037600px;}
.x27_c00198{left:588.085925px;}
.x9_c00198{left:595.942200px;}
.xa_c00198{left:601.462800px;}
.xb_c00198{left:618.919200px;}
.x28_c00198{left:631.904005px;}
.xc_c00198{left:633.884400px;}
.xd_c00198{left:641.721600px;}
.xe_c00198{left:654.544800px;}
.xf_c00198{left:663.273000px;}
.x10_c00198{left:675.208800px;}
.x29_c00198{left:677.505833px;}
.x11_c00198{left:683.931600px;}
.x12_c00198{left:691.596000px;}
.x2c_c00198{left:695.141418px;}
.x2a_c00198{left:715.977316px;}
.x14_c00198{left:717.246000px;}
.x16_c00198{left:725.261400px;}
.x2d_c00198{left:731.478970px;}
.x17_c00198{left:738.615600px;}
.x2b_c00198{left:745.903778px;}
.x18_c00198{left:747.345600px;}
.x19_c00198{left:752.869800px;}
.x1a_c00198{left:775.132200px;}
.x2e_c00198{left:784.378604px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws0_c00198{word-spacing:-15.833327pt;}
.ws1_c00198{word-spacing:-13.141541pt;}
.ws3_c00198{word-spacing:0.000000pt;}
.ws2_c00198{word-spacing:58.804193pt;}
._4_c00198{margin-left:-2.250973pt;}
._0_c00198{margin-left:-0.915549pt;}
._1_c00198{width:1.101208pt;}
._a_c00198{width:2.060671pt;}
._b_c00198{width:3.546636pt;}
._10_c00198{width:4.658705pt;}
._19_c00198{width:8.227216pt;}
._18_c00198{width:9.660952pt;}
._17_c00198{width:10.867872pt;}
._16_c00198{width:11.952446pt;}
._3_c00198{width:14.413715pt;}
._15_c00198{width:18.978444pt;}
._14_c00198{width:20.190878pt;}
._1a_c00198{width:21.925841pt;}
._e_c00198{width:71.080186pt;}
._6_c00198{width:72.432945pt;}
._2_c00198{width:102.517042pt;}
._1f_c00198{width:118.290684pt;}
._7_c00198{width:125.409693pt;}
._9_c00198{width:128.503983pt;}
._22_c00198{width:129.498675pt;}
._c_c00198{width:162.128281pt;}
._12_c00198{width:228.936742pt;}
._13_c00198{width:265.077256pt;}
._1b_c00198{width:266.056847pt;}
._d_c00198{width:346.726398pt;}
._8_c00198{width:368.384343pt;}
._f_c00198{width:371.927721pt;}
._11_c00198{width:409.677035pt;}
._5_c00198{width:415.977765pt;}
._21_c00198{width:524.797468pt;}
._20_c00198{width:538.468396pt;}
._1e_c00198{width:709.894651pt;}
._1c_c00198{width:806.127521pt;}
._1d_c00198{width:829.705298pt;}
.fs1_c00198{font-size:52.566166pt;}
.fs0_c00198{font-size:63.333308pt;}
.y0_c00198{bottom:0.000000pt;}
.y3_c00198{bottom:0.107500pt;}
.y34_c00198{bottom:3.162440pt;}
.y1d_c00198{bottom:3.164522pt;}
.y5c_c00198{bottom:3.165185pt;}
.yf_c00198{bottom:3.165269pt;}
.y15_c00198{bottom:3.165556pt;}
.y30_c00198{bottom:3.165888pt;}
.y3a_c00198{bottom:3.167520pt;}
.y61_c00198{bottom:3.167598pt;}
.y57_c00198{bottom:3.168371pt;}
.y2_c00198{bottom:3.799940pt;}
.y1_c00198{bottom:79.322560pt;}
.y8_c00198{bottom:84.599933pt;}
.y6b_c00198{bottom:187.988958pt;}
.y6a_c00198{bottom:205.405884pt;}
.y69_c00198{bottom:222.820277pt;}
.y68_c00198{bottom:240.239071pt;}
.y67_c00198{bottom:257.655997pt;}
.y66_c00198{bottom:275.072923pt;}
.y65_c00198{bottom:290.585984pt;}
.y63_c00198{bottom:308.002777pt;}
.y62_c00198{bottom:323.519037pt;}
.y60_c00198{bottom:335.977600pt;}
.y5f_c00198{bottom:339.036364pt;}
.y64_c00198{bottom:339.037164pt;}
.y5d_c00198{bottom:356.455024pt;}
.y5b_c00198{bottom:368.912000pt;}
.y5e_c00198{bottom:371.969418pt;}
.y5a_c00198{bottom:371.970218pt;}
.y58_c00198{bottom:389.388344pt;}
.y56_c00198{bottom:401.844800pt;}
.y55_c00198{bottom:404.902605pt;}
.y59_c00198{bottom:404.903938pt;}
.y54_c00198{bottom:422.316998pt;}
.y53_c00198{bottom:437.834458pt;}
.y4f_c00198{bottom:438.625125pt;}
.y4a_c00198{bottom:438.626458pt;}
.y45_c00198{bottom:438.626591pt;}
.y41_c00198{bottom:438.626725pt;}
.y4e_c00198{bottom:454.142052pt;}
.y49_c00198{bottom:454.143385pt;}
.y44_c00198{bottom:454.143518pt;}
.y40_c00198{bottom:454.145518pt;}
.y52_c00198{bottom:468.866312pt;}
.y4d_c00198{bottom:469.657112pt;}
.y48_c00198{bottom:469.658445pt;}
.y3f_c00198{bottom:469.658579pt;}
.y51_c00198{bottom:484.381906pt;}
.y4c_c00198{bottom:485.175239pt;}
.y47_c00198{bottom:485.176573pt;}
.y43_c00198{bottom:485.176706pt;}
.y3e_c00198{bottom:485.177906pt;}
.y50_c00198{bottom:499.898833pt;}
.y4b_c00198{bottom:500.690833pt;}
.y46_c00198{bottom:500.694033pt;}
.y3d_c00198{bottom:500.694166pt;}
.y42_c00198{bottom:500.695500pt;}
.y3b_c00198{bottom:518.112293pt;}
.y39_c00198{bottom:530.569600pt;}
.y38_c00198{bottom:533.624287pt;}
.y3c_c00198{bottom:533.626687pt;}
.y35_c00198{bottom:551.042946pt;}
.y33_c00198{bottom:563.504000pt;}
.y32_c00198{bottom:582.076134pt;}
.y37_c00198{bottom:597.591728pt;}
.y31_c00198{bottom:597.593594pt;}
.y2f_c00198{bottom:610.051200pt;}
.y2e_c00198{bottom:613.106255pt;}
.y36_c00198{bottom:613.107321pt;}
.y2d_c00198{bottom:630.524381pt;}
.y20_c00198{bottom:647.943174pt;}
.y2c_c00198{bottom:663.455035pt;}
.y26_c00198{bottom:663.456235pt;}
.y1f_c00198{bottom:663.458768pt;}
.y23_c00198{bottom:663.459435pt;}
.y29_c00198{bottom:663.459968pt;}
.y28_c00198{bottom:678.971828pt;}
.y25_c00198{bottom:678.972495pt;}
.y22_c00198{bottom:678.973828pt;}
.y2b_c00198{bottom:678.974362pt;}
.y1e_c00198{bottom:678.976228pt;}
.y1c_c00198{bottom:691.435200pt;}
.y27_c00198{bottom:694.486222pt;}
.y2a_c00198{bottom:694.487422pt;}
.y24_c00198{bottom:694.488755pt;}
.y21_c00198{bottom:694.489422pt;}
.y1b_c00198{bottom:694.489555pt;}
.y1a_c00198{bottom:711.907682pt;}
.y19_c00198{bottom:729.323275pt;}
.y18_c00198{bottom:744.840735pt;}
.y16_c00198{bottom:762.257528pt;}
.y14_c00198{bottom:774.716800pt;}
.y17_c00198{bottom:777.771922pt;}
.y13_c00198{bottom:777.775122pt;}
.y11_c00198{bottom:795.192049pt;}
.y10_c00198{bottom:810.709509pt;}
.ye_c00198{bottom:823.166400pt;}
.y12_c00198{bottom:826.221369pt;}
.yd_c00198{bottom:826.221903pt;}
.yc_c00198{bottom:843.637496pt;}
.yb_c00198{bottom:861.057489pt;}
.ya_c00198{bottom:878.786148pt;}
.y9_c00198{bottom:941.805457pt;}
.y7_c00198{bottom:997.856101pt;}
.y6_c00198{bottom:1016.537293pt;}
.y5_c00198{bottom:1035.221019pt;}
.y4_c00198{bottom:1053.904078pt;}
.hb_c00198{height:14.878400pt;}
.ha_c00198{height:14.881600pt;}
.h8_c00198{height:14.883200pt;}
.h9_c00198{height:14.884800pt;}
.hc_c00198{height:14.886400pt;}
.h1_c00198{height:16.942400pt;}
.h7_c00198{height:47.099284pt;}
.h2_c00198{height:56.683311pt;}
.h5_c00198{height:56.746644pt;}
.h6_c00198{height:56.809977pt;}
.h4_c00198{height:56.936644pt;}
.h3_c00198{height:1122.559167pt;}
.h0_c00198{height:1122.666667pt;}
.w17_c00198{width:3.956800pt;}
.w10_c00198{width:3.958400pt;}
.w6_c00198{width:4.750400pt;}
.w9_c00198{width:6.016000pt;}
.w15_c00198{width:6.019200pt;}
.wc_c00198{width:6.966400pt;}
.w12_c00198{width:7.124800pt;}
.wf_c00198{width:7.753600pt;}
.wd_c00198{width:7.758400pt;}
.w14_c00198{width:7.760000pt;}
.w8_c00198{width:7.915200pt;}
.w7_c00198{width:7.918400pt;}
.we_c00198{width:10.609600pt;}
.w4_c00198{width:11.398400pt;}
.w2_c00198{width:11.564800pt;}
.w13_c00198{width:11.870400pt;}
.wa_c00198{width:11.875200pt;}
.w5_c00198{width:14.884800pt;}
.wb_c00198{width:15.043200pt;}
.w16_c00198{width:19.788800pt;}
.w3_c00198{width:22.795200pt;}
.w1_c00198{width:23.747200pt;}
.w11_c00198{width:25.491200pt;}
.w19_c00198{width:279.296160pt;}
.w18_c00198{width:793.257550pt;}
.w0_c00198{width:793.333333pt;}
.x0_c00198{left:0.000000pt;}
.x13_c00198{left:0.947754pt;}
.x15_c00198{left:2.687744pt;}
.x1f_c00198{left:113.616838pt;}
.x20_c00198{left:115.518086pt;}
.x21_c00198{left:121.217502pt;}
.x22_c00198{left:133.580640pt;}
.x1c_c00198{left:236.642339pt;}
.x1b_c00198{left:252.157982pt;}
.x1e_c00198{left:292.375502pt;}
.x1d_c00198{left:385.790369pt;}
.x1_c00198{left:421.428800pt;}
.x23_c00198{left:441.045409pt;}
.x2_c00198{left:445.016000pt;}
.x24_c00198{left:447.538731pt;}
.x3_c00198{left:456.580800pt;}
.x25_c00198{left:472.393083pt;}
.x4_c00198{left:479.376000pt;}
.x5_c00198{left:490.774400pt;}
.x26_c00198{left:496.300580pt;}
.x6_c00198{left:505.659200pt;}
.x7_c00198{left:510.091200pt;}
.x8_c00198{left:521.811200pt;}
.x27_c00198{left:522.743044pt;}
.x9_c00198{left:529.726400pt;}
.xa_c00198{left:534.633600pt;}
.xb_c00198{left:550.150400pt;}
.x28_c00198{left:561.692449pt;}
.xc_c00198{left:563.452800pt;}
.xd_c00198{left:570.419200pt;}
.xe_c00198{left:581.817600pt;}
.xf_c00198{left:589.576000pt;}
.x10_c00198{left:600.185600pt;}
.x29_c00198{left:602.227407pt;}
.x11_c00198{left:607.939200pt;}
.x12_c00198{left:614.752000pt;}
.x2c_c00198{left:617.903483pt;}
.x2a_c00198{left:636.424281pt;}
.x14_c00198{left:637.552000pt;}
.x16_c00198{left:644.676800pt;}
.x2d_c00198{left:650.203528pt;}
.x17_c00198{left:656.547200pt;}
.x2b_c00198{left:663.025581pt;}
.x18_c00198{left:664.307200pt;}
.x19_c00198{left:669.217600pt;}
.x1a_c00198{left:689.006400pt;}
.x2e_c00198{left:697.225426pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:0.865062;font-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_c00199{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v1_c00199{vertical-align:-3.569063px;}
.v0_c00199{vertical-align:0.000000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00199{word-spacing:-17.812493px;}
.ws1_c00199{word-spacing:-14.784234px;}
.ws7_c00199{word-spacing:0.000000px;}
.ws6_c00199{word-spacing:1.878307px;}
.ws4_c00199{word-spacing:9.741543px;}
.ws5_c00199{word-spacing:66.154717px;}
.ws3_c00199{word-spacing:66.870865px;}
.ws2_c00199{word-spacing:67.394818px;}
._2_c00199{margin-left:-2.041070px;}
._0_c00199{margin-left:-1.029993px;}
._1_c00199{width:1.238859px;}
._16_c00199{width:4.040069px;}
._15_c00199{width:5.529402px;}
._5_c00199{width:6.915459px;}
._6_c00199{width:7.958428px;}
._13_c00199{width:13.665939px;}
._3_c00199{width:16.215430px;}
._4_c00199{width:26.047873px;}
._8_c00199{width:27.645886px;}
._7_c00199{width:29.624427px;}
._1f_c00199{width:30.981443px;}
._1e_c00199{width:32.761568px;}
._1d_c00199{width:34.513533px;}
._19_c00199{width:43.346840px;}
._18_c00199{width:45.259806px;}
._1c_c00199{width:49.313391px;}
._1b_c00199{width:50.519599px;}
._f_c00199{width:60.167027px;}
._e_c00199{width:61.605169px;}
._11_c00199{width:68.121398px;}
._9_c00199{width:81.515456px;}
._d_c00199{width:82.721725px;}
._10_c00199{width:86.792970px;}
._a_c00199{width:110.950896px;}
._c_c00199{width:137.353041px;}
._14_c00199{width:145.861405px;}
._12_c00199{width:149.413991px;}
._1a_c00199{width:229.317648px;}
._17_c00199{width:265.418881px;}
._b_c00199{width:317.341173px;}
.fc1_c00199{color:rgb(105,148,45);}
.fc0_c00199{color:rgb(35,31,32);}
.fs1_c00199{font-size:59.136936px;}
.fs0_c00199{font-size:71.249972px;}
.y0_c00199{bottom:0.000000px;}
.y3_c00199{bottom:0.120938px;}
.y36_c00199{bottom:3.555940px;}
.y2a_c00199{bottom:3.558003px;}
.yc_c00199{bottom:3.558183px;}
.y6b_c00199{bottom:3.558440px;}
.y77_c00199{bottom:3.558476px;}
.y1a_c00199{bottom:3.558819px;}
.yf_c00199{bottom:3.559997px;}
.y21_c00199{bottom:3.560649px;}
.y70_c00199{bottom:3.561455px;}
.y30_c00199{bottom:3.561624px;}
.y4b_c00199{bottom:3.563218px;}
.y2_c00199{bottom:4.274933px;}
.y1_c00199{bottom:89.237880px;}
.y8_c00199{bottom:95.174924px;}
.y7b_c00199{bottom:142.733455px;}
.y7a_c00199{bottom:247.825963px;}
.y78_c00199{bottom:291.286946px;}
.y76_c00199{bottom:305.303400px;}
.y75_c00199{bottom:308.739889px;}
.y79_c00199{bottom:308.740639px;}
.y72_c00199{bottom:328.337381px;}
.y74_c00199{bottom:345.791074px;}
.y71_c00199{bottom:345.792424px;}
.y6f_c00199{bottom:359.807400px;}
.y6e_c00199{bottom:363.244767px;}
.y73_c00199{bottom:363.246117px;}
.y6c_c00199{bottom:382.840909px;}
.y6a_c00199{bottom:396.860400px;}
.y6d_c00199{bottom:400.295952px;}
.y69_c00199{bottom:400.303302px;}
.y4d_c00199{bottom:419.890744px;}
.y54_c00199{bottom:437.346538px;}
.y61_c00199{bottom:437.346838px;}
.y5a_c00199{bottom:437.348488px;}
.y4c_c00199{bottom:437.349388px;}
.y68_c00199{bottom:437.352388px;}
.y4a_c00199{bottom:451.362600px;}
.y53_c00199{bottom:454.803081px;}
.y60_c00199{bottom:454.804731px;}
.y59_c00199{bottom:454.805031px;}
.y67_c00199{bottom:454.806081px;}
.y58_c00199{bottom:472.257224px;}
.y5f_c00199{bottom:472.259174px;}
.y49_c00199{bottom:472.260524px;}
.y52_c00199{bottom:472.261724px;}
.y66_c00199{bottom:472.262624px;}
.y57_c00199{bottom:489.713767px;}
.y51_c00199{bottom:489.713917px;}
.y48_c00199{bottom:489.714217px;}
.y5e_c00199{bottom:489.718417px;}
.y65_c00199{bottom:489.719167px;}
.y56_c00199{bottom:507.170310px;}
.y50_c00199{bottom:507.170460px;}
.y47_c00199{bottom:507.171360px;}
.y5d_c00199{bottom:507.172860px;}
.y64_c00199{bottom:507.174210px;}
.y55_c00199{bottom:524.626103px;}
.y46_c00199{bottom:524.626403px;}
.y5c_c00199{bottom:524.626553px;}
.y4f_c00199{bottom:524.627603px;}
.y63_c00199{bottom:524.629253px;}
.y45_c00199{bottom:542.081446px;}
.y4e_c00199{bottom:542.082646px;}
.y62_c00199{bottom:542.082946px;}
.y5b_c00199{bottom:542.083096px;}
.y40_c00199{bottom:561.671438px;}
.y3c_c00199{bottom:561.671588px;}
.y3f_c00199{bottom:561.672938px;}
.y44_c00199{bottom:561.675488px;}
.y43_c00199{bottom:579.129931px;}
.y3e_c00199{bottom:579.130081px;}
.y3b_c00199{bottom:579.130231px;}
.y3a_c00199{bottom:596.585274px;}
.y3d_c00199{bottom:596.586624px;}
.y42_c00199{bottom:596.587824px;}
.y41_c00199{bottom:614.042267px;}
.y39_c00199{bottom:614.042417px;}
.y37_c00199{bottom:633.636309px;}
.y35_c00199{bottom:647.659800px;}
.y38_c00199{bottom:651.090002px;}
.y34_c00199{bottom:651.094736px;}
.y33_c00199{bottom:670.687278px;}
.y31_c00199{bottom:671.578794px;}
.y2f_c00199{bottom:685.596600px;}
.y32_c00199{bottom:689.035337px;}
.y2e_c00199{bottom:689.036087px;}
.y2c_c00199{bottom:708.628629px;}
.y2b_c00199{bottom:726.085772px;}
.y29_c00199{bottom:740.104200px;}
.y28_c00199{bottom:743.539315px;}
.y2d_c00199{bottom:743.539465px;}
.y27_c00199{bottom:762.779657px;}
.y26_c00199{bottom:801.966242px;}
.y25_c00199{bottom:821.561634px;}
.y24_c00199{bottom:841.151326px;}
.y22_c00199{bottom:860.746718px;}
.y20_c00199{bottom:874.764000px;}
.y1f_c00199{bottom:878.198611px;}
.y23_c00199{bottom:878.203861px;}
.y1e_c00199{bottom:897.793253px;}
.y1c_c00199{bottom:917.388645px;}
.y1b_c00199{bottom:934.845189px;}
.y19_c00199{bottom:948.862800px;}
.y1d_c00199{bottom:952.299482px;}
.y18_c00199{bottom:952.299632px;}
.y11_c00199{bottom:971.895024px;}
.y10_c00199{bottom:989.352167px;}
.ye_c00199{bottom:1003.368600px;}
.y17_c00199{bottom:1006.803010px;}
.y16_c00199{bottom:1006.805860px;}
.y14_c00199{bottom:1006.807210px;}
.y13_c00199{bottom:1024.260903px;}
.yd_c00199{bottom:1024.261653px;}
.yb_c00199{bottom:1038.281400px;}
.ya_c00199{bottom:1041.716396px;}
.y15_c00199{bottom:1041.718046px;}
.y12_c00199{bottom:1041.719546px;}
.y9_c00199{bottom:1060.954638px;}
.y7_c00199{bottom:1122.588113px;}
.y6_c00199{bottom:1143.604455px;}
.y5_c00199{bottom:1164.623647px;}
.y4_c00199{bottom:1185.642088px;}
.hc_c00199{height:16.738200px;}
.hb_c00199{height:16.740000px;}
.ha_c00199{height:16.741800px;}
.h8_c00199{height:16.743600px;}
.h9_c00199{height:16.745400px;}
.h1_c00199{height:19.060200px;}
.h7_c00199{height:52.986695px;}
.h6_c00199{height:53.045832px;}
.h2_c00199{height:63.768724px;}
.h5_c00199{height:63.839974px;}
.h4_c00199{height:64.053724px;}
.h3_c00199{height:1262.879062px;}
.h0_c00199{height:1263.000000px;}
.w17_c00199{width:4.451400px;}
.w10_c00199{width:4.453200px;}
.w6_c00199{width:5.344200px;}
.w9_c00199{width:6.768000px;}
.w15_c00199{width:6.771600px;}
.wc_c00199{width:7.837200px;}
.w12_c00199{width:8.015400px;}
.w1b_c00199{width:8.551800px;}
.wf_c00199{width:8.722800px;}
.wd_c00199{width:8.728200px;}
.w14_c00199{width:8.730000px;}
.w8_c00199{width:8.904600px;}
.w7_c00199{width:8.908200px;}
.we_c00199{width:11.935800px;}
.w4_c00199{width:12.823200px;}
.w2_c00199{width:13.010400px;}
.w13_c00199{width:13.354200px;}
.wa_c00199{width:13.359600px;}
.w5_c00199{width:16.745400px;}
.wb_c00199{width:16.923600px;}
.w16_c00199{width:22.262400px;}
.w3_c00199{width:25.644600px;}
.w1_c00199{width:26.715600px;}
.w11_c00199{width:28.677600px;}
.w19_c00199{width:65.197800px;}
.w1e_c00199{width:160.842600px;}
.w1c_c00199{width:232.450200px;}
.w1d_c00199{width:244.564200px;}
.w1f_c00199{width:254.716200px;}
.w1a_c00199{width:314.208180px;}
.w18_c00199{width:892.414744px;}
.w0_c00199{width:892.500000px;}
.x0_c00199{left:0.000000px;}
.x13_c00199{left:1.066223px;}
.x15_c00199{left:3.023712px;}
.x1f_c00199{left:127.818943px;}
.x20_c00199{left:129.957192px;}
.x21_c00199{left:136.370395px;}
.x23_c00199{left:150.263284px;}
.x36_c00199{left:209.770200px;}
.x2d_c00199{left:219.922200px;}
.x2b_c00199{left:232.036200px;}
.x1c_c00199{left:266.222632px;}
.x1b_c00199{left:283.677730px;}
.x35_c00199{left:303.643800px;}
.x1e_c00199{left:328.922440px;}
.x38_c00199{left:354.566997px;}
.x37_c00199{left:361.160199px;}
.x22_c00199{left:399.288600px;}
.x1d_c00199{left:434.014165px;}
.x2a_c00199{left:455.934600px;}
.x1_c00199{left:474.107400px;}
.x24_c00199{left:496.176085px;}
.x2_c00199{left:500.643000px;}
.x25_c00199{left:503.480143px;}
.x3_c00199{left:513.653400px;}
.x26_c00199{left:531.445516px;}
.x4_c00199{left:539.298000px;}
.x5_c00199{left:552.121200px;}
.x2e_c00199{left:558.334405px;}
.x6_c00199{left:568.866600px;}
.x7_c00199{left:573.852600px;}
.x8_c00199{left:587.037600px;}
.x27_c00199{left:588.087124px;}
.x9_c00199{left:595.942200px;}
.xa_c00199{left:601.462800px;}
.xb_c00199{left:618.919200px;}
.x2f_c00199{left:631.901007px;}
.xc_c00199{left:633.884400px;}
.xd_c00199{left:641.721600px;}
.xe_c00199{left:654.544800px;}
.xf_c00199{left:663.273000px;}
.x34_c00199{left:670.203020px;}
.x10_c00199{left:675.208800px;}
.x28_c00199{left:677.325644px;}
.x11_c00199{left:683.931600px;}
.x12_c00199{left:691.596000px;}
.x32_c00199{left:698.517183px;}
.x30_c00199{left:707.423600px;}
.x31_c00199{left:715.975697px;}
.x14_c00199{left:717.246000px;}
.x16_c00199{left:725.261400px;}
.x17_c00199{left:738.615600px;}
.x29_c00199{left:745.904828px;}
.x18_c00199{left:747.345600px;}
.x19_c00199{left:752.869800px;}
.x1a_c00199{left:775.132200px;}
.x2c_c00199{left:784.379249px;}
.x33_c00199{left:789.718740px;}
@media print{
.v1_c00199{vertical-align:-3.172500pt;}
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws0_c00199{word-spacing:-15.833327pt;}
.ws1_c00199{word-spacing:-13.141541pt;}
.ws7_c00199{word-spacing:0.000000pt;}
.ws6_c00199{word-spacing:1.669607pt;}
.ws4_c00199{word-spacing:8.659149pt;}
.ws5_c00199{word-spacing:58.804193pt;}
.ws3_c00199{word-spacing:59.440769pt;}
.ws2_c00199{word-spacing:59.906505pt;}
._2_c00199{margin-left:-1.814284pt;}
._0_c00199{margin-left:-0.915549pt;}
._1_c00199{width:1.101208pt;}
._16_c00199{width:3.591172pt;}
._15_c00199{width:4.915024pt;}
._5_c00199{width:6.147074pt;}
._6_c00199{width:7.074158pt;}
._13_c00199{width:12.147502pt;}
._3_c00199{width:14.413715pt;}
._4_c00199{width:23.153665pt;}
._8_c00199{width:24.574121pt;}
._7_c00199{width:26.332824pt;}
._1f_c00199{width:27.539061pt;}
._1e_c00199{width:29.121393pt;}
._1d_c00199{width:30.678696pt;}
._19_c00199{width:38.530525pt;}
._18_c00199{width:40.230939pt;}
._1c_c00199{width:43.834126pt;}
._1b_c00199{width:44.906310pt;}
._f_c00199{width:53.481802pt;}
._e_c00199{width:54.760150pt;}
._11_c00199{width:60.552354pt;}
._9_c00199{width:72.458183pt;}
._d_c00199{width:73.530422pt;}
._10_c00199{width:77.149307pt;}
._a_c00199{width:98.623019pt;}
._c_c00199{width:122.091592pt;}
._14_c00199{width:129.654582pt;}
._12_c00199{width:132.812436pt;}
._1a_c00199{width:203.837909pt;}
._17_c00199{width:235.927894pt;}
._b_c00199{width:282.081042pt;}
.fs1_c00199{font-size:52.566166pt;}
.fs0_c00199{font-size:63.333308pt;}
.y0_c00199{bottom:0.000000pt;}
.y3_c00199{bottom:0.107500pt;}
.y36_c00199{bottom:3.160835pt;}
.y2a_c00199{bottom:3.162669pt;}
.yc_c00199{bottom:3.162830pt;}
.y6b_c00199{bottom:3.163058pt;}
.y77_c00199{bottom:3.163090pt;}
.y1a_c00199{bottom:3.163395pt;}
.yf_c00199{bottom:3.164442pt;}
.y21_c00199{bottom:3.165021pt;}
.y70_c00199{bottom:3.165737pt;}
.y30_c00199{bottom:3.165888pt;}
.y4b_c00199{bottom:3.167305pt;}
.y2_c00199{bottom:3.799940pt;}
.y1_c00199{bottom:79.322560pt;}
.y8_c00199{bottom:84.599933pt;}
.y7b_c00199{bottom:126.874183pt;}
.y7a_c00199{bottom:220.289745pt;}
.y78_c00199{bottom:258.921730pt;}
.y76_c00199{bottom:271.380800pt;}
.y75_c00199{bottom:274.435457pt;}
.y79_c00199{bottom:274.436124pt;}
.y72_c00199{bottom:291.855450pt;}
.y74_c00199{bottom:307.369844pt;}
.y71_c00199{bottom:307.371044pt;}
.y6f_c00199{bottom:319.828800pt;}
.y6e_c00199{bottom:322.884237pt;}
.y73_c00199{bottom:322.885437pt;}
.y6c_c00199{bottom:340.303031pt;}
.y6a_c00199{bottom:352.764800pt;}
.y6d_c00199{bottom:355.818624pt;}
.y69_c00199{bottom:355.825158pt;}
.y4d_c00199{bottom:373.236217pt;}
.y54_c00199{bottom:388.752478pt;}
.y61_c00199{bottom:388.752744pt;}
.y5a_c00199{bottom:388.754211pt;}
.y4c_c00199{bottom:388.755011pt;}
.y68_c00199{bottom:388.757678pt;}
.y4a_c00199{bottom:401.211200pt;}
.y53_c00199{bottom:404.269405pt;}
.y60_c00199{bottom:404.270872pt;}
.y59_c00199{bottom:404.271138pt;}
.y67_c00199{bottom:404.272072pt;}
.y58_c00199{bottom:419.784199pt;}
.y5f_c00199{bottom:419.785932pt;}
.y49_c00199{bottom:419.787132pt;}
.y52_c00199{bottom:419.788199pt;}
.y66_c00199{bottom:419.788999pt;}
.y57_c00199{bottom:435.301126pt;}
.y51_c00199{bottom:435.301259pt;}
.y48_c00199{bottom:435.301526pt;}
.y5e_c00199{bottom:435.305259pt;}
.y65_c00199{bottom:435.305926pt;}
.y56_c00199{bottom:450.818053pt;}
.y50_c00199{bottom:450.818186pt;}
.y47_c00199{bottom:450.818986pt;}
.y5d_c00199{bottom:450.820320pt;}
.y64_c00199{bottom:450.821520pt;}
.y55_c00199{bottom:466.334313pt;}
.y46_c00199{bottom:466.334580pt;}
.y5c_c00199{bottom:466.334713pt;}
.y4f_c00199{bottom:466.335647pt;}
.y63_c00199{bottom:466.337113pt;}
.y45_c00199{bottom:481.850174pt;}
.y4e_c00199{bottom:481.851241pt;}
.y62_c00199{bottom:481.851507pt;}
.y5b_c00199{bottom:481.851641pt;}
.y40_c00199{bottom:499.263500pt;}
.y3c_c00199{bottom:499.263634pt;}
.y3f_c00199{bottom:499.264834pt;}
.y44_c00199{bottom:499.267100pt;}
.y43_c00199{bottom:514.782161pt;}
.y3e_c00199{bottom:514.782294pt;}
.y3b_c00199{bottom:514.782427pt;}
.y3a_c00199{bottom:530.298021pt;}
.y3d_c00199{bottom:530.299221pt;}
.y42_c00199{bottom:530.300288pt;}
.y41_c00199{bottom:545.815348pt;}
.y39_c00199{bottom:545.815482pt;}
.y37_c00199{bottom:563.232275pt;}
.y35_c00199{bottom:575.697600pt;}
.y38_c00199{bottom:578.746668pt;}
.y34_c00199{bottom:578.750876pt;}
.y33_c00199{bottom:596.166469pt;}
.y31_c00199{bottom:596.958928pt;}
.y2f_c00199{bottom:609.419200pt;}
.y32_c00199{bottom:612.475855pt;}
.y2e_c00199{bottom:612.476522pt;}
.y2c_c00199{bottom:629.892115pt;}
.y2b_c00199{bottom:645.409575pt;}
.y29_c00199{bottom:657.870400pt;}
.y28_c00199{bottom:660.923836pt;}
.y2d_c00199{bottom:660.923969pt;}
.y27_c00199{bottom:678.026362pt;}
.y26_c00199{bottom:712.858881pt;}
.y25_c00199{bottom:730.277008pt;}
.y24_c00199{bottom:747.690068pt;}
.y22_c00199{bottom:765.108194pt;}
.y20_c00199{bottom:777.568000pt;}
.y1f_c00199{bottom:780.620988pt;}
.y23_c00199{bottom:780.625654pt;}
.y1e_c00199{bottom:798.038447pt;}
.y1c_c00199{bottom:815.456574pt;}
.y1b_c00199{bottom:830.973501pt;}
.y19_c00199{bottom:843.433600pt;}
.y1d_c00199{bottom:846.488428pt;}
.y18_c00199{bottom:846.488561pt;}
.y11_c00199{bottom:863.906688pt;}
.y10_c00199{bottom:879.424148pt;}
.ye_c00199{bottom:891.883200pt;}
.y17_c00199{bottom:894.936009pt;}
.y16_c00199{bottom:894.938542pt;}
.y14_c00199{bottom:894.939742pt;}
.y13_c00199{bottom:910.454136pt;}
.yd_c00199{bottom:910.454802pt;}
.yb_c00199{bottom:922.916800pt;}
.ya_c00199{bottom:925.970130pt;}
.y15_c00199{bottom:925.971596pt;}
.y12_c00199{bottom:925.972930pt;}
.y9_c00199{bottom:943.070789pt;}
.y7_c00199{bottom:997.856101pt;}
.y6_c00199{bottom:1016.537293pt;}
.y5_c00199{bottom:1035.221019pt;}
.y4_c00199{bottom:1053.904078pt;}
.hc_c00199{height:14.878400pt;}
.hb_c00199{height:14.880000pt;}
.ha_c00199{height:14.881600pt;}
.h8_c00199{height:14.883200pt;}
.h9_c00199{height:14.884800pt;}
.h1_c00199{height:16.942400pt;}
.h7_c00199{height:47.099284pt;}
.h6_c00199{height:47.151851pt;}
.h2_c00199{height:56.683311pt;}
.h5_c00199{height:56.746644pt;}
.h4_c00199{height:56.936644pt;}
.h3_c00199{height:1122.559167pt;}
.h0_c00199{height:1122.666667pt;}
.w17_c00199{width:3.956800pt;}
.w10_c00199{width:3.958400pt;}
.w6_c00199{width:4.750400pt;}
.w9_c00199{width:6.016000pt;}
.w15_c00199{width:6.019200pt;}
.wc_c00199{width:6.966400pt;}
.w12_c00199{width:7.124800pt;}
.w1b_c00199{width:7.601600pt;}
.wf_c00199{width:7.753600pt;}
.wd_c00199{width:7.758400pt;}
.w14_c00199{width:7.760000pt;}
.w8_c00199{width:7.915200pt;}
.w7_c00199{width:7.918400pt;}
.we_c00199{width:10.609600pt;}
.w4_c00199{width:11.398400pt;}
.w2_c00199{width:11.564800pt;}
.w13_c00199{width:11.870400pt;}
.wa_c00199{width:11.875200pt;}
.w5_c00199{width:14.884800pt;}
.wb_c00199{width:15.043200pt;}
.w16_c00199{width:19.788800pt;}
.w3_c00199{width:22.795200pt;}
.w1_c00199{width:23.747200pt;}
.w11_c00199{width:25.491200pt;}
.w19_c00199{width:57.953600pt;}
.w1e_c00199{width:142.971200pt;}
.w1c_c00199{width:206.622400pt;}
.w1d_c00199{width:217.390400pt;}
.w1f_c00199{width:226.414400pt;}
.w1a_c00199{width:279.296160pt;}
.w18_c00199{width:793.257550pt;}
.w0_c00199{width:793.333333pt;}
.x0_c00199{left:0.000000pt;}
.x13_c00199{left:0.947754pt;}
.x15_c00199{left:2.687744pt;}
.x1f_c00199{left:113.616838pt;}
.x20_c00199{left:115.517504pt;}
.x21_c00199{left:121.218129pt;}
.x23_c00199{left:133.567363pt;}
.x36_c00199{left:186.462400pt;}
.x2d_c00199{left:195.486400pt;}
.x2b_c00199{left:206.254400pt;}
.x1c_c00199{left:236.642339pt;}
.x1b_c00199{left:252.157982pt;}
.x35_c00199{left:269.905600pt;}
.x1e_c00199{left:292.375502pt;}
.x38_c00199{left:315.170664pt;}
.x37_c00199{left:321.031288pt;}
.x22_c00199{left:354.923200pt;}
.x1d_c00199{left:385.790369pt;}
.x2a_c00199{left:405.275200pt;}
.x1_c00199{left:421.428800pt;}
.x24_c00199{left:441.045409pt;}
.x2_c00199{left:445.016000pt;}
.x25_c00199{left:447.537905pt;}
.x3_c00199{left:456.580800pt;}
.x26_c00199{left:472.396015pt;}
.x4_c00199{left:479.376000pt;}
.x5_c00199{left:490.774400pt;}
.x2e_c00199{left:496.297249pt;}
.x6_c00199{left:505.659200pt;}
.x7_c00199{left:510.091200pt;}
.x8_c00199{left:521.811200pt;}
.x27_c00199{left:522.744111pt;}
.x9_c00199{left:529.726400pt;}
.xa_c00199{left:534.633600pt;}
.xb_c00199{left:550.150400pt;}
.x2f_c00199{left:561.689784pt;}
.xc_c00199{left:563.452800pt;}
.xd_c00199{left:570.419200pt;}
.xe_c00199{left:581.817600pt;}
.xf_c00199{left:589.576000pt;}
.x34_c00199{left:595.736017pt;}
.x10_c00199{left:600.185600pt;}
.x28_c00199{left:602.067239pt;}
.x11_c00199{left:607.939200pt;}
.x12_c00199{left:614.752000pt;}
.x32_c00199{left:620.904162pt;}
.x30_c00199{left:628.820978pt;}
.x31_c00199{left:636.422842pt;}
.x14_c00199{left:637.552000pt;}
.x16_c00199{left:644.676800pt;}
.x17_c00199{left:656.547200pt;}
.x29_c00199{left:663.026513pt;}
.x18_c00199{left:664.307200pt;}
.x19_c00199{left:669.217600pt;}
.x1a_c00199{left:689.006400pt;}
.x2c_c00199{left:697.225999pt;}
.x33_c00199{left:701.972213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls0_c00200{letter-spacing:0.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:0.000000px;}
._0_c00200{width:1.228191px;}
.fc0_c00200{color:rgb(35,31,32);}
.fs0_c00200{font-size:106.873757px;}
.y0_c00200{bottom:0.000000px;}
.y1_c00200{bottom:0.120938px;}
.y2_c00200{bottom:433.606889px;}
.h2_c00200{height:95.865760px;}
.h1_c00200{height:1262.879062px;}
.h0_c00200{height:1263.000000px;}
.w1_c00200{width:892.414744px;}
.w0_c00200{width:892.500000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:108.404900px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:0.000000pt;}
._0_c00200{width:1.091726pt;}
.fs0_c00200{font-size:94.998895pt;}
.y0_c00200{bottom:0.000000pt;}
.y1_c00200{bottom:0.107500pt;}
.y2_c00200{bottom:385.428346pt;}
.h2_c00200{height:85.214009pt;}
.h1_c00200{height:1122.559167pt;}
.h0_c00200{height:1122.666667pt;}
.w1_c00200{width:793.257550pt;}
.w0_c00200{width:793.333333pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_8285f6272fe2221a8e395236.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:0.632000;font-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_c00201{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls0_c00201{letter-spacing:0.000000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:-20.840692px;}
.ws1_c00201{word-spacing:0.000000px;}
._3_c00201{margin-left:-12.565420px;}
._4_c00201{margin-left:-11.279478px;}
._5_c00201{margin-left:-9.941210px;}
._2_c00201{margin-left:-5.912131px;}
._0_c00201{margin-left:-1.339561px;}
._1_c00201{width:1.056634px;}
.fc1_c00201{color:rgb(105,148,45);}
.fc0_c00201{color:rgb(35,31,32);}
.fs2_c00201{font-size:59.136936px;}
.fs0_c00201{font-size:65.550574px;}
.fs1_c00201{font-size:71.249972px;}
.fs3_c00201{font-size:83.362767px;}
.y0_c00201{bottom:0.000000px;}
.y1_c00201{bottom:0.120938px;}
.y8_c00201{bottom:6.826644px;}
.ya_c00201{bottom:65.133277px;}
.y3_c00201{bottom:83.414442px;}
.y2_c00201{bottom:84.131629px;}
.y26_c00201{bottom:307.738230px;}
.y25_c00201{bottom:333.565370px;}
.y24_c00201{bottom:368.120406px;}
.y23_c00201{bottom:393.769646px;}
.y22_c00201{bottom:428.146182px;}
.y21_c00201{bottom:453.801122px;}
.y20_c00201{bottom:479.450361px;}
.y1f_c00201{bottom:514.002548px;}
.y1e_c00201{bottom:539.474637px;}
.y1d_c00201{bottom:565.123877px;}
.y1c_c00201{bottom:590.777317px;}
.y1b_c00201{bottom:616.424457px;}
.y1a_c00201{bottom:650.803093px;}
.y19_c00201{bottom:676.455183px;}
.y18_c00201{bottom:711.006769px;}
.y17_c00201{bottom:736.657509px;}
.y16_c00201{bottom:771.036145px;}
.y15_c00201{bottom:796.683285px;}
.y14_c00201{bottom:831.243271px;}
.y13_c00201{bottom:865.796957px;}
.y12_c00201{bottom:891.269047px;}
.y11_c00201{bottom:925.822733px;}
.y10_c00201{bottom:951.474823px;}
.yf_c00201{bottom:985.852709px;}
.ye_c00201{bottom:1011.501949px;}
.yd_c00201{bottom:1038.753938px;}
.yc_c00201{bottom:1062.980968px;}
.yb_c00201{bottom:1077.764872px;}
.y9_c00201{bottom:1094.327416px;}
.y7_c00201{bottom:1125.436612px;}
.y6_c00201{bottom:1146.276554px;}
.y5_c00201{bottom:1166.762796px;}
.y4_c00201{bottom:1187.245588px;}
.h7_c00201{height:37.374544px;}
.h6_c00201{height:41.427963px;}
.h9_c00201{height:53.164106px;}
.h2_c00201{height:58.667764px;}
.h3_c00201{height:63.768724px;}
.h4_c00201{height:64.053724px;}
.h8_c00201{height:74.943127px;}
.h5_c00201{height:1249.830756px;}
.h1_c00201{height:1262.879062px;}
.h0_c00201{height:1263.000000px;}
.w2_c00201{width:883.195846px;}
.w1_c00201{width:892.414744px;}
.w0_c00201{width:892.500000px;}
.x0_c00201{left:0.000000px;}
.x7_c00201{left:1.541954px;}
.x8_c00201{left:112.753050px;}
.x2_c00201{left:126.214330px;}
.xa_c00201{left:127.534669px;}
.x4_c00201{left:252.504495px;}
.x3_c00201{left:270.140236px;}
.x6_c00201{left:346.372291px;}
.x9_c00201{left:405.586383px;}
.x5_c00201{left:420.296029px;}
.x1_c00201{left:501.875143px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws0_c00201{word-spacing:-18.525059pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._3_c00201{margin-left:-11.169262pt;}
._4_c00201{margin-left:-10.026203pt;}
._5_c00201{margin-left:-8.836631pt;}
._2_c00201{margin-left:-5.255227pt;}
._0_c00201{margin-left:-1.190721pt;}
._1_c00201{width:0.939230pt;}
.fs2_c00201{font-size:52.566166pt;}
.fs0_c00201{font-size:58.267177pt;}
.fs1_c00201{font-size:63.333308pt;}
.fs3_c00201{font-size:74.100237pt;}
.y0_c00201{bottom:0.000000pt;}
.y1_c00201{bottom:0.107500pt;}
.y8_c00201{bottom:6.068128pt;}
.ya_c00201{bottom:57.896246pt;}
.y3_c00201{bottom:74.146170pt;}
.y2_c00201{bottom:74.783670pt;}
.y26_c00201{bottom:273.545093pt;}
.y25_c00201{bottom:296.502551pt;}
.y24_c00201{bottom:327.218139pt;}
.y23_c00201{bottom:350.017463pt;}
.y22_c00201{bottom:380.574384pt;}
.y21_c00201{bottom:403.378775pt;}
.y20_c00201{bottom:426.178099pt;}
.y1f_c00201{bottom:456.891153pt;}
.y1e_c00201{bottom:479.533011pt;}
.y1d_c00201{bottom:502.332335pt;}
.y1c_c00201{bottom:525.135393pt;}
.y1b_c00201{bottom:547.932850pt;}
.y1a_c00201{bottom:578.491638pt;}
.y19_c00201{bottom:601.293496pt;}
.y18_c00201{bottom:632.006017pt;}
.y17_c00201{bottom:654.806674pt;}
.y16_c00201{bottom:685.365462pt;}
.y15_c00201{bottom:708.162920pt;}
.y14_c00201{bottom:738.882907pt;}
.y13_c00201{bottom:769.597295pt;}
.y12_c00201{bottom:792.239153pt;}
.y11_c00201{bottom:822.953540pt;}
.y10_c00201{bottom:845.755398pt;}
.yf_c00201{bottom:876.313519pt;}
.ye_c00201{bottom:899.112843pt;}
.yd_c00201{bottom:923.336834pt;}
.yc_c00201{bottom:944.871972pt;}
.yb_c00201{bottom:958.013220pt;}
.y9_c00201{bottom:972.735480pt;}
.y7_c00201{bottom:1000.388100pt;}
.y6_c00201{bottom:1018.912492pt;}
.y5_c00201{bottom:1037.122485pt;}
.y4_c00201{bottom:1055.329411pt;}
.h7_c00201{height:33.221817pt;}
.h6_c00201{height:36.824856pt;}
.h9_c00201{height:47.256983pt;}
.h2_c00201{height:52.149123pt;}
.h3_c00201{height:56.683311pt;}
.h4_c00201{height:56.936644pt;}
.h8_c00201{height:66.616113pt;}
.h5_c00201{height:1110.960672pt;}
.h1_c00201{height:1122.559167pt;}
.h0_c00201{height:1122.666667pt;}
.w2_c00201{width:785.062974pt;}
.w1_c00201{width:793.257550pt;}
.w0_c00201{width:793.333333pt;}
.x0_c00201{left:0.000000pt;}
.x7_c00201{left:1.370626pt;}
.x8_c00201{left:100.224934pt;}
.x2_c00201{left:112.190515pt;}
.xa_c00201{left:113.364150pt;}
.x4_c00201{left:224.448440pt;}
.x3_c00201{left:240.124654pt;}
.x6_c00201{left:307.886481pt;}
.x9_c00201{left:360.521230pt;}
.x5_c00201{left:373.596470pt;}
.x1_c00201{left:446.111238pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.112000;font-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_c00202{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:0.000000px;}
._0_c00202{margin-left:-1.339561px;}
._1_c00202{width:1.056634px;}
._3_c00202{width:2.277242px;}
._b_c00202{width:3.336175px;}
._8_c00202{width:4.430809px;}
._7_c00202{width:5.499618px;}
._6_c00202{width:6.531689px;}
._d_c00202{width:7.711849px;}
._9_c00202{width:9.906607px;}
._a_c00202{width:11.924080px;}
._5_c00202{width:13.076265px;}
._2_c00202{width:14.240755px;}
._4_c00202{width:15.666186px;}
._e_c00202{width:21.681841px;}
._f_c00202{width:23.186935px;}
._10_c00202{width:24.364624px;}
._c_c00202{width:25.558395px;}
.fc1_c00202{color:rgb(105,148,45);}
.fc0_c00202{color:rgb(35,31,32);}
.fs2_c00202{font-size:59.136936px;}
.fs0_c00202{font-size:65.550574px;}
.fs1_c00202{font-size:71.249972px;}
.y0_c00202{bottom:0.000000px;}
.y1_c00202{bottom:0.120938px;}
.y8_c00202{bottom:6.826644px;}
.ya_c00202{bottom:65.133277px;}
.y3_c00202{bottom:83.414442px;}
.y2_c00202{bottom:84.131629px;}
.y27_c00202{bottom:141.901897px;}
.y26_c00202{bottom:172.540584px;}
.y25_c00202{bottom:203.357172px;}
.y24_c00202{bottom:233.994360px;}
.y23_c00202{bottom:264.807347px;}
.y22_c00202{bottom:310.404329px;}
.y21_c00202{bottom:341.042267px;}
.y20_c00202{bottom:371.859455px;}
.y1f_c00202{bottom:402.496042px;}
.y1e_c00202{bottom:433.313230px;}
.y1d_c00202{bottom:478.732912px;}
.y1c_c00202{bottom:509.547999px;}
.y1b_c00202{bottom:540.186687px;}
.y1a_c00202{bottom:571.002525px;}
.y19_c00202{bottom:601.640463px;}
.y18_c00202{bottom:647.237444px;}
.y17_c00202{bottom:678.053282px;}
.y16_c00202{bottom:708.691220px;}
.y15_c00202{bottom:739.504207px;}
.y14_c00202{bottom:770.141395px;}
.y13_c00202{bottom:800.957983px;}
.y12_c00202{bottom:831.596671px;}
.y11_c00202{bottom:862.408308px;}
.y10_c00202{bottom:907.831590px;}
.yf_c00202{bottom:938.646078px;}
.ye_c00202{bottom:969.283266px;}
.yd_c00202{bottom:1000.099853px;}
.yc_c00202{bottom:1030.735691px;}
.yb_c00202{bottom:1055.496931px;}
.y9_c00202{bottom:1094.327416px;}
.y7_c00202{bottom:1125.436612px;}
.y6_c00202{bottom:1146.276554px;}
.y5_c00202{bottom:1166.762796px;}
.y4_c00202{bottom:1187.245588px;}
.h7_c00202{height:37.374544px;}
.h6_c00202{height:41.427963px;}
.h2_c00202{height:58.667764px;}
.h3_c00202{height:63.768724px;}
.h9_c00202{height:63.839974px;}
.h8_c00202{height:63.911224px;}
.h4_c00202{height:64.053724px;}
.h5_c00202{height:1249.830756px;}
.h1_c00202{height:1262.879062px;}
.h0_c00202{height:1263.000000px;}
.w2_c00202{width:883.195846px;}
.w1_c00202{width:892.414744px;}
.w0_c00202{width:892.500000px;}
.x0_c00202{left:0.000000px;}
.x7_c00202{left:1.541954px;}
.x8_c00202{left:112.753050px;}
.x2_c00202{left:126.214330px;}
.x9_c00202{left:166.191854px;}
.x4_c00202{left:252.504495px;}
.x3_c00202{left:270.140236px;}
.x6_c00202{left:346.372291px;}
.x5_c00202{left:420.296029px;}
.x1_c00202{left:501.875143px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
._0_c00202{margin-left:-1.190721pt;}
._1_c00202{width:0.939230pt;}
._3_c00202{width:2.024215pt;}
._b_c00202{width:2.965489pt;}
._8_c00202{width:3.938497pt;}
._7_c00202{width:4.888549pt;}
._6_c00202{width:5.805946pt;}
._d_c00202{width:6.854977pt;}
._9_c00202{width:8.805873pt;}
._a_c00202{width:10.599183pt;}
._5_c00202{width:11.623347pt;}
._2_c00202{width:12.658449pt;}
._4_c00202{width:13.925499pt;}
._e_c00202{width:19.272747pt;}
._f_c00202{width:20.610609pt;}
._10_c00202{width:21.657444pt;}
._c_c00202{width:22.718573pt;}
.fs2_c00202{font-size:52.566166pt;}
.fs0_c00202{font-size:58.267177pt;}
.fs1_c00202{font-size:63.333308pt;}
.y0_c00202{bottom:0.000000pt;}
.y1_c00202{bottom:0.107500pt;}
.y8_c00202{bottom:6.068128pt;}
.ya_c00202{bottom:57.896246pt;}
.y3_c00202{bottom:74.146170pt;}
.y2_c00202{bottom:74.783670pt;}
.y27_c00202{bottom:126.135019pt;}
.y26_c00202{bottom:153.369408pt;}
.y25_c00202{bottom:180.761931pt;}
.y24_c00202{bottom:207.994986pt;}
.y23_c00202{bottom:235.384309pt;}
.y22_c00202{bottom:275.914959pt;}
.y21_c00202{bottom:303.148682pt;}
.y20_c00202{bottom:330.541737pt;}
.y1f_c00202{bottom:357.774260pt;}
.y1e_c00202{bottom:385.167316pt;}
.y1d_c00202{bottom:425.540366pt;}
.y1c_c00202{bottom:452.931555pt;}
.y1b_c00202{bottom:480.165944pt;}
.y1a_c00202{bottom:507.557800pt;}
.y19_c00202{bottom:534.791522pt;}
.y18_c00202{bottom:575.322173pt;}
.y17_c00202{bottom:602.714028pt;}
.y16_c00202{bottom:629.947751pt;}
.y15_c00202{bottom:657.337073pt;}
.y14_c00202{bottom:684.570129pt;}
.y13_c00202{bottom:711.962651pt;}
.y12_c00202{bottom:739.197041pt;}
.y11_c00202{bottom:766.585163pt;}
.y10_c00202{bottom:806.961413pt;}
.yf_c00202{bottom:834.352069pt;}
.ye_c00202{bottom:861.585125pt;}
.yd_c00202{bottom:888.977647pt;}
.yc_c00202{bottom:916.209503pt;}
.yb_c00202{bottom:938.219494pt;}
.y9_c00202{bottom:972.735480pt;}
.y7_c00202{bottom:1000.388100pt;}
.y6_c00202{bottom:1018.912492pt;}
.y5_c00202{bottom:1037.122485pt;}
.y4_c00202{bottom:1055.329411pt;}
.h7_c00202{height:33.221817pt;}
.h6_c00202{height:36.824856pt;}
.h2_c00202{height:52.149123pt;}
.h3_c00202{height:56.683311pt;}
.h9_c00202{height:56.746644pt;}
.h8_c00202{height:56.809977pt;}
.h4_c00202{height:56.936644pt;}
.h5_c00202{height:1110.960672pt;}
.h1_c00202{height:1122.559167pt;}
.h0_c00202{height:1122.666667pt;}
.w2_c00202{width:785.062974pt;}
.w1_c00202{width:793.257550pt;}
.w0_c00202{width:793.333333pt;}
.x0_c00202{left:0.000000pt;}
.x7_c00202{left:1.370626pt;}
.x8_c00202{left:100.224934pt;}
.x2_c00202{left:112.190515pt;}
.x9_c00202{left:147.726092pt;}
.x4_c00202{left:224.448440pt;}
.x3_c00202{left:240.124654pt;}
.x6_c00202{left:307.886481pt;}
.x5_c00202{left:373.596470pt;}
.x1_c00202{left:446.111238pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00203;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00203;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff6_c00203{font-family:ff6_c00203;line-height:0.865062;font-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_c00203{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls1_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:74.161170px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:0.000000px;}
._0_c00203{margin-left:-1.339561px;}
._1_c00203{width:1.056634px;}
._4_c00203{width:2.254075px;}
._d_c00203{width:3.310111px;}
._5_c00203{width:4.601330px;}
._a_c00203{width:6.531645px;}
._2_c00203{width:8.589150px;}
._3_c00203{width:9.828931px;}
._b_c00203{width:11.161778px;}
._9_c00203{width:12.725644px;}
._c_c00203{width:14.539145px;}
._6_c00203{width:15.845579px;}
._7_c00203{width:20.080129px;}
._8_c00203{width:21.138483px;}
.fc1_c00203{color:rgb(105,148,45);}
.fc0_c00203{color:rgb(35,31,32);}
.fs2_c00203{font-size:59.136936px;}
.fs0_c00203{font-size:65.550574px;}
.fs1_c00203{font-size:71.249972px;}
.y0_c00203{bottom:0.000000px;}
.y1_c00203{bottom:0.120938px;}
.y8_c00203{bottom:6.826644px;}
.ya_c00203{bottom:65.133277px;}
.y3_c00203{bottom:83.414442px;}
.y2_c00203{bottom:84.131629px;}
.y26_c00203{bottom:101.468063px;}
.y25_c00203{bottom:132.106750px;}
.y24_c00203{bottom:162.924688px;}
.y23_c00203{bottom:193.737676px;}
.y22_c00203{bottom:240.405507px;}
.y21_c00203{bottom:271.219995px;}
.y20_c00203{bottom:302.036582px;}
.y1f_c00203{bottom:348.705764px;}
.y1e_c00203{bottom:379.520251px;}
.y1d_c00203{bottom:410.156839px;}
.y1c_c00203{bottom:457.003170px;}
.y1b_c00203{bottom:524.870643px;}
.y1a_c00203{bottom:571.005075px;}
.y19_c00203{bottom:601.643763px;}
.y18_c00203{bottom:632.458250px;}
.y17_c00203{bottom:678.055832px;}
.y16_c00203{bottom:708.691670px;}
.y15_c00203{bottom:739.507507px;}
.y14_c00203{bottom:770.146945px;}
.y13_c00203{bottom:815.748127px;}
.y12_c00203{bottom:846.383215px;}
.y11_c00203{bottom:877.199052px;}
.y10_c00203{bottom:907.833540px;}
.yf_c00203{bottom:938.650728px;}
.ye_c00203{bottom:969.285816px;}
.yd_c00203{bottom:994.048406px;}
.yc_c00203{bottom:1042.853736px;}
.yb_c00203{bottom:1073.490924px;}
.y9_c00203{bottom:1094.327416px;}
.y7_c00203{bottom:1125.436612px;}
.y6_c00203{bottom:1146.276554px;}
.y5_c00203{bottom:1166.762796px;}
.y4_c00203{bottom:1187.245588px;}
.h7_c00203{height:37.374544px;}
.h6_c00203{height:41.427963px;}
.ha_c00203{height:53.045832px;}
.h2_c00203{height:58.667764px;}
.h3_c00203{height:63.768724px;}
.h8_c00203{height:63.839974px;}
.h9_c00203{height:63.911224px;}
.h4_c00203{height:64.053724px;}
.h5_c00203{height:1249.830756px;}
.h1_c00203{height:1262.879062px;}
.h0_c00203{height:1263.000000px;}
.w2_c00203{width:883.195846px;}
.w1_c00203{width:892.414744px;}
.w0_c00203{width:892.500000px;}
.x0_c00203{left:0.000000px;}
.x7_c00203{left:1.541954px;}
.x8_c00203{left:112.753050px;}
.x2_c00203{left:126.214330px;}
.xa_c00203{left:139.471103px;}
.x9_c00203{left:166.191854px;}
.x4_c00203{left:252.504495px;}
.x3_c00203{left:270.140236px;}
.x6_c00203{left:346.372291px;}
.x5_c00203{left:420.296029px;}
.x1_c00203{left:501.875143px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:65.921040pt;}
.ws0_c00203{word-spacing:0.000000pt;}
._0_c00203{margin-left:-1.190721pt;}
._1_c00203{width:0.939230pt;}
._4_c00203{width:2.003622pt;}
._d_c00203{width:2.942321pt;}
._5_c00203{width:4.090071pt;}
._a_c00203{width:5.805907pt;}
._2_c00203{width:7.634800pt;}
._3_c00203{width:8.736827pt;}
._b_c00203{width:9.921581pt;}
._9_c00203{width:11.311683pt;}
._c_c00203{width:12.923684pt;}
._6_c00203{width:14.084959pt;}
._7_c00203{width:17.849003pt;}
._8_c00203{width:18.789762pt;}
.fs2_c00203{font-size:52.566166pt;}
.fs0_c00203{font-size:58.267177pt;}
.fs1_c00203{font-size:63.333308pt;}
.y0_c00203{bottom:0.000000pt;}
.y1_c00203{bottom:0.107500pt;}
.y8_c00203{bottom:6.068128pt;}
.ya_c00203{bottom:57.896246pt;}
.y3_c00203{bottom:74.146170pt;}
.y2_c00203{bottom:74.783670pt;}
.y26_c00203{bottom:90.193833pt;}
.y25_c00203{bottom:117.428223pt;}
.y24_c00203{bottom:144.821945pt;}
.y23_c00203{bottom:172.211267pt;}
.y22_c00203{bottom:213.693784pt;}
.y21_c00203{bottom:241.084440pt;}
.y20_c00203{bottom:268.476962pt;}
.y1f_c00203{bottom:309.960679pt;}
.y1e_c00203{bottom:337.351335pt;}
.y1d_c00203{bottom:364.583857pt;}
.y1c_c00203{bottom:406.225040pt;}
.y1b_c00203{bottom:466.551683pt;}
.y1a_c00203{bottom:507.560067pt;}
.y19_c00203{bottom:534.794456pt;}
.y18_c00203{bottom:562.185111pt;}
.y17_c00203{bottom:602.716295pt;}
.y16_c00203{bottom:629.948151pt;}
.y15_c00203{bottom:657.340007pt;}
.y14_c00203{bottom:684.575062pt;}
.y13_c00203{bottom:725.109446pt;}
.y12_c00203{bottom:752.340635pt;}
.y11_c00203{bottom:779.732491pt;}
.y10_c00203{bottom:806.963147pt;}
.yf_c00203{bottom:834.356202pt;}
.ye_c00203{bottom:861.587392pt;}
.yd_c00203{bottom:883.598583pt;}
.yc_c00203{bottom:926.981099pt;}
.yb_c00203{bottom:954.214155pt;}
.y9_c00203{bottom:972.735480pt;}
.y7_c00203{bottom:1000.388100pt;}
.y6_c00203{bottom:1018.912492pt;}
.y5_c00203{bottom:1037.122485pt;}
.y4_c00203{bottom:1055.329411pt;}
.h7_c00203{height:33.221817pt;}
.h6_c00203{height:36.824856pt;}
.ha_c00203{height:47.151851pt;}
.h2_c00203{height:52.149123pt;}
.h3_c00203{height:56.683311pt;}
.h8_c00203{height:56.746644pt;}
.h9_c00203{height:56.809977pt;}
.h4_c00203{height:56.936644pt;}
.h5_c00203{height:1110.960672pt;}
.h1_c00203{height:1122.559167pt;}
.h0_c00203{height:1122.666667pt;}
.w2_c00203{width:785.062974pt;}
.w1_c00203{width:793.257550pt;}
.w0_c00203{width:793.333333pt;}
.x0_c00203{left:0.000000pt;}
.x7_c00203{left:1.370626pt;}
.x8_c00203{left:100.224934pt;}
.x2_c00203{left:112.190515pt;}
.xa_c00203{left:123.974314pt;}
.x9_c00203{left:147.726092pt;}
.x4_c00203{left:224.448440pt;}
.x3_c00203{left:240.124654pt;}
.x6_c00203{left:307.886481pt;}
.x5_c00203{left:373.596470pt;}
.x1_c00203{left:446.111238pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:0.632000;font-style:normal;font-weight:normal;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_91c94d9680606deb988c60ae.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_24d98807f733dc085d1c4453.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:0.712000;font-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_c00204{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls4_c00204{letter-spacing:0.000000px;}
.ls3_c00204{letter-spacing:64.194574px;}
.ls1_c00204{letter-spacing:74.158170px;}
.ls0_c00204{letter-spacing:74.161170px;}
.ls2_c00204{letter-spacing:74.166570px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00204{word-spacing:0.000000px;}
._0_c00204{margin-left:-1.339561px;}
._1_c00204{width:1.056634px;}
._e_c00204{width:2.427404px;}
._6_c00204{width:5.818689px;}
._9_c00204{width:7.255399px;}
._a_c00204{width:8.461749px;}
._11_c00204{width:9.645937px;}
._4_c00204{width:10.677303px;}
._8_c00204{width:12.123889px;}
._7_c00204{width:13.215418px;}
._b_c00204{width:14.327237px;}
._c_c00204{width:15.744706px;}
._10_c00204{width:16.791715px;}
._d_c00204{width:19.077720px;}
._2_c00204{width:20.743450px;}
._3_c00204{width:21.775981px;}
._5_c00204{width:24.196161px;}
._f_c00204{width:53.500710px;}
.fc1_c00204{color:rgb(105,148,45);}
.fc0_c00204{color:rgb(35,31,32);}
.fs2_c00204{font-size:59.136936px;}
.fs0_c00204{font-size:65.550574px;}
.fs1_c00204{font-size:71.249972px;}
.y0_c00204{bottom:0.000000px;}
.y1_c00204{bottom:0.120938px;}
.y8_c00204{bottom:6.826644px;}
.ya_c00204{bottom:65.133277px;}
.y3_c00204{bottom:83.414442px;}
.y2_c00204{bottom:84.131629px;}
.y23_c00204{bottom:167.732336px;}
.y22_c00204{bottom:213.332768px;}
.y21_c00204{bottom:258.929000px;}
.y20_c00204{bottom:304.530931px;}
.y1f_c00204{bottom:335.166769px;}
.y1e_c00204{bottom:380.767201px;}
.y1d_c00204{bottom:411.581689px;}
.y1c_c00204{bottom:457.005420px;}
.y1b_c00204{bottom:502.607352px;}
.y1a_c00204{bottom:533.420340px;}
.y19_c00204{bottom:578.842872px;}
.y18_c00204{bottom:609.655859px;}
.y17_c00204{bottom:640.293797px;}
.y16_c00204{bottom:685.894979px;}
.y15_c00204{bottom:716.707967px;}
.y14_c00204{bottom:747.347404px;}
.y13_c00204{bottom:794.192386px;}
.y12_c00204{bottom:825.008223px;}
.y11_c00204{bottom:855.643311px;}
.y10_c00204{bottom:886.460499px;}
.yf_c00204{bottom:933.306830px;}
.ye_c00204{bottom:980.151811px;}
.yd_c00204{bottom:1010.787649px;}
.yc_c00204{bottom:1041.604237px;}
.yb_c00204{bottom:1072.242924px;}
.y9_c00204{bottom:1094.327416px;}
.y7_c00204{bottom:1125.436612px;}
.y6_c00204{bottom:1146.276554px;}
.y5_c00204{bottom:1166.762796px;}
.y4_c00204{bottom:1187.245588px;}
.h7_c00204{height:37.374544px;}
.h6_c00204{height:41.427963px;}
.h2_c00204{height:58.667764px;}
.h3_c00204{height:63.768724px;}
.h8_c00204{height:63.839974px;}
.h4_c00204{height:64.053724px;}
.h5_c00204{height:1249.830756px;}
.h1_c00204{height:1262.879062px;}
.h0_c00204{height:1263.000000px;}
.w2_c00204{width:883.195846px;}
.w1_c00204{width:892.414744px;}
.w0_c00204{width:892.500000px;}
.x0_c00204{left:0.000000px;}
.x7_c00204{left:1.541954px;}
.x8_c00204{left:112.753050px;}
.x2_c00204{left:126.214330px;}
.x9_c00204{left:139.471103px;}
.xa_c00204{left:166.190654px;}
.xb_c00204{left:192.912630px;}
.x4_c00204{left:252.504495px;}
.x3_c00204{left:270.140236px;}
.x6_c00204{left:346.372291px;}
.x5_c00204{left:420.296029px;}
.x1_c00204{left:501.875143px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls4_c00204{letter-spacing:0.000000pt;}
.ls3_c00204{letter-spacing:57.061844pt;}
.ls1_c00204{letter-spacing:65.918374pt;}
.ls0_c00204{letter-spacing:65.921040pt;}
.ls2_c00204{letter-spacing:65.925840pt;}
.ws0_c00204{word-spacing:0.000000pt;}
._0_c00204{margin-left:-1.190721pt;}
._1_c00204{width:0.939230pt;}
._e_c00204{width:2.157692pt;}
._6_c00204{width:5.172168pt;}
._9_c00204{width:6.449244pt;}
._a_c00204{width:7.521554pt;}
._11_c00204{width:8.574167pt;}
._4_c00204{width:9.490936pt;}
._8_c00204{width:10.776790pt;}
._7_c00204{width:11.747038pt;}
._b_c00204{width:12.735322pt;}
._c_c00204{width:13.995294pt;}
._10_c00204{width:14.925969pt;}
._d_c00204{width:16.957973pt;}
._2_c00204{width:18.438622pt;}
._3_c00204{width:19.356428pt;}
._5_c00204{width:21.507699pt;}
._f_c00204{width:47.556187pt;}
.fs2_c00204{font-size:52.566166pt;}
.fs0_c00204{font-size:58.267177pt;}
.fs1_c00204{font-size:63.333308pt;}
.y0_c00204{bottom:0.000000pt;}
.y1_c00204{bottom:0.107500pt;}
.y8_c00204{bottom:6.068128pt;}
.ya_c00204{bottom:57.896246pt;}
.y3_c00204{bottom:74.146170pt;}
.y2_c00204{bottom:74.783670pt;}
.y23_c00204{bottom:149.095410pt;}
.y22_c00204{bottom:189.629127pt;}
.y21_c00204{bottom:230.159111pt;}
.y20_c00204{bottom:270.694161pt;}
.y1f_c00204{bottom:297.926017pt;}
.y1e_c00204{bottom:338.459734pt;}
.y1d_c00204{bottom:365.850390pt;}
.y1c_c00204{bottom:406.227040pt;}
.y1b_c00204{bottom:446.762091pt;}
.y1a_c00204{bottom:474.151413pt;}
.y19_c00204{bottom:514.526997pt;}
.y18_c00204{bottom:541.916319pt;}
.y17_c00204{bottom:569.150042pt;}
.y16_c00204{bottom:609.684426pt;}
.y15_c00204{bottom:637.073748pt;}
.y14_c00204{bottom:664.308804pt;}
.y13_c00204{bottom:705.948787pt;}
.y12_c00204{bottom:733.340643pt;}
.y11_c00204{bottom:760.571832pt;}
.y10_c00204{bottom:787.964888pt;}
.yf_c00204{bottom:829.606071pt;}
.ye_c00204{bottom:871.246054pt;}
.yd_c00204{bottom:898.477910pt;}
.yc_c00204{bottom:925.870433pt;}
.yb_c00204{bottom:953.104822pt;}
.y9_c00204{bottom:972.735480pt;}
.y7_c00204{bottom:1000.388100pt;}
.y6_c00204{bottom:1018.912492pt;}
.y5_c00204{bottom:1037.122485pt;}
.y4_c00204{bottom:1055.329411pt;}
.h7_c00204{height:33.221817pt;}
.h6_c00204{height:36.824856pt;}
.h2_c00204{height:52.149123pt;}
.h3_c00204{height:56.683311pt;}
.h8_c00204{height:56.746644pt;}
.h4_c00204{height:56.936644pt;}
.h5_c00204{height:1110.960672pt;}
.h1_c00204{height:1122.559167pt;}
.h0_c00204{height:1122.666667pt;}
.w2_c00204{width:785.062974pt;}
.w1_c00204{width:793.257550pt;}
.w0_c00204{width:793.333333pt;}
.x0_c00204{left:0.000000pt;}
.x7_c00204{left:1.370626pt;}
.x8_c00204{left:100.224934pt;}
.x2_c00204{left:112.190515pt;}
.x9_c00204{left:123.974314pt;}
.xa_c00204{left:147.725026pt;}
.xb_c00204{left:171.477894pt;}
.x4_c00204{left:224.448440pt;}
.x3_c00204{left:240.124654pt;}
.x6_c00204{left:307.886481pt;}
.x5_c00204{left:373.596470pt;}
.x1_c00204{left:446.111238pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:1.113000;font-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_c00205{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v1_c00205{vertical-align:-2.854685px;}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:0.000000px;}
._e_c00205{margin-left:-2.589622px;}
._0_c00205{margin-left:-1.339561px;}
._1_c00205{width:1.056634px;}
._6_c00205{width:2.124427px;}
._7_c00205{width:3.336401px;}
._4_c00205{width:4.515627px;}
._5_c00205{width:5.670079px;}
._d_c00205{width:7.608279px;}
._2_c00205{width:12.814615px;}
._3_c00205{width:14.236527px;}
._8_c00205{width:22.270756px;}
._9_c00205{width:23.499394px;}
._c_c00205{width:24.923758px;}
._b_c00205{width:29.723153px;}
._a_c00205{width:30.771271px;}
._11_c00205{width:748.913692px;}
._10_c00205{width:758.231246px;}
._f_c00205{width:793.723185px;}
.fc1_c00205{color:rgb(105,148,45);}
.fc0_c00205{color:rgb(35,31,32);}
.fs4_c00205{font-size:29.924628px;}
.fs3_c00205{font-size:47.737061px;}
.fs2_c00205{font-size:59.136936px;}
.fs0_c00205{font-size:65.550574px;}
.fs1_c00205{font-size:71.249972px;}
.y0_c00205{bottom:0.000000px;}
.y1_c00205{bottom:0.120938px;}
.y2e_c00205{bottom:0.176635px;}
.y2b_c00205{bottom:1.066188px;}
.y28_c00205{bottom:3.024520px;}
.y8_c00205{bottom:6.826644px;}
.ya_c00205{bottom:65.133277px;}
.y3_c00205{bottom:83.414442px;}
.y2_c00205{bottom:84.131629px;}
.y32_c00205{bottom:104.970159px;}
.y31_c00205{bottom:119.931243px;}
.y30_c00205{bottom:136.141858px;}
.y2f_c00205{bottom:153.776001px;}
.y2d_c00205{bottom:161.376300px;}
.y2c_c00205{bottom:166.242496px;}
.y2a_c00205{bottom:178.477740px;}
.y29_c00205{bottom:184.234989px;}
.y26_c00205{bottom:194.272276px;}
.y27_c00205{bottom:195.935400px;}
.y25_c00205{bottom:212.084768px;}
.y24_c00205{bottom:229.007762px;}
.y23_c00205{bottom:244.148756px;}
.y22_c00205{bottom:263.207748px;}
.y21_c00205{bottom:292.595586px;}
.y20_c00205{bottom:320.740225px;}
.y1f_c00205{bottom:356.542211px;}
.y1e_c00205{bottom:397.868694px;}
.y1d_c00205{bottom:428.681682px;}
.y1c_c00205{bottom:459.317520px;}
.y1b_c00205{bottom:490.132007px;}
.y1a_c00205{bottom:520.771445px;}
.y19_c00205{bottom:566.372627px;}
.y18_c00205{bottom:597.006364px;}
.y17_c00205{bottom:627.823552px;}
.y16_c00205{bottom:673.426834px;}
.y15_c00205{bottom:704.062672px;}
.y14_c00205{bottom:734.877159px;}
.y13_c00205{bottom:765.513747px;}
.y12_c00205{bottom:811.110729px;}
.y11_c00205{bottom:841.929416px;}
.y10_c00205{bottom:872.566004px;}
.yf_c00205{bottom:905.161891px;}
.ye_c00205{bottom:930.633981px;}
.yd_c00205{bottom:1012.038648px;}
.yc_c00205{bottom:1042.853736px;}
.yb_c00205{bottom:1073.490924px;}
.y9_c00205{bottom:1094.327416px;}
.y7_c00205{bottom:1125.436612px;}
.y6_c00205{bottom:1146.276554px;}
.y5_c00205{bottom:1166.762796px;}
.y4_c00205{bottom:1187.245588px;}
.hf_c00205{height:15.675480px;}
.hd_c00205{height:15.850800px;}
.he_c00205{height:16.566660px;}
.h10_c00205{height:18.912365px;}
.h7_c00205{height:37.374544px;}
.h6_c00205{height:41.427963px;}
.hc_c00205{height:42.772407px;}
.h11_c00205{height:52.927558px;}
.hb_c00205{height:52.986695px;}
.h9_c00205{height:53.045832px;}
.h2_c00205{height:58.667764px;}
.ha_c00205{height:58.929966px;}
.h3_c00205{height:63.768724px;}
.h8_c00205{height:63.839974px;}
.h4_c00205{height:64.053724px;}
.h5_c00205{height:1249.830756px;}
.h1_c00205{height:1262.879062px;}
.h0_c00205{height:1263.000000px;}
.w4_c00205{width:8.195400px;}
.w3_c00205{width:10.688400px;}
.w2_c00205{width:883.195846px;}
.w1_c00205{width:892.414744px;}
.w0_c00205{width:892.500000px;}
.x0_c00205{left:0.000000px;}
.x7_c00205{left:1.541954px;}
.x8_c00205{left:112.753050px;}
.xc_c00205{left:114.282348px;}
.x2_c00205{left:126.214330px;}
.x9_c00205{left:166.192479px;}
.xa_c00205{left:178.837474px;}
.xd_c00205{left:180.366772px;}
.x4_c00205{left:252.504495px;}
.x3_c00205{left:270.140236px;}
.x6_c00205{left:346.372291px;}
.x5_c00205{left:420.296029px;}
.x1_c00205{left:501.875143px;}
.xb_c00205{left:734.522400px;}
@media print{
.v1_c00205{vertical-align:-2.537498pt;}
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:0.000000pt;}
._e_c00205{margin-left:-2.301886pt;}
._0_c00205{margin-left:-1.190721pt;}
._1_c00205{width:0.939230pt;}
._6_c00205{width:1.888380pt;}
._7_c00205{width:2.965690pt;}
._4_c00205{width:4.013891pt;}
._5_c00205{width:5.040070pt;}
._d_c00205{width:6.762914pt;}
._2_c00205{width:11.390769pt;}
._3_c00205{width:12.654690pt;}
._8_c00205{width:19.796228pt;}
._9_c00205{width:20.888350pt;}
._c_c00205{width:22.154452pt;}
._b_c00205{width:26.420580pt;}
._a_c00205{width:27.352241pt;}
._11_c00205{width:665.701060pt;}
._10_c00205{width:673.983329pt;}
._f_c00205{width:705.531720pt;}
.fs4_c00205{font-size:26.599669pt;}
.fs3_c00205{font-size:42.432943pt;}
.fs2_c00205{font-size:52.566166pt;}
.fs0_c00205{font-size:58.267177pt;}
.fs1_c00205{font-size:63.333308pt;}
.y0_c00205{bottom:0.000000pt;}
.y1_c00205{bottom:0.107500pt;}
.y2e_c00205{bottom:0.157009pt;}
.y2b_c00205{bottom:0.947723pt;}
.y28_c00205{bottom:2.688463pt;}
.y8_c00205{bottom:6.068128pt;}
.ya_c00205{bottom:57.896246pt;}
.y3_c00205{bottom:74.146170pt;}
.y2_c00205{bottom:74.783670pt;}
.y32_c00205{bottom:93.306808pt;}
.y31_c00205{bottom:106.605549pt;}
.y30_c00205{bottom:121.014985pt;}
.y2f_c00205{bottom:136.689779pt;}
.y2d_c00205{bottom:143.445600pt;}
.y2c_c00205{bottom:147.771108pt;}
.y2a_c00205{bottom:158.646880pt;}
.y29_c00205{bottom:163.764434pt;}
.y26_c00205{bottom:172.686467pt;}
.y27_c00205{bottom:174.164800pt;}
.y25_c00205{bottom:188.519794pt;}
.y24_c00205{bottom:203.562455pt;}
.y23_c00205{bottom:217.021116pt;}
.y22_c00205{bottom:233.962443pt;}
.y21_c00205{bottom:260.084966pt;}
.y20_c00205{bottom:285.102422pt;}
.y1f_c00205{bottom:316.926409pt;}
.y1e_c00205{bottom:353.661061pt;}
.y1d_c00205{bottom:381.050384pt;}
.y1c_c00205{bottom:408.282240pt;}
.y1b_c00205{bottom:435.672895pt;}
.y1a_c00205{bottom:462.907951pt;}
.y19_c00205{bottom:503.442335pt;}
.y18_c00205{bottom:530.672324pt;}
.y17_c00205{bottom:558.065380pt;}
.y16_c00205{bottom:598.601630pt;}
.y15_c00205{bottom:625.833486pt;}
.y14_c00205{bottom:653.224142pt;}
.y13_c00205{bottom:680.456664pt;}
.y12_c00205{bottom:720.987315pt;}
.y11_c00205{bottom:748.381704pt;}
.y10_c00205{bottom:775.614226pt;}
.yf_c00205{bottom:804.588348pt;}
.ye_c00205{bottom:827.230205pt;}
.yd_c00205{bottom:899.589910pt;}
.yc_c00205{bottom:926.981099pt;}
.yb_c00205{bottom:954.214155pt;}
.y9_c00205{bottom:972.735480pt;}
.y7_c00205{bottom:1000.388100pt;}
.y6_c00205{bottom:1018.912492pt;}
.y5_c00205{bottom:1037.122485pt;}
.y4_c00205{bottom:1055.329411pt;}
.hf_c00205{height:13.933760pt;}
.hd_c00205{height:14.089600pt;}
.he_c00205{height:14.725920pt;}
.h10_c00205{height:16.810991pt;}
.h7_c00205{height:33.221817pt;}
.h6_c00205{height:36.824856pt;}
.hc_c00205{height:38.019917pt;}
.h11_c00205{height:47.046718pt;}
.hb_c00205{height:47.099284pt;}
.h9_c00205{height:47.151851pt;}
.h2_c00205{height:52.149123pt;}
.ha_c00205{height:52.382192pt;}
.h3_c00205{height:56.683311pt;}
.h8_c00205{height:56.746644pt;}
.h4_c00205{height:56.936644pt;}
.h5_c00205{height:1110.960672pt;}
.h1_c00205{height:1122.559167pt;}
.h0_c00205{height:1122.666667pt;}
.w4_c00205{width:7.284800pt;}
.w3_c00205{width:9.500800pt;}
.w2_c00205{width:785.062974pt;}
.w1_c00205{width:793.257550pt;}
.w0_c00205{width:793.333333pt;}
.x0_c00205{left:0.000000pt;}
.x7_c00205{left:1.370626pt;}
.x8_c00205{left:100.224934pt;}
.xc_c00205{left:101.584309pt;}
.x2_c00205{left:112.190515pt;}
.x9_c00205{left:147.726648pt;}
.xa_c00205{left:158.966644pt;}
.xd_c00205{left:160.326019pt;}
.x4_c00205{left:224.448440pt;}
.x3_c00205{left:240.124654pt;}
.x6_c00205{left:307.886481pt;}
.x5_c00205{left:373.596470pt;}
.x1_c00205{left:446.111238pt;}
.xb_c00205{left:652.908800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.112000;font-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_c00206{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v1_c00206{vertical-align:-2.849063px;}
.v0_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:-14.784234px;}
.ws1_c00206{word-spacing:0.000000px;}
._2_c00206{margin-left:-3.763624px;}
._3_c00206{margin-left:-2.659510px;}
._0_c00206{margin-left:-1.339561px;}
._1_c00206{width:1.056634px;}
._e_c00206{width:2.089744px;}
._16_c00206{width:403.878566px;}
._13_c00206{width:406.688525px;}
._12_c00206{width:730.385350px;}
._d_c00206{width:893.239921px;}
._4_c00206{width:955.201998px;}
._19_c00206{width:991.049331px;}
._18_c00206{width:1511.617491px;}
._14_c00206{width:1549.499583px;}
._6_c00206{width:1614.146510px;}
._c_c00206{width:1640.934942px;}
._a_c00206{width:1728.238086px;}
._7_c00206{width:1817.159965px;}
._10_c00206{width:1854.417656px;}
._5_c00206{width:1855.451507px;}
._15_c00206{width:1863.337360px;}
._b_c00206{width:1869.960650px;}
._8_c00206{width:1876.551288px;}
._11_c00206{width:1880.959462px;}
._17_c00206{width:1887.488817px;}
._f_c00206{width:1893.829181px;}
._9_c00206{width:1913.738458px;}
.fc1_c00206{color:rgb(105,148,45);}
.fc0_c00206{color:rgb(35,31,32);}
.fs4_c00206{font-size:29.924628px;}
.fs5_c00206{font-size:35.624626px;}
.fs3_c00206{font-size:47.737061px;}
.fs2_c00206{font-size:59.136936px;}
.fs0_c00206{font-size:65.550574px;}
.fs1_c00206{font-size:71.249972px;}
.y53_c00206{bottom:-0.709993px;}
.y5d_c00206{bottom:-0.538666px;}
.y20_c00206{bottom:-0.183063px;}
.y19_c00206{bottom:-0.182776px;}
.y23_c00206{bottom:-0.004856px;}
.y1c_c00206{bottom:-0.002769px;}
.y2c_c00206{bottom:-0.002437px;}
.y29_c00206{bottom:-0.002143px;}
.y0_c00206{bottom:0.000000px;}
.y1_c00206{bottom:0.120938px;}
.y49_c00206{bottom:0.351079px;}
.y11_c00206{bottom:0.351195px;}
.y2f_c00206{bottom:0.353670px;}
.y1d_c00206{bottom:0.485156px;}
.y50_c00206{bottom:2.315199px;}
.y5a_c00206{bottom:2.490127px;}
.y3b_c00206{bottom:2.666112px;}
.y15_c00206{bottom:2.669309px;}
.y37_c00206{bottom:2.670897px;}
.y33_c00206{bottom:2.672383px;}
.y61_c00206{bottom:3.022947px;}
.y4c_c00206{bottom:3.025585px;}
.y57_c00206{bottom:3.202620px;}
.y45_c00206{bottom:3.203464px;}
.y26_c00206{bottom:3.380649px;}
.y8_c00206{bottom:6.826644px;}
.ya_c00206{bottom:65.133277px;}
.y3_c00206{bottom:83.414442px;}
.y2_c00206{bottom:84.131629px;}
.y64_c00206{bottom:339.378727px;}
.y63_c00206{bottom:358.440419px;}
.y62_c00206{bottom:371.797914px;}
.y60_c00206{bottom:378.869400px;}
.y5f_c00206{bottom:382.840909px;}
.y5e_c00206{bottom:399.937902px;}
.y5c_c00206{bottom:414.495000px;}
.y5b_c00206{bottom:418.465895px;}
.y59_c00206{bottom:430.702200px;}
.y58_c00206{bottom:434.674889px;}
.y56_c00206{bottom:447.091200px;}
.y55_c00206{bottom:451.063882px;}
.y54_c00206{bottom:468.519375px;}
.y52_c00206{bottom:483.067800px;}
.y51_c00206{bottom:486.324649px;}
.y4f_c00206{bottom:499.278600px;}
.y4e_c00206{bottom:503.077861px;}
.y4d_c00206{bottom:520.354854px;}
.y4b_c00206{bottom:534.904200px;}
.y4a_c00206{bottom:538.876847px;}
.y48_c00206{bottom:551.113200px;}
.y47_c00206{bottom:555.264340px;}
.y46_c00206{bottom:572.542833px;}
.y44_c00206{bottom:587.449800px;}
.y43_c00206{bottom:607.455409px;}
.y42_c00206{bottom:622.239314px;}
.y41_c00206{bottom:636.130808px;}
.y40_c00206{bottom:646.818304px;}
.y3f_c00206{bottom:664.989296px;}
.y3e_c00206{bottom:685.114788px;}
.y3d_c00206{bottom:687.075288px;}
.y3c_c00206{bottom:703.821281px;}
.y3a_c00206{bottom:718.374600px;}
.y39_c00206{bottom:722.701773px;}
.y38_c00206{bottom:739.447767px;}
.y36_c00206{bottom:753.994800px;}
.y35_c00206{bottom:758.325259px;}
.y34_c00206{bottom:775.066752px;}
.y32_c00206{bottom:789.616800px;}
.y31_c00206{bottom:793.950245px;}
.y30_c00206{bottom:810.691738px;}
.y2e_c00206{bottom:825.246000px;}
.y2d_c00206{bottom:829.746512px;}
.y2b_c00206{bottom:841.989600px;}
.y2a_c00206{bottom:846.499724px;}
.y28_c00206{bottom:858.376800px;}
.y27_c00206{bottom:862.885717px;}
.y25_c00206{bottom:874.764000px;}
.y24_c00206{bottom:879.271711px;}
.y22_c00206{bottom:891.153000px;}
.y21_c00206{bottom:895.480704px;}
.y1f_c00206{bottom:907.540200px;}
.y1e_c00206{bottom:911.505479px;}
.y1b_c00206{bottom:923.747400px;}
.y1a_c00206{bottom:928.258691px;}
.y18_c00206{bottom:940.136400px;}
.y17_c00206{bottom:944.109185px;}
.y16_c00206{bottom:960.673678px;}
.y14_c00206{bottom:975.403800px;}
.y13_c00206{bottom:979.735671px;}
.y12_c00206{bottom:996.295664px;}
.yf_c00206{bottom:1008.473450px;}
.y10_c00206{bottom:1011.029400px;}
.ye_c00206{bottom:1025.930443px;}
.yd_c00206{bottom:1043.742936px;}
.yc_c00206{bottom:1060.488929px;}
.yb_c00206{bottom:1073.490924px;}
.y9_c00206{bottom:1094.327416px;}
.y7_c00206{bottom:1125.436612px;}
.y6_c00206{bottom:1146.276554px;}
.y5_c00206{bottom:1166.762796px;}
.y4_c00206{bottom:1187.245588px;}
.h1b_c00206{height:14.787000px;}
.h1a_c00206{height:14.959800px;}
.h1d_c00206{height:14.963400px;}
.h1c_c00206{height:15.139800px;}
.he_c00206{height:15.316200px;}
.h11_c00206{height:15.494400px;}
.h12_c00206{height:15.496200px;}
.hf_c00206{height:15.498000px;}
.h1e_c00206{height:15.670800px;}
.hd_c00206{height:15.676200px;}
.h15_c00206{height:15.849000px;}
.hc_c00206{height:15.850800px;}
.h13_c00206{height:15.852600px;}
.h14_c00206{height:15.854400px;}
.h19_c00206{height:16.387200px;}
.h16_c00206{height:18.912365px;}
.h18_c00206{height:22.514763px;}
.h8_c00206{height:30.169822px;}
.h7_c00206{height:37.374544px;}
.h6_c00206{height:41.427963px;}
.hb_c00206{height:42.772407px;}
.h17_c00206{height:52.927558px;}
.ha_c00206{height:52.986695px;}
.h9_c00206{height:53.045832px;}
.h2_c00206{height:58.667764px;}
.h3_c00206{height:63.768724px;}
.h4_c00206{height:64.053724px;}
.h5_c00206{height:1249.830756px;}
.h10_c00206{height:1262.514600px;}
.h1_c00206{height:1262.879062px;}
.h0_c00206{height:1263.000000px;}
.we_c00206{width:4.989600px;}
.wa_c00206{width:6.413400px;}
.wb_c00206{width:7.480800px;}
.w3_c00206{width:8.191800px;}
.w10_c00206{width:8.195400px;}
.w9_c00206{width:8.197200px;}
.w12_c00206{width:10.684800px;}
.w7_c00206{width:10.685340px;}
.w11_c00206{width:10.686600px;}
.w4_c00206{width:10.688400px;}
.w8_c00206{width:12.467160px;}
.wd_c00206{width:14.785200px;}
.wf_c00206{width:20.658600px;}
.wc_c00206{width:24.762600px;}
.w6_c00206{width:26.360820px;}
.w2_c00206{width:883.195846px;}
.w5_c00206{width:892.161000px;}
.w1_c00206{width:892.414744px;}
.w0_c00206{width:892.500000px;}
.x0_c00206{left:0.000000px;}
.x7_c00206{left:1.541954px;}
.x8_c00206{left:112.753050px;}
.x10_c00206{left:114.282348px;}
.x2_c00206{left:126.214330px;}
.xa_c00206{left:130.032444px;}
.xd_c00206{left:131.561741px;}
.xb_c00206{left:145.706387px;}
.xe_c00206{left:147.235685px;}
.x12_c00206{left:161.498700px;}
.x13_c00206{left:172.184040px;}
.x9_c00206{left:178.837474px;}
.x11_c00206{left:180.366772px;}
.x14_c00206{left:184.651200px;}
.x15_c00206{left:192.848400px;}
.x16_c00206{left:199.261800px;}
.x17_c00206{left:206.742600px;}
.x18_c00206{left:234.707400px;}
.x19_c00206{left:249.492600px;}
.x4_c00206{left:252.504495px;}
.x1a_c00206{left:254.482200px;}
.x3_c00206{left:270.140236px;}
.x6_c00206{left:346.372291px;}
.x5_c00206{left:420.296029px;}
.x1_c00206{left:501.875143px;}
.x1b_c00206{left:734.522400px;}
.xc_c00206{left:736.302600px;}
.x1c_c00206{left:739.330200px;}
.xf_c00206{left:741.646800px;}
@media print{
.v1_c00206{vertical-align:-2.532500pt;}
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:-13.141541pt;}
.ws1_c00206{word-spacing:0.000000pt;}
._2_c00206{margin-left:-3.345444pt;}
._3_c00206{margin-left:-2.364009pt;}
._0_c00206{margin-left:-1.190721pt;}
._1_c00206{width:0.939230pt;}
._e_c00206{width:1.857551pt;}
._16_c00206{width:359.003169pt;}
._13_c00206{width:361.500911pt;}
._12_c00206{width:649.231422pt;}
._d_c00206{width:793.991041pt;}
._4_c00206{width:849.068443pt;}
._19_c00206{width:880.932738pt;}
._18_c00206{width:1343.659992pt;}
._14_c00206{width:1377.332963pt;}
._6_c00206{width:1434.796898pt;}
._c_c00206{width:1458.608838pt;}
._a_c00206{width:1536.211632pt;}
._7_c00206{width:1615.253302pt;}
._10_c00206{width:1648.371250pt;}
._5_c00206{width:1649.290228pt;}
._15_c00206{width:1656.299875pt;}
._b_c00206{width:1662.187245pt;}
._8_c00206{width:1668.045589pt;}
._11_c00206{width:1671.963966pt;}
._17_c00206{width:1677.767837pt;}
._f_c00206{width:1683.403716pt;}
._9_c00206{width:1701.100852pt;}
.fs4_c00206{font-size:26.599669pt;}
.fs5_c00206{font-size:31.666334pt;}
.fs3_c00206{font-size:42.432943pt;}
.fs2_c00206{font-size:52.566166pt;}
.fs0_c00206{font-size:58.267177pt;}
.fs1_c00206{font-size:63.333308pt;}
.y53_c00206{bottom:-0.631105pt;}
.y5d_c00206{bottom:-0.478814pt;}
.y20_c00206{bottom:-0.162723pt;}
.y19_c00206{bottom:-0.162468pt;}
.y23_c00206{bottom:-0.004317pt;}
.y1c_c00206{bottom:-0.002462pt;}
.y2c_c00206{bottom:-0.002166pt;}
.y29_c00206{bottom:-0.001905pt;}
.y0_c00206{bottom:0.000000pt;}
.y1_c00206{bottom:0.107500pt;}
.y49_c00206{bottom:0.312071pt;}
.y11_c00206{bottom:0.312174pt;}
.y2f_c00206{bottom:0.314373pt;}
.y1d_c00206{bottom:0.431250pt;}
.y50_c00206{bottom:2.057955pt;}
.y5a_c00206{bottom:2.213446pt;}
.y3b_c00206{bottom:2.369877pt;}
.y15_c00206{bottom:2.372719pt;}
.y37_c00206{bottom:2.374131pt;}
.y33_c00206{bottom:2.375452pt;}
.y61_c00206{bottom:2.687064pt;}
.y4c_c00206{bottom:2.689409pt;}
.y57_c00206{bottom:2.846773pt;}
.y45_c00206{bottom:2.847523pt;}
.y26_c00206{bottom:3.005021pt;}
.y8_c00206{bottom:6.068128pt;}
.ya_c00206{bottom:57.896246pt;}
.y3_c00206{bottom:74.146170pt;}
.y2_c00206{bottom:74.783670pt;}
.y64_c00206{bottom:301.669979pt;}
.y63_c00206{bottom:318.613706pt;}
.y62_c00206{bottom:330.487034pt;}
.y60_c00206{bottom:336.772800pt;}
.y5f_c00206{bottom:340.303031pt;}
.y5e_c00206{bottom:355.500358pt;}
.y5c_c00206{bottom:368.440000pt;}
.y5b_c00206{bottom:371.969685pt;}
.y59_c00206{bottom:382.846400pt;}
.y58_c00206{bottom:386.377679pt;}
.y56_c00206{bottom:397.414400pt;}
.y55_c00206{bottom:400.945673pt;}
.y54_c00206{bottom:416.461667pt;}
.y52_c00206{bottom:429.393600pt;}
.y51_c00206{bottom:432.288577pt;}
.y4f_c00206{bottom:443.803200pt;}
.y4e_c00206{bottom:447.180321pt;}
.y4d_c00206{bottom:462.537648pt;}
.y4b_c00206{bottom:475.470400pt;}
.y4a_c00206{bottom:479.001642pt;}
.y48_c00206{bottom:489.878400pt;}
.y47_c00206{bottom:493.568303pt;}
.y46_c00206{bottom:508.926963pt;}
.y44_c00206{bottom:522.177600pt;}
.y43_c00206{bottom:539.960364pt;}
.y42_c00206{bottom:553.101612pt;}
.y41_c00206{bottom:565.449607pt;}
.y40_c00206{bottom:574.949603pt;}
.y3f_c00206{bottom:591.101597pt;}
.y3e_c00206{bottom:608.990923pt;}
.y3d_c00206{bottom:610.733589pt;}
.y3c_c00206{bottom:625.618916pt;}
.y3a_c00206{bottom:638.555200pt;}
.y39_c00206{bottom:642.401576pt;}
.y38_c00206{bottom:657.286904pt;}
.y36_c00206{bottom:670.217600pt;}
.y35_c00206{bottom:674.066897pt;}
.y34_c00206{bottom:688.948224pt;}
.y32_c00206{bottom:701.881600pt;}
.y31_c00206{bottom:705.733551pt;}
.y30_c00206{bottom:720.614878pt;}
.y2e_c00206{bottom:733.552000pt;}
.y2d_c00206{bottom:737.552455pt;}
.y2b_c00206{bottom:748.435200pt;}
.y2a_c00206{bottom:752.444199pt;}
.y28_c00206{bottom:763.001600pt;}
.y27_c00206{bottom:767.009526pt;}
.y25_c00206{bottom:777.568000pt;}
.y24_c00206{bottom:781.574854pt;}
.y22_c00206{bottom:792.136000pt;}
.y21_c00206{bottom:795.982848pt;}
.y1f_c00206{bottom:806.702400pt;}
.y1e_c00206{bottom:810.227093pt;}
.y1b_c00206{bottom:821.108800pt;}
.y1a_c00206{bottom:825.118837pt;}
.y18_c00206{bottom:835.676800pt;}
.y17_c00206{bottom:839.208164pt;}
.y16_c00206{bottom:853.932158pt;}
.y14_c00206{bottom:867.025600pt;}
.y13_c00206{bottom:870.876152pt;}
.y12_c00206{bottom:885.596146pt;}
.yf_c00206{bottom:896.420844pt;}
.y10_c00206{bottom:898.692800pt;}
.ye_c00206{bottom:911.938171pt;}
.yd_c00206{bottom:927.771498pt;}
.yc_c00206{bottom:942.656826pt;}
.yb_c00206{bottom:954.214155pt;}
.y9_c00206{bottom:972.735480pt;}
.y7_c00206{bottom:1000.388100pt;}
.y6_c00206{bottom:1018.912492pt;}
.y5_c00206{bottom:1037.122485pt;}
.y4_c00206{bottom:1055.329411pt;}
.h1b_c00206{height:13.144000pt;}
.h1a_c00206{height:13.297600pt;}
.h1d_c00206{height:13.300800pt;}
.h1c_c00206{height:13.457600pt;}
.he_c00206{height:13.614400pt;}
.h11_c00206{height:13.772800pt;}
.h12_c00206{height:13.774400pt;}
.hf_c00206{height:13.776000pt;}
.h1e_c00206{height:13.929600pt;}
.hd_c00206{height:13.934400pt;}
.h15_c00206{height:14.088000pt;}
.hc_c00206{height:14.089600pt;}
.h13_c00206{height:14.091200pt;}
.h14_c00206{height:14.092800pt;}
.h19_c00206{height:14.566400pt;}
.h16_c00206{height:16.810991pt;}
.h18_c00206{height:20.013123pt;}
.h8_c00206{height:26.817620pt;}
.h7_c00206{height:33.221817pt;}
.h6_c00206{height:36.824856pt;}
.hb_c00206{height:38.019917pt;}
.h17_c00206{height:47.046718pt;}
.ha_c00206{height:47.099284pt;}
.h9_c00206{height:47.151851pt;}
.h2_c00206{height:52.149123pt;}
.h3_c00206{height:56.683311pt;}
.h4_c00206{height:56.936644pt;}
.h5_c00206{height:1110.960672pt;}
.h10_c00206{height:1122.235200pt;}
.h1_c00206{height:1122.559167pt;}
.h0_c00206{height:1122.666667pt;}
.we_c00206{width:4.435200pt;}
.wa_c00206{width:5.700800pt;}
.wb_c00206{width:6.649600pt;}
.w3_c00206{width:7.281600pt;}
.w10_c00206{width:7.284800pt;}
.w9_c00206{width:7.286400pt;}
.w12_c00206{width:9.497600pt;}
.w7_c00206{width:9.498080pt;}
.w11_c00206{width:9.499200pt;}
.w4_c00206{width:9.500800pt;}
.w8_c00206{width:11.081920pt;}
.wd_c00206{width:13.142400pt;}
.wf_c00206{width:18.363200pt;}
.wc_c00206{width:22.011200pt;}
.w6_c00206{width:23.431840pt;}
.w2_c00206{width:785.062974pt;}
.w5_c00206{width:793.032000pt;}
.w1_c00206{width:793.257550pt;}
.w0_c00206{width:793.333333pt;}
.x0_c00206{left:0.000000pt;}
.x7_c00206{left:1.370626pt;}
.x8_c00206{left:100.224934pt;}
.x10_c00206{left:101.584309pt;}
.x2_c00206{left:112.190515pt;}
.xa_c00206{left:115.584394pt;}
.xd_c00206{left:116.943770pt;}
.xb_c00206{left:129.516789pt;}
.xe_c00206{left:130.876164pt;}
.x12_c00206{left:143.554400pt;}
.x13_c00206{left:153.052480pt;}
.x9_c00206{left:158.966644pt;}
.x11_c00206{left:160.326019pt;}
.x14_c00206{left:164.134400pt;}
.x15_c00206{left:171.420800pt;}
.x16_c00206{left:177.121600pt;}
.x17_c00206{left:183.771200pt;}
.x18_c00206{left:208.628800pt;}
.x19_c00206{left:221.771200pt;}
.x4_c00206{left:224.448440pt;}
.x1a_c00206{left:226.206400pt;}
.x3_c00206{left:240.124654pt;}
.x6_c00206{left:307.886481pt;}
.x5_c00206{left:373.596470pt;}
.x1_c00206{left:446.111238pt;}
.x1b_c00206{left:652.908800pt;}
.xc_c00206{left:654.491200pt;}
.x1c_c00206{left:657.182400pt;}
.xf_c00206{left:659.241600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:1.112000;font-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_c00207{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v1_c00207{vertical-align:-2.849063px;}
.v0_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.000000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00207{word-spacing:0.000000px;}
._5_c00207{margin-left:-4.554263px;}
._2_c00207{margin-left:-2.616459px;}
._0_c00207{margin-left:-1.339561px;}
._1_c00207{width:1.056634px;}
._16_c00207{width:10.260279px;}
._6_c00207{width:363.113622px;}
._7_c00207{width:618.613974px;}
._d_c00207{width:785.007742px;}
._b_c00207{width:829.427571px;}
._f_c00207{width:834.839724px;}
._13_c00207{width:892.817440px;}
._a_c00207{width:936.168784px;}
._26_c00207{width:990.920179px;}
._8_c00207{width:1040.183789px;}
._15_c00207{width:1054.131599px;}
._14_c00207{width:1064.222455px;}
._e_c00207{width:1114.802396px;}
._10_c00207{width:1115.912908px;}
._18_c00207{width:1117.487673px;}
._c_c00207{width:1136.226994px;}
._12_c00207{width:1139.566501px;}
._11_c00207{width:1201.828805px;}
._9_c00207{width:1216.539724px;}
._1e_c00207{width:1280.358945px;}
._20_c00207{width:1285.160414px;}
._1d_c00207{width:1325.344488px;}
._17_c00207{width:1330.974804px;}
._4_c00207{width:1435.504393px;}
._22_c00207{width:1524.038710px;}
._3_c00207{width:1586.517181px;}
._25_c00207{width:1604.902368px;}
._1b_c00207{width:1612.948587px;}
._21_c00207{width:1647.230216px;}
._1f_c00207{width:1669.774111px;}
._1a_c00207{width:1678.309130px;}
._24_c00207{width:1714.775234px;}
._23_c00207{width:1736.581156px;}
._19_c00207{width:1756.219509px;}
._1c_c00207{width:1844.736595px;}
.fc1_c00207{color:rgb(105,148,45);}
.fc0_c00207{color:rgb(35,31,32);}
.fs4_c00207{font-size:29.924628px;}
.fs3_c00207{font-size:47.737061px;}
.fs2_c00207{font-size:59.136936px;}
.fs0_c00207{font-size:65.550574px;}
.fs1_c00207{font-size:71.249972px;}
.y42_c00207{bottom:-0.539391px;}
.y51_c00207{bottom:-0.536958px;}
.y36_c00207{bottom:-0.536417px;}
.y6f_c00207{bottom:-0.535993px;}
.y1d_c00207{bottom:-0.534670px;}
.y2f_c00207{bottom:-0.534330px;}
.y3f_c00207{bottom:-0.363898px;}
.y45_c00207{bottom:-0.361185px;}
.y3c_c00207{bottom:-0.360304px;}
.y2c_c00207{bottom:-0.359437px;}
.y5a_c00207{bottom:-0.359339px;}
.y39_c00207{bottom:-0.358511px;}
.y4e_c00207{bottom:-0.358465px;}
.y54_c00207{bottom:-0.357552px;}
.y29_c00207{bottom:-0.357344px;}
.y4b_c00207{bottom:-0.356672px;}
.y72_c00207{bottom:-0.356587px;}
.y6c_c00207{bottom:-0.356300px;}
.y26_c00207{bottom:-0.354950px;}
.y48_c00207{bottom:-0.354878px;}
.y57_c00207{bottom:-0.354245px;}
.y33_c00207{bottom:-0.181524px;}
.y75_c00207{bottom:-0.180180px;}
.y10_c00207{bottom:-0.001904px;}
.y63_c00207{bottom:-0.001719px;}
.y0_c00207{bottom:0.000000px;}
.y20_c00207{bottom:0.000537px;}
.y23_c00207{bottom:0.003843px;}
.y1_c00207{bottom:0.120938px;}
.y30_c00207{bottom:0.485156px;}
.y17_c00207{bottom:0.713617px;}
.y5d_c00207{bottom:2.489767px;}
.y1a_c00207{bottom:2.491723px;}
.y69_c00207{bottom:2.493993px;}
.y66_c00207{bottom:2.494286px;}
.y60_c00207{bottom:2.850973px;}
.y13_c00207{bottom:3.019702px;}
.y9_c00207{bottom:71.838984px;}
.y3_c00207{bottom:83.414442px;}
.y2_c00207{bottom:84.131629px;}
.y78_c00207{bottom:410.268698px;}
.y77_c00207{bottom:429.151891px;}
.y76_c00207{bottom:442.689385px;}
.y74_c00207{bottom:450.117000px;}
.y73_c00207{bottom:454.272381px;}
.y71_c00207{bottom:466.682400px;}
.y70_c00207{bottom:470.479874px;}
.y6e_c00207{bottom:483.067800px;}
.y6d_c00207{bottom:487.044368px;}
.y6b_c00207{bottom:499.278600px;}
.y6a_c00207{bottom:503.434861px;}
.y68_c00207{bottom:515.665800px;}
.y67_c00207{bottom:519.640855px;}
.y65_c00207{bottom:532.053000px;}
.y64_c00207{bottom:536.028348px;}
.y62_c00207{bottom:548.622000px;}
.y61_c00207{bottom:553.131341px;}
.y5f_c00207{bottom:565.003800px;}
.y5e_c00207{bottom:568.623335px;}
.y5c_c00207{bottom:581.040000px;}
.y5b_c00207{bottom:585.190828px;}
.y59_c00207{bottom:597.603600px;}
.y58_c00207{bottom:601.389603px;}
.y56_c00207{bottom:613.989000px;}
.y55_c00207{bottom:617.965815px;}
.y53_c00207{bottom:630.379800px;}
.y52_c00207{bottom:634.348809px;}
.y50_c00207{bottom:646.765200px;}
.y4f_c00207{bottom:650.739302px;}
.y4d_c00207{bottom:662.974200px;}
.y4c_c00207{bottom:666.946796px;}
.y4a_c00207{bottom:679.361400px;}
.y49_c00207{bottom:683.148571px;}
.y47_c00207{bottom:695.748600px;}
.y46_c00207{bottom:699.723283px;}
.y44_c00207{bottom:712.139400px;}
.y43_c00207{bottom:715.932276px;}
.y41_c00207{bottom:728.526600px;}
.y40_c00207{bottom:732.498269px;}
.y3e_c00207{bottom:744.735600px;}
.y3d_c00207{bottom:748.518545px;}
.y3b_c00207{bottom:761.121000px;}
.y3a_c00207{bottom:765.094756px;}
.y38_c00207{bottom:777.508200px;}
.y37_c00207{bottom:781.660750px;}
.y35_c00207{bottom:793.893600px;}
.y34_c00207{bottom:797.869743px;}
.y32_c00207{bottom:810.106200px;}
.y31_c00207{bottom:813.714519px;}
.y2e_c00207{bottom:826.668000px;}
.y2d_c00207{bottom:830.646230px;}
.y2b_c00207{bottom:842.880600px;}
.y2a_c00207{bottom:847.033724px;}
.y28_c00207{bottom:859.266000px;}
.y27_c00207{bottom:863.241217px;}
.y25_c00207{bottom:875.649600px;}
.y24_c00207{bottom:879.631711px;}
.y22_c00207{bottom:892.036800px;}
.y21_c00207{bottom:896.550204px;}
.y1f_c00207{bottom:908.427600px;}
.y1e_c00207{bottom:912.759197px;}
.y1c_c00207{bottom:924.814800px;}
.y1b_c00207{bottom:928.789691px;}
.y19_c00207{bottom:941.027400px;}
.y18_c00207{bottom:945.000184px;}
.y16_c00207{bottom:957.411000px;}
.y15_c00207{bottom:961.921678px;}
.y14_c00207{bottom:978.841671px;}
.y12_c00207{bottom:993.218400px;}
.y11_c00207{bottom:997.543663px;}
.yf_c00207{bottom:1009.602000px;}
.ye_c00207{bottom:1013.217157px;}
.yd_c00207{bottom:1030.674150px;}
.yc_c00207{bottom:1048.666643px;}
.yb_c00207{bottom:1066.122436px;}
.ya_c00207{bottom:1082.866629px;}
.y8_c00207{bottom:1101.033122px;}
.y7_c00207{bottom:1125.436612px;}
.y6_c00207{bottom:1146.276554px;}
.y5_c00207{bottom:1166.762796px;}
.y4_c00207{bottom:1187.245588px;}
.h1b_c00207{height:14.785200px;}
.h18_c00207{height:14.959800px;}
.he_c00207{height:14.961600px;}
.h19_c00207{height:14.963400px;}
.h13_c00207{height:14.965200px;}
.h16_c00207{height:14.968800px;}
.h1a_c00207{height:15.132600px;}
.h17_c00207{height:15.138000px;}
.h12_c00207{height:15.139800px;}
.hd_c00207{height:15.141600px;}
.h11_c00207{height:15.143400px;}
.h15_c00207{height:15.316200px;}
.h1d_c00207{height:15.321600px;}
.h1c_c00207{height:15.494400px;}
.hb_c00207{height:15.496200px;}
.ha_c00207{height:15.498000px;}
.hf_c00207{height:15.499800px;}
.h10_c00207{height:15.503400px;}
.hc_c00207{height:16.212600px;}
.h1e_c00207{height:18.912365px;}
.h6_c00207{height:37.374544px;}
.h5_c00207{height:41.427963px;}
.h9_c00207{height:42.772407px;}
.h1f_c00207{height:52.927558px;}
.h8_c00207{height:52.986695px;}
.h7_c00207{height:53.045832px;}
.h2_c00207{height:58.667764px;}
.h3_c00207{height:63.768724px;}
.h4_c00207{height:64.053724px;}
.h14_c00207{height:1262.514600px;}
.h1_c00207{height:1262.879062px;}
.h0_c00207{height:1263.000000px;}
.w2_c00207{width:8.195400px;}
.w3_c00207{width:10.684800px;}
.w5_c00207{width:10.688400px;}
.w4_c00207{width:892.161000px;}
.w1_c00207{width:892.414744px;}
.w0_c00207{width:892.500000px;}
.x0_c00207{left:0.000000px;}
.x7_c00207{left:114.282348px;}
.x2_c00207{left:126.214330px;}
.x8_c00207{left:131.561741px;}
.xb_c00207{left:180.363474px;}
.x4_c00207{left:252.504495px;}
.x3_c00207{left:270.140236px;}
.x6_c00207{left:346.372291px;}
.x5_c00207{left:420.296029px;}
.x1_c00207{left:501.875143px;}
.x9_c00207{left:734.522400px;}
.xa_c00207{left:740.757600px;}
@media print{
.v1_c00207{vertical-align:-2.532500pt;}
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws0_c00207{word-spacing:0.000000pt;}
._5_c00207{margin-left:-4.048233pt;}
._2_c00207{margin-left:-2.325742pt;}
._0_c00207{margin-left:-1.190721pt;}
._1_c00207{width:0.939230pt;}
._16_c00207{width:9.120248pt;}
._6_c00207{width:322.767664pt;}
._7_c00207{width:549.879088pt;}
._d_c00207{width:697.784660pt;}
._b_c00207{width:737.268952pt;}
._f_c00207{width:742.079755pt;}
._13_c00207{width:793.615502pt;}
._a_c00207{width:832.150031pt;}
._26_c00207{width:880.817937pt;}
._8_c00207{width:924.607812pt;}
._15_c00207{width:937.005866pt;}
._14_c00207{width:945.975516pt;}
._e_c00207{width:990.935463pt;}
._10_c00207{width:991.922585pt;}
._18_c00207{width:993.322376pt;}
._c_c00207{width:1009.979551pt;}
._12_c00207{width:1012.948001pt;}
._11_c00207{width:1068.292271pt;}
._9_c00207{width:1081.368644pt;}
._1e_c00207{width:1138.096840pt;}
._20_c00207{width:1142.364812pt;}
._1d_c00207{width:1178.083989pt;}
._17_c00207{width:1183.088715pt;}
._4_c00207{width:1276.003905pt;}
._22_c00207{width:1354.701076pt;}
._3_c00207{width:1410.237494pt;}
._25_c00207{width:1426.579883pt;}
._1b_c00207{width:1433.732078pt;}
._21_c00207{width:1464.204636pt;}
._1f_c00207{width:1484.243654pt;}
._1a_c00207{width:1491.830338pt;}
._24_c00207{width:1524.244652pt;}
._23_c00207{width:1543.627694pt;}
._19_c00207{width:1561.084008pt;}
._1c_c00207{width:1639.765862pt;}
.fs4_c00207{font-size:26.599669pt;}
.fs3_c00207{font-size:42.432943pt;}
.fs2_c00207{font-size:52.566166pt;}
.fs0_c00207{font-size:58.267177pt;}
.fs1_c00207{font-size:63.333308pt;}
.y42_c00207{bottom:-0.479459pt;}
.y51_c00207{bottom:-0.477296pt;}
.y36_c00207{bottom:-0.476815pt;}
.y6f_c00207{bottom:-0.476438pt;}
.y1d_c00207{bottom:-0.475262pt;}
.y2f_c00207{bottom:-0.474960pt;}
.y3f_c00207{bottom:-0.323465pt;}
.y45_c00207{bottom:-0.321053pt;}
.y3c_c00207{bottom:-0.320270pt;}
.y2c_c00207{bottom:-0.319500pt;}
.y5a_c00207{bottom:-0.319412pt;}
.y39_c00207{bottom:-0.318676pt;}
.y4e_c00207{bottom:-0.318636pt;}
.y54_c00207{bottom:-0.317824pt;}
.y29_c00207{bottom:-0.317639pt;}
.y4b_c00207{bottom:-0.317041pt;}
.y72_c00207{bottom:-0.316966pt;}
.y6c_c00207{bottom:-0.316711pt;}
.y26_c00207{bottom:-0.315511pt;}
.y48_c00207{bottom:-0.315447pt;}
.y57_c00207{bottom:-0.314885pt;}
.y33_c00207{bottom:-0.161355pt;}
.y75_c00207{bottom:-0.160160pt;}
.y10_c00207{bottom:-0.001692pt;}
.y63_c00207{bottom:-0.001528pt;}
.y0_c00207{bottom:0.000000pt;}
.y20_c00207{bottom:0.000477pt;}
.y23_c00207{bottom:0.003416pt;}
.y1_c00207{bottom:0.107500pt;}
.y30_c00207{bottom:0.431250pt;}
.y17_c00207{bottom:0.634326pt;}
.y5d_c00207{bottom:2.213126pt;}
.y1a_c00207{bottom:2.214865pt;}
.y69_c00207{bottom:2.216882pt;}
.y66_c00207{bottom:2.217143pt;}
.y60_c00207{bottom:2.534198pt;}
.y13_c00207{bottom:2.684179pt;}
.y9_c00207{bottom:63.856874pt;}
.y3_c00207{bottom:74.146170pt;}
.y2_c00207{bottom:74.783670pt;}
.y78_c00207{bottom:364.683287pt;}
.y77_c00207{bottom:381.468347pt;}
.y76_c00207{bottom:393.501676pt;}
.y74_c00207{bottom:400.104000pt;}
.y73_c00207{bottom:403.797672pt;}
.y71_c00207{bottom:414.828800pt;}
.y70_c00207{bottom:418.204333pt;}
.y6e_c00207{bottom:429.393600pt;}
.y6d_c00207{bottom:432.928327pt;}
.y6b_c00207{bottom:443.803200pt;}
.y6a_c00207{bottom:447.497654pt;}
.y68_c00207{bottom:458.369600pt;}
.y67_c00207{bottom:461.902982pt;}
.y65_c00207{bottom:472.936000pt;}
.y64_c00207{bottom:476.469643pt;}
.y62_c00207{bottom:487.664000pt;}
.y61_c00207{bottom:491.672303pt;}
.y5f_c00207{bottom:502.225600pt;}
.y5e_c00207{bottom:505.442964pt;}
.y5c_c00207{bottom:516.480000pt;}
.y5b_c00207{bottom:520.169625pt;}
.y59_c00207{bottom:531.203200pt;}
.y58_c00207{bottom:534.568536pt;}
.y56_c00207{bottom:545.768000pt;}
.y55_c00207{bottom:549.302947pt;}
.y53_c00207{bottom:560.337600pt;}
.y52_c00207{bottom:563.865608pt;}
.y50_c00207{bottom:574.902400pt;}
.y4f_c00207{bottom:578.434935pt;}
.y4d_c00207{bottom:589.310400pt;}
.y4c_c00207{bottom:592.841596pt;}
.y4a_c00207{bottom:603.876800pt;}
.y49_c00207{bottom:607.243174pt;}
.y47_c00207{bottom:618.443200pt;}
.y46_c00207{bottom:621.976251pt;}
.y44_c00207{bottom:633.012800pt;}
.y43_c00207{bottom:636.384245pt;}
.y41_c00207{bottom:647.579200pt;}
.y40_c00207{bottom:651.109573pt;}
.y3e_c00207{bottom:661.987200pt;}
.y3d_c00207{bottom:665.349817pt;}
.y3b_c00207{bottom:676.552000pt;}
.y3a_c00207{bottom:680.084228pt;}
.y38_c00207{bottom:691.118400pt;}
.y37_c00207{bottom:694.809555pt;}
.y35_c00207{bottom:705.683200pt;}
.y34_c00207{bottom:709.217550pt;}
.y32_c00207{bottom:720.094400pt;}
.y31_c00207{bottom:723.301794pt;}
.y2e_c00207{bottom:734.816000pt;}
.y2d_c00207{bottom:738.352205pt;}
.y2b_c00207{bottom:749.227200pt;}
.y2a_c00207{bottom:752.918865pt;}
.y28_c00207{bottom:763.792000pt;}
.y27_c00207{bottom:767.325526pt;}
.y25_c00207{bottom:778.355200pt;}
.y24_c00207{bottom:781.894854pt;}
.y22_c00207{bottom:792.921600pt;}
.y21_c00207{bottom:796.933515pt;}
.y1f_c00207{bottom:807.491200pt;}
.y1e_c00207{bottom:811.341509pt;}
.y1c_c00207{bottom:822.057600pt;}
.y1b_c00207{bottom:825.590836pt;}
.y19_c00207{bottom:836.468800pt;}
.y18_c00207{bottom:840.000164pt;}
.y16_c00207{bottom:851.032000pt;}
.y15_c00207{bottom:855.041491pt;}
.y14_c00207{bottom:870.081485pt;}
.y12_c00207{bottom:882.860800pt;}
.y11_c00207{bottom:886.705479pt;}
.yf_c00207{bottom:897.424000pt;}
.ye_c00207{bottom:900.637473pt;}
.yd_c00207{bottom:916.154800pt;}
.yc_c00207{bottom:932.148127pt;}
.yb_c00207{bottom:947.664388pt;}
.ya_c00207{bottom:962.548115pt;}
.y8_c00207{bottom:978.696108pt;}
.y7_c00207{bottom:1000.388100pt;}
.y6_c00207{bottom:1018.912492pt;}
.y5_c00207{bottom:1037.122485pt;}
.y4_c00207{bottom:1055.329411pt;}
.h1b_c00207{height:13.142400pt;}
.h18_c00207{height:13.297600pt;}
.he_c00207{height:13.299200pt;}
.h19_c00207{height:13.300800pt;}
.h13_c00207{height:13.302400pt;}
.h16_c00207{height:13.305600pt;}
.h1a_c00207{height:13.451200pt;}
.h17_c00207{height:13.456000pt;}
.h12_c00207{height:13.457600pt;}
.hd_c00207{height:13.459200pt;}
.h11_c00207{height:13.460800pt;}
.h15_c00207{height:13.614400pt;}
.h1d_c00207{height:13.619200pt;}
.h1c_c00207{height:13.772800pt;}
.hb_c00207{height:13.774400pt;}
.ha_c00207{height:13.776000pt;}
.hf_c00207{height:13.777600pt;}
.h10_c00207{height:13.780800pt;}
.hc_c00207{height:14.411200pt;}
.h1e_c00207{height:16.810991pt;}
.h6_c00207{height:33.221817pt;}
.h5_c00207{height:36.824856pt;}
.h9_c00207{height:38.019917pt;}
.h1f_c00207{height:47.046718pt;}
.h8_c00207{height:47.099284pt;}
.h7_c00207{height:47.151851pt;}
.h2_c00207{height:52.149123pt;}
.h3_c00207{height:56.683311pt;}
.h4_c00207{height:56.936644pt;}
.h14_c00207{height:1122.235200pt;}
.h1_c00207{height:1122.559167pt;}
.h0_c00207{height:1122.666667pt;}
.w2_c00207{width:7.284800pt;}
.w3_c00207{width:9.497600pt;}
.w5_c00207{width:9.500800pt;}
.w4_c00207{width:793.032000pt;}
.w1_c00207{width:793.257550pt;}
.w0_c00207{width:793.333333pt;}
.x0_c00207{left:0.000000pt;}
.x7_c00207{left:101.584309pt;}
.x2_c00207{left:112.190515pt;}
.x8_c00207{left:116.943770pt;}
.xb_c00207{left:160.323088pt;}
.x4_c00207{left:224.448440pt;}
.x3_c00207{left:240.124654pt;}
.x6_c00207{left:307.886481pt;}
.x5_c00207{left:373.596470pt;}
.x1_c00207{left:446.111238pt;}
.x9_c00207{left:652.908800pt;}
.xa_c00207{left:658.451200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00208{transform:matrix(0.232352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232352,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m8_c00208{transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v2_c00208{vertical-align:-2.849063px;}
.v0_c00208{vertical-align:0.000000px;}
.v1_c00208{vertical-align:12.113455px;}
.ls1_c00208{letter-spacing:0.000000px;}
.ls0_c00208{letter-spacing:1.109594px;}
.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:-17.812493px;}
.ws1_c00208{word-spacing:-14.784234px;}
.ws4_c00208{word-spacing:0.000000px;}
.ws3_c00208{word-spacing:254.545511px;}
.ws2_c00208{word-spacing:386.338008px;}
._d_c00208{margin-left:-3.303819px;}
._0_c00208{margin-left:-1.339561px;}
._1_c00208{width:1.056634px;}
._3_c00208{width:2.888106px;}
._b_c00208{width:3.967611px;}
._9_c00208{width:5.988684px;}
._a_c00208{width:7.577494px;}
._e_c00208{width:9.315149px;}
._8_c00208{width:10.809381px;}
._4_c00208{width:12.475285px;}
._5_c00208{width:14.215384px;}
._6_c00208{width:15.518304px;}
._7_c00208{width:16.693680px;}
._c_c00208{width:186.338185px;}
._2_c00208{width:400.643844px;}
.fc1_c00208{color:rgb(105,148,45);}
.fc0_c00208{color:rgb(35,31,32);}
.fs6_c00208{font-size:32.774747px;}
.fs7_c00208{font-size:41.324503px;}
.fs3_c00208{font-size:47.737061px;}
.fs4_c00208{font-size:50.586940px;}
.fs5_c00208{font-size:56.286877px;}
.fs2_c00208{font-size:59.136936px;}
.fs0_c00208{font-size:65.550574px;}
.fs1_c00208{font-size:71.249972px;}
.y0_c00208{bottom:0.000000px;}
.y1_c00208{bottom:0.120938px;}
.yb_c00208{bottom:3.204407px;}
.y2a_c00208{bottom:3.206256px;}
.y10_c00208{bottom:3.381407px;}
.y23_c00208{bottom:3.738108px;}
.y16_c00208{bottom:3.914508px;}
.y2e_c00208{bottom:3.916073px;}
.y2c_c00208{bottom:4.090664px;}
.y30_c00208{bottom:4.097281px;}
.y17_c00208{bottom:6.826644px;}
.y9_c00208{bottom:71.838984px;}
.y3_c00208{bottom:83.414442px;}
.y2_c00208{bottom:84.131629px;}
.y5a_c00208{bottom:129.613301px;}
.y58_c00208{bottom:159.358290px;}
.y59_c00208{bottom:167.554286px;}
.y57_c00208{bottom:180.202281px;}
.y56_c00208{bottom:193.021726px;}
.y55_c00208{bottom:211.902069px;}
.y54_c00208{bottom:226.865973px;}
.y53_c00208{bottom:241.651287px;}
.y32_c00208{bottom:242.545256px;}
.y52_c00208{bottom:256.436601px;}
.y31_c00208{bottom:269.260246px;}
.y51_c00208{bottom:271.399095px;}
.y50_c00208{bottom:286.182999px;}
.y2f_c00208{bottom:293.367600px;}
.y4f_c00208{bottom:300.969003px;}
.y2d_c00208{bottom:314.740800px;}
.y4e_c00208{bottom:315.926577px;}
.y4d_c00208{bottom:330.712581px;}
.y2b_c00208{bottom:336.121200px;}
.y4c_c00208{bottom:345.496485px;}
.y29_c00208{bottom:357.492600px;}
.y4b_c00208{bottom:360.460389px;}
.y4a_c00208{bottom:375.244293px;}
.y1c_c00208{bottom:382.015950px;}
.y21_c00208{bottom:388.897907px;}
.y49_c00208{bottom:390.028197px;}
.y1b_c00208{bottom:399.115194px;}
.y28_c00208{bottom:402.967901px;}
.y48_c00208{bottom:404.990691px;}
.y20_c00208{bottom:405.997900px;}
.y14_c00208{bottom:410.094398px;}
.y1a_c00208{bottom:416.215187px;}
.y47_c00208{bottom:419.417686px;}
.y27_c00208{bottom:420.427894px;}
.y1f_c00208{bottom:423.097893px;}
.y13_c00208{bottom:427.906891px;}
.y46_c00208{bottom:433.315180px;}
.ye_c00208{bottom:433.963889px;}
.y26_c00208{bottom:435.565888px;}
.y19_c00208{bottom:436.873179px;}
.y1e_c00208{bottom:443.578885px;}
.y25_c00208{bottom:446.608884px;}
.y12_c00208{bottom:448.390883px;}
.y45_c00208{bottom:452.732672px;}
.yd_c00208{bottom:453.201471px;}
.y18_c00208{bottom:454.331672px;}
.y1d_c00208{bottom:461.037378px;}
.y24_c00208{bottom:465.846376px;}
.y11_c00208{bottom:467.629875px;}
.yc_c00208{bottom:467.985375px;}
.y44_c00208{bottom:470.363755px;}
.y15_c00208{bottom:476.479800px;}
.y22_c00208{bottom:476.836200px;}
.yf_c00208{bottom:478.796400px;}
.ya_c00208{bottom:479.327400px;}
.y43_c00208{bottom:485.147659px;}
.y42_c00208{bottom:526.471593px;}
.y41_c00208{bottom:557.110280px;}
.y40_c00208{bottom:587.924768px;}
.y3f_c00208{bottom:618.561356px;}
.y3e_c00208{bottom:663.805988px;}
.y3d_c00208{bottom:709.760119px;}
.y3c_c00208{bottom:740.397307px;}
.y3b_c00208{bottom:771.213145px;}
.y3a_c00208{bottom:816.813577px;}
.y39_c00208{bottom:847.449414px;}
.y38_c00208{bottom:892.692696px;}
.y37_c00208{bottom:938.646828px;}
.y36_c00208{bottom:969.284016px;}
.y35_c00208{bottom:1000.101953px;}
.y34_c00208{bottom:1032.696490px;}
.y33_c00208{bottom:1058.171430px;}
.y8_c00208{bottom:1101.033122px;}
.y7_c00208{bottom:1125.436612px;}
.y6_c00208{bottom:1146.276554px;}
.y5_c00208{bottom:1166.762796px;}
.y4_c00208{bottom:1187.245588px;}
.h7_c00208{height:13.185000px;}
.ha_c00208{height:13.716000px;}
.h11_c00208{height:15.676200px;}
.he_c00208{height:16.032600px;}
.h14_c00208{height:18.345600px;}
.h16_c00208{height:19.949400px;}
.h15_c00208{height:20.125800px;}
.h17_c00208{height:20.131200px;}
.h13_c00208{height:20.713640px;}
.h1b_c00208{height:26.117086px;}
.h8_c00208{height:30.169822px;}
.hb_c00208{height:31.970946px;}
.h12_c00208{height:35.573307px;}
.h6_c00208{height:37.374544px;}
.h5_c00208{height:41.427963px;}
.h1c_c00208{height:42.772407px;}
.h1a_c00208{height:45.029982px;}
.h10_c00208{height:52.927558px;}
.hd_c00208{height:52.986695px;}
.h18_c00208{height:53.045832px;}
.h2_c00208{height:58.667764px;}
.h3_c00208{height:63.768724px;}
.h19_c00208{height:63.839974px;}
.h9_c00208{height:63.911224px;}
.h4_c00208{height:64.053724px;}
.hc_c00208{height:65.041013px;}
.hf_c00208{height:1249.830756px;}
.h1_c00208{height:1262.879062px;}
.h0_c00208{height:1263.000000px;}
.wa_c00208{width:4.986000px;}
.w1f_c00208{width:4.989600px;}
.w14_c00208{width:5.346000px;}
.w2_c00208{width:6.946200px;}
.w3_c00208{width:7.484400px;}
.w17_c00208{width:7.837200px;}
.w11_c00208{width:7.839000px;}
.w7_c00208{width:8.188200px;}
.we_c00208{width:8.722800px;}
.w4_c00208{width:8.726400px;}
.w6_c00208{width:8.730000px;}
.w13_c00208{width:8.904600px;}
.w1a_c00208{width:8.910000px;}
.w16_c00208{width:11.042640px;}
.w18_c00208{width:11.575800px;}
.w8_c00208{width:12.291840px;}
.w15_c00208{width:16.032600px;}
.w1e_c00208{width:16.919100px;}
.wc_c00208{width:17.636400px;}
.w21_c00208{width:17.811000px;}
.wb_c00208{width:17.989200px;}
.w19_c00208{width:18.165600px;}
.w12_c00208{width:21.731400px;}
.w9_c00208{width:21.735000px;}
.wf_c00208{width:22.086000px;}
.wd_c00208{width:22.087800px;}
.w22_c00208{width:22.266000px;}
.w1b_c00208{width:26.362800px;}
.w1d_c00208{width:30.817800px;}
.w1c_c00208{width:31.170600px;}
.w10_c00208{width:36.690480px;}
.w20_c00208{width:40.609800px;}
.w5_c00208{width:883.195846px;}
.w1_c00208{width:892.414744px;}
.w0_c00208{width:892.500000px;}
.x0_c00208{left:0.000000px;}
.xf_c00208{left:1.541954px;}
.x2e_c00208{left:3.026323px;}
.x3b_c00208{left:112.753050px;}
.x7_c00208{left:114.282348px;}
.x8_c00208{left:124.449660px;}
.x2_c00208{left:126.214330px;}
.x27_c00208{left:146.536920px;}
.x36_c00208{left:154.610984px;}
.x3c_c00208{left:166.192479px;}
.x35_c00208{left:171.296100px;}
.x20_c00208{left:173.432160px;}
.x3d_c00208{left:178.834177px;}
.x9_c00208{left:182.504271px;}
.x21_c00208{left:185.365800px;}
.x2d_c00208{left:189.642600px;}
.x28_c00208{left:191.066400px;}
.x2f_c00208{left:197.658000px;}
.x22_c00208{left:207.100800px;}
.x23_c00208{left:212.086800px;}
.x30_c00208{left:215.469000px;}
.x29_c00208{left:217.783800px;}
.x31_c00208{left:220.455000px;}
.x2a_c00208{left:225.622800px;}
.x2b_c00208{left:234.527400px;}
.x2c_c00208{left:239.515200px;}
.x4_c00208{left:252.504495px;}
.x3_c00208{left:270.140236px;}
.xa_c00208{left:278.168400px;}
.xc_c00208{left:292.941727px;}
.x37_c00208{left:333.982412px;}
.x32_c00208{left:342.471600px;}
.x6_c00208{left:346.372291px;}
.xb_c00208{left:350.831203px;}
.xd_c00208{left:354.744702px;}
.x5_c00208{left:420.296029px;}
.xe_c00208{left:431.001000px;}
.x12_c00208{left:444.419868px;}
.x38_c00208{left:450.298365px;}
.x33_c00208{left:456.294600px;}
.x24_c00208{left:461.458800px;}
.x10_c00208{left:464.011360px;}
.x11_c00208{left:472.561357px;}
.x1_c00208{left:501.875143px;}
.x13_c00208{left:512.402400px;}
.x16_c00208{left:524.502634px;}
.x18_c00208{left:538.215628px;}
.x14_c00208{left:548.367624px;}
.x15_c00208{left:551.396123px;}
.x39_c00208{left:558.419822px;}
.x25_c00208{left:559.963800px;}
.x19_c00208{left:571.349115px;}
.x17_c00208{left:580.607112px;}
.x3e_c00208{left:584.779312px;}
.x3f_c00208{left:599.563306px;}
.x1a_c00208{left:614.471400px;}
.x1c_c00208{left:626.208593px;}
.x3a_c00208{left:659.768782px;}
.x1e_c00208{left:667.001077px;}
.x34_c00208{left:671.108400px;}
.x26_c00208{left:675.385200px;}
.x1b_c00208{left:679.824572px;}
.x1f_c00208{left:693.896066px;}
.x1d_c00208{left:703.158562px;}
@media print{
.v2_c00208{vertical-align:-2.532500pt;}
.v0_c00208{vertical-align:0.000000pt;}
.v1_c00208{vertical-align:10.767516pt;}
.ls1_c00208{letter-spacing:0.000000pt;}
.ls0_c00208{letter-spacing:0.986306pt;}
.ws0_c00208{word-spacing:-15.833327pt;}
.ws1_c00208{word-spacing:-13.141541pt;}
.ws4_c00208{word-spacing:0.000000pt;}
.ws3_c00208{word-spacing:226.262676pt;}
.ws2_c00208{word-spacing:343.411563pt;}
._d_c00208{margin-left:-2.936728pt;}
._0_c00208{margin-left:-1.190721pt;}
._1_c00208{width:0.939230pt;}
._3_c00208{width:2.567205pt;}
._b_c00208{width:3.526765pt;}
._9_c00208{width:5.323275pt;}
._a_c00208{width:6.735550pt;}
._e_c00208{width:8.280133pt;}
._8_c00208{width:9.608338pt;}
._4_c00208{width:11.089143pt;}
._5_c00208{width:12.635897pt;}
._6_c00208{width:13.794048pt;}
._7_c00208{width:14.838827pt;}
._c_c00208{width:165.633943pt;}
._2_c00208{width:356.127861pt;}
.fs6_c00208{font-size:29.133108pt;}
.fs7_c00208{font-size:36.732892pt;}
.fs3_c00208{font-size:42.432943pt;}
.fs4_c00208{font-size:44.966169pt;}
.fs5_c00208{font-size:50.032780pt;}
.fs2_c00208{font-size:52.566166pt;}
.fs0_c00208{font-size:58.267177pt;}
.fs1_c00208{font-size:63.333308pt;}
.y0_c00208{bottom:0.000000pt;}
.y1_c00208{bottom:0.107500pt;}
.yb_c00208{bottom:2.848362pt;}
.y2a_c00208{bottom:2.850005pt;}
.y10_c00208{bottom:3.005695pt;}
.y23_c00208{bottom:3.322762pt;}
.y16_c00208{bottom:3.479563pt;}
.y2e_c00208{bottom:3.480953pt;}
.y2c_c00208{bottom:3.636146pt;}
.y30_c00208{bottom:3.642028pt;}
.y17_c00208{bottom:6.068128pt;}
.y9_c00208{bottom:63.856874pt;}
.y3_c00208{bottom:74.146170pt;}
.y2_c00208{bottom:74.783670pt;}
.y5a_c00208{bottom:115.211823pt;}
.y58_c00208{bottom:141.651813pt;}
.y59_c00208{bottom:148.937143pt;}
.y57_c00208{bottom:160.179806pt;}
.y56_c00208{bottom:171.574868pt;}
.y55_c00208{bottom:188.357394pt;}
.y54_c00208{bottom:201.658642pt;}
.y53_c00208{bottom:214.801144pt;}
.y32_c00208{bottom:215.595783pt;}
.y52_c00208{bottom:227.943645pt;}
.y31_c00208{bottom:239.342441pt;}
.y51_c00208{bottom:241.243640pt;}
.y50_c00208{bottom:254.384888pt;}
.y2f_c00208{bottom:260.771200pt;}
.y4f_c00208{bottom:267.528003pt;}
.y2d_c00208{bottom:279.769600pt;}
.y4e_c00208{bottom:280.823624pt;}
.y4d_c00208{bottom:293.966739pt;}
.y2b_c00208{bottom:298.774400pt;}
.y4c_c00208{bottom:307.107987pt;}
.y29_c00208{bottom:317.771200pt;}
.y4b_c00208{bottom:320.409235pt;}
.y4a_c00208{bottom:333.550483pt;}
.y1c_c00208{bottom:339.569734pt;}
.y21_c00208{bottom:345.687028pt;}
.y49_c00208{bottom:346.691731pt;}
.y1b_c00208{bottom:354.769061pt;}
.y28_c00208{bottom:358.193690pt;}
.y48_c00208{bottom:359.991726pt;}
.y20_c00208{bottom:360.887022pt;}
.y14_c00208{bottom:364.528354pt;}
.y1a_c00208{bottom:369.969055pt;}
.y47_c00208{bottom:372.815720pt;}
.y27_c00208{bottom:373.713684pt;}
.y1f_c00208{bottom:376.087016pt;}
.y13_c00208{bottom:380.361681pt;}
.y46_c00208{bottom:385.169049pt;}
.ye_c00208{bottom:385.745679pt;}
.y26_c00208{bottom:387.169678pt;}
.y19_c00208{bottom:388.331714pt;}
.y1e_c00208{bottom:394.292342pt;}
.y25_c00208{bottom:396.985674pt;}
.y12_c00208{bottom:398.569674pt;}
.y45_c00208{bottom:402.429042pt;}
.yd_c00208{bottom:402.845752pt;}
.y18_c00208{bottom:403.850375pt;}
.y1d_c00208{bottom:409.811003pt;}
.y24_c00208{bottom:414.085668pt;}
.y11_c00208{bottom:415.671000pt;}
.yc_c00208{bottom:415.987000pt;}
.y44_c00208{bottom:418.101116pt;}
.y15_c00208{bottom:423.537600pt;}
.y22_c00208{bottom:423.854400pt;}
.yf_c00208{bottom:425.596800pt;}
.ya_c00208{bottom:426.068800pt;}
.y43_c00208{bottom:431.242364pt;}
.y42_c00208{bottom:467.974749pt;}
.y41_c00208{bottom:495.209138pt;}
.y40_c00208{bottom:522.599794pt;}
.y3f_c00208{bottom:549.832316pt;}
.y3e_c00208{bottom:590.049767pt;}
.y3d_c00208{bottom:630.897884pt;}
.y3c_c00208{bottom:658.130940pt;}
.y3b_c00208{bottom:685.522795pt;}
.y3a_c00208{bottom:726.056512pt;}
.y39_c00208{bottom:753.288368pt;}
.y38_c00208{bottom:793.504619pt;}
.y37_c00208{bottom:834.352736pt;}
.y36_c00208{bottom:861.585792pt;}
.y35_c00208{bottom:888.979514pt;}
.y34_c00208{bottom:917.952436pt;}
.y33_c00208{bottom:940.596827pt;}
.y8_c00208{bottom:978.696108pt;}
.y7_c00208{bottom:1000.388100pt;}
.y6_c00208{bottom:1018.912492pt;}
.y5_c00208{bottom:1037.122485pt;}
.y4_c00208{bottom:1055.329411pt;}
.h7_c00208{height:11.720000pt;}
.ha_c00208{height:12.192000pt;}
.h11_c00208{height:13.934400pt;}
.he_c00208{height:14.251200pt;}
.h14_c00208{height:16.307200pt;}
.h16_c00208{height:17.732800pt;}
.h15_c00208{height:17.889600pt;}
.h17_c00208{height:17.894400pt;}
.h13_c00208{height:18.412124pt;}
.h1b_c00208{height:23.215188pt;}
.h8_c00208{height:26.817620pt;}
.hb_c00208{height:28.418619pt;}
.h12_c00208{height:31.620717pt;}
.h6_c00208{height:33.221817pt;}
.h5_c00208{height:36.824856pt;}
.h1c_c00208{height:38.019917pt;}
.h1a_c00208{height:40.026651pt;}
.h10_c00208{height:47.046718pt;}
.hd_c00208{height:47.099284pt;}
.h18_c00208{height:47.151851pt;}
.h2_c00208{height:52.149123pt;}
.h3_c00208{height:56.683311pt;}
.h19_c00208{height:56.746644pt;}
.h9_c00208{height:56.809977pt;}
.h4_c00208{height:56.936644pt;}
.hc_c00208{height:57.814234pt;}
.hf_c00208{height:1110.960672pt;}
.h1_c00208{height:1122.559167pt;}
.h0_c00208{height:1122.666667pt;}
.wa_c00208{width:4.432000pt;}
.w1f_c00208{width:4.435200pt;}
.w14_c00208{width:4.752000pt;}
.w2_c00208{width:6.174400pt;}
.w3_c00208{width:6.652800pt;}
.w17_c00208{width:6.966400pt;}
.w11_c00208{width:6.968000pt;}
.w7_c00208{width:7.278400pt;}
.we_c00208{width:7.753600pt;}
.w4_c00208{width:7.756800pt;}
.w6_c00208{width:7.760000pt;}
.w13_c00208{width:7.915200pt;}
.w1a_c00208{width:7.920000pt;}
.w16_c00208{width:9.815680pt;}
.w18_c00208{width:10.289600pt;}
.w8_c00208{width:10.926080pt;}
.w15_c00208{width:14.251200pt;}
.w1e_c00208{width:15.039200pt;}
.wc_c00208{width:15.676800pt;}
.w21_c00208{width:15.832000pt;}
.wb_c00208{width:15.990400pt;}
.w19_c00208{width:16.147200pt;}
.w12_c00208{width:19.316800pt;}
.w9_c00208{width:19.320000pt;}
.wf_c00208{width:19.632000pt;}
.wd_c00208{width:19.633600pt;}
.w22_c00208{width:19.792000pt;}
.w1b_c00208{width:23.433600pt;}
.w1d_c00208{width:27.393600pt;}
.w1c_c00208{width:27.707200pt;}
.w10_c00208{width:32.613760pt;}
.w20_c00208{width:36.097600pt;}
.w5_c00208{width:785.062974pt;}
.w1_c00208{width:793.257550pt;}
.w0_c00208{width:793.333333pt;}
.x0_c00208{left:0.000000pt;}
.xf_c00208{left:1.370626pt;}
.x2e_c00208{left:2.690065pt;}
.x3b_c00208{left:100.224934pt;}
.x7_c00208{left:101.584309pt;}
.x8_c00208{left:110.621920pt;}
.x2_c00208{left:112.190515pt;}
.x27_c00208{left:130.255040pt;}
.x36_c00208{left:137.431986pt;}
.x3c_c00208{left:147.726648pt;}
.x35_c00208{left:152.263200pt;}
.x20_c00208{left:154.161920pt;}
.x3d_c00208{left:158.963713pt;}
.x9_c00208{left:162.226018pt;}
.x21_c00208{left:164.769600pt;}
.x2d_c00208{left:168.571200pt;}
.x28_c00208{left:169.836800pt;}
.x2f_c00208{left:175.696000pt;}
.x22_c00208{left:184.089600pt;}
.x23_c00208{left:188.521600pt;}
.x30_c00208{left:191.528000pt;}
.x29_c00208{left:193.585600pt;}
.x31_c00208{left:195.960000pt;}
.x2a_c00208{left:200.553600pt;}
.x2b_c00208{left:208.468800pt;}
.x2c_c00208{left:212.902400pt;}
.x4_c00208{left:224.448440pt;}
.x3_c00208{left:240.124654pt;}
.xa_c00208{left:247.260800pt;}
.xc_c00208{left:260.392646pt;}
.x37_c00208{left:296.873255pt;}
.x32_c00208{left:304.419200pt;}
.x6_c00208{left:307.886481pt;}
.xb_c00208{left:311.849959pt;}
.xd_c00208{left:315.328624pt;}
.x5_c00208{left:373.596470pt;}
.xe_c00208{left:383.112000pt;}
.x12_c00208{left:395.039883pt;}
.x38_c00208{left:400.265214pt;}
.x33_c00208{left:405.595200pt;}
.x24_c00208{left:410.185600pt;}
.x10_c00208{left:412.454542pt;}
.x11_c00208{left:420.054539pt;}
.x1_c00208{left:446.111238pt;}
.x13_c00208{left:455.468800pt;}
.x16_c00208{left:466.224564pt;}
.x18_c00208{left:478.413892pt;}
.x14_c00208{left:487.437888pt;}
.x15_c00208{left:490.129887pt;}
.x39_c00208{left:496.373175pt;}
.x25_c00208{left:497.745600pt;}
.x19_c00208{left:507.865880pt;}
.x17_c00208{left:516.095210pt;}
.x3e_c00208{left:519.803833pt;}
.x3f_c00208{left:532.945161pt;}
.x1a_c00208{left:546.196800pt;}
.x1c_c00208{left:556.629861pt;}
.x3a_c00208{left:586.461139pt;}
.x1e_c00208{left:592.889846pt;}
.x34_c00208{left:596.540800pt;}
.x26_c00208{left:600.342400pt;}
.x1b_c00208{left:604.288508pt;}
.x1f_c00208{left:616.796503pt;}
.x1d_c00208{left:625.029833pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00209;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00209{transform:matrix(0.232903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232903,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232915,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239846,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.v1_c00209{vertical-align:38.474985px;}
.ls0_c00209{letter-spacing:0.000000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00209{word-spacing:-14.784234px;}
.ws2_c00209{word-spacing:0.000000px;}
.ws1_c00209{word-spacing:825.837583px;}
._5_c00209{margin-left:-6.944630px;}
._6_c00209{margin-left:-4.924733px;}
._4_c00209{margin-left:-3.886745px;}
._3_c00209{margin-left:-2.748410px;}
._0_c00209{margin-left:-1.339561px;}
._1_c00209{width:1.056634px;}
._2_c00209{width:2.100489px;}
.fc1_c00209{color:rgb(105,148,45);}
.fc0_c00209{color:rgb(35,31,32);}
.fs8_c00209{font-size:29.924628px;}
.fs5_c00209{font-size:32.774747px;}
.fs4_c00209{font-size:35.624626px;}
.fs7_c00209{font-size:38.474625px;}
.fs6_c00209{font-size:41.324503px;}
.fs2_c00209{font-size:59.136936px;}
.fs0_c00209{font-size:65.550574px;}
.fs1_c00209{font-size:71.249972px;}
.fs3_c00209{font-size:83.362767px;}
.y0_c00209{bottom:0.000000px;}
.y1_c00209{bottom:0.120938px;}
.y42_c00209{bottom:0.485156px;}
.y78_c00209{bottom:1.957649px;}
.y7f_c00209{bottom:1.962762px;}
.y51_c00209{bottom:2.134245px;}
.y18_c00209{bottom:2.134385px;}
.y13_c00209{bottom:2.313485px;}
.y2b_c00209{bottom:2.666353px;}
.y6e_c00209{bottom:2.668609px;}
.y23_c00209{bottom:2.668736px;}
.y2e_c00209{bottom:2.845753px;}
.y20_c00209{bottom:2.847236px;}
.y71_c00209{bottom:2.847409px;}
.y26_c00209{bottom:2.849636px;}
.y35_c00209{bottom:3.557096px;}
.y46_c00209{bottom:3.558325px;}
.y61_c00209{bottom:3.558388px;}
.y69_c00209{bottom:3.558403px;}
.y4a_c00209{bottom:3.558933px;}
.y65_c00209{bottom:3.560796px;}
.y41_c00209{bottom:3.561018px;}
.y4e_c00209{bottom:3.561040px;}
.y5d_c00209{bottom:3.561381px;}
.y39_c00209{bottom:3.561603px;}
.y3d_c00209{bottom:3.561911px;}
.y55_c00209{bottom:3.916548px;}
.y58_c00209{bottom:3.917748px;}
.ye_c00209{bottom:3.917887px;}
.y2f_c00209{bottom:6.826644px;}
.y9_c00209{bottom:71.838984px;}
.y3_c00209{bottom:83.414442px;}
.y2_c00209{bottom:84.131629px;}
.y8d_c00209{bottom:137.743857px;}
.y8c_c00209{bottom:163.390997px;}
.y8b_c00209{bottom:178.356491px;}
.y8a_c00209{bottom:188.689987px;}
.y89_c00209{bottom:203.830981px;}
.y87_c00209{bottom:214.692477px;}
.y86_c00209{bottom:230.724470px;}
.y88_c00209{bottom:242.478465px;}
.y85_c00209{bottom:248.003143px;}
.y84_c00209{bottom:262.787047px;}
.y83_c00209{bottom:277.570951px;}
.y82_c00209{bottom:291.286946px;}
.y81_c00209{bottom:301.615942px;}
.y7d_c00209{bottom:319.248435px;}
.y80_c00209{bottom:328.336931px;}
.y7c_c00209{bottom:335.637428px;}
.y7e_c00209{bottom:341.814600px;}
.y79_c00209{bottom:362.004418px;}
.y7b_c00209{bottom:362.535417px;}
.y7a_c00209{bottom:363.247917px;}
.y77_c00209{bottom:375.127200px;}
.y74_c00209{bottom:393.886905px;}
.y76_c00209{bottom:394.776405px;}
.y75_c00209{bottom:395.133404px;}
.y73_c00209{bottom:425.410892px;}
.y6c_c00209{bottom:455.694380px;}
.y72_c00209{bottom:462.285378px;}
.y6f_c00209{bottom:462.819377px;}
.y6b_c00209{bottom:472.260374px;}
.y70_c00209{bottom:475.232400px;}
.y6d_c00209{bottom:475.945200px;}
.y68_c00209{bottom:488.948400px;}
.y67_c00209{bottom:491.496366px;}
.y6a_c00209{bottom:491.673366px;}
.y64_c00209{bottom:507.294000px;}
.y63_c00209{bottom:510.019858px;}
.y66_c00209{bottom:510.198358px;}
.y60_c00209{bottom:526.001400px;}
.y5f_c00209{bottom:528.724851px;}
.y62_c00209{bottom:528.903351px;}
.y5c_c00209{bottom:544.523400px;}
.y5b_c00209{bottom:546.710125px;}
.y5e_c00209{bottom:547.429843px;}
.y5a_c00209{bottom:571.464615px;}
.y53_c00209{bottom:604.604121px;}
.y59_c00209{bottom:613.682099px;}
.y56_c00209{bottom:614.401817px;}
.y52_c00209{bottom:621.169814px;}
.y57_c00209{bottom:626.814000px;}
.y54_c00209{bottom:627.172200px;}
.y50_c00209{bottom:634.653000px;}
.y4d_c00209{bottom:646.054200px;}
.y4c_c00209{bottom:648.600303px;}
.y4f_c00209{bottom:648.780303px;}
.y49_c00209{bottom:664.579800px;}
.y48_c00209{bottom:667.126796px;}
.y4b_c00209{bottom:667.302296px;}
.y45_c00209{bottom:682.925400px;}
.y44_c00209{bottom:685.287570px;}
.y47_c00209{bottom:685.830288px;}
.y40_c00209{bottom:701.449200px;}
.y43_c00209{bottom:703.991062px;}
.y3f_c00209{bottom:704.175281px;}
.y3c_c00209{bottom:719.974800px;}
.y3b_c00209{bottom:722.701773px;}
.y3e_c00209{bottom:722.881773px;}
.y38_c00209{bottom:738.498600px;}
.y37_c00209{bottom:741.223766px;}
.y3a_c00209{bottom:741.403766px;}
.y33_c00209{bottom:753.401552px;}
.y34_c00209{bottom:757.380600px;}
.y36_c00209{bottom:760.284258px;}
.y32_c00209{bottom:784.571539px;}
.y31_c00209{bottom:815.741527px;}
.y29_c00209{bottom:842.934375px;}
.y30_c00209{bottom:846.025015px;}
.y2c_c00209{bottom:853.090721px;}
.y28_c00209{bottom:859.855719px;}
.y2d_c00209{bottom:865.679400px;}
.y2a_c00209{bottom:866.035800px;}
.y21_c00209{bottom:893.167705px;}
.y27_c00209{bottom:893.701705px;}
.y24_c00209{bottom:894.057205px;}
.y1f_c00209{bottom:905.936400px;}
.y25_c00209{bottom:906.291000px;}
.y22_c00209{bottom:906.827400px;}
.y1e_c00209{bottom:933.598689px;}
.y1d_c00209{bottom:963.877677px;}
.y1c_c00209{bottom:979.197171px;}
.y11_c00209{bottom:981.868670px;}
.y1b_c00209{bottom:989.888866px;}
.y16_c00209{bottom:992.201056px;}
.y10_c00209{bottom:998.968663px;}
.y1a_c00209{bottom:1006.276660px;}
.y15_c00209{bottom:1008.766749px;}
.yf_c00209{bottom:1016.071656px;}
.y19_c00209{bottom:1022.121154px;}
.y14_c00209{bottom:1023.550653px;}
.yd_c00209{bottom:1028.662200px;}
.y12_c00209{bottom:1035.075600px;}
.y17_c00209{bottom:1035.610200px;}
.yc_c00209{bottom:1049.557643px;}
.yb_c00209{bottom:1069.686675px;}
.ya_c00209{bottom:1084.470579px;}
.y8_c00209{bottom:1101.033122px;}
.y7_c00209{bottom:1125.436612px;}
.y6_c00209{bottom:1146.276554px;}
.y5_c00209{bottom:1166.762796px;}
.y4_c00209{bottom:1187.245588px;}
.h21_c00209{height:7.837200px;}
.h24_c00209{height:8.019000px;}
.h1b_c00209{height:8.902800px;}
.hc_c00209{height:8.906400px;}
.ha_c00209{height:9.441000px;}
.h11_c00209{height:10.684800px;}
.h1f_c00209{height:10.688400px;}
.h14_c00209{height:10.864800px;}
.h13_c00209{height:11.221200px;}
.h20_c00209{height:11.401200px;}
.he_c00209{height:11.575800px;}
.h8_c00209{height:15.854400px;}
.h1e_c00209{height:16.205400px;}
.h1a_c00209{height:16.207200px;}
.h16_c00209{height:16.209000px;}
.h1c_c00209{height:16.383600px;}
.h18_c00209{height:16.385400px;}
.h17_c00209{height:16.387200px;}
.h1d_c00209{height:16.741800px;}
.h22_c00209{height:18.912365px;}
.hd_c00209{height:20.713640px;}
.hb_c00209{height:22.514763px;}
.h12_c00209{height:24.315963px;}
.hf_c00209{height:26.117086px;}
.h6_c00209{height:37.374544px;}
.h5_c00209{height:41.427963px;}
.h7_c00209{height:52.685269px;}
.h25_c00209{height:52.927558px;}
.h10_c00209{height:52.986695px;}
.h9_c00209{height:53.045832px;}
.h26_c00209{height:53.164106px;}
.h2_c00209{height:58.667764px;}
.h3_c00209{height:63.768724px;}
.h27_c00209{height:63.839974px;}
.h4_c00209{height:64.053724px;}
.h23_c00209{height:91.520817px;}
.h15_c00209{height:1249.830756px;}
.h19_c00209{height:1262.514600px;}
.h1_c00209{height:1262.879062px;}
.h0_c00209{height:1263.000000px;}
.w12_c00209{width:4.453200px;}
.w11_c00209{width:4.453560px;}
.wf_c00209{width:4.810860px;}
.w4_c00209{width:4.811400px;}
.w3_c00209{width:5.169600px;}
.w6_c00209{width:5.700600px;}
.w7_c00209{width:6.055200px;}
.w5_c00209{width:6.058080px;}
.we_c00209{width:7.124400px;}
.w9_c00209{width:7.126200px;}
.wb_c00209{width:7.128000px;}
.w10_c00209{width:8.728200px;}
.w2_c00209{width:8.728560px;}
.wa_c00209{width:10.863000px;}
.wd_c00209{width:10.866600px;}
.w8_c00209{width:883.195846px;}
.wc_c00209{width:892.161000px;}
.w1_c00209{width:892.414744px;}
.w0_c00209{width:892.500000px;}
.x0_c00209{left:0.000000px;}
.x1c_c00209{left:1.541954px;}
.x7_c00209{left:114.282348px;}
.x2_c00209{left:126.214330px;}
.x22_c00209{left:128.784294px;}
.x17_c00209{left:130.313592px;}
.x25_c00209{left:131.561741px;}
.x2f_c00209{left:146.524085px;}
.xa_c00209{left:151.332783px;}
.x30_c00209{left:180.366772px;}
.x8_c00209{left:181.436271px;}
.x2d_c00209{left:238.970248px;}
.x19_c00209{left:247.341745px;}
.x4_c00209{left:252.504495px;}
.x9_c00209{left:255.536242px;}
.x3_c00209{left:270.140236px;}
.x1a_c00209{left:284.388730px;}
.x1b_c00209{left:292.761534px;}
.xb_c00209{left:308.793720px;}
.x2e_c00209{left:322.154215px;}
.x6_c00209{left:346.372291px;}
.x31_c00209{left:353.504202px;}
.xc_c00209{left:359.215200px;}
.x20_c00209{left:360.878901px;}
.x2b_c00209{left:371.994226px;}
.x1e_c00209{left:403.270384px;}
.x15_c00209{left:407.649681px;}
.x5_c00209{left:420.296029px;}
.xd_c00209{left:423.856856px;}
.x32_c00209{left:438.824168px;}
.x2a_c00209{left:452.360163px;}
.x28_c00209{left:456.471000px;}
.x18_c00209{left:458.772660px;}
.x23_c00209{left:461.813400px;}
.x26_c00209{left:465.377400px;}
.x29_c00209{left:467.334000px;}
.x1f_c00209{left:469.531358px;}
.x16_c00209{left:474.090654px;}
.x2c_c00209{left:475.479185px;}
.x21_c00209{left:483.604352px;}
.x1_c00209{left:501.875143px;}
.xe_c00209{left:569.757600px;}
.x10_c00209{left:578.648112px;}
.x13_c00209{left:619.085096px;}
.x12_c00209{left:647.403531px;}
.x1d_c00209{left:648.905786px;}
.xf_c00209{left:651.681583px;}
.x27_c00209{left:655.065582px;}
.x24_c00209{left:660.585580px;}
.x14_c00209{left:681.249571px;}
.x11_c00209{left:727.917553px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.v1_c00209{vertical-align:34.199986pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:-13.141541pt;}
.ws2_c00209{word-spacing:0.000000pt;}
.ws1_c00209{word-spacing:734.077851pt;}
._5_c00209{margin-left:-6.173004pt;}
._6_c00209{margin-left:-4.377541pt;}
._4_c00209{margin-left:-3.454885pt;}
._3_c00209{margin-left:-2.443031pt;}
._0_c00209{margin-left:-1.190721pt;}
._1_c00209{width:0.939230pt;}
._2_c00209{width:1.867102pt;}
.fs8_c00209{font-size:26.599669pt;}
.fs5_c00209{font-size:29.133108pt;}
.fs4_c00209{font-size:31.666334pt;}
.fs7_c00209{font-size:34.199666pt;}
.fs6_c00209{font-size:36.732892pt;}
.fs2_c00209{font-size:52.566166pt;}
.fs0_c00209{font-size:58.267177pt;}
.fs1_c00209{font-size:63.333308pt;}
.fs3_c00209{font-size:74.100237pt;}
.y0_c00209{bottom:0.000000pt;}
.y1_c00209{bottom:0.107500pt;}
.y42_c00209{bottom:0.431250pt;}
.y78_c00209{bottom:1.740133pt;}
.y7f_c00209{bottom:1.744678pt;}
.y51_c00209{bottom:1.897107pt;}
.y18_c00209{bottom:1.897231pt;}
.y13_c00209{bottom:2.056431pt;}
.y2b_c00209{bottom:2.370091pt;}
.y6e_c00209{bottom:2.372096pt;}
.y23_c00209{bottom:2.372210pt;}
.y2e_c00209{bottom:2.529558pt;}
.y20_c00209{bottom:2.530877pt;}
.y71_c00209{bottom:2.531030pt;}
.y26_c00209{bottom:2.533010pt;}
.y35_c00209{bottom:3.161863pt;}
.y46_c00209{bottom:3.162956pt;}
.y61_c00209{bottom:3.163012pt;}
.y69_c00209{bottom:3.163025pt;}
.y4a_c00209{bottom:3.163496pt;}
.y65_c00209{bottom:3.165152pt;}
.y41_c00209{bottom:3.165349pt;}
.y4e_c00209{bottom:3.165369pt;}
.y5d_c00209{bottom:3.165672pt;}
.y39_c00209{bottom:3.165869pt;}
.y3d_c00209{bottom:3.166143pt;}
.y55_c00209{bottom:3.481376pt;}
.y58_c00209{bottom:3.482442pt;}
.ye_c00209{bottom:3.482566pt;}
.y2f_c00209{bottom:6.068128pt;}
.y9_c00209{bottom:63.856874pt;}
.y3_c00209{bottom:74.146170pt;}
.y2_c00209{bottom:74.783670pt;}
.y8d_c00209{bottom:122.438984pt;}
.y8c_c00209{bottom:145.236442pt;}
.y8b_c00209{bottom:158.539103pt;}
.y8a_c00209{bottom:167.724433pt;}
.y89_c00209{bottom:181.183094pt;}
.y87_c00209{bottom:190.837757pt;}
.y86_c00209{bottom:205.088418pt;}
.y88_c00209{bottom:215.536414pt;}
.y85_c00209{bottom:220.447238pt;}
.y84_c00209{bottom:233.588487pt;}
.y83_c00209{bottom:246.729735pt;}
.y82_c00209{bottom:258.921730pt;}
.y81_c00209{bottom:268.103059pt;}
.y7d_c00209{bottom:283.776386pt;}
.y80_c00209{bottom:291.855050pt;}
.y7c_c00209{bottom:298.344381pt;}
.y7e_c00209{bottom:303.835200pt;}
.y79_c00209{bottom:321.781705pt;}
.y7b_c00209{bottom:322.253704pt;}
.y7a_c00209{bottom:322.887037pt;}
.y77_c00209{bottom:333.446400pt;}
.y74_c00209{bottom:350.121693pt;}
.y76_c00209{bottom:350.912360pt;}
.y75_c00209{bottom:351.229693pt;}
.y73_c00209{bottom:378.143015pt;}
.y6c_c00209{bottom:405.061671pt;}
.y72_c00209{bottom:410.920336pt;}
.y6f_c00209{bottom:411.395002pt;}
.y6b_c00209{bottom:419.786999pt;}
.y70_c00209{bottom:422.428800pt;}
.y6d_c00209{bottom:423.062400pt;}
.y68_c00209{bottom:434.620800pt;}
.y67_c00209{bottom:436.885659pt;}
.y6a_c00209{bottom:437.042992pt;}
.y64_c00209{bottom:450.928000pt;}
.y63_c00209{bottom:453.350985pt;}
.y66_c00209{bottom:453.509652pt;}
.y60_c00209{bottom:467.556800pt;}
.y5f_c00209{bottom:469.977645pt;}
.y62_c00209{bottom:470.136312pt;}
.y5c_c00209{bottom:484.020800pt;}
.y5b_c00209{bottom:485.964556pt;}
.y5e_c00209{bottom:486.604305pt;}
.y5a_c00209{bottom:507.968547pt;}
.y53_c00209{bottom:537.425885pt;}
.y59_c00209{bottom:545.495199pt;}
.y56_c00209{bottom:546.134948pt;}
.y52_c00209{bottom:552.150946pt;}
.y57_c00209{bottom:557.168000pt;}
.y54_c00209{bottom:557.486400pt;}
.y50_c00209{bottom:564.136000pt;}
.y4d_c00209{bottom:574.270400pt;}
.y4c_c00209{bottom:576.533603pt;}
.y4f_c00209{bottom:576.693603pt;}
.y49_c00209{bottom:590.737600pt;}
.y48_c00209{bottom:593.001596pt;}
.y4b_c00209{bottom:593.157596pt;}
.y45_c00209{bottom:607.044800pt;}
.y44_c00209{bottom:609.144507pt;}
.y47_c00209{bottom:609.626923pt;}
.y40_c00209{bottom:623.510400pt;}
.y43_c00209{bottom:625.769833pt;}
.y3f_c00209{bottom:625.933583pt;}
.y3c_c00209{bottom:639.977600pt;}
.y3b_c00209{bottom:642.401576pt;}
.y3e_c00209{bottom:642.561576pt;}
.y38_c00209{bottom:656.443200pt;}
.y37_c00209{bottom:658.865570pt;}
.y3a_c00209{bottom:659.025570pt;}
.y33_c00209{bottom:669.690268pt;}
.y34_c00209{bottom:673.227200pt;}
.y36_c00209{bottom:675.808230pt;}
.y32_c00209{bottom:697.396924pt;}
.y31_c00209{bottom:725.103580pt;}
.y29_c00209{bottom:749.275000pt;}
.y30_c00209{bottom:752.022235pt;}
.y2c_c00209{bottom:758.302863pt;}
.y28_c00209{bottom:764.316194pt;}
.y2d_c00209{bottom:769.492800pt;}
.y2a_c00209{bottom:769.809600pt;}
.y21_c00209{bottom:793.926849pt;}
.y27_c00209{bottom:794.401516pt;}
.y24_c00209{bottom:794.717515pt;}
.y1f_c00209{bottom:805.276800pt;}
.y25_c00209{bottom:805.592000pt;}
.y22_c00209{bottom:806.068800pt;}
.y1e_c00209{bottom:829.865501pt;}
.y1d_c00209{bottom:856.780157pt;}
.y1c_c00209{bottom:870.397485pt;}
.y11_c00209{bottom:872.772151pt;}
.y1b_c00209{bottom:879.901215pt;}
.y16_c00209{bottom:881.956494pt;}
.y10_c00209{bottom:887.972145pt;}
.y1a_c00209{bottom:894.468142pt;}
.y15_c00209{bottom:896.681555pt;}
.yf_c00209{bottom:903.174805pt;}
.y19_c00209{bottom:908.552137pt;}
.y14_c00209{bottom:909.822803pt;}
.yd_c00209{bottom:914.366400pt;}
.y12_c00209{bottom:920.067200pt;}
.y17_c00209{bottom:920.542400pt;}
.yc_c00209{bottom:932.940127pt;}
.yb_c00209{bottom:950.832600pt;}
.ya_c00209{bottom:963.973848pt;}
.y8_c00209{bottom:978.696108pt;}
.y7_c00209{bottom:1000.388100pt;}
.y6_c00209{bottom:1018.912492pt;}
.y5_c00209{bottom:1037.122485pt;}
.y4_c00209{bottom:1055.329411pt;}
.h21_c00209{height:6.966400pt;}
.h24_c00209{height:7.128000pt;}
.h1b_c00209{height:7.913600pt;}
.hc_c00209{height:7.916800pt;}
.ha_c00209{height:8.392000pt;}
.h11_c00209{height:9.497600pt;}
.h1f_c00209{height:9.500800pt;}
.h14_c00209{height:9.657600pt;}
.h13_c00209{height:9.974400pt;}
.h20_c00209{height:10.134400pt;}
.he_c00209{height:10.289600pt;}
.h8_c00209{height:14.092800pt;}
.h1e_c00209{height:14.404800pt;}
.h1a_c00209{height:14.406400pt;}
.h16_c00209{height:14.408000pt;}
.h1c_c00209{height:14.563200pt;}
.h18_c00209{height:14.564800pt;}
.h17_c00209{height:14.566400pt;}
.h1d_c00209{height:14.881600pt;}
.h22_c00209{height:16.810991pt;}
.hd_c00209{height:18.412124pt;}
.hb_c00209{height:20.013123pt;}
.h12_c00209{height:21.614189pt;}
.hf_c00209{height:23.215188pt;}
.h6_c00209{height:33.221817pt;}
.h5_c00209{height:36.824856pt;}
.h7_c00209{height:46.831350pt;}
.h25_c00209{height:47.046718pt;}
.h10_c00209{height:47.099284pt;}
.h9_c00209{height:47.151851pt;}
.h26_c00209{height:47.256983pt;}
.h2_c00209{height:52.149123pt;}
.h3_c00209{height:56.683311pt;}
.h27_c00209{height:56.746644pt;}
.h4_c00209{height:56.936644pt;}
.h23_c00209{height:81.351837pt;}
.h15_c00209{height:1110.960672pt;}
.h19_c00209{height:1122.235200pt;}
.h1_c00209{height:1122.559167pt;}
.h0_c00209{height:1122.666667pt;}
.w12_c00209{width:3.958400pt;}
.w11_c00209{width:3.958720pt;}
.wf_c00209{width:4.276320pt;}
.w4_c00209{width:4.276800pt;}
.w3_c00209{width:4.595200pt;}
.w6_c00209{width:5.067200pt;}
.w7_c00209{width:5.382400pt;}
.w5_c00209{width:5.384960pt;}
.we_c00209{width:6.332800pt;}
.w9_c00209{width:6.334400pt;}
.wb_c00209{width:6.336000pt;}
.w10_c00209{width:7.758400pt;}
.w2_c00209{width:7.758720pt;}
.wa_c00209{width:9.656000pt;}
.wd_c00209{width:9.659200pt;}
.w8_c00209{width:785.062974pt;}
.wc_c00209{width:793.032000pt;}
.w1_c00209{width:793.257550pt;}
.w0_c00209{width:793.333333pt;}
.x0_c00209{left:0.000000pt;}
.x1c_c00209{left:1.370626pt;}
.x7_c00209{left:101.584309pt;}
.x2_c00209{left:112.190515pt;}
.x22_c00209{left:114.474928pt;}
.x17_c00209{left:115.834304pt;}
.x25_c00209{left:116.943770pt;}
.x2f_c00209{left:130.243631pt;}
.xa_c00209{left:134.518030pt;}
.x30_c00209{left:160.326019pt;}
.x8_c00209{left:161.276685pt;}
.x2d_c00209{left:212.417998pt;}
.x19_c00209{left:219.859329pt;}
.x4_c00209{left:224.448440pt;}
.x9_c00209{left:227.143326pt;}
.x3_c00209{left:240.124654pt;}
.x1a_c00209{left:252.789982pt;}
.x1b_c00209{left:260.232475pt;}
.xb_c00209{left:274.483307pt;}
.x2e_c00209{left:286.359302pt;}
.x6_c00209{left:307.886481pt;}
.x31_c00209{left:314.225958pt;}
.xc_c00209{left:319.302400pt;}
.x20_c00209{left:320.781246pt;}
.x2b_c00209{left:330.661534pt;}
.x1e_c00209{left:358.462564pt;}
.x15_c00209{left:362.355272pt;}
.x5_c00209{left:373.596470pt;}
.xd_c00209{left:376.761650pt;}
.x32_c00209{left:390.065927pt;}
.x2a_c00209{left:402.097922pt;}
.x28_c00209{left:405.752000pt;}
.x18_c00209{left:407.797920pt;}
.x23_c00209{left:410.500800pt;}
.x26_c00209{left:413.668800pt;}
.x29_c00209{left:415.408000pt;}
.x1f_c00209{left:417.361207pt;}
.x16_c00209{left:421.413915pt;}
.x2c_c00209{left:422.648164pt;}
.x21_c00209{left:429.870535pt;}
.x1_c00209{left:446.111238pt;}
.xe_c00209{left:506.451200pt;}
.x10_c00209{left:514.353878pt;}
.x13_c00209{left:550.297863pt;}
.x12_c00209{left:575.469806pt;}
.x1d_c00209{left:576.805143pt;}
.xf_c00209{left:579.272518pt;}
.x27_c00209{left:582.280517pt;}
.x24_c00209{left:587.187182pt;}
.x14_c00209{left:605.555174pt;}
.x11_c00209{left:647.037825pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00210;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00210{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m9_c00210{transform:matrix(0.242514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242514,0.000000,0.000000,0.250000,0,0);}
.m3_c00210{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v1_c00210{vertical-align:-2.843435px;}
.v0_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00210{word-spacing:-17.812493px;}
.ws0_c00210{word-spacing:-16.387643px;}
.ws1_c00210{word-spacing:-14.784234px;}
.wsd_c00210{word-spacing:0.000000px;}
.ws5_c00210{word-spacing:332.733381px;}
.ws4_c00210{word-spacing:332.735746px;}
.ws7_c00210{word-spacing:333.476141px;}
.wsa_c00210{word-spacing:340.898418px;}
.ws6_c00210{word-spacing:345.329548px;}
.wsb_c00210{word-spacing:348.292309px;}
.wsc_c00210{word-spacing:348.317738px;}
.ws8_c00210{word-spacing:353.480984px;}
.ws9_c00210{word-spacing:355.701576px;}
.ws3_c00210{word-spacing:360.884928px;}
._5_c00210{margin-left:-3.630560px;}
._3_c00210{margin-left:-2.560345px;}
._0_c00210{margin-left:-1.339561px;}
._1_c00210{width:1.056813px;}
._2_c00210{width:2.087741px;}
._4_c00210{width:6.833495px;}
._d_c00210{width:8.551466px;}
._a_c00210{width:314.589578px;}
._8_c00210{width:353.676215px;}
._b_c00210{width:355.158553px;}
._9_c00210{width:360.835359px;}
._10_c00210{width:368.745111px;}
._c_c00210{width:370.692474px;}
._f_c00210{width:376.182545px;}
._11_c00210{width:378.616878px;}
._e_c00210{width:382.108066px;}
._7_c00210{width:384.345100px;}
._6_c00210{width:386.851779px;}
.fc1_c00210{color:rgb(105,148,45);}
.fc0_c00210{color:rgb(35,31,32);}
.fs7_c00210{font-size:29.924628px;}
.fs4_c00210{font-size:32.774747px;}
.fs5_c00210{font-size:38.474625px;}
.fs2_c00210{font-size:59.136936px;}
.fs0_c00210{font-size:65.550574px;}
.fs1_c00210{font-size:71.249972px;}
.fs3_c00210{font-size:76.949969px;}
.fs6_c00210{font-size:83.362767px;}
.y0_c00210{bottom:0.000000px;}
.y1_c00210{bottom:0.120938px;}
.y70_c00210{bottom:0.242579px;}
.y7e_c00210{bottom:1.955921px;}
.y6e_c00210{bottom:1.957967px;}
.y54_c00210{bottom:3.561083px;}
.y3f_c00210{bottom:3.915632px;}
.y48_c00210{bottom:3.915634px;}
.y1e_c00210{bottom:3.916699px;}
.y14_c00210{bottom:3.918198px;}
.y2f_c00210{bottom:3.919447px;}
.y77_c00210{bottom:4.452792px;}
.y83_c00210{bottom:4.454578px;}
.y64_c00210{bottom:4.455735px;}
.y3a_c00210{bottom:4.805133px;}
.yf_c00210{bottom:4.807699px;}
.y15_c00210{bottom:6.826644px;}
.y9_c00210{bottom:71.838984px;}
.y3_c00210{bottom:83.414442px;}
.y2_c00210{bottom:84.131629px;}
.y84_c00210{bottom:130.084410px;}
.y82_c00210{bottom:149.620860px;}
.y81_c00210{bottom:152.172502px;}
.y80_c00210{bottom:156.095000px;}
.y7c_c00210{bottom:174.261793px;}
.y7f_c00210{bottom:183.342489px;}
.y7b_c00210{bottom:191.005986px;}
.y7d_c00210{bottom:196.470000px;}
.y79_c00210{bottom:216.118976px;}
.y7a_c00210{bottom:217.009976px;}
.y78_c00210{bottom:243.193965px;}
.y76_c00210{bottom:265.044600px;}
.y75_c00210{bottom:267.594455px;}
.y74_c00210{bottom:271.513954px;}
.y72_c00210{bottom:289.680447px;}
.y73_c00210{bottom:290.037446px;}
.y6c_c00210{bottom:307.852189px;}
.y71_c00210{bottom:316.996794px;}
.y6f_c00210{bottom:317.118436px;}
.y6b_c00210{bottom:324.951432px;}
.y6d_c00210{bottom:330.242400px;}
.y69_c00210{bottom:343.479425px;}
.y6a_c00210{bottom:343.656425px;}
.y67_c00210{bottom:361.824418px;}
.y68_c00210{bottom:362.004418px;}
.y66_c00210{bottom:388.363907px;}
.y62_c00210{bottom:404.101192px;}
.y61_c00210{bottom:408.017690px;}
.y63_c00210{bottom:408.252600px;}
.y65_c00210{bottom:410.806898px;}
.y5f_c00210{bottom:426.188683px;}
.y60_c00210{bottom:426.365683px;}
.y5d_c00210{bottom:444.535175px;}
.y5e_c00210{bottom:444.715175px;}
.y5b_c00210{bottom:462.884668px;}
.y5c_c00210{bottom:463.061668px;}
.y59_c00210{bottom:481.052661px;}
.y5a_c00210{bottom:481.229661px;}
.y57_c00210{bottom:499.397654px;}
.y58_c00210{bottom:499.574653px;}
.y55_c00210{bottom:517.741146px;}
.y56_c00210{bottom:518.098146px;}
.y53_c00210{bottom:539.890200px;}
.y52_c00210{bottom:542.797845px;}
.y51_c00210{bottom:569.341835px;}
.y46_c00210{bottom:591.310117px;}
.y4d_c00210{bottom:596.236824px;}
.y50_c00210{bottom:611.196318px;}
.y3d_c00210{bottom:614.935816px;}
.y45_c00210{bottom:616.781607px;}
.y4c_c00210{bottom:621.882314px;}
.y41_c00210{bottom:624.614603px;}
.y44_c00210{bottom:631.741101px;}
.y3c_c00210{bottom:632.035060px;}
.y4b_c00210{bottom:636.844808px;}
.y43_c00210{bottom:641.894597px;}
.y40_c00210{bottom:642.608596px;}
.y4e_c00210{bottom:647.176804px;}
.y49_c00210{bottom:647.353804px;}
.y3b_c00210{bottom:649.134303px;}
.y4f_c00210{bottom:650.914802px;}
.y4a_c00210{bottom:651.094802px;}
.y42_c00210{bottom:658.816090px;}
.y47_c00210{bottom:660.837600px;}
.y39_c00210{bottom:661.548600px;}
.y3e_c00210{bottom:665.112600px;}
.y38_c00210{bottom:695.803784px;}
.y37_c00210{bottom:716.821776px;}
.y36_c00210{bottom:736.060468px;}
.y35_c00210{bottom:751.558762px;}
.y2d_c00210{bottom:778.628951px;}
.y2c_c00210{bottom:804.101041px;}
.y32_c00210{bottom:828.864231px;}
.y34_c00210{bottom:829.575231px;}
.y2b_c00210{bottom:829.750281px;}
.y31_c00210{bottom:846.853724px;}
.y33_c00210{bottom:847.210724px;}
.y2a_c00210{bottom:855.223720px;}
.y30_c00210{bottom:866.982216px;}
.y29_c00210{bottom:870.187714px;}
.y2e_c00210{bottom:877.966200px;}
.y28_c00210{bottom:880.516710px;}
.y27_c00210{bottom:906.702200px;}
.y1c_c00210{bottom:928.494982px;}
.y23_c00210{bottom:933.598689px;}
.y26_c00210{bottom:948.561183px;}
.y12_c00210{bottom:952.479181px;}
.y1b_c00210{bottom:954.146472px;}
.y22_c00210{bottom:959.073179px;}
.y17_c00210{bottom:961.983968px;}
.y1a_c00210{bottom:969.110466px;}
.y11_c00210{bottom:969.401425px;}
.y21_c00210{bottom:974.034173px;}
.y19_c00210{bottom:979.440961px;}
.y16_c00210{bottom:979.617961px;}
.y24_c00210{bottom:984.364669px;}
.y1f_c00210{bottom:984.541669px;}
.y10_c00210{bottom:986.500668px;}
.y25_c00210{bottom:988.105667px;}
.y20_c00210{bottom:988.284167px;}
.y18_c00210{bottom:996.183955px;}
.y1d_c00210{bottom:998.024400px;}
.ye_c00210{bottom:998.915400px;}
.y13_c00210{bottom:1002.299400px;}
.yd_c00210{bottom:1033.171649px;}
.yc_c00210{bottom:1053.478281px;}
.yb_c00210{bottom:1069.686675px;}
.ya_c00210{bottom:1084.470579px;}
.y8_c00210{bottom:1101.033122px;}
.y7_c00210{bottom:1125.436612px;}
.y6_c00210{bottom:1146.276554px;}
.y5_c00210{bottom:1166.762796px;}
.y4_c00210{bottom:1187.245588px;}
.h1e_c00210{height:8.546400px;}
.h1a_c00210{height:8.550000px;}
.h16_c00210{height:15.850800px;}
.ha_c00210{height:15.854400px;}
.h12_c00210{height:15.858000px;}
.h18_c00210{height:16.565400px;}
.h1b_c00210{height:18.912365px;}
.h7_c00210{height:19.238400px;}
.h15_c00210{height:19.414800px;}
.h1f_c00210{height:19.951020px;}
.h1d_c00210{height:19.951200px;}
.h19_c00210{height:19.956600px;}
.h17_c00210{height:20.125800px;}
.hf_c00210{height:20.129400px;}
.he_c00210{height:20.713640px;}
.h11_c00210{height:34.473264px;}
.h6_c00210{height:37.374544px;}
.h5_c00210{height:41.427963px;}
.h8_c00210{height:45.029982px;}
.hc_c00210{height:48.632381px;}
.h13_c00210{height:52.685269px;}
.h14_c00210{height:52.927558px;}
.h9_c00210{height:52.986695px;}
.hd_c00210{height:53.045832px;}
.h2_c00210{height:58.667764px;}
.h3_c00210{height:63.768724px;}
.h10_c00210{height:63.911224px;}
.h4_c00210{height:64.053724px;}
.hb_c00210{height:1249.830756px;}
.h1c_c00210{height:1262.757421px;}
.h1_c00210{height:1262.879062px;}
.h0_c00210{height:1263.000000px;}
.w12_c00210{width:4.451400px;}
.w10_c00210{width:4.453200px;}
.w11_c00210{width:4.455000px;}
.we_c00210{width:7.297200px;}
.wb_c00210{width:7.302600px;}
.wd_c00210{width:7.484400px;}
.wf_c00210{width:8.191800px;}
.w3_c00210{width:8.726400px;}
.w8_c00210{width:8.728200px;}
.w7_c00210{width:8.731800px;}
.w9_c00210{width:8.733600px;}
.wa_c00210{width:9.792000px;}
.w5_c00210{width:9.797400px;}
.w2_c00210{width:10.509660px;}
.w6_c00210{width:12.646800px;}
.wc_c00210{width:18.523800px;}
.w4_c00210{width:883.195846px;}
.w13_c00210{width:892.330200px;}
.w1_c00210{width:892.414744px;}
.w0_c00210{width:892.500000px;}
.x0_c00210{left:0.000000px;}
.x10_c00210{left:1.541954px;}
.x7_c00210{left:111.432649px;}
.xa_c00210{left:118.926540px;}
.x2_c00210{left:126.214330px;}
.xd_c00210{left:128.709792px;}
.x45_c00210{left:129.854544px;}
.x36_c00210{left:131.561741px;}
.x52_c00210{left:146.345585px;}
.x49_c00210{left:151.048485px;}
.x50_c00210{left:152.577783px;}
.xb_c00210{left:181.080771px;}
.x34_c00210{left:184.106270px;}
.xc_c00210{left:194.082944px;}
.x35_c00210{left:197.108443px;}
.x53_c00210{left:239.504248px;}
.x4_c00210{left:249.654346px;}
.x3_c00210{left:267.288737px;}
.xe_c00210{left:278.693232px;}
.x37_c00210{left:281.538731px;}
.x11_c00210{left:306.016423px;}
.xf_c00210{left:307.560600px;}
.x39_c00210{left:311.716421px;}
.x38_c00210{left:313.257600px;}
.x51_c00210{left:320.727715px;}
.x12_c00210{left:326.498915px;}
.x3a_c00210{left:330.775413px;}
.x2b_c00210{left:336.224209px;}
.x6_c00210{left:343.521992px;}
.x4a_c00210{left:350.726905px;}
.x2d_c00210{left:354.038202px;}
.x46_c00210{left:356.782403px;}
.x4d_c00210{left:358.311700px;}
.x48_c00210{left:359.809402px;}
.x3f_c00210{left:361.338699px;}
.x4b_c00210{left:371.135195px;}
.x32_c00210{left:380.399192px;}
.x8_c00210{left:384.140190px;}
.x16_c00210{left:413.248380px;}
.x2e_c00210{left:414.788400px;}
.x3c_c00210{left:416.098379px;}
.x5_c00210{left:417.442881px;}
.x17_c00210{left:423.932876px;}
.x3d_c00210{left:425.894875px;}
.x14_c00210{left:432.131873px;}
.x19_c00210{left:433.376872px;}
.x3e_c00210{left:435.511371px;}
.x2f_c00210{left:459.840660px;}
.x4e_c00210{left:461.801159px;}
.x13_c00210{left:467.038359px;}
.x3b_c00210{left:468.997358px;}
.x41_c00210{left:471.078000px;}
.x4c_c00210{left:474.447654px;}
.x2c_c00210{left:480.684651px;}
.x40_c00210{left:484.064150px;}
.x33_c00210{left:490.655147px;}
.x1a_c00210{left:492.158849px;}
.x9_c00210{left:494.399146px;}
.x15_c00210{left:496.609347px;}
.x18_c00210{left:499.454846px;}
.x1_c00210{left:501.875143px;}
.x1f_c00210{left:530.556632px;}
.x22_c00210{left:546.944125px;}
.x20_c00210{left:548.012125px;}
.x1c_c00210{left:573.486614px;}
.x42_c00210{left:575.991000px;}
.x30_c00210{left:578.294112px;}
.x1b_c00210{left:583.293600px;}
.x1d_c00210{left:585.774609px;}
.x43_c00210{left:594.514800px;}
.x1e_c00210{left:596.819105px;}
.x47_c00210{left:600.455805px;}
.x21_c00210{left:604.122602px;}
.x23_c00210{left:609.647100px;}
.x27_c00210{left:644.021086px;}
.x28_c00210{left:653.106583px;}
.x29_c00210{left:686.592569px;}
.x31_c00210{left:692.469567px;}
.x4f_c00210{left:695.853565px;}
.x25_c00210{left:697.103065px;}
.x24_c00210{left:699.786000px;}
.x44_c00210{left:701.395200px;}
.x26_c00210{left:708.323060px;}
.x2a_c00210{left:712.242559px;}
@media print{
.v1_c00210{vertical-align:-2.527498pt;}
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws2_c00210{word-spacing:-15.833327pt;}
.ws0_c00210{word-spacing:-14.566794pt;}
.ws1_c00210{word-spacing:-13.141541pt;}
.wsd_c00210{word-spacing:0.000000pt;}
.ws5_c00210{word-spacing:295.763005pt;}
.ws4_c00210{word-spacing:295.765108pt;}
.ws7_c00210{word-spacing:296.423236pt;}
.wsa_c00210{word-spacing:303.020816pt;}
.ws6_c00210{word-spacing:306.959599pt;}
.wsb_c00210{word-spacing:309.593163pt;}
.wsc_c00210{word-spacing:309.615767pt;}
.ws8_c00210{word-spacing:314.205319pt;}
.ws9_c00210{word-spacing:316.179178pt;}
.ws3_c00210{word-spacing:320.786603pt;}
._5_c00210{margin-left:-3.227164pt;}
._3_c00210{margin-left:-2.275862pt;}
._0_c00210{margin-left:-1.190721pt;}
._1_c00210{width:0.939390pt;}
._2_c00210{width:1.855769pt;}
._4_c00210{width:6.074217pt;}
._d_c00210{width:7.601303pt;}
._a_c00210{width:279.635180pt;}
._8_c00210{width:314.378858pt;}
._b_c00210{width:315.696492pt;}
._9_c00210{width:320.742541pt;}
._10_c00210{width:327.773432pt;}
._c_c00210{width:329.504422pt;}
._f_c00210{width:334.384484pt;}
._11_c00210{width:336.548336pt;}
._e_c00210{width:339.651614pt;}
._7_c00210{width:341.640089pt;}
._6_c00210{width:343.868248pt;}
.fs7_c00210{font-size:26.599669pt;}
.fs4_c00210{font-size:29.133108pt;}
.fs5_c00210{font-size:34.199666pt;}
.fs2_c00210{font-size:52.566166pt;}
.fs0_c00210{font-size:58.267177pt;}
.fs1_c00210{font-size:63.333308pt;}
.fs3_c00210{font-size:68.399973pt;}
.fs6_c00210{font-size:74.100237pt;}
.y0_c00210{bottom:0.000000pt;}
.y1_c00210{bottom:0.107500pt;}
.y70_c00210{bottom:0.215626pt;}
.y7e_c00210{bottom:1.738596pt;}
.y6e_c00210{bottom:1.740415pt;}
.y54_c00210{bottom:3.165407pt;}
.y3f_c00210{bottom:3.480562pt;}
.y48_c00210{bottom:3.480564pt;}
.y1e_c00210{bottom:3.481510pt;}
.y14_c00210{bottom:3.482842pt;}
.y2f_c00210{bottom:3.483953pt;}
.y77_c00210{bottom:3.958038pt;}
.y83_c00210{bottom:3.959625pt;}
.y64_c00210{bottom:3.960653pt;}
.y3a_c00210{bottom:4.271230pt;}
.yf_c00210{bottom:4.273510pt;}
.y15_c00210{bottom:6.068128pt;}
.y9_c00210{bottom:63.856874pt;}
.y3_c00210{bottom:74.146170pt;}
.y2_c00210{bottom:74.783670pt;}
.y84_c00210{bottom:115.630587pt;}
.y82_c00210{bottom:132.996320pt;}
.y81_c00210{bottom:135.264446pt;}
.y80_c00210{bottom:138.751111pt;}
.y7c_c00210{bottom:154.899371pt;}
.y7f_c00210{bottom:162.971101pt;}
.y7b_c00210{bottom:169.783099pt;}
.y7d_c00210{bottom:174.640000pt;}
.y79_c00210{bottom:192.105756pt;}
.y7a_c00210{bottom:192.897756pt;}
.y78_c00210{bottom:216.172413pt;}
.y76_c00210{bottom:235.595200pt;}
.y75_c00210{bottom:237.861738pt;}
.y74_c00210{bottom:241.345737pt;}
.y72_c00210{bottom:257.493730pt;}
.y73_c00210{bottom:257.811063pt;}
.y6c_c00210{bottom:273.646390pt;}
.y71_c00210{bottom:281.774928pt;}
.y6f_c00210{bottom:281.883054pt;}
.y6b_c00210{bottom:288.845718pt;}
.y6d_c00210{bottom:293.548800pt;}
.y69_c00210{bottom:305.315044pt;}
.y6a_c00210{bottom:305.472378pt;}
.y67_c00210{bottom:321.621705pt;}
.y68_c00210{bottom:321.781705pt;}
.y66_c00210{bottom:345.212362pt;}
.y62_c00210{bottom:359.201059pt;}
.y61_c00210{bottom:362.682391pt;}
.y63_c00210{bottom:362.891200pt;}
.y65_c00210{bottom:365.161687pt;}
.y5f_c00210{bottom:378.834385pt;}
.y60_c00210{bottom:378.991718pt;}
.y5d_c00210{bottom:395.142378pt;}
.y5e_c00210{bottom:395.302378pt;}
.y5b_c00210{bottom:411.453038pt;}
.y5c_c00210{bottom:411.610372pt;}
.y59_c00210{bottom:427.602365pt;}
.y5a_c00210{bottom:427.759698pt;}
.y57_c00210{bottom:443.909025pt;}
.y58_c00210{bottom:444.066359pt;}
.y55_c00210{bottom:460.214352pt;}
.y56_c00210{bottom:460.531685pt;}
.y53_c00210{bottom:479.902400pt;}
.y52_c00210{bottom:482.486974pt;}
.y51_c00210{bottom:506.081631pt;}
.y46_c00210{bottom:525.608993pt;}
.y4d_c00210{bottom:529.988288pt;}
.y50_c00210{bottom:543.285616pt;}
.y3d_c00210{bottom:546.609615pt;}
.y45_c00210{bottom:548.250317pt;}
.y4c_c00210{bottom:552.784279pt;}
.y41_c00210{bottom:555.212981pt;}
.y44_c00210{bottom:561.547645pt;}
.y3c_c00210{bottom:561.808942pt;}
.y4b_c00210{bottom:566.084274pt;}
.y43_c00210{bottom:570.572975pt;}
.y40_c00210{bottom:571.207641pt;}
.y4e_c00210{bottom:575.268270pt;}
.y49_c00210{bottom:575.425603pt;}
.y3b_c00210{bottom:577.008269pt;}
.y4f_c00210{bottom:578.590935pt;}
.y4a_c00210{bottom:578.750935pt;}
.y42_c00210{bottom:585.614302pt;}
.y47_c00210{bottom:587.411200pt;}
.y39_c00210{bottom:588.043200pt;}
.y3e_c00210{bottom:591.211200pt;}
.y38_c00210{bottom:618.492253pt;}
.y37_c00210{bottom:637.174912pt;}
.y36_c00210{bottom:654.275972pt;}
.y35_c00210{bottom:668.052233pt;}
.y2d_c00210{bottom:692.114623pt;}
.y2c_c00210{bottom:714.756481pt;}
.y32_c00210{bottom:736.768205pt;}
.y34_c00210{bottom:737.400205pt;}
.y2b_c00210{bottom:737.555805pt;}
.y31_c00210{bottom:752.758866pt;}
.y33_c00210{bottom:753.076199pt;}
.y2a_c00210{bottom:760.198863pt;}
.y30_c00210{bottom:770.650858pt;}
.y29_c00210{bottom:773.500191pt;}
.y2e_c00210{bottom:780.414400pt;}
.y28_c00210{bottom:782.681520pt;}
.y27_c00210{bottom:805.957511pt;}
.y1c_c00210{bottom:825.328873pt;}
.y23_c00210{bottom:829.865501pt;}
.y26_c00210{bottom:843.165496pt;}
.y12_c00210{bottom:846.648161pt;}
.y1b_c00210{bottom:848.130197pt;}
.y22_c00210{bottom:852.509492pt;}
.y17_c00210{bottom:855.096861pt;}
.y1a_c00210{bottom:861.431525pt;}
.y11_c00210{bottom:861.690155pt;}
.y21_c00210{bottom:865.808154pt;}
.y19_c00210{bottom:870.614188pt;}
.y16_c00210{bottom:870.771521pt;}
.y24_c00210{bottom:874.990817pt;}
.y1f_c00210{bottom:875.148150pt;}
.y10_c00210{bottom:876.889483pt;}
.y25_c00210{bottom:878.316149pt;}
.y20_c00210{bottom:878.474815pt;}
.y18_c00210{bottom:885.496849pt;}
.y1d_c00210{bottom:887.132800pt;}
.ye_c00210{bottom:887.924800pt;}
.y13_c00210{bottom:890.932800pt;}
.yd_c00210{bottom:918.374799pt;}
.yc_c00210{bottom:936.425139pt;}
.yb_c00210{bottom:950.832600pt;}
.ya_c00210{bottom:963.973848pt;}
.y8_c00210{bottom:978.696108pt;}
.y7_c00210{bottom:1000.388100pt;}
.y6_c00210{bottom:1018.912492pt;}
.y5_c00210{bottom:1037.122485pt;}
.y4_c00210{bottom:1055.329411pt;}
.h1e_c00210{height:7.596800pt;}
.h1a_c00210{height:7.600000pt;}
.h16_c00210{height:14.089600pt;}
.ha_c00210{height:14.092800pt;}
.h12_c00210{height:14.096000pt;}
.h18_c00210{height:14.724800pt;}
.h1b_c00210{height:16.810991pt;}
.h7_c00210{height:17.100800pt;}
.h15_c00210{height:17.257600pt;}
.h1f_c00210{height:17.734240pt;}
.h1d_c00210{height:17.734400pt;}
.h19_c00210{height:17.739200pt;}
.h17_c00210{height:17.889600pt;}
.hf_c00210{height:17.892800pt;}
.he_c00210{height:18.412124pt;}
.h11_c00210{height:30.642901pt;}
.h6_c00210{height:33.221817pt;}
.h5_c00210{height:36.824856pt;}
.h8_c00210{height:40.026651pt;}
.hc_c00210{height:43.228783pt;}
.h13_c00210{height:46.831350pt;}
.h14_c00210{height:47.046718pt;}
.h9_c00210{height:47.099284pt;}
.hd_c00210{height:47.151851pt;}
.h2_c00210{height:52.149123pt;}
.h3_c00210{height:56.683311pt;}
.h10_c00210{height:56.809977pt;}
.h4_c00210{height:56.936644pt;}
.hb_c00210{height:1110.960672pt;}
.h1c_c00210{height:1122.451041pt;}
.h1_c00210{height:1122.559167pt;}
.h0_c00210{height:1122.666667pt;}
.w12_c00210{width:3.956800pt;}
.w10_c00210{width:3.958400pt;}
.w11_c00210{width:3.960000pt;}
.we_c00210{width:6.486400pt;}
.wb_c00210{width:6.491200pt;}
.wd_c00210{width:6.652800pt;}
.wf_c00210{width:7.281600pt;}
.w3_c00210{width:7.756800pt;}
.w8_c00210{width:7.758400pt;}
.w7_c00210{width:7.761600pt;}
.w9_c00210{width:7.763200pt;}
.wa_c00210{width:8.704000pt;}
.w5_c00210{width:8.708800pt;}
.w2_c00210{width:9.341920pt;}
.w6_c00210{width:11.241600pt;}
.wc_c00210{width:16.465600pt;}
.w4_c00210{width:785.062974pt;}
.w13_c00210{width:793.182400pt;}
.w1_c00210{width:793.257550pt;}
.w0_c00210{width:793.333333pt;}
.x0_c00210{left:0.000000pt;}
.x10_c00210{left:1.370626pt;}
.x7_c00210{left:99.051244pt;}
.xa_c00210{left:105.712480pt;}
.x2_c00210{left:112.190515pt;}
.xd_c00210{left:114.408704pt;}
.x45_c00210{left:115.426261pt;}
.x36_c00210{left:116.943770pt;}
.x52_c00210{left:130.084965pt;}
.x49_c00210{left:134.265320pt;}
.x50_c00210{left:135.624696pt;}
.xb_c00210{left:160.960686pt;}
.x34_c00210{left:163.650018pt;}
.xc_c00210{left:172.518173pt;}
.x35_c00210{left:175.207505pt;}
.x53_c00210{left:212.892665pt;}
.x4_c00210{left:221.914974pt;}
.x3_c00210{left:237.589988pt;}
.xe_c00210{left:247.727318pt;}
.x37_c00210{left:250.256650pt;}
.x11_c00210{left:272.014598pt;}
.xf_c00210{left:273.387200pt;}
.x39_c00210{left:277.081263pt;}
.x38_c00210{left:278.451200pt;}
.x51_c00210{left:285.091303pt;}
.x12_c00210{left:290.221258pt;}
.x3a_c00210{left:294.022590pt;}
.x2b_c00210{left:298.865964pt;}
.x6_c00210{left:305.352881pt;}
.x4a_c00210{left:311.757249pt;}
.x2d_c00210{left:314.700624pt;}
.x46_c00210{left:317.139914pt;}
.x4d_c00210{left:318.499289pt;}
.x48_c00210{left:319.830579pt;}
.x3f_c00210{left:321.189955pt;}
.x4b_c00210{left:329.897951pt;}
.x32_c00210{left:338.132615pt;}
.x8_c00210{left:341.457947pt;}
.x16_c00210{left:367.331894pt;}
.x2e_c00210{left:368.700800pt;}
.x3c_c00210{left:369.865226pt;}
.x5_c00210{left:371.060339pt;}
.x17_c00210{left:376.829223pt;}
.x3d_c00210{left:378.573222pt;}
.x14_c00210{left:384.117220pt;}
.x19_c00210{left:385.223886pt;}
.x3e_c00210{left:387.121219pt;}
.x2f_c00210{left:408.747253pt;}
.x4e_c00210{left:410.489919pt;}
.x13_c00210{left:415.145208pt;}
.x3b_c00210{left:416.886540pt;}
.x41_c00210{left:418.736000pt;}
.x4c_c00210{left:421.731248pt;}
.x2c_c00210{left:427.275246pt;}
.x40_c00210{left:430.279245pt;}
.x33_c00210{left:436.137909pt;}
.x1a_c00210{left:437.474532pt;}
.x9_c00210{left:439.465908pt;}
.x15_c00210{left:441.430531pt;}
.x18_c00210{left:443.959863pt;}
.x1_c00210{left:446.111238pt;}
.x1f_c00210{left:471.605895pt;}
.x22_c00210{left:486.172556pt;}
.x20_c00210{left:487.121888pt;}
.x1c_c00210{left:509.765879pt;}
.x42_c00210{left:511.992000pt;}
.x30_c00210{left:514.039211pt;}
.x1b_c00210{left:518.483200pt;}
.x1d_c00210{left:520.688542pt;}
.x43_c00210{left:528.457600pt;}
.x1e_c00210{left:530.505871pt;}
.x47_c00210{left:533.738494pt;}
.x21_c00210{left:536.997869pt;}
.x23_c00210{left:541.908533pt;}
.x27_c00210{left:572.463188pt;}
.x28_c00210{left:580.539184pt;}
.x29_c00210{left:610.304506pt;}
.x31_c00210{left:615.528504pt;}
.x4f_c00210{left:618.536503pt;}
.x25_c00210{left:619.647169pt;}
.x24_c00210{left:622.032000pt;}
.x44_c00210{left:623.462400pt;}
.x26_c00210{left:629.620498pt;}
.x2a_c00210{left:633.104497pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.112000;font-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_c00211{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v1_c00211{vertical-align:-2.854685px;}
.v0_c00211{vertical-align:0.000000px;}
.v2_c00211{vertical-align:34.897486px;}
.ls0_c00211{letter-spacing:0.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:-16.387643px;}
.ws1_c00211{word-spacing:-14.784234px;}
.ws2_c00211{word-spacing:0.000000px;}
._2_c00211{margin-left:-5.259864px;}
._5_c00211{margin-left:-4.095417px;}
._3_c00211{margin-left:-2.513528px;}
._0_c00211{margin-left:-1.339561px;}
._1_c00211{width:1.056634px;}
._4_c00211{width:2.722749px;}
._7_c00211{width:20.376845px;}
._6_c00211{width:21.424502px;}
._b_c00211{width:32.831130px;}
._8_c00211{width:35.462477px;}
._9_c00211{width:36.684034px;}
._a_c00211{width:1230.439517px;}
.fc1_c00211{color:rgb(105,148,45);}
.fc0_c00211{color:rgb(35,31,32);}
.fs3_c00211{font-size:41.324503px;}
.fs4_c00211{font-size:44.887062px;}
.fs2_c00211{font-size:59.136936px;}
.fs0_c00211{font-size:65.550574px;}
.fs1_c00211{font-size:71.249972px;}
.y0_c00211{bottom:0.000000px;}
.y1_c00211{bottom:0.120938px;}
.y53_c00211{bottom:0.485156px;}
.y24_c00211{bottom:3.030622px;}
.y13_c00211{bottom:3.559117px;}
.y43_c00211{bottom:3.560859px;}
.y17_c00211{bottom:4.445939px;}
.yf_c00211{bottom:4.450405px;}
.y56_c00211{bottom:4.450409px;}
.y34_c00211{bottom:4.450577px;}
.y52_c00211{bottom:4.450701px;}
.y4c_c00211{bottom:4.450984px;}
.y60_c00211{bottom:4.451402px;}
.y59_c00211{bottom:4.451618px;}
.y46_c00211{bottom:4.452168px;}
.y22_c00211{bottom:4.452325px;}
.y31_c00211{bottom:4.453269px;}
.y28_c00211{bottom:4.454142px;}
.y3a_c00211{bottom:4.454195px;}
.y2e_c00211{bottom:4.454460px;}
.y49_c00211{bottom:4.454876px;}
.y5c_c00211{bottom:4.454926px;}
.y37_c00211{bottom:4.455386px;}
.y4f_c00211{bottom:4.456393px;}
.y10_c00211{bottom:6.826644px;}
.y9_c00211{bottom:71.838984px;}
.y3_c00211{bottom:83.414442px;}
.y2_c00211{bottom:84.131629px;}
.y64_c00211{bottom:85.618019px;}
.y63_c00211{bottom:104.144053px;}
.y62_c00211{bottom:120.173205px;}
.y61_c00211{bottom:139.767097px;}
.y5f_c00211{bottom:141.072840px;}
.y5e_c00211{bottom:168.739995px;}
.y5b_c00211{bottom:180.081000px;}
.y5d_c00211{bottom:185.659988px;}
.y58_c00211{bottom:201.097800px;}
.y5a_c00211{bottom:206.676480px;}
.y55_c00211{bottom:221.940000px;}
.y57_c00211{bottom:227.515971px;}
.y51_c00211{bottom:242.782200px;}
.y54_c00211{bottom:247.995745px;}
.y4e_c00211{bottom:263.799000px;}
.y50_c00211{bottom:269.199455px;}
.y4b_c00211{bottom:284.639400px;}
.y4d_c00211{bottom:290.037446px;}
.y48_c00211{bottom:305.478000px;}
.y4a_c00211{bottom:311.058438px;}
.y45_c00211{bottom:326.320200px;}
.y47_c00211{bottom:331.899430px;}
.y42_c00211{bottom:349.299000px;}
.y44_c00211{bottom:351.312422px;}
.y41_c00211{bottom:368.591425px;}
.y40_c00211{bottom:383.552509px;}
.y3f_c00211{bottom:411.698648px;}
.y3e_c00211{bottom:437.349388px;}
.y3d_c00211{bottom:472.438873px;}
.y3c_c00211{bottom:492.207366px;}
.y39_c00211{bottom:507.648600px;}
.y3b_c00211{bottom:511.446358px;}
.y36_c00211{bottom:529.736400px;}
.y38_c00211{bottom:533.535349px;}
.y33_c00211{bottom:551.824200px;}
.y35_c00211{bottom:555.619840px;}
.y30_c00211{bottom:573.912000px;}
.y32_c00211{bottom:577.710331px;}
.y2f_c00211{bottom:593.090616px;}
.y2d_c00211{bottom:595.999800px;}
.y2b_c00211{bottom:622.060814px;}
.y2a_c00211{bottom:622.953313px;}
.y2c_c00211{bottom:623.128813px;}
.y27_c00211{bottom:640.353600px;}
.y29_c00211{bottom:644.148305px;}
.y26_c00211{bottom:666.415121px;}
.y25_c00211{bottom:678.172791px;}
.y21_c00211{bottom:683.636400px;}
.y23_c00211{bottom:691.293600px;}
.y20_c00211{bottom:700.497473px;}
.y1f_c00211{bottom:728.817162px;}
.y1e_c00211{bottom:754.289252px;}
.y1d_c00211{bottom:779.939991px;}
.y1c_c00211{bottom:814.496527px;}
.y1b_c00211{bottom:828.392522px;}
.y1a_c00211{bottom:841.928516px;}
.y19_c00211{bottom:877.552002px;}
.y18_c00211{bottom:894.471995px;}
.y16_c00211{bottom:898.279200px;}
.y15_c00211{bottom:938.944837px;}
.y12_c00211{bottom:953.496000px;}
.y14_c00211{bottom:955.866180px;}
.y11_c00211{bottom:979.974961px;}
.ye_c00211{bottom:983.419200px;}
.yd_c00211{bottom:1006.986940px;}
.yc_c00211{bottom:1021.772254px;}
.yb_c00211{bottom:1050.091342px;}
.ya_c00211{bottom:1084.470579px;}
.y8_c00211{bottom:1101.033122px;}
.y7_c00211{bottom:1125.436612px;}
.y6_c00211{bottom:1146.276554px;}
.y5_c00211{bottom:1166.762796px;}
.y4_c00211{bottom:1187.245588px;}
.he_c00211{height:12.292200px;}
.h14_c00211{height:15.672600px;}
.hb_c00211{height:16.383600px;}
.h16_c00211{height:19.947600px;}
.h8_c00211{height:19.949400px;}
.h17_c00211{height:19.949760px;}
.h11_c00211{height:19.951200px;}
.h12_c00211{height:19.954800px;}
.hd_c00211{height:26.117086px;}
.hf_c00211{height:28.368623px;}
.h6_c00211{height:37.374544px;}
.h5_c00211{height:41.427963px;}
.h13_c00211{height:45.029982px;}
.hc_c00211{height:52.927558px;}
.ha_c00211{height:52.986695px;}
.h7_c00211{height:53.045832px;}
.h2_c00211{height:58.667764px;}
.h3_c00211{height:63.768724px;}
.h4_c00211{height:64.053724px;}
.h10_c00211{height:87.943318px;}
.h9_c00211{height:1249.830756px;}
.h15_c00211{height:1262.514600px;}
.h1_c00211{height:1262.879062px;}
.h0_c00211{height:1263.000000px;}
.w5_c00211{width:6.589080px;}
.w2_c00211{width:8.194320px;}
.w6_c00211{width:8.195400px;}
.w4_c00211{width:10.684620px;}
.w7_c00211{width:10.687500px;}
.w3_c00211{width:883.195846px;}
.w8_c00211{width:892.161000px;}
.w1_c00211{width:892.414744px;}
.w0_c00211{width:892.500000px;}
.x0_c00211{left:0.000000px;}
.x8_c00211{left:1.541954px;}
.xf_c00211{left:112.753050px;}
.x7_c00211{left:114.282348px;}
.x2_c00211{left:126.214330px;}
.xa_c00211{left:131.040000px;}
.x14_c00211{left:134.230690px;}
.xd_c00211{left:143.929434px;}
.xc_c00211{left:145.451236px;}
.x9_c00211{left:147.486737px;}
.xb_c00211{left:149.016034px;}
.x10_c00211{left:151.702020px;}
.x17_c00211{left:154.967984px;}
.x11_c00211{left:156.497281px;}
.xe_c00211{left:178.837474px;}
.x19_c00211{left:180.366772px;}
.x1b_c00211{left:229.352252px;}
.x18_c00211{left:236.192951px;}
.x15_c00211{left:237.722249px;}
.x1a_c00211{left:239.681248px;}
.x4_c00211{left:252.504495px;}
.x3_c00211{left:270.140236px;}
.x1c_c00211{left:308.259720px;}
.x6_c00211{left:346.372291px;}
.x5_c00211{left:420.296029px;}
.x1_c00211{left:501.875143px;}
.x13_c00211{left:571.539600px;}
.x12_c00211{left:599.845719px;}
.x16_c00211{left:635.831089px;}
@media print{
.v1_c00211{vertical-align:-2.537498pt;}
.v0_c00211{vertical-align:0.000000pt;}
.v2_c00211{vertical-align:31.019988pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:-14.566794pt;}
.ws1_c00211{word-spacing:-13.141541pt;}
.ws2_c00211{word-spacing:0.000000pt;}
._2_c00211{margin-left:-4.675435pt;}
._5_c00211{margin-left:-3.640371pt;}
._3_c00211{margin-left:-2.234247pt;}
._0_c00211{margin-left:-1.190721pt;}
._1_c00211{width:0.939230pt;}
._4_c00211{width:2.420221pt;}
._7_c00211{width:18.112751pt;}
._6_c00211{width:19.044002pt;}
._b_c00211{width:29.183227pt;}
._8_c00211{width:31.522202pt;}
._9_c00211{width:32.608030pt;}
._a_c00211{width:1093.724016pt;}
.fs3_c00211{font-size:36.732892pt;}
.fs4_c00211{font-size:39.899611pt;}
.fs2_c00211{font-size:52.566166pt;}
.fs0_c00211{font-size:58.267177pt;}
.fs1_c00211{font-size:63.333308pt;}
.y0_c00211{bottom:0.000000pt;}
.y1_c00211{bottom:0.107500pt;}
.y53_c00211{bottom:0.431250pt;}
.y24_c00211{bottom:2.693886pt;}
.y13_c00211{bottom:3.163660pt;}
.y43_c00211{bottom:3.165208pt;}
.y17_c00211{bottom:3.951946pt;}
.yf_c00211{bottom:3.955915pt;}
.y56_c00211{bottom:3.955920pt;}
.y34_c00211{bottom:3.956069pt;}
.y52_c00211{bottom:3.956179pt;}
.y4c_c00211{bottom:3.956431pt;}
.y60_c00211{bottom:3.956802pt;}
.y59_c00211{bottom:3.956994pt;}
.y46_c00211{bottom:3.957482pt;}
.y22_c00211{bottom:3.957622pt;}
.y31_c00211{bottom:3.958461pt;}
.y28_c00211{bottom:3.959237pt;}
.y3a_c00211{bottom:3.959285pt;}
.y2e_c00211{bottom:3.959520pt;}
.y49_c00211{bottom:3.959890pt;}
.y5c_c00211{bottom:3.959934pt;}
.y37_c00211{bottom:3.960343pt;}
.y4f_c00211{bottom:3.961238pt;}
.y10_c00211{bottom:6.068128pt;}
.y9_c00211{bottom:63.856874pt;}
.y3_c00211{bottom:74.146170pt;}
.y2_c00211{bottom:74.783670pt;}
.y64_c00211{bottom:76.104906pt;}
.y63_c00211{bottom:92.572491pt;}
.y62_c00211{bottom:106.820627pt;}
.y61_c00211{bottom:124.237420pt;}
.y5f_c00211{bottom:125.398080pt;}
.y5e_c00211{bottom:149.991107pt;}
.y5b_c00211{bottom:160.072000pt;}
.y5d_c00211{bottom:165.031101pt;}
.y58_c00211{bottom:178.753600pt;}
.y5a_c00211{bottom:183.712426pt;}
.y55_c00211{bottom:197.280000pt;}
.y57_c00211{bottom:202.236419pt;}
.y51_c00211{bottom:215.806400pt;}
.y54_c00211{bottom:220.440662pt;}
.y4e_c00211{bottom:234.488000pt;}
.y50_c00211{bottom:239.288404pt;}
.y4b_c00211{bottom:253.012800pt;}
.y4d_c00211{bottom:257.811063pt;}
.y48_c00211{bottom:271.536000pt;}
.y4a_c00211{bottom:276.496389pt;}
.y45_c00211{bottom:290.062400pt;}
.y47_c00211{bottom:295.021715pt;}
.y42_c00211{bottom:310.488000pt;}
.y44_c00211{bottom:312.277708pt;}
.y41_c00211{bottom:327.636822pt;}
.y40_c00211{bottom:340.935564pt;}
.y3f_c00211{bottom:365.954354pt;}
.y3e_c00211{bottom:388.755011pt;}
.y3d_c00211{bottom:419.945665pt;}
.y3c_c00211{bottom:437.517658pt;}
.y39_c00211{bottom:451.243200pt;}
.y3b_c00211{bottom:454.618985pt;}
.y36_c00211{bottom:470.876800pt;}
.y38_c00211{bottom:474.253644pt;}
.y33_c00211{bottom:490.510400pt;}
.y35_c00211{bottom:493.884302pt;}
.y30_c00211{bottom:510.144000pt;}
.y32_c00211{bottom:513.520295pt;}
.y2f_c00211{bottom:527.191659pt;}
.y2d_c00211{bottom:529.777600pt;}
.y2b_c00211{bottom:552.942945pt;}
.y2a_c00211{bottom:553.736278pt;}
.y2c_c00211{bottom:553.892278pt;}
.y27_c00211{bottom:569.203200pt;}
.y29_c00211{bottom:572.576271pt;}
.y26_c00211{bottom:592.368996pt;}
.y25_c00211{bottom:602.820259pt;}
.y21_c00211{bottom:607.676800pt;}
.y23_c00211{bottom:614.483200pt;}
.y20_c00211{bottom:622.664421pt;}
.y1f_c00211{bottom:647.837477pt;}
.y1e_c00211{bottom:670.479335pt;}
.y1d_c00211{bottom:693.279992pt;}
.y1c_c00211{bottom:723.996913pt;}
.y1b_c00211{bottom:736.348908pt;}
.y1a_c00211{bottom:748.380904pt;}
.y19_c00211{bottom:780.046224pt;}
.y18_c00211{bottom:795.086218pt;}
.y16_c00211{bottom:798.470400pt;}
.y15_c00211{bottom:834.617633pt;}
.y12_c00211{bottom:847.552000pt;}
.y14_c00211{bottom:849.658827pt;}
.y11_c00211{bottom:871.088854pt;}
.ye_c00211{bottom:874.150400pt;}
.yd_c00211{bottom:895.099502pt;}
.yc_c00211{bottom:908.242003pt;}
.yb_c00211{bottom:933.414527pt;}
.ya_c00211{bottom:963.973848pt;}
.y8_c00211{bottom:978.696108pt;}
.y7_c00211{bottom:1000.388100pt;}
.y6_c00211{bottom:1018.912492pt;}
.y5_c00211{bottom:1037.122485pt;}
.y4_c00211{bottom:1055.329411pt;}
.he_c00211{height:10.926400pt;}
.h14_c00211{height:13.931200pt;}
.hb_c00211{height:14.563200pt;}
.h16_c00211{height:17.731200pt;}
.h8_c00211{height:17.732800pt;}
.h17_c00211{height:17.733120pt;}
.h11_c00211{height:17.734400pt;}
.h12_c00211{height:17.737600pt;}
.hd_c00211{height:23.215188pt;}
.hf_c00211{height:25.216554pt;}
.h6_c00211{height:33.221817pt;}
.h5_c00211{height:36.824856pt;}
.h13_c00211{height:40.026651pt;}
.hc_c00211{height:47.046718pt;}
.ha_c00211{height:47.099284pt;}
.h7_c00211{height:47.151851pt;}
.h2_c00211{height:52.149123pt;}
.h3_c00211{height:56.683311pt;}
.h4_c00211{height:56.936644pt;}
.h10_c00211{height:78.171838pt;}
.h9_c00211{height:1110.960672pt;}
.h15_c00211{height:1122.235200pt;}
.h1_c00211{height:1122.559167pt;}
.h0_c00211{height:1122.666667pt;}
.w5_c00211{width:5.856960pt;}
.w2_c00211{width:7.283840pt;}
.w6_c00211{width:7.284800pt;}
.w4_c00211{width:9.497440pt;}
.w7_c00211{width:9.500000pt;}
.w3_c00211{width:785.062974pt;}
.w8_c00211{width:793.032000pt;}
.w1_c00211{width:793.257550pt;}
.w0_c00211{width:793.333333pt;}
.x0_c00211{left:0.000000pt;}
.x8_c00211{left:1.370626pt;}
.xf_c00211{left:100.224934pt;}
.x7_c00211{left:101.584309pt;}
.x2_c00211{left:112.190515pt;}
.xa_c00211{left:116.480000pt;}
.x14_c00211{left:119.316169pt;}
.xd_c00211{left:127.937275pt;}
.xc_c00211{left:129.289988pt;}
.x9_c00211{left:131.099321pt;}
.xb_c00211{left:132.458697pt;}
.x10_c00211{left:134.846240pt;}
.x17_c00211{left:137.749319pt;}
.x11_c00211{left:139.108694pt;}
.xe_c00211{left:158.966644pt;}
.x19_c00211{left:160.326019pt;}
.x1b_c00211{left:203.868668pt;}
.x18_c00211{left:209.949290pt;}
.x15_c00211{left:211.308665pt;}
.x1a_c00211{left:213.049998pt;}
.x4_c00211{left:224.448440pt;}
.x3_c00211{left:240.124654pt;}
.x1c_c00211{left:274.008640pt;}
.x6_c00211{left:307.886481pt;}
.x5_c00211{left:373.596470pt;}
.x1_c00211{left:446.111238pt;}
.x13_c00211{left:508.035200pt;}
.x12_c00211{left:533.196195pt;}
.x16_c00211{left:565.183191pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.112000;font-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_c00212{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.241132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241132,0.000000,0.000000,0.250000,0,0);}
.m9_c00212{transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243209,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m8_c00212{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00212{vertical-align:-2.857499px;}
.v0_c00212{vertical-align:0.000000px;}
.ls0_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:-16.387643px;}
.ws1_c00212{word-spacing:-14.784234px;}
.ws2_c00212{word-spacing:-13.359250px;}
.ws3_c00212{word-spacing:0.000000px;}
._5_c00212{margin-left:-5.517263px;}
._8_c00212{margin-left:-3.661019px;}
._4_c00212{margin-left:-2.589270px;}
._0_c00212{margin-left:-1.339561px;}
._1_c00212{width:1.056634px;}
._3_c00212{width:2.376798px;}
._d_c00212{width:3.618100px;}
._c_c00212{width:4.768105px;}
._7_c00212{width:6.152896px;}
._6_c00212{width:7.599411px;}
._2_c00212{width:13.693032px;}
._b_c00212{width:76.676833px;}
._a_c00212{width:120.110308px;}
._9_c00212{width:122.960638px;}
.fc1_c00212{color:rgb(105,148,45);}
.fc0_c00212{color:rgb(35,31,32);}
.fs6_c00212{font-size:29.924628px;}
.fs5_c00212{font-size:32.774747px;}
.fs9_c00212{font-size:38.474625px;}
.fsa_c00212{font-size:41.324503px;}
.fs3_c00212{font-size:44.887062px;}
.fs4_c00212{font-size:47.737061px;}
.fs7_c00212{font-size:53.436999px;}
.fs2_c00212{font-size:59.136936px;}
.fs0_c00212{font-size:65.550574px;}
.fs1_c00212{font-size:71.249972px;}
.fs8_c00212{font-size:76.949969px;}
.y5c_c00212{bottom:-0.538397px;}
.y6c_c00212{bottom:-0.534165px;}
.y68_c00212{bottom:-0.361372px;}
.y58_c00212{bottom:-0.360804px;}
.y4e_c00212{bottom:-0.358110px;}
.y5f_c00212{bottom:-0.358091px;}
.y42_c00212{bottom:-0.353039px;}
.y65_c00212{bottom:-0.352678px;}
.y0_c00212{bottom:0.000000px;}
.y1_c00212{bottom:0.120938px;}
.y7a_c00212{bottom:0.242579px;}
.y74_c00212{bottom:0.485156px;}
.y1e_c00212{bottom:1.956843px;}
.y1a_c00212{bottom:2.135643px;}
.y29_c00212{bottom:2.138343px;}
.y49_c00212{bottom:2.494575px;}
.y83_c00212{bottom:2.670793px;}
.y31_c00212{bottom:2.842777px;}
.y62_c00212{bottom:3.023214px;}
.y6e_c00212{bottom:3.029833px;}
.y15_c00212{bottom:3.202412px;}
.y71_c00212{bottom:3.203547px;}
.y77_c00212{bottom:3.205962px;}
.y45_c00212{bottom:3.206460px;}
.y18_c00212{bottom:3.736438px;}
.y47_c00212{bottom:3.738968px;}
.y52_c00212{bottom:3.915388px;}
.y2d_c00212{bottom:4.444772px;}
.y21_c00212{bottom:4.446846px;}
.y33_c00212{bottom:4.457385px;}
.y25_c00212{bottom:5.162947px;}
.y8_c00212{bottom:6.826644px;}
.ya_c00212{bottom:65.133277px;}
.y3_c00212{bottom:83.414442px;}
.y2_c00212{bottom:84.131629px;}
.y91_c00212{bottom:91.252066px;}
.y90_c00212{bottom:106.035970px;}
.y8f_c00212{bottom:120.998464px;}
.y8e_c00212{bottom:135.783778px;}
.y8d_c00212{bottom:150.569092px;}
.y8c_c00212{bottom:165.530176px;}
.y8b_c00212{bottom:180.314080px;}
.y8a_c00212{bottom:195.097984px;}
.y89_c00212{bottom:209.883478px;}
.y88_c00212{bottom:224.844473px;}
.y87_c00212{bottom:239.808467px;}
.y86_c00212{bottom:251.032962px;}
.y82_c00212{bottom:265.044600px;}
.y80_c00212{bottom:269.433313px;}
.y85_c00212{bottom:269.554955px;}
.y84_c00212{bottom:269.734955px;}
.y81_c00212{bottom:272.104812px;}
.y7f_c00212{bottom:287.956806px;}
.y7c_c00212{bottom:308.442298px;}
.y7e_c00212{bottom:308.619298px;}
.y7d_c00212{bottom:311.293797px;}
.y7b_c00212{bottom:326.967290px;}
.y76_c00212{bottom:342.707400px;}
.y79_c00212{bottom:345.792424px;}
.y78_c00212{bottom:346.860424px;}
.y75_c00212{bottom:362.349699px;}
.y70_c00212{bottom:378.334800px;}
.y73_c00212{bottom:381.417410px;}
.y72_c00212{bottom:382.485409px;}
.y6f_c00212{bottom:398.158903px;}
.y6b_c00212{bottom:413.955000px;}
.y6d_c00212{bottom:417.931895px;}
.y67_c00212{bottom:429.811200px;}
.y6a_c00212{bottom:432.894389px;}
.y69_c00212{bottom:433.963889px;}
.y64_c00212{bottom:445.842000px;}
.y66_c00212{bottom:449.995882px;}
.y61_c00212{bottom:461.874600px;}
.y56_c00212{bottom:465.489376px;}
.y63_c00212{bottom:465.846376px;}
.y5e_c00212{bottom:477.725400px;}
.y55_c00212{bottom:481.165870px;}
.y60_c00212{bottom:481.876870px;}
.y5b_c00212{bottom:493.756200px;}
.y5d_c00212{bottom:497.731863px;}
.y54_c00212{bottom:499.156953px;}
.y57_c00212{bottom:509.610600px;}
.y5a_c00212{bottom:512.694357px;}
.y59_c00212{bottom:513.762357px;}
.y53_c00212{bottom:513.940857px;}
.y51_c00212{bottom:524.930400px;}
.y4d_c00212{bottom:525.641400px;}
.y50_c00212{bottom:528.724851px;}
.y4f_c00212{bottom:529.792851px;}
.y4c_c00212{bottom:545.467844px;}
.y48_c00212{bottom:561.085200px;}
.y4b_c00212{bottom:564.174337px;}
.y4a_c00212{bottom:565.242336px;}
.y46_c00212{bottom:577.297800px;}
.y41_c00212{bottom:596.710800px;}
.y44_c00212{bottom:599.796323px;}
.y43_c00212{bottom:600.865822px;}
.y40_c00212{bottom:616.716316px;}
.y3f_c00212{bottom:634.170309px;}
.y3e_c00212{bottom:646.998304px;}
.y3d_c00212{bottom:664.810797px;}
.y3c_c00212{bottom:677.283292px;}
.y3b_c00212{bottom:697.405783px;}
.y3a_c00212{bottom:716.108826px;}
.y39_c00212{bottom:731.785770px;}
.y38_c00212{bottom:746.923764px;}
.y37_c00212{bottom:757.971259px;}
.y36_c00212{bottom:775.423752px;}
.y32_c00212{bottom:783.559800px;}
.y35_c00212{bottom:790.386246px;}
.y34_c00212{bottom:792.522245px;}
.y30_c00212{bottom:804.407400px;}
.y2c_c00212{bottom:814.388400px;}
.y2f_c00212{bottom:822.270234px;}
.y2e_c00212{bottom:823.339733px;}
.y27_c00212{bottom:852.017022px;}
.y23_c00212{bottom:855.399310px;}
.y2b_c00212{bottom:862.351718px;}
.y1c_c00212{bottom:863.419717px;}
.y26_c00212{bottom:867.513215px;}
.y22_c00212{bottom:870.363214px;}
.y24_c00212{bottom:878.326200px;}
.y2a_c00212{bottom:879.094711px;}
.y1b_c00212{bottom:879.631711px;}
.y1f_c00212{bottom:881.232210px;}
.y20_c00212{bottom:881.353800px;}
.y28_c00212{bottom:890.614800px;}
.y19_c00212{bottom:891.153000px;}
.y1d_c00212{bottom:891.505800px;}
.y17_c00212{bottom:900.772200px;}
.y13_c00212{bottom:916.916487px;}
.y12_c00212{bottom:936.333979px;}
.y16_c00212{bottom:952.479181px;}
.y11_c00212{bottom:955.571471px;}
.y14_c00212{bottom:965.608200px;}
.y10_c00212{bottom:974.628963px;}
.yf_c00212{bottom:986.741459px;}
.ye_c00212{bottom:1005.803301px;}
.yd_c00212{bottom:1022.187494px;}
.yc_c00212{bottom:1050.507933px;}
.yb_c00212{bottom:1075.982873px;}
.y9_c00212{bottom:1094.327416px;}
.y7_c00212{bottom:1125.436612px;}
.y6_c00212{bottom:1146.276554px;}
.y5_c00212{bottom:1166.762796px;}
.y4_c00212{bottom:1187.245588px;}
.h11_c00212{height:8.375400px;}
.he_c00212{height:8.728200px;}
.h18_c00212{height:9.266400px;}
.ha_c00212{height:12.646800px;}
.h1a_c00212{height:14.785200px;}
.h27_c00212{height:14.961600px;}
.h28_c00212{height:14.965200px;}
.h29_c00212{height:15.136200px;}
.h26_c00212{height:15.139800px;}
.h23_c00212{height:15.141600px;}
.h20_c00212{height:15.143400px;}
.h2b_c00212{height:15.145200px;}
.h24_c00212{height:15.852600px;}
.h2e_c00212{height:18.169200px;}
.hc_c00212{height:18.343800px;}
.h22_c00212{height:18.345600px;}
.h14_c00212{height:18.527400px;}
.h12_c00212{height:18.912365px;}
.h19_c00212{height:19.942200px;}
.h1b_c00212{height:19.958400px;}
.hf_c00212{height:20.713640px;}
.h16_c00212{height:21.555000px;}
.h1d_c00212{height:24.315963px;}
.h1f_c00212{height:26.117086px;}
.h9_c00212{height:28.368623px;}
.hb_c00212{height:30.169822px;}
.h2f_c00212{height:33.772183px;}
.h7_c00212{height:37.374544px;}
.h6_c00212{height:41.427963px;}
.h13_c00212{height:42.772407px;}
.h25_c00212{height:45.029982px;}
.h15_c00212{height:47.879551px;}
.h2d_c00212{height:48.599550px;}
.h17_c00212{height:48.632381px;}
.h1c_c00212{height:52.927558px;}
.h10_c00212{height:52.986695px;}
.h8_c00212{height:53.045832px;}
.h2_c00212{height:58.667764px;}
.hd_c00212{height:58.733314px;}
.h3_c00212{height:63.768724px;}
.h21_c00212{height:63.839974px;}
.h1e_c00212{height:63.911224px;}
.h4_c00212{height:64.053724px;}
.h5_c00212{height:1249.830756px;}
.h2a_c00212{height:1262.514600px;}
.h2c_c00212{height:1262.757421px;}
.h1_c00212{height:1262.879062px;}
.h0_c00212{height:1263.000000px;}
.w33_c00212{width:3.742200px;}
.w1c_c00212{width:4.452300px;}
.w6_c00212{width:4.454280px;}
.w19_c00212{width:4.629600px;}
.we_c00212{width:4.631400px;}
.w13_c00212{width:4.633200px;}
.w1f_c00212{width:4.806000px;}
.w1b_c00212{width:4.810860px;}
.w9_c00212{width:5.519160px;}
.w8_c00212{width:5.522400px;}
.wf_c00212{width:5.526000px;}
.w24_c00212{width:5.877000px;}
.w22_c00212{width:5.878800px;}
.w34_c00212{width:6.055200px;}
.w12_c00212{width:6.409800px;}
.wb_c00212{width:6.417000px;}
.w36_c00212{width:6.591600px;}
.w25_c00212{width:6.593400px;}
.w35_c00212{width:6.769800px;}
.w3_c00212{width:6.946200px;}
.w10_c00212{width:7.295400px;}
.w3a_c00212{width:7.299000px;}
.w14_c00212{width:7.300800px;}
.w7_c00212{width:7.301880px;}
.w2a_c00212{width:7.302600px;}
.wa_c00212{width:7.306200px;}
.w38_c00212{width:7.480800px;}
.w2d_c00212{width:7.482600px;}
.w17_c00212{width:7.837200px;}
.w11_c00212{width:7.840800px;}
.w23_c00212{width:8.013600px;}
.w21_c00212{width:8.190000px;}
.w15_c00212{width:8.193600px;}
.w20_c00212{width:8.194320px;}
.wc_c00212{width:8.195400px;}
.w2f_c00212{width:8.197200px;}
.w27_c00212{width:8.726400px;}
.w2e_c00212{width:8.730000px;}
.w31_c00212{width:9.088200px;}
.w1d_c00212{width:9.617400px;}
.w5_c00212{width:10.153080px;}
.w30_c00212{width:10.684620px;}
.w2b_c00212{width:10.688220px;}
.w26_c00212{width:11.041200px;}
.w1e_c00212{width:11.221200px;}
.w32_c00212{width:11.754000px;}
.w4_c00212{width:12.290580px;}
.w16_c00212{width:14.603400px;}
.w18_c00212{width:14.605200px;}
.w28_c00212{width:14.607360px;}
.wd_c00212{width:15.499800px;}
.w1a_c00212{width:16.212600px;}
.w2c_c00212{width:18.698400px;}
.w29_c00212{width:22.799880px;}
.w39_c00212{width:26.179200px;}
.w37_c00212{width:26.182800px;}
.w2_c00212{width:883.195846px;}
.w3b_c00212{width:892.161000px;}
.w3c_c00212{width:892.330200px;}
.w1_c00212{width:892.414744px;}
.w0_c00212{width:892.500000px;}
.x0_c00212{left:0.000000px;}
.x7_c00212{left:1.541954px;}
.x8_c00212{left:112.753050px;}
.x3a_c00212{left:114.282348px;}
.x2_c00212{left:126.214330px;}
.x3b_c00212{left:127.818943px;}
.x40_c00212{left:130.327020px;}
.x12_c00212{left:131.574420px;}
.x2a_c00212{left:133.343440px;}
.x2b_c00212{left:145.288080px;}
.x13_c00212{left:147.782160px;}
.x2c_c00212{left:150.087784px;}
.x14_c00212{left:157.935240px;}
.x15_c00212{left:162.389520px;}
.x16_c00212{left:169.691400px;}
.x17_c00212{left:175.035240px;}
.x18_c00212{left:180.554400px;}
.x3e_c00212{left:185.189400px;}
.x9_c00212{left:186.316471px;}
.x19_c00212{left:187.680600px;}
.x3f_c00212{left:190.711800px;}
.x1a_c00212{left:197.478000px;}
.x1b_c00212{left:209.590200px;}
.x1c_c00212{left:225.090000px;}
.xb_c00212{left:230.132954px;}
.x1d_c00212{left:235.247400px;}
.x1e_c00212{left:242.542800px;}
.x1f_c00212{left:250.383600px;}
.x4_c00212{left:252.504495px;}
.x20_c00212{left:260.355600px;}
.x3_c00212{left:270.140236px;}
.x21_c00212{left:279.594000px;}
.xc_c00212{left:283.039432px;}
.x22_c00212{left:284.227200px;}
.xd_c00212{left:287.671619px;}
.x23_c00212{left:295.446600px;}
.x24_c00212{left:302.747400px;}
.x25_c00212{left:310.591800px;}
.x26_c00212{left:325.195200px;}
.x27_c00212{left:333.032400px;}
.x6_c00212{left:346.372291px;}
.x28_c00212{left:347.637600px;}
.x29_c00212{left:352.267200px;}
.xa_c00212{left:413.248380px;}
.x5_c00212{left:420.296029px;}
.x46_c00212{left:453.263400px;}
.x3c_c00212{left:476.406653px;}
.x47_c00212{left:485.326800px;}
.xe_c00212{left:495.838800px;}
.x48_c00212{left:497.080800px;}
.x49_c00212{left:500.823000px;}
.x1_c00212{left:501.875143px;}
.xf_c00212{left:503.480142px;}
.x2d_c00212{left:505.262142px;}
.x4a_c00212{left:506.701800px;}
.x4b_c00212{left:510.444000px;}
.x4c_c00212{left:516.319200px;}
.x2f_c00212{left:518.621323px;}
.x2e_c00212{left:522.719135px;}
.x43_c00212{left:548.026200px;}
.x51_c00212{left:563.151618px;}
.x44_c00212{left:564.755118px;}
.x10_c00212{left:592.380000px;}
.x11_c00212{left:611.067599px;}
.x30_c00212{left:622.292053px;}
.x34_c00212{left:632.813400px;}
.x35_c00212{left:638.692200px;}
.x36_c00212{left:646.705800px;}
.x37_c00212{left:652.582800px;}
.x38_c00212{left:659.176200px;}
.x39_c00212{left:665.055000px;}
.x33_c00212{left:684.635070px;}
.x45_c00212{left:698.184000px;}
.x31_c00212{left:700.502400px;}
.x4f_c00212{left:707.630400px;}
.x4d_c00212{left:711.901800px;}
.x41_c00212{left:714.931200px;}
.x32_c00212{left:717.761057px;}
.x3d_c00212{left:719.026200px;}
.x42_c00212{left:733.629600px;}
.x4e_c00212{left:738.084600px;}
.x50_c00212{left:741.292200px;}
@media print{
.v1_c00212{vertical-align:-2.539999pt;}
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws0_c00212{word-spacing:-14.566794pt;}
.ws1_c00212{word-spacing:-13.141541pt;}
.ws2_c00212{word-spacing:-11.874889pt;}
.ws3_c00212{word-spacing:0.000000pt;}
._5_c00212{margin-left:-4.904234pt;}
._8_c00212{margin-left:-3.254239pt;}
._4_c00212{margin-left:-2.301574pt;}
._0_c00212{margin-left:-1.190721pt;}
._1_c00212{width:0.939230pt;}
._3_c00212{width:2.112710pt;}
._d_c00212{width:3.216089pt;}
._c_c00212{width:4.238315pt;}
._7_c00212{width:5.469241pt;}
._6_c00212{width:6.755032pt;}
._2_c00212{width:12.171584pt;}
._b_c00212{width:68.157185pt;}
._a_c00212{width:106.764718pt;}
._9_c00212{width:109.298345pt;}
.fs6_c00212{font-size:26.599669pt;}
.fs5_c00212{font-size:29.133108pt;}
.fs9_c00212{font-size:34.199666pt;}
.fsa_c00212{font-size:36.732892pt;}
.fs3_c00212{font-size:39.899611pt;}
.fs4_c00212{font-size:42.432943pt;}
.fs7_c00212{font-size:47.499554pt;}
.fs2_c00212{font-size:52.566166pt;}
.fs0_c00212{font-size:58.267177pt;}
.fs1_c00212{font-size:63.333308pt;}
.fs8_c00212{font-size:68.399973pt;}
.y5c_c00212{bottom:-0.478575pt;}
.y6c_c00212{bottom:-0.474814pt;}
.y68_c00212{bottom:-0.321219pt;}
.y58_c00212{bottom:-0.320714pt;}
.y4e_c00212{bottom:-0.318320pt;}
.y5f_c00212{bottom:-0.318303pt;}
.y42_c00212{bottom:-0.313812pt;}
.y65_c00212{bottom:-0.313492pt;}
.y0_c00212{bottom:0.000000pt;}
.y1_c00212{bottom:0.107500pt;}
.y7a_c00212{bottom:0.215626pt;}
.y74_c00212{bottom:0.431250pt;}
.y1e_c00212{bottom:1.739416pt;}
.y1a_c00212{bottom:1.898349pt;}
.y29_c00212{bottom:1.900749pt;}
.y49_c00212{bottom:2.217400pt;}
.y83_c00212{bottom:2.374038pt;}
.y31_c00212{bottom:2.526913pt;}
.y62_c00212{bottom:2.687301pt;}
.y6e_c00212{bottom:2.693185pt;}
.y15_c00212{bottom:2.846589pt;}
.y71_c00212{bottom:2.847598pt;}
.y77_c00212{bottom:2.849744pt;}
.y45_c00212{bottom:2.850187pt;}
.y18_c00212{bottom:3.321278pt;}
.y47_c00212{bottom:3.323527pt;}
.y52_c00212{bottom:3.480345pt;}
.y2d_c00212{bottom:3.950909pt;}
.y21_c00212{bottom:3.952752pt;}
.y33_c00212{bottom:3.962120pt;}
.y25_c00212{bottom:4.589286pt;}
.y8_c00212{bottom:6.068128pt;}
.ya_c00212{bottom:57.896246pt;}
.y3_c00212{bottom:74.146170pt;}
.y2_c00212{bottom:74.783670pt;}
.y91_c00212{bottom:81.112948pt;}
.y90_c00212{bottom:94.254196pt;}
.y8f_c00212{bottom:107.554190pt;}
.y8e_c00212{bottom:120.696692pt;}
.y8d_c00212{bottom:133.839193pt;}
.y8c_c00212{bottom:147.137934pt;}
.y8b_c00212{bottom:160.279183pt;}
.y8a_c00212{bottom:173.420431pt;}
.y89_c00212{bottom:186.563092pt;}
.y88_c00212{bottom:199.861753pt;}
.y87_c00212{bottom:213.163081pt;}
.y86_c00212{bottom:223.140411pt;}
.y82_c00212{bottom:235.595200pt;}
.y80_c00212{bottom:239.496279pt;}
.y85_c00212{bottom:239.604404pt;}
.y84_c00212{bottom:239.764404pt;}
.y81_c00212{bottom:241.870944pt;}
.y7f_c00212{bottom:255.961605pt;}
.y7c_c00212{bottom:274.170931pt;}
.y7e_c00212{bottom:274.328265pt;}
.y7d_c00212{bottom:276.705597pt;}
.y7b_c00212{bottom:290.637591pt;}
.y76_c00212{bottom:304.628800pt;}
.y79_c00212{bottom:307.371044pt;}
.y78_c00212{bottom:308.320377pt;}
.y75_c00212{bottom:322.088621pt;}
.y70_c00212{bottom:336.297600pt;}
.y73_c00212{bottom:339.037698pt;}
.y72_c00212{bottom:339.987031pt;}
.y6f_c00212{bottom:353.919025pt;}
.y6b_c00212{bottom:367.960000pt;}
.y6d_c00212{bottom:371.495018pt;}
.y67_c00212{bottom:382.054400pt;}
.y6a_c00212{bottom:384.795013pt;}
.y69_c00212{bottom:385.745679pt;}
.y64_c00212{bottom:396.304000pt;}
.y66_c00212{bottom:399.996340pt;}
.y61_c00212{bottom:410.555200pt;}
.y56_c00212{bottom:413.768334pt;}
.y63_c00212{bottom:414.085668pt;}
.y5e_c00212{bottom:424.644800pt;}
.y55_c00212{bottom:427.702996pt;}
.y60_c00212{bottom:428.334995pt;}
.y5b_c00212{bottom:438.894400pt;}
.y5d_c00212{bottom:442.428323pt;}
.y54_c00212{bottom:443.695069pt;}
.y57_c00212{bottom:452.987200pt;}
.y5a_c00212{bottom:455.728318pt;}
.y59_c00212{bottom:456.677651pt;}
.y53_c00212{bottom:456.836317pt;}
.y51_c00212{bottom:466.604800pt;}
.y4d_c00212{bottom:467.236800pt;}
.y50_c00212{bottom:469.977645pt;}
.y4f_c00212{bottom:470.926978pt;}
.y4c_c00212{bottom:484.860306pt;}
.y48_c00212{bottom:498.742400pt;}
.y4b_c00212{bottom:501.488299pt;}
.y4a_c00212{bottom:502.437632pt;}
.y46_c00212{bottom:513.153600pt;}
.y41_c00212{bottom:530.409600pt;}
.y44_c00212{bottom:533.152287pt;}
.y43_c00212{bottom:534.102953pt;}
.y40_c00212{bottom:548.192281pt;}
.y3f_c00212{bottom:563.706941pt;}
.y3e_c00212{bottom:575.109603pt;}
.y3d_c00212{bottom:590.942930pt;}
.y3c_c00212{bottom:602.029592pt;}
.y3b_c00212{bottom:619.916252pt;}
.y3a_c00212{bottom:636.541179pt;}
.y39_c00212{bottom:650.476240pt;}
.y38_c00212{bottom:663.932234pt;}
.y37_c00212{bottom:673.752230pt;}
.y36_c00212{bottom:689.265558pt;}
.y32_c00212{bottom:696.497600pt;}
.y35_c00212{bottom:702.565552pt;}
.y34_c00212{bottom:704.464218pt;}
.y30_c00212{bottom:715.028800pt;}
.y2c_c00212{bottom:723.900800pt;}
.y2f_c00212{bottom:730.906874pt;}
.y2e_c00212{bottom:731.857541pt;}
.y27_c00212{bottom:757.348464pt;}
.y23_c00212{bottom:760.354942pt;}
.y2b_c00212{bottom:766.534860pt;}
.y1c_c00212{bottom:767.484193pt;}
.y26_c00212{bottom:771.122858pt;}
.y22_c00212{bottom:773.656190pt;}
.y24_c00212{bottom:780.734400pt;}
.y2a_c00212{bottom:781.417521pt;}
.y1b_c00212{bottom:781.894854pt;}
.y1f_c00212{bottom:783.317520pt;}
.y20_c00212{bottom:783.425600pt;}
.y28_c00212{bottom:791.657600pt;}
.y19_c00212{bottom:792.136000pt;}
.y1d_c00212{bottom:792.449600pt;}
.y17_c00212{bottom:800.686400pt;}
.y13_c00212{bottom:815.036877pt;}
.y12_c00212{bottom:832.296870pt;}
.y16_c00212{bottom:846.648161pt;}
.y11_c00212{bottom:849.396863pt;}
.y14_c00212{bottom:858.318400pt;}
.y10_c00212{bottom:866.336856pt;}
.yf_c00212{bottom:877.103519pt;}
.ye_c00212{bottom:894.047379pt;}
.yd_c00212{bottom:908.611106pt;}
.yc_c00212{bottom:933.784829pt;}
.yb_c00212{bottom:956.429220pt;}
.y9_c00212{bottom:972.735480pt;}
.y7_c00212{bottom:1000.388100pt;}
.y6_c00212{bottom:1018.912492pt;}
.y5_c00212{bottom:1037.122485pt;}
.y4_c00212{bottom:1055.329411pt;}
.h11_c00212{height:7.444800pt;}
.he_c00212{height:7.758400pt;}
.h18_c00212{height:8.236800pt;}
.ha_c00212{height:11.241600pt;}
.h1a_c00212{height:13.142400pt;}
.h27_c00212{height:13.299200pt;}
.h28_c00212{height:13.302400pt;}
.h29_c00212{height:13.454400pt;}
.h26_c00212{height:13.457600pt;}
.h23_c00212{height:13.459200pt;}
.h20_c00212{height:13.460800pt;}
.h2b_c00212{height:13.462400pt;}
.h24_c00212{height:14.091200pt;}
.h2e_c00212{height:16.150400pt;}
.hc_c00212{height:16.305600pt;}
.h22_c00212{height:16.307200pt;}
.h14_c00212{height:16.468800pt;}
.h12_c00212{height:16.810991pt;}
.h19_c00212{height:17.726400pt;}
.h1b_c00212{height:17.740800pt;}
.hf_c00212{height:18.412124pt;}
.h16_c00212{height:19.160000pt;}
.h1d_c00212{height:21.614189pt;}
.h1f_c00212{height:23.215188pt;}
.h9_c00212{height:25.216554pt;}
.hb_c00212{height:26.817620pt;}
.h2f_c00212{height:30.019718pt;}
.h7_c00212{height:33.221817pt;}
.h6_c00212{height:36.824856pt;}
.h13_c00212{height:38.019917pt;}
.h25_c00212{height:40.026651pt;}
.h15_c00212{height:42.559601pt;}
.h2d_c00212{height:43.199600pt;}
.h17_c00212{height:43.228783pt;}
.h1c_c00212{height:47.046718pt;}
.h10_c00212{height:47.099284pt;}
.h8_c00212{height:47.151851pt;}
.h2_c00212{height:52.149123pt;}
.hd_c00212{height:52.207390pt;}
.h3_c00212{height:56.683311pt;}
.h21_c00212{height:56.746644pt;}
.h1e_c00212{height:56.809977pt;}
.h4_c00212{height:56.936644pt;}
.h5_c00212{height:1110.960672pt;}
.h2a_c00212{height:1122.235200pt;}
.h2c_c00212{height:1122.451041pt;}
.h1_c00212{height:1122.559167pt;}
.h0_c00212{height:1122.666667pt;}
.w33_c00212{width:3.326400pt;}
.w1c_c00212{width:3.957600pt;}
.w6_c00212{width:3.959360pt;}
.w19_c00212{width:4.115200pt;}
.we_c00212{width:4.116800pt;}
.w13_c00212{width:4.118400pt;}
.w1f_c00212{width:4.272000pt;}
.w1b_c00212{width:4.276320pt;}
.w9_c00212{width:4.905920pt;}
.w8_c00212{width:4.908800pt;}
.wf_c00212{width:4.912000pt;}
.w24_c00212{width:5.224000pt;}
.w22_c00212{width:5.225600pt;}
.w34_c00212{width:5.382400pt;}
.w12_c00212{width:5.697600pt;}
.wb_c00212{width:5.704000pt;}
.w36_c00212{width:5.859200pt;}
.w25_c00212{width:5.860800pt;}
.w35_c00212{width:6.017600pt;}
.w3_c00212{width:6.174400pt;}
.w10_c00212{width:6.484800pt;}
.w3a_c00212{width:6.488000pt;}
.w14_c00212{width:6.489600pt;}
.w7_c00212{width:6.490560pt;}
.w2a_c00212{width:6.491200pt;}
.wa_c00212{width:6.494400pt;}
.w38_c00212{width:6.649600pt;}
.w2d_c00212{width:6.651200pt;}
.w17_c00212{width:6.966400pt;}
.w11_c00212{width:6.969600pt;}
.w23_c00212{width:7.123200pt;}
.w21_c00212{width:7.280000pt;}
.w15_c00212{width:7.283200pt;}
.w20_c00212{width:7.283840pt;}
.wc_c00212{width:7.284800pt;}
.w2f_c00212{width:7.286400pt;}
.w27_c00212{width:7.756800pt;}
.w2e_c00212{width:7.760000pt;}
.w31_c00212{width:8.078400pt;}
.w1d_c00212{width:8.548800pt;}
.w5_c00212{width:9.024960pt;}
.w30_c00212{width:9.497440pt;}
.w2b_c00212{width:9.500640pt;}
.w26_c00212{width:9.814400pt;}
.w1e_c00212{width:9.974400pt;}
.w32_c00212{width:10.448000pt;}
.w4_c00212{width:10.924960pt;}
.w16_c00212{width:12.980800pt;}
.w18_c00212{width:12.982400pt;}
.w28_c00212{width:12.984320pt;}
.wd_c00212{width:13.777600pt;}
.w1a_c00212{width:14.411200pt;}
.w2c_c00212{width:16.620800pt;}
.w29_c00212{width:20.266560pt;}
.w39_c00212{width:23.270400pt;}
.w37_c00212{width:23.273600pt;}
.w2_c00212{width:785.062974pt;}
.w3b_c00212{width:793.032000pt;}
.w3c_c00212{width:793.182400pt;}
.w1_c00212{width:793.257550pt;}
.w0_c00212{width:793.333333pt;}
.x0_c00212{left:0.000000pt;}
.x7_c00212{left:1.370626pt;}
.x8_c00212{left:100.224934pt;}
.x3a_c00212{left:101.584309pt;}
.x2_c00212{left:112.190515pt;}
.x3b_c00212{left:113.616838pt;}
.x40_c00212{left:115.846240pt;}
.x12_c00212{left:116.955040pt;}
.x2a_c00212{left:118.527503pt;}
.x2b_c00212{left:129.144960pt;}
.x13_c00212{left:131.361920pt;}
.x2c_c00212{left:133.411363pt;}
.x14_c00212{left:140.386880pt;}
.x15_c00212{left:144.346240pt;}
.x16_c00212{left:150.836800pt;}
.x17_c00212{left:155.586880pt;}
.x18_c00212{left:160.492800pt;}
.x3e_c00212{left:164.612800pt;}
.x9_c00212{left:165.614641pt;}
.x19_c00212{left:166.827200pt;}
.x3f_c00212{left:169.521600pt;}
.x1a_c00212{left:175.536000pt;}
.x1b_c00212{left:186.302400pt;}
.x1c_c00212{left:200.080000pt;}
.xb_c00212{left:204.562625pt;}
.x1d_c00212{left:209.108800pt;}
.x1e_c00212{left:215.593600pt;}
.x1f_c00212{left:222.563200pt;}
.x4_c00212{left:224.448440pt;}
.x20_c00212{left:231.427200pt;}
.x3_c00212{left:240.124654pt;}
.x21_c00212{left:248.528000pt;}
.xc_c00212{left:251.590607pt;}
.x22_c00212{left:252.646400pt;}
.xd_c00212{left:255.708106pt;}
.x23_c00212{left:262.619200pt;}
.x24_c00212{left:269.108800pt;}
.x25_c00212{left:276.081600pt;}
.x26_c00212{left:289.062400pt;}
.x27_c00212{left:296.028800pt;}
.x6_c00212{left:307.886481pt;}
.x28_c00212{left:309.011200pt;}
.x29_c00212{left:313.126400pt;}
.xa_c00212{left:367.331894pt;}
.x5_c00212{left:373.596470pt;}
.x46_c00212{left:402.900800pt;}
.x3c_c00212{left:423.472581pt;}
.x47_c00212{left:431.401600pt;}
.xe_c00212{left:440.745600pt;}
.x48_c00212{left:441.849600pt;}
.x49_c00212{left:445.176000pt;}
.x1_c00212{left:446.111238pt;}
.xf_c00212{left:447.537904pt;}
.x2d_c00212{left:449.121904pt;}
.x4a_c00212{left:450.401600pt;}
.x4b_c00212{left:453.728000pt;}
.x4c_c00212{left:458.950400pt;}
.x2f_c00212{left:460.996732pt;}
.x2e_c00212{left:464.639231pt;}
.x43_c00212{left:487.134400pt;}
.x51_c00212{left:500.579216pt;}
.x44_c00212{left:502.004549pt;}
.x10_c00212{left:526.560000pt;}
.x11_c00212{left:543.171199pt;}
.x30_c00212{left:553.148491pt;}
.x34_c00212{left:562.500800pt;}
.x35_c00212{left:567.726400pt;}
.x36_c00212{left:574.849600pt;}
.x37_c00212{left:580.073600pt;}
.x38_c00212{left:585.934400pt;}
.x39_c00212{left:591.160000pt;}
.x33_c00212{left:608.564507pt;}
.x45_c00212{left:620.608000pt;}
.x31_c00212{left:622.668800pt;}
.x4f_c00212{left:629.004800pt;}
.x4d_c00212{left:632.801600pt;}
.x41_c00212{left:635.494400pt;}
.x32_c00212{left:638.009828pt;}
.x3d_c00212{left:639.134400pt;}
.x42_c00212{left:652.115200pt;}
.x4e_c00212{left:656.075200pt;}
.x50_c00212{left:658.926400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.112000;font-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_c00213{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v1_c00213{vertical-align:-2.854685px;}
.v0_c00213{vertical-align:0.000000px;}
.ls1_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:0.154341px;}
.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;}
}
.ws3_c00213{word-spacing:-17.966834px;}
.ws2_c00213{word-spacing:-17.812493px;}
.ws0_c00213{word-spacing:-16.387643px;}
.ws1_c00213{word-spacing:-14.784234px;}
.ws4_c00213{word-spacing:0.000000px;}
._3_c00213{margin-left:-4.877168px;}
._2_c00213{margin-left:-3.397076px;}
._0_c00213{margin-left:-1.339561px;}
._1_c00213{width:1.056634px;}
._4_c00213{width:2.376798px;}
._7_c00213{width:4.469030px;}
._6_c00213{width:6.173815px;}
._5_c00213{width:59.512759px;}
.fc1_c00213{color:rgb(105,148,45);}
.fc0_c00213{color:rgb(35,31,32);}
.fs5_c00213{font-size:32.774747px;}
.fs4_c00213{font-size:44.887062px;}
.fs3_c00213{font-size:47.737061px;}
.fs6_c00213{font-size:53.436999px;}
.fs2_c00213{font-size:59.136936px;}
.fs0_c00213{font-size:65.550574px;}
.fs1_c00213{font-size:71.249972px;}
.fs7_c00213{font-size:83.362767px;}
.y0_c00213{bottom:0.000000px;}
.y1_c00213{bottom:0.120938px;}
.y33_c00213{bottom:2.129652px;}
.y1c_c00213{bottom:2.132020px;}
.y48_c00213{bottom:2.138084px;}
.y38_c00213{bottom:2.487274px;}
.y3f_c00213{bottom:2.491480px;}
.y1f_c00213{bottom:2.669634px;}
.y27_c00213{bottom:2.852048px;}
.y14_c00213{bottom:3.025390px;}
.y42_c00213{bottom:3.025480px;}
.y23_c00213{bottom:3.199134px;}
.y2d_c00213{bottom:3.206048px;}
.y25_c00213{bottom:3.559741px;}
.y4b_c00213{bottom:3.560099px;}
.y2b_c00213{bottom:3.563347px;}
.y36_c00213{bottom:3.738867px;}
.y18_c00213{bottom:4.449224px;}
.y2f_c00213{bottom:4.450456px;}
.y44_c00213{bottom:4.451688px;}
.yf_c00213{bottom:4.452193px;}
.y3c_c00213{bottom:5.521476px;}
.y20_c00213{bottom:6.826644px;}
.y9_c00213{bottom:71.838984px;}
.y3_c00213{bottom:83.414442px;}
.y2_c00213{bottom:84.131629px;}
.y52_c00213{bottom:670.866294px;}
.y51_c00213{bottom:685.830288px;}
.y50_c00213{bottom:697.050284px;}
.y4c_c00213{bottom:733.921769px;}
.y4e_c00213{bottom:734.100269px;}
.y4f_c00213{bottom:735.346768px;}
.y4d_c00213{bottom:737.842767px;}
.y4a_c00213{bottom:749.721600px;}
.y46_c00213{bottom:772.220084px;}
.y49_c00213{bottom:775.780752px;}
.y43_c00213{bottom:776.439000px;}
.y45_c00213{bottom:785.578748px;}
.y47_c00213{bottom:787.656600px;}
.y3d_c00213{bottom:794.482745px;}
.y3e_c00213{bottom:797.281200px;}
.y41_c00213{bottom:800.362742px;}
.y40_c00213{bottom:801.429242px;}
.y3b_c00213{bottom:805.471200px;}
.y37_c00213{bottom:813.317400px;}
.y3a_c00213{bottom:816.397736px;}
.y39_c00213{bottom:817.465735px;}
.y35_c00213{bottom:829.342800px;}
.y31_c00213{bottom:852.018042px;}
.y34_c00213{bottom:855.579220px;}
.y2e_c00213{bottom:856.060200px;}
.y30_c00213{bottom:865.200216px;}
.y2c_c00213{bottom:866.445216px;}
.y32_c00213{bottom:867.285000px;}
.y26_c00213{bottom:876.900600px;}
.y2a_c00213{bottom:877.789800px;}
.y29_c00213{bottom:879.985710px;}
.y28_c00213{bottom:881.232210px;}
.y24_c00213{bottom:893.111400px;}
.y22_c00213{bottom:908.900490px;}
.y21_c00213{bottom:909.968489px;}
.y1e_c00213{bottom:912.528000px;}
.y1a_c00213{bottom:931.638010px;}
.y1d_c00213{bottom:935.380688px;}
.y17_c00213{bottom:935.861400px;}
.y19_c00213{bottom:945.000184px;}
.y1b_c00213{bottom:947.082600px;}
.y16_c00213{bottom:960.496678px;}
.y12_c00213{bottom:979.731921px;}
.y11_c00213{bottom:998.968663px;}
.y15_c00213{bottom:1008.588159px;}
.ye_c00213{bottom:1014.233400px;}
.y10_c00213{bottom:1018.207655px;}
.y13_c00213{bottom:1021.714200px;}
.yd_c00213{bottom:1037.979237px;}
.yc_c00213{bottom:1052.763141px;}
.yb_c00213{bottom:1067.194636px;}
.ya_c00213{bottom:1080.550630px;}
.y8_c00213{bottom:1101.033122px;}
.y7_c00213{bottom:1125.436612px;}
.y6_c00213{bottom:1146.276554px;}
.y5_c00213{bottom:1166.762796px;}
.y4_c00213{bottom:1187.245588px;}
.h1b_c00213{height:8.724600px;}
.h10_c00213{height:8.726400px;}
.h21_c00213{height:8.733600px;}
.hb_c00213{height:12.468600px;}
.h19_c00213{height:14.427000px;}
.h13_c00213{height:15.136200px;}
.h1f_c00213{height:15.145200px;}
.h18_c00213{height:15.316200px;}
.h22_c00213{height:18.523800px;}
.h16_c00213{height:18.525600px;}
.h1c_c00213{height:18.702000px;}
.he_c00213{height:19.947600px;}
.h9_c00213{height:19.949400px;}
.h20_c00213{height:19.951200px;}
.h11_c00213{height:20.713640px;}
.h1d_c00213{height:22.982400px;}
.hc_c00213{height:28.368623px;}
.h8_c00213{height:30.169822px;}
.h1a_c00213{height:33.772183px;}
.h6_c00213{height:37.374544px;}
.h5_c00213{height:41.427963px;}
.hf_c00213{height:42.772407px;}
.h12_c00213{height:47.879551px;}
.h1e_c00213{height:52.685269px;}
.h23_c00213{height:52.927558px;}
.h14_c00213{height:52.986695px;}
.ha_c00213{height:53.045832px;}
.h2_c00213{height:58.667764px;}
.hd_c00213{height:58.733314px;}
.h3_c00213{height:63.768724px;}
.h17_c00213{height:63.839974px;}
.h7_c00213{height:63.911224px;}
.h4_c00213{height:64.053724px;}
.h15_c00213{height:1249.830756px;}
.h1_c00213{height:1262.879062px;}
.h0_c00213{height:1263.000000px;}
.w2_c00213{width:4.808700px;}
.w14_c00213{width:4.809600px;}
.w7_c00213{width:4.811400px;}
.w1e_c00213{width:4.986000px;}
.w24_c00213{width:5.346000px;}
.w25_c00213{width:5.873400px;}
.wf_c00213{width:5.875200px;}
.w33_c00213{width:5.878080px;}
.w18_c00213{width:5.879520px;}
.w28_c00213{width:6.053400px;}
.w20_c00213{width:6.408000px;}
.w4_c00213{width:6.588000px;}
.w3_c00213{width:6.589800px;}
.wc_c00213{width:7.479000px;}
.w2f_c00213{width:7.482600px;}
.w1f_c00213{width:7.835400px;}
.w31_c00213{width:7.839900px;}
.w13_c00213{width:7.840800px;}
.w1b_c00213{width:8.015400px;}
.w16_c00213{width:8.017020px;}
.w29_c00213{width:8.017200px;}
.w8_c00213{width:8.186400px;}
.w6_c00213{width:8.193600px;}
.w5_c00213{width:8.194140px;}
.w1c_c00213{width:8.197200px;}
.w22_c00213{width:8.375400px;}
.w11_c00213{width:8.548200px;}
.w32_c00213{width:8.903700px;}
.w17_c00213{width:8.904420px;}
.w1d_c00213{width:8.906400px;}
.w23_c00213{width:8.908200px;}
.w15_c00213{width:10.330200px;}
.w9_c00213{width:10.684620px;}
.w2c_c00213{width:10.685340px;}
.w2e_c00213{width:11.039400px;}
.w2d_c00213{width:12.292200px;}
.wd_c00213{width:13.361400px;}
.w30_c00213{width:14.961780px;}
.w19_c00213{width:14.961960px;}
.w27_c00213{width:15.672600px;}
.w2b_c00213{width:15.849000px;}
.w21_c00213{width:15.854400px;}
.w26_c00213{width:15.856200px;}
.w12_c00213{width:17.989200px;}
.wb_c00213{width:18.707400px;}
.w2a_c00213{width:18.882000px;}
.w10_c00213{width:19.062360px;}
.w1a_c00213{width:20.302200px;}
.we_c00213{width:21.732300px;}
.wa_c00213{width:883.195846px;}
.w1_c00213{width:892.414744px;}
.w0_c00213{width:892.500000px;}
.x0_c00213{left:0.000000px;}
.x18_c00213{left:1.541954px;}
.x7_c00213{left:114.282348px;}
.x9_c00213{left:121.776300px;}
.x2_c00213{left:126.214330px;}
.x8_c00213{left:127.818943px;}
.x17_c00213{left:133.000380px;}
.x1d_c00213{left:144.576540px;}
.x23_c00213{left:155.264040px;}
.x19_c00213{left:156.928483px;}
.x13_c00213{left:158.457780px;}
.x39_c00213{left:159.538320px;}
.x24_c00213{left:163.102500px;}
.x1e_c00213{left:166.308840px;}
.x3a_c00213{left:167.378220px;}
.x1f_c00213{left:172.184040px;}
.x3b_c00213{left:176.281920px;}
.x25_c00213{left:177.886440px;}
.x3e_c00213{left:180.366772px;}
.x3c_c00213{left:182.160000px;}
.xa_c00213{left:185.708269px;}
.x20_c00213{left:191.246400px;}
.x26_c00213{left:192.848400px;}
.x21_c00213{left:199.794600px;}
.x27_c00213{left:216.181800px;}
.x28_c00213{left:224.019000px;}
.xc_c00213{left:229.529252px;}
.x29_c00213{left:232.216200px;}
.x2a_c00213{left:241.122600px;}
.x2b_c00213{left:246.108600px;}
.x4_c00213{left:252.504495px;}
.x2c_c00213{left:258.930000px;}
.x3_c00213{left:270.140236px;}
.x2d_c00213{left:278.701200px;}
.xd_c00213{left:282.428231px;}
.xe_c00213{left:286.704633px;}
.x2e_c00213{left:290.993400px;}
.x2f_c00213{left:299.901600px;}
.x30_c00213{left:305.247600px;}
.x31_c00213{left:311.121000px;}
.x32_c00213{left:330.719400px;}
.x6_c00213{left:346.372291px;}
.x33_c00213{left:352.445400px;}
.x34_c00213{left:360.284400px;}
.x35_c00213{left:379.166400px;}
.x36_c00213{left:387.001800px;}
.xb_c00213{left:412.638679px;}
.x5_c00213{left:420.296029px;}
.xf_c00213{left:490.669200px;}
.x10_c00213{left:492.972647px;}
.x1_c00213{left:501.875143px;}
.x1a_c00213{left:504.980844px;}
.x22_c00213{left:506.510141px;}
.x14_c00213{left:570.468600px;}
.x11_c00213{left:576.705600px;}
.x15_c00213{left:578.117112px;}
.x12_c00213{left:647.049585px;}
.x16_c00213{left:704.246400px;}
.x3d_c00213{left:720.968055px;}
.x1b_c00213{left:724.365000px;}
.x37_c00213{left:725.441400px;}
.x38_c00213{left:736.480800px;}
.x1c_c00213{left:743.072400px;}
@media print{
.v1_c00213{vertical-align:-2.537498pt;}
.v0_c00213{vertical-align:0.000000pt;}
.ls1_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:0.137192pt;}
.ws3_c00213{word-spacing:-15.970519pt;}
.ws2_c00213{word-spacing:-15.833327pt;}
.ws0_c00213{word-spacing:-14.566794pt;}
.ws1_c00213{word-spacing:-13.141541pt;}
.ws4_c00213{word-spacing:0.000000pt;}
._3_c00213{margin-left:-4.335260pt;}
._2_c00213{margin-left:-3.019623pt;}
._0_c00213{margin-left:-1.190721pt;}
._1_c00213{width:0.939230pt;}
._4_c00213{width:2.112710pt;}
._7_c00213{width:3.972472pt;}
._6_c00213{width:5.487836pt;}
._5_c00213{width:52.900230pt;}
.fs5_c00213{font-size:29.133108pt;}
.fs4_c00213{font-size:39.899611pt;}
.fs3_c00213{font-size:42.432943pt;}
.fs6_c00213{font-size:47.499554pt;}
.fs2_c00213{font-size:52.566166pt;}
.fs0_c00213{font-size:58.267177pt;}
.fs1_c00213{font-size:63.333308pt;}
.fs7_c00213{font-size:74.100237pt;}
.y0_c00213{bottom:0.000000pt;}
.y1_c00213{bottom:0.107500pt;}
.y33_c00213{bottom:1.893024pt;}
.y1c_c00213{bottom:1.895129pt;}
.y48_c00213{bottom:1.900519pt;}
.y38_c00213{bottom:2.210910pt;}
.y3f_c00213{bottom:2.214649pt;}
.y1f_c00213{bottom:2.373008pt;}
.y27_c00213{bottom:2.535154pt;}
.y14_c00213{bottom:2.689236pt;}
.y42_c00213{bottom:2.689315pt;}
.y23_c00213{bottom:2.843674pt;}
.y2d_c00213{bottom:2.849820pt;}
.y25_c00213{bottom:3.164215pt;}
.y4b_c00213{bottom:3.164532pt;}
.y2b_c00213{bottom:3.167420pt;}
.y36_c00213{bottom:3.323437pt;}
.y18_c00213{bottom:3.954866pt;}
.y2f_c00213{bottom:3.955961pt;}
.y44_c00213{bottom:3.957056pt;}
.yf_c00213{bottom:3.957504pt;}
.y3c_c00213{bottom:4.907978pt;}
.y20_c00213{bottom:6.068128pt;}
.y9_c00213{bottom:63.856874pt;}
.y3_c00213{bottom:74.146170pt;}
.y2_c00213{bottom:74.783670pt;}
.y52_c00213{bottom:596.325595pt;}
.y51_c00213{bottom:609.626923pt;}
.y50_c00213{bottom:619.600252pt;}
.y4c_c00213{bottom:652.374906pt;}
.y4e_c00213{bottom:652.533572pt;}
.y4f_c00213{bottom:653.641572pt;}
.y4d_c00213{bottom:655.860238pt;}
.y4a_c00213{bottom:666.419200pt;}
.y46_c00213{bottom:686.417852pt;}
.y49_c00213{bottom:689.582891pt;}
.y43_c00213{bottom:690.168000pt;}
.y45_c00213{bottom:698.292221pt;}
.y47_c00213{bottom:700.139200pt;}
.y3d_c00213{bottom:706.206884pt;}
.y3e_c00213{bottom:708.694400pt;}
.y41_c00213{bottom:711.433549pt;}
.y40_c00213{bottom:712.381548pt;}
.y3b_c00213{bottom:715.974400pt;}
.y37_c00213{bottom:722.948800pt;}
.y3a_c00213{bottom:725.686876pt;}
.y39_c00213{bottom:726.636209pt;}
.y35_c00213{bottom:737.193600pt;}
.y31_c00213{bottom:757.349370pt;}
.y34_c00213{bottom:760.514862pt;}
.y2e_c00213{bottom:760.942400pt;}
.y30_c00213{bottom:769.066859pt;}
.y2c_c00213{bottom:770.173525pt;}
.y32_c00213{bottom:770.920000pt;}
.y26_c00213{bottom:779.467200pt;}
.y2a_c00213{bottom:780.257600pt;}
.y29_c00213{bottom:782.209520pt;}
.y28_c00213{bottom:783.317520pt;}
.y24_c00213{bottom:793.876800pt;}
.y22_c00213{bottom:807.911546pt;}
.y21_c00213{bottom:808.860879pt;}
.y1e_c00213{bottom:811.136000pt;}
.y1a_c00213{bottom:828.122675pt;}
.y1d_c00213{bottom:831.449501pt;}
.y17_c00213{bottom:831.876800pt;}
.y19_c00213{bottom:840.000164pt;}
.y1b_c00213{bottom:841.851200pt;}
.y16_c00213{bottom:853.774825pt;}
.y12_c00213{bottom:870.872818pt;}
.y11_c00213{bottom:887.972145pt;}
.y15_c00213{bottom:896.522808pt;}
.ye_c00213{bottom:901.540800pt;}
.y10_c00213{bottom:905.073471pt;}
.y13_c00213{bottom:908.190400pt;}
.yd_c00213{bottom:922.648211pt;}
.yc_c00213{bottom:935.789459pt;}
.yb_c00213{bottom:948.617454pt;}
.ya_c00213{bottom:960.489449pt;}
.y8_c00213{bottom:978.696108pt;}
.y7_c00213{bottom:1000.388100pt;}
.y6_c00213{bottom:1018.912492pt;}
.y5_c00213{bottom:1037.122485pt;}
.y4_c00213{bottom:1055.329411pt;}
.h1b_c00213{height:7.755200pt;}
.h10_c00213{height:7.756800pt;}
.h21_c00213{height:7.763200pt;}
.hb_c00213{height:11.083200pt;}
.h19_c00213{height:12.824000pt;}
.h13_c00213{height:13.454400pt;}
.h1f_c00213{height:13.462400pt;}
.h18_c00213{height:13.614400pt;}
.h22_c00213{height:16.465600pt;}
.h16_c00213{height:16.467200pt;}
.h1c_c00213{height:16.624000pt;}
.he_c00213{height:17.731200pt;}
.h9_c00213{height:17.732800pt;}
.h20_c00213{height:17.734400pt;}
.h11_c00213{height:18.412124pt;}
.h1d_c00213{height:20.428800pt;}
.hc_c00213{height:25.216554pt;}
.h8_c00213{height:26.817620pt;}
.h1a_c00213{height:30.019718pt;}
.h6_c00213{height:33.221817pt;}
.h5_c00213{height:36.824856pt;}
.hf_c00213{height:38.019917pt;}
.h12_c00213{height:42.559601pt;}
.h1e_c00213{height:46.831350pt;}
.h23_c00213{height:47.046718pt;}
.h14_c00213{height:47.099284pt;}
.ha_c00213{height:47.151851pt;}
.h2_c00213{height:52.149123pt;}
.hd_c00213{height:52.207390pt;}
.h3_c00213{height:56.683311pt;}
.h17_c00213{height:56.746644pt;}
.h7_c00213{height:56.809977pt;}
.h4_c00213{height:56.936644pt;}
.h15_c00213{height:1110.960672pt;}
.h1_c00213{height:1122.559167pt;}
.h0_c00213{height:1122.666667pt;}
.w2_c00213{width:4.274400pt;}
.w14_c00213{width:4.275200pt;}
.w7_c00213{width:4.276800pt;}
.w1e_c00213{width:4.432000pt;}
.w24_c00213{width:4.752000pt;}
.w25_c00213{width:5.220800pt;}
.wf_c00213{width:5.222400pt;}
.w33_c00213{width:5.224960pt;}
.w18_c00213{width:5.226240pt;}
.w28_c00213{width:5.380800pt;}
.w20_c00213{width:5.696000pt;}
.w4_c00213{width:5.856000pt;}
.w3_c00213{width:5.857600pt;}
.wc_c00213{width:6.648000pt;}
.w2f_c00213{width:6.651200pt;}
.w1f_c00213{width:6.964800pt;}
.w31_c00213{width:6.968800pt;}
.w13_c00213{width:6.969600pt;}
.w1b_c00213{width:7.124800pt;}
.w16_c00213{width:7.126240pt;}
.w29_c00213{width:7.126400pt;}
.w8_c00213{width:7.276800pt;}
.w6_c00213{width:7.283200pt;}
.w5_c00213{width:7.283680pt;}
.w1c_c00213{width:7.286400pt;}
.w22_c00213{width:7.444800pt;}
.w11_c00213{width:7.598400pt;}
.w32_c00213{width:7.914400pt;}
.w17_c00213{width:7.915040pt;}
.w1d_c00213{width:7.916800pt;}
.w23_c00213{width:7.918400pt;}
.w15_c00213{width:9.182400pt;}
.w9_c00213{width:9.497440pt;}
.w2c_c00213{width:9.498080pt;}
.w2e_c00213{width:9.812800pt;}
.w2d_c00213{width:10.926400pt;}
.wd_c00213{width:11.876800pt;}
.w30_c00213{width:13.299360pt;}
.w19_c00213{width:13.299520pt;}
.w27_c00213{width:13.931200pt;}
.w2b_c00213{width:14.088000pt;}
.w21_c00213{width:14.092800pt;}
.w26_c00213{width:14.094400pt;}
.w12_c00213{width:15.990400pt;}
.wb_c00213{width:16.628800pt;}
.w2a_c00213{width:16.784000pt;}
.w10_c00213{width:16.944320pt;}
.w1a_c00213{width:18.046400pt;}
.we_c00213{width:19.317600pt;}
.wa_c00213{width:785.062974pt;}
.w1_c00213{width:793.257550pt;}
.w0_c00213{width:793.333333pt;}
.x0_c00213{left:0.000000pt;}
.x18_c00213{left:1.370626pt;}
.x7_c00213{left:101.584309pt;}
.x9_c00213{left:108.245600pt;}
.x2_c00213{left:112.190515pt;}
.x8_c00213{left:113.616838pt;}
.x17_c00213{left:118.222560pt;}
.x1d_c00213{left:128.512480pt;}
.x23_c00213{left:138.012480pt;}
.x19_c00213{left:139.491985pt;}
.x13_c00213{left:140.851360pt;}
.x39_c00213{left:141.811840pt;}
.x24_c00213{left:144.980000pt;}
.x1e_c00213{left:147.830080pt;}
.x3a_c00213{left:148.780640pt;}
.x1f_c00213{left:153.052480pt;}
.x3b_c00213{left:156.695040pt;}
.x25_c00213{left:158.121280pt;}
.x3e_c00213{left:160.326019pt;}
.x3c_c00213{left:161.920000pt;}
.xa_c00213{left:165.074017pt;}
.x20_c00213{left:169.996800pt;}
.x26_c00213{left:171.420800pt;}
.x21_c00213{left:177.595200pt;}
.x27_c00213{left:192.161600pt;}
.x28_c00213{left:199.128000pt;}
.xc_c00213{left:204.026002pt;}
.x29_c00213{left:206.414400pt;}
.x2a_c00213{left:214.331200pt;}
.x2b_c00213{left:218.763200pt;}
.x4_c00213{left:224.448440pt;}
.x2c_c00213{left:230.160000pt;}
.x3_c00213{left:240.124654pt;}
.x2d_c00213{left:247.734400pt;}
.xd_c00213{left:251.047316pt;}
.xe_c00213{left:254.848563pt;}
.x2e_c00213{left:258.660800pt;}
.x2f_c00213{left:266.579200pt;}
.x30_c00213{left:271.331200pt;}
.x31_c00213{left:276.552000pt;}
.x32_c00213{left:293.972800pt;}
.x6_c00213{left:307.886481pt;}
.x33_c00213{left:313.284800pt;}
.x34_c00213{left:320.252800pt;}
.x35_c00213{left:337.036800pt;}
.x36_c00213{left:344.001600pt;}
.xb_c00213{left:366.789937pt;}
.x5_c00213{left:373.596470pt;}
.xf_c00213{left:436.150400pt;}
.x10_c00213{left:438.197908pt;}
.x1_c00213{left:446.111238pt;}
.x1a_c00213{left:448.871861pt;}
.x22_c00213{left:450.231237pt;}
.x14_c00213{left:507.083200pt;}
.x11_c00213{left:512.627200pt;}
.x15_c00213{left:513.881878pt;}
.x12_c00213{left:575.155187pt;}
.x16_c00213{left:625.996800pt;}
.x3d_c00213{left:640.860494pt;}
.x1b_c00213{left:643.880000pt;}
.x37_c00213{left:644.836800pt;}
.x38_c00213{left:654.649600pt;}
.x1c_c00213{left:660.508800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00214{transform:matrix(0.241132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241132,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v2_c00214{vertical-align:-2.854685px;}
.v0_c00214{vertical-align:0.000000px;}
.v1_c00214{vertical-align:8.547177px;}
.ls0_c00214{letter-spacing:0.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:-16.387643px;}
.ws2_c00214{word-spacing:-14.784234px;}
.ws1_c00214{word-spacing:-13.359250px;}
.ws3_c00214{word-spacing:0.000000px;}
._2_c00214{margin-left:-4.300604px;}
._3_c00214{margin-left:-2.779119px;}
._0_c00214{margin-left:-1.339561px;}
._1_c00214{width:1.056634px;}
._4_c00214{width:2.151623px;}
._8_c00214{width:6.152896px;}
._7_c00214{width:7.599411px;}
._6_c00214{width:9.327473px;}
._5_c00214{width:75.922672px;}
.fc1_c00214{color:rgb(105,148,45);}
.fc0_c00214{color:rgb(35,31,32);}
.fs7_c00214{font-size:29.924628px;}
.fs8_c00214{font-size:32.774747px;}
.fs3_c00214{font-size:41.324503px;}
.fs6_c00214{font-size:44.887062px;}
.fs4_c00214{font-size:47.737061px;}
.fs5_c00214{font-size:53.436999px;}
.fs2_c00214{font-size:59.136936px;}
.fs0_c00214{font-size:65.550574px;}
.fs1_c00214{font-size:71.249972px;}
.y9e_c00214{bottom:-0.540451px;}
.y40_c00214{bottom:-0.534926px;}
.y73_c00214{bottom:-0.360821px;}
.yb2_c00214{bottom:-0.360119px;}
.y11_c00214{bottom:-0.360104px;}
.y85_c00214{bottom:-0.358409px;}
.y58_c00214{bottom:-0.357876px;}
.y43_c00214{bottom:-0.357620px;}
.y82_c00214{bottom:-0.357215px;}
.yc2_c00214{bottom:-0.356793px;}
.ya5_c00214{bottom:-0.356238px;}
.yc6_c00214{bottom:-0.356187px;}
.ybe_c00214{bottom:-0.355300px;}
.ya1_c00214{bottom:-0.176545px;}
.y0_c00214{bottom:0.000000px;}
.y1_c00214{bottom:0.120938px;}
.y4d_c00214{bottom:0.485156px;}
.y32_c00214{bottom:1.955928px;}
.y22_c00214{bottom:2.135324px;}
.yba_c00214{bottom:2.492293px;}
.ya9_c00214{bottom:2.492567px;}
.yb6_c00214{bottom:2.495586px;}
.y91_c00214{bottom:2.670416px;}
.y68_c00214{bottom:2.846150px;}
.y24_c00214{bottom:2.847814px;}
.y97_c00214{bottom:2.849829px;}
.y16_c00214{bottom:3.022401px;}
.y56_c00214{bottom:3.025516px;}
.y2d_c00214{bottom:3.025729px;}
.y4a_c00214{bottom:3.027291px;}
.yac_c00214{bottom:3.028067px;}
.yae_c00214{bottom:3.199073px;}
.y14_c00214{bottom:3.200895px;}
.y19_c00214{bottom:3.200901px;}
.yc9_c00214{bottom:3.203312px;}
.yf_c00214{bottom:3.736088px;}
.y1b_c00214{bottom:3.740309px;}
.y60_c00214{bottom:3.913829px;}
.y76_c00214{bottom:3.915677px;}
.y6f_c00214{bottom:4.273870px;}
.y64_c00214{bottom:4.448145px;}
.y99_c00214{bottom:4.449736px;}
.y93_c00214{bottom:4.450024px;}
.y46_c00214{bottom:4.450786px;}
.y3b_c00214{bottom:4.451061px;}
.y4c_c00214{bottom:4.451399px;}
.y1d_c00214{bottom:4.451617px;}
.y36_c00214{bottom:4.451649px;}
.ycb_c00214{bottom:4.451920px;}
.y5b_c00214{bottom:4.452031px;}
.y52_c00214{bottom:4.452612px;}
.y88_c00214{bottom:4.452698px;}
.y6a_c00214{bottom:4.452958px;}
.y8d_c00214{bottom:4.455112px;}
.y9_c00214{bottom:71.838984px;}
.y3_c00214{bottom:83.414442px;}
.y2_c00214{bottom:84.131629px;}
.yd1_c00214{bottom:143.268055px;}
.yd0_c00214{bottom:158.410999px;}
.ycf_c00214{bottom:169.450995px;}
.yce_c00214{bottom:189.046687px;}
.yca_c00214{bottom:196.470000px;}
.ycd_c00214{bottom:204.364981px;}
.ycc_c00214{bottom:205.428480px;}
.yc5_c00214{bottom:217.308600px;}
.yc8_c00214{bottom:217.488600px;}
.yc7_c00214{bottom:221.464974px;}
.yc1_c00214{bottom:233.341200px;}
.yc4_c00214{bottom:236.425968px;}
.yc3_c00214{bottom:237.495467px;}
.ybd_c00214{bottom:249.370200px;}
.yc0_c00214{bottom:252.092243px;}
.ybf_c00214{bottom:253.161743px;}
.yb9_c00214{bottom:265.404600px;}
.ybc_c00214{bottom:268.489955px;}
.ybb_c00214{bottom:269.554955px;}
.yb5_c00214{bottom:281.431800px;}
.yb8_c00214{bottom:284.517449px;}
.yb7_c00214{bottom:285.586948px;}
.yb1_c00214{bottom:297.468000px;}
.yb4_c00214{bottom:300.185224px;}
.yb3_c00214{bottom:301.251724px;}
.yad_c00214{bottom:313.498800px;}
.yb0_c00214{bottom:316.576936px;}
.yaf_c00214{bottom:317.646435px;}
.ya8_c00214{bottom:329.527800px;}
.yab_c00214{bottom:332.611929px;}
.yaa_c00214{bottom:333.678429px;}
.ya4_c00214{bottom:345.558600px;}
.ya7_c00214{bottom:348.279705px;}
.ya6_c00214{bottom:349.346204px;}
.ya0_c00214{bottom:361.589400px;}
.ya3_c00214{bottom:364.851417px;}
.ya2_c00214{bottom:365.919416px;}
.y9d_c00214{bottom:377.803800px;}
.y9f_c00214{bottom:381.771410px;}
.y9c_c00214{bottom:396.729535px;}
.y98_c00214{bottom:404.517600px;}
.y80_c00214{bottom:405.465700px;}
.y9b_c00214{bottom:411.869179px;}
.y9a_c00214{bottom:413.111179px;}
.y7f_c00214{bottom:420.961894px;}
.y96_c00214{bottom:425.358000px;}
.y92_c00214{bottom:435.691800px;}
.y7e_c00214{bottom:436.279888px;}
.y95_c00214{bottom:443.049385px;}
.y94_c00214{bottom:444.649885px;}
.y7d_c00214{bottom:453.196041px;}
.y90_c00214{bottom:456.530400px;}
.y8c_c00214{bottom:466.324200px;}
.y7c_c00214{bottom:467.979945px;}
.y8f_c00214{bottom:473.678155px;}
.y8e_c00214{bottom:474.920154px;}
.y7b_c00214{bottom:482.942439px;}
.y8b_c00214{bottom:491.671866px;}
.y7a_c00214{bottom:497.728443px;}
.y87_c00214{bottom:501.060600px;}
.y8a_c00214{bottom:506.814360px;}
.y89_c00214{bottom:510.019858px;}
.y79_c00214{bottom:512.514447px;}
.y84_c00214{bottom:521.899200px;}
.y86_c00214{bottom:526.051852px;}
.y78_c00214{bottom:527.476941px;}
.y81_c00214{bottom:537.930000px;}
.y83_c00214{bottom:542.082346px;}
.y77_c00214{bottom:542.260846px;}
.y75_c00214{bottom:553.251600px;}
.y72_c00214{bottom:553.962600px;}
.y74_c00214{bottom:558.115839px;}
.y6e_c00214{bottom:569.993400px;}
.y71_c00214{bottom:575.571332px;}
.y70_c00214{bottom:578.778331px;}
.y6d_c00214{bottom:593.919175px;}
.y69_c00214{bottom:601.696800px;}
.y6c_c00214{bottom:609.238819px;}
.y6b_c00214{bottom:610.660818px;}
.y67_c00214{bottom:622.542600px;}
.y63_c00214{bottom:631.983600px;}
.y66_c00214{bottom:639.874807px;}
.y65_c00214{bottom:640.942806px;}
.y62_c00214{bottom:645.928654px;}
.y5e_c00214{bottom:658.576349px;}
.y61_c00214{bottom:661.248298px;}
.y5a_c00214{bottom:669.031200px;}
.y5f_c00214{bottom:672.593400px;}
.y5d_c00214{bottom:674.073293px;}
.y5c_c00214{bottom:677.994291px;}
.y57_c00214{bottom:689.871600px;}
.y59_c00214{bottom:694.023285px;}
.y55_c00214{bottom:705.904200px;}
.y51_c00214{bottom:716.232600px;}
.y54_c00214{bottom:723.949773px;}
.y53_c00214{bottom:725.194772px;}
.y50_c00214{bottom:739.973498px;}
.y4b_c00214{bottom:748.117800px;}
.y4f_c00214{bottom:755.291042px;}
.y4e_c00214{bottom:756.714541px;}
.y49_c00214{bottom:768.956400px;}
.y45_c00214{bottom:779.468400px;}
.y48_c00214{bottom:787.177748px;}
.y47_c00214{bottom:788.425747px;}
.y42_c00214{bottom:800.308800px;}
.y44_c00214{bottom:804.456241px;}
.y3f_c00214{bottom:816.339600px;}
.y41_c00214{bottom:820.315734px;}
.y3e_c00214{bottom:835.277178px;}
.y3a_c00214{bottom:842.880600px;}
.y3d_c00214{bottom:850.594722px;}
.y3c_c00214{bottom:851.841222px;}
.y2b_c00214{bottom:860.391518px;}
.y39_c00214{bottom:866.800806px;}
.y35_c00214{bottom:874.053000px;}
.y2a_c00214{bottom:875.887712px;}
.y38_c00214{bottom:881.764710px;}
.y37_c00214{bottom:883.012709px;}
.y29_c00214{bottom:891.026786px;}
.y34_c00214{bottom:900.642652px;}
.y28_c00214{bottom:905.809280px;}
.y2e_c00214{bottom:910.977198px;}
.y30_c00214{bottom:911.692233px;}
.y33_c00214{bottom:916.320196px;}
.y27_c00214{bottom:920.595284px;}
.y2c_c00214{bottom:923.747400px;}
.y2f_c00214{bottom:925.230192px;}
.y31_c00214{bottom:928.024200px;}
.y26_c00214{bottom:935.556368px;}
.y21_c00214{bottom:936.928800px;}
.y1f_c00214{bottom:947.667423px;}
.y25_c00214{bottom:950.341682px;}
.y1c_c00214{bottom:953.496000px;}
.y20_c00214{bottom:954.438181px;}
.y1e_c00214{bottom:961.384678px;}
.y23_c00214{bottom:961.507800px;}
.y1a_c00214{bottom:974.332800px;}
.y15_c00214{bottom:993.751200px;}
.y18_c00214{bottom:996.831164px;}
.y17_c00214{bottom:998.077663px;}
.y10_c00214{bottom:1009.960200px;}
.y13_c00214{bottom:1013.040157px;}
.y12_c00214{bottom:1014.109657px;}
.ye_c00214{bottom:1025.991000px;}
.yd_c00214{bottom:1047.243144px;}
.yb_c00214{bottom:1060.065588px;}
.yc_c00214{bottom:1060.066638px;}
.ya_c00214{bottom:1082.155630px;}
.y8_c00214{bottom:1101.033122px;}
.y7_c00214{bottom:1125.436612px;}
.y6_c00214{bottom:1146.276554px;}
.y5_c00214{bottom:1166.762796px;}
.y4_c00214{bottom:1187.245588px;}
.h18_c00214{height:8.015400px;}
.h15_c00214{height:11.935800px;}
.h16_c00214{height:12.292200px;}
.h14_c00214{height:14.072400px;}
.h28_c00214{height:14.607000px;}
.h22_c00214{height:14.779800px;}
.h29_c00214{height:14.785200px;}
.h1f_c00214{height:14.959800px;}
.h1c_c00214{height:14.961600px;}
.h1d_c00214{height:14.963400px;}
.h2b_c00214{height:15.136200px;}
.h11_c00214{height:15.138000px;}
.hc_c00214{height:15.139800px;}
.h2a_c00214{height:15.141600px;}
.h26_c00214{height:15.143400px;}
.hf_c00214{height:15.318000px;}
.h25_c00214{height:15.849000px;}
.h20_c00214{height:16.387200px;}
.ha_c00214{height:18.345600px;}
.h12_c00214{height:18.347400px;}
.h19_c00214{height:18.912365px;}
.h23_c00214{height:19.773000px;}
.h21_c00214{height:19.944000px;}
.h13_c00214{height:19.947600px;}
.h1b_c00214{height:19.949400px;}
.h1a_c00214{height:19.951200px;}
.h27_c00214{height:19.954800px;}
.h2d_c00214{height:20.713640px;}
.h9_c00214{height:26.117086px;}
.h17_c00214{height:28.368623px;}
.h6_c00214{height:37.374544px;}
.h5_c00214{height:41.427963px;}
.hd_c00214{height:42.772407px;}
.h7_c00214{height:45.029982px;}
.he_c00214{height:47.879551px;}
.h2c_c00214{height:52.927558px;}
.h10_c00214{height:52.986695px;}
.h24_c00214{height:56.426727px;}
.h2_c00214{height:58.667764px;}
.hb_c00214{height:58.733314px;}
.h3_c00214{height:63.768724px;}
.h8_c00214{height:63.911224px;}
.h4_c00214{height:64.053724px;}
.h1e_c00214{height:1262.514600px;}
.h1_c00214{height:1262.879062px;}
.h0_c00214{height:1263.000000px;}
.w3f_c00214{width:3.736800px;}
.w3b_c00214{width:3.740400px;}
.w38_c00214{width:3.922200px;}
.w2c_c00214{width:4.453200px;}
.w14_c00214{width:4.627800px;}
.w1a_c00214{width:4.629600px;}
.w10_c00214{width:4.629960px;}
.w17_c00214{width:4.631400px;}
.w1b_c00214{width:4.633200px;}
.w21_c00214{width:4.635000px;}
.w33_c00214{width:5.344200px;}
.w22_c00214{width:5.517000px;}
.w7_c00214{width:5.522400px;}
.w31_c00214{width:5.868000px;}
.w3c_c00214{width:5.880600px;}
.w28_c00214{width:6.055200px;}
.w2a_c00214{width:6.057000px;}
.w39_c00214{width:6.233400px;}
.w5_c00214{width:6.408900px;}
.w1f_c00214{width:6.415200px;}
.w2b_c00214{width:6.590340px;}
.w29_c00214{width:6.591600px;}
.w3d_c00214{width:6.768000px;}
.w27_c00214{width:6.769800px;}
.w26_c00214{width:6.773400px;}
.w18_c00214{width:7.300800px;}
.w11_c00214{width:7.304220px;}
.w13_c00214{width:7.304400px;}
.w4_c00214{width:7.306200px;}
.we_c00214{width:7.480800px;}
.w24_c00214{width:7.484400px;}
.w1c_c00214{width:7.837200px;}
.w37_c00214{width:7.839000px;}
.w12_c00214{width:8.015580px;}
.w6_c00214{width:8.017200px;}
.w20_c00214{width:8.191800px;}
.w1d_c00214{width:8.193600px;}
.w9_c00214{width:8.194320px;}
.w2d_c00214{width:8.195400px;}
.wb_c00214{width:8.200800px;}
.w2f_c00214{width:8.724600px;}
.w30_c00214{width:9.626400px;}
.w3a_c00214{width:10.153800px;}
.w3e_c00214{width:10.508400px;}
.wc_c00214{width:10.686060px;}
.w35_c00214{width:10.687500px;}
.wa_c00214{width:10.864800px;}
.w3_c00214{width:10.865340px;}
.w2_c00214{width:12.290580px;}
.w15_c00214{width:12.295800px;}
.w25_c00214{width:12.465000px;}
.w8_c00214{width:13.537800px;}
.w32_c00214{width:13.539600px;}
.w34_c00214{width:14.074200px;}
.w1e_c00214{width:14.247000px;}
.w23_c00214{width:14.432400px;}
.w19_c00214{width:15.316200px;}
.w16_c00214{width:15.498000px;}
.wf_c00214{width:17.279280px;}
.w36_c00214{width:26.181000px;}
.wd_c00214{width:26.186400px;}
.w2e_c00214{width:892.161000px;}
.w1_c00214{width:892.414744px;}
.w0_c00214{width:892.500000px;}
.x0_c00214{left:0.000000px;}
.x7_c00214{left:114.282348px;}
.x2_c00214{left:126.214330px;}
.x8_c00214{left:127.818898px;}
.x16_c00214{left:129.971340px;}
.xa_c00214{left:131.574420px;}
.xb_c00214{left:147.782160px;}
.x11_c00214{left:149.373184px;}
.x9_c00214{left:150.441784px;}
.xc_c00214{left:158.647500px;}
.xd_c00214{left:165.953700px;}
.x19_c00214{left:169.691400px;}
.xe_c00214{left:172.362600px;}
.x1a_c00214{left:176.995620px;}
.xf_c00214{left:180.379800px;}
.x10_c00214{left:185.902200px;}
.x1b_c00214{left:192.315600px;}
.x1c_c00214{left:196.943400px;}
.x1d_c00214{left:204.069600px;}
.x1e_c00214{left:208.697400px;}
.x1f_c00214{left:220.813200px;}
.x20_c00214{left:236.311200px;}
.x21_c00214{left:240.942600px;}
.x22_c00214{left:251.096400px;}
.x4_c00214{left:252.504495px;}
.x23_c00214{left:266.412600px;}
.x3_c00214{left:270.140236px;}
.x24_c00214{left:275.675400px;}
.x25_c00214{left:283.512600px;}
.x26_c00214{left:289.035000px;}
.x27_c00214{left:297.228600px;}
.x28_c00214{left:311.475600px;}
.x29_c00214{left:321.098400px;}
.x2a_c00214{left:333.208800px;}
.x2b_c00214{left:341.402400px;}
.x6_c00214{left:346.372291px;}
.x2c_c00214{left:351.554400px;}
.x5_c00214{left:420.296029px;}
.x12_c00214{left:461.088659px;}
.x37_c00214{left:484.792200px;}
.x3a_c00214{left:498.138644px;}
.x1_c00214{left:501.875143px;}
.x38_c00214{left:502.946143px;}
.x3f_c00214{left:505.990800px;}
.x2e_c00214{left:507.412800px;}
.x2d_c00214{left:510.252640px;}
.x39_c00214{left:512.030517px;}
.x2f_c00214{left:514.897200px;}
.x40_c00214{left:516.319200px;}
.x3b_c00214{left:519.890400px;}
.x3c_c00214{left:525.758400px;}
.x30_c00214{left:527.362200px;}
.x31_c00214{left:534.135600px;}
.x41_c00214{left:536.448600px;}
.x3d_c00214{left:539.298000px;}
.x32_c00214{left:542.327400px;}
.x3e_c00214{left:544.642200px;}
.x42_c00214{left:546.069600px;}
.x33_c00214{left:549.097200px;}
.x43_c00214{left:552.837600px;}
.x34_c00214{left:554.972400px;}
.x13_c00214{left:566.906400px;}
.x35_c00214{left:578.664000px;}
.x36_c00214{left:583.457110px;}
.x14_c00214{left:608.927100px;}
.x15_c00214{left:696.758400px;}
.x17_c00214{left:710.474400px;}
.x18_c00214{left:736.660800px;}
@media print{
.v2_c00214{vertical-align:-2.537498pt;}
.v0_c00214{vertical-align:0.000000pt;}
.v1_c00214{vertical-align:7.597490pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:-14.566794pt;}
.ws2_c00214{word-spacing:-13.141541pt;}
.ws1_c00214{word-spacing:-11.874889pt;}
.ws3_c00214{word-spacing:0.000000pt;}
._2_c00214{margin-left:-3.822759pt;}
._3_c00214{margin-left:-2.470328pt;}
._0_c00214{margin-left:-1.190721pt;}
._1_c00214{width:0.939230pt;}
._4_c00214{width:1.912554pt;}
._8_c00214{width:5.469241pt;}
._7_c00214{width:6.755032pt;}
._6_c00214{width:8.291087pt;}
._5_c00214{width:67.486819pt;}
.fs7_c00214{font-size:26.599669pt;}
.fs8_c00214{font-size:29.133108pt;}
.fs3_c00214{font-size:36.732892pt;}
.fs6_c00214{font-size:39.899611pt;}
.fs4_c00214{font-size:42.432943pt;}
.fs5_c00214{font-size:47.499554pt;}
.fs2_c00214{font-size:52.566166pt;}
.fs0_c00214{font-size:58.267177pt;}
.fs1_c00214{font-size:63.333308pt;}
.y9e_c00214{bottom:-0.480401pt;}
.y40_c00214{bottom:-0.475490pt;}
.y73_c00214{bottom:-0.320730pt;}
.yb2_c00214{bottom:-0.320106pt;}
.y11_c00214{bottom:-0.320092pt;}
.y85_c00214{bottom:-0.318585pt;}
.y58_c00214{bottom:-0.318112pt;}
.y43_c00214{bottom:-0.317884pt;}
.y82_c00214{bottom:-0.317524pt;}
.yc2_c00214{bottom:-0.317150pt;}
.ya5_c00214{bottom:-0.316656pt;}
.yc6_c00214{bottom:-0.316610pt;}
.ybe_c00214{bottom:-0.315822pt;}
.ya1_c00214{bottom:-0.156929pt;}
.y0_c00214{bottom:0.000000pt;}
.y1_c00214{bottom:0.107500pt;}
.y4d_c00214{bottom:0.431250pt;}
.y32_c00214{bottom:1.738603pt;}
.y22_c00214{bottom:1.898066pt;}
.yba_c00214{bottom:2.215371pt;}
.ya9_c00214{bottom:2.215615pt;}
.yb6_c00214{bottom:2.218299pt;}
.y91_c00214{bottom:2.373703pt;}
.y68_c00214{bottom:2.529911pt;}
.y24_c00214{bottom:2.531390pt;}
.y97_c00214{bottom:2.533181pt;}
.y16_c00214{bottom:2.686579pt;}
.y56_c00214{bottom:2.689348pt;}
.y2d_c00214{bottom:2.689537pt;}
.y4a_c00214{bottom:2.690926pt;}
.yac_c00214{bottom:2.691615pt;}
.yae_c00214{bottom:2.843621pt;}
.y14_c00214{bottom:2.845240pt;}
.y19_c00214{bottom:2.845246pt;}
.yc9_c00214{bottom:2.847388pt;}
.yf_c00214{bottom:3.320967pt;}
.y1b_c00214{bottom:3.324719pt;}
.y60_c00214{bottom:3.478959pt;}
.y76_c00214{bottom:3.480602pt;}
.y6f_c00214{bottom:3.798996pt;}
.y64_c00214{bottom:3.953907pt;}
.y99_c00214{bottom:3.955321pt;}
.y93_c00214{bottom:3.955577pt;}
.y46_c00214{bottom:3.956255pt;}
.y3b_c00214{bottom:3.956499pt;}
.y4c_c00214{bottom:3.956799pt;}
.y1d_c00214{bottom:3.956993pt;}
.y36_c00214{bottom:3.957021pt;}
.ycb_c00214{bottom:3.957262pt;}
.y5b_c00214{bottom:3.957361pt;}
.y52_c00214{bottom:3.957877pt;}
.y88_c00214{bottom:3.957954pt;}
.y6a_c00214{bottom:3.958184pt;}
.y8d_c00214{bottom:3.960099pt;}
.y9_c00214{bottom:63.856874pt;}
.y3_c00214{bottom:74.146170pt;}
.y2_c00214{bottom:74.783670pt;}
.yd1_c00214{bottom:127.349382pt;}
.yd0_c00214{bottom:140.809777pt;}
.ycf_c00214{bottom:150.623106pt;}
.yce_c00214{bottom:168.041499pt;}
.yca_c00214{bottom:174.640000pt;}
.ycd_c00214{bottom:181.657761pt;}
.ycc_c00214{bottom:182.603094pt;}
.yc5_c00214{bottom:193.163200pt;}
.yc8_c00214{bottom:193.323200pt;}
.yc7_c00214{bottom:196.857755pt;}
.yc1_c00214{bottom:207.414400pt;}
.yc4_c00214{bottom:210.156416pt;}
.yc3_c00214{bottom:211.107082pt;}
.ybd_c00214{bottom:221.662400pt;}
.yc0_c00214{bottom:224.081994pt;}
.ybf_c00214{bottom:225.032660pt;}
.yb9_c00214{bottom:235.915200pt;}
.ybc_c00214{bottom:238.657738pt;}
.ybb_c00214{bottom:239.604404pt;}
.yb5_c00214{bottom:250.161600pt;}
.yb8_c00214{bottom:252.904399pt;}
.yb7_c00214{bottom:253.855065pt;}
.yb1_c00214{bottom:264.416000pt;}
.yb4_c00214{bottom:266.831310pt;}
.yb3_c00214{bottom:267.779310pt;}
.yad_c00214{bottom:278.665600pt;}
.yb0_c00214{bottom:281.401721pt;}
.yaf_c00214{bottom:282.352387pt;}
.ya8_c00214{bottom:292.913600pt;}
.yab_c00214{bottom:295.655048pt;}
.yaa_c00214{bottom:296.603048pt;}
.ya4_c00214{bottom:307.163200pt;}
.ya7_c00214{bottom:309.581960pt;}
.ya6_c00214{bottom:310.529959pt;}
.ya0_c00214{bottom:321.412800pt;}
.ya3_c00214{bottom:324.312370pt;}
.ya2_c00214{bottom:325.261703pt;}
.y9d_c00214{bottom:335.825600pt;}
.y9f_c00214{bottom:339.352364pt;}
.y9c_c00214{bottom:352.648476pt;}
.y98_c00214{bottom:359.571200pt;}
.y80_c00214{bottom:360.413956pt;}
.y9b_c00214{bottom:366.105937pt;}
.y9a_c00214{bottom:367.209937pt;}
.y7f_c00214{bottom:374.188350pt;}
.y96_c00214{bottom:378.096000pt;}
.y92_c00214{bottom:387.281600pt;}
.y7e_c00214{bottom:387.804345pt;}
.y95_c00214{bottom:393.821676pt;}
.y94_c00214{bottom:395.244342pt;}
.y7d_c00214{bottom:402.840925pt;}
.y90_c00214{bottom:405.804800pt;}
.y8c_c00214{bottom:414.510400pt;}
.y7c_c00214{bottom:415.982174pt;}
.y8f_c00214{bottom:421.047248pt;}
.y8e_c00214{bottom:422.151248pt;}
.y7b_c00214{bottom:429.282168pt;}
.y8b_c00214{bottom:437.041658pt;}
.y7a_c00214{bottom:442.425283pt;}
.y87_c00214{bottom:445.387200pt;}
.y8a_c00214{bottom:450.501653pt;}
.y89_c00214{bottom:453.350985pt;}
.y79_c00214{bottom:455.568398pt;}
.y84_c00214{bottom:463.910400pt;}
.y86_c00214{bottom:467.601646pt;}
.y78_c00214{bottom:468.868392pt;}
.y81_c00214{bottom:478.160000pt;}
.y83_c00214{bottom:481.850974pt;}
.y77_c00214{bottom:482.009640pt;}
.y75_c00214{bottom:491.779200pt;}
.y72_c00214{bottom:492.411200pt;}
.y74_c00214{bottom:496.102968pt;}
.y6e_c00214{bottom:506.660800pt;}
.y71_c00214{bottom:511.618962pt;}
.y70_c00214{bottom:514.469628pt;}
.y6d_c00214{bottom:527.928155pt;}
.y69_c00214{bottom:534.841600pt;}
.y6c_c00214{bottom:541.545617pt;}
.y6b_c00214{bottom:542.809616pt;}
.y67_c00214{bottom:553.371200pt;}
.y63_c00214{bottom:561.763200pt;}
.y66_c00214{bottom:568.777606pt;}
.y65_c00214{bottom:569.726939pt;}
.y62_c00214{bottom:574.158804pt;}
.y5e_c00214{bottom:585.401199pt;}
.y61_c00214{bottom:587.776265pt;}
.y5a_c00214{bottom:594.694400pt;}
.y5f_c00214{bottom:597.860800pt;}
.y5d_c00214{bottom:599.176260pt;}
.y5c_c00214{bottom:602.661592pt;}
.y57_c00214{bottom:613.219200pt;}
.y59_c00214{bottom:616.909587pt;}
.y55_c00214{bottom:627.470400pt;}
.y51_c00214{bottom:636.651200pt;}
.y54_c00214{bottom:643.510909pt;}
.y53_c00214{bottom:644.617575pt;}
.y50_c00214{bottom:657.754220pt;}
.y4b_c00214{bottom:664.993600pt;}
.y4f_c00214{bottom:671.369815pt;}
.y4e_c00214{bottom:672.635148pt;}
.y49_c00214{bottom:683.516800pt;}
.y45_c00214{bottom:692.860800pt;}
.y48_c00214{bottom:699.713553pt;}
.y47_c00214{bottom:700.822886pt;}
.y42_c00214{bottom:711.385600pt;}
.y44_c00214{bottom:715.072214pt;}
.y3f_c00214{bottom:725.635200pt;}
.y41_c00214{bottom:729.169542pt;}
.y3e_c00214{bottom:742.468603pt;}
.y3a_c00214{bottom:749.227200pt;}
.y3d_c00214{bottom:756.084198pt;}
.y3c_c00214{bottom:757.192197pt;}
.y2b_c00214{bottom:764.792461pt;}
.y39_c00214{bottom:770.489605pt;}
.y35_c00214{bottom:776.936000pt;}
.y2a_c00214{bottom:778.566855pt;}
.y38_c00214{bottom:783.790853pt;}
.y37_c00214{bottom:784.900186pt;}
.y29_c00214{bottom:792.023810pt;}
.y34_c00214{bottom:800.571246pt;}
.y28_c00214{bottom:805.163805pt;}
.y2e_c00214{bottom:809.757509pt;}
.y30_c00214{bottom:810.393096pt;}
.y33_c00214{bottom:814.506841pt;}
.y27_c00214{bottom:818.306919pt;}
.y2c_c00214{bottom:821.108800pt;}
.y2f_c00214{bottom:822.426838pt;}
.y31_c00214{bottom:824.910400pt;}
.y26_c00214{bottom:831.605661pt;}
.y21_c00214{bottom:832.825600pt;}
.y1f_c00214{bottom:842.371043pt;}
.y25_c00214{bottom:844.748162pt;}
.y1c_c00214{bottom:847.552000pt;}
.y20_c00214{bottom:848.389494pt;}
.y1e_c00214{bottom:854.564158pt;}
.y23_c00214{bottom:854.673600pt;}
.y1a_c00214{bottom:866.073600pt;}
.y15_c00214{bottom:883.334400pt;}
.y18_c00214{bottom:886.072146pt;}
.y17_c00214{bottom:887.180145pt;}
.y10_c00214{bottom:897.742400pt;}
.y13_c00214{bottom:900.480140pt;}
.y12_c00214{bottom:901.430806pt;}
.ye_c00214{bottom:911.992000pt;}
.yd_c00214{bottom:930.882794pt;}
.yb_c00214{bottom:942.280523pt;}
.yc_c00214{bottom:942.281456pt;}
.ya_c00214{bottom:961.916115pt;}
.y8_c00214{bottom:978.696108pt;}
.y7_c00214{bottom:1000.388100pt;}
.y6_c00214{bottom:1018.912492pt;}
.y5_c00214{bottom:1037.122485pt;}
.y4_c00214{bottom:1055.329411pt;}
.h18_c00214{height:7.124800pt;}
.h15_c00214{height:10.609600pt;}
.h16_c00214{height:10.926400pt;}
.h14_c00214{height:12.508800pt;}
.h28_c00214{height:12.984000pt;}
.h22_c00214{height:13.137600pt;}
.h29_c00214{height:13.142400pt;}
.h1f_c00214{height:13.297600pt;}
.h1c_c00214{height:13.299200pt;}
.h1d_c00214{height:13.300800pt;}
.h2b_c00214{height:13.454400pt;}
.h11_c00214{height:13.456000pt;}
.hc_c00214{height:13.457600pt;}
.h2a_c00214{height:13.459200pt;}
.h26_c00214{height:13.460800pt;}
.hf_c00214{height:13.616000pt;}
.h25_c00214{height:14.088000pt;}
.h20_c00214{height:14.566400pt;}
.ha_c00214{height:16.307200pt;}
.h12_c00214{height:16.308800pt;}
.h19_c00214{height:16.810991pt;}
.h23_c00214{height:17.576000pt;}
.h21_c00214{height:17.728000pt;}
.h13_c00214{height:17.731200pt;}
.h1b_c00214{height:17.732800pt;}
.h1a_c00214{height:17.734400pt;}
.h27_c00214{height:17.737600pt;}
.h2d_c00214{height:18.412124pt;}
.h9_c00214{height:23.215188pt;}
.h17_c00214{height:25.216554pt;}
.h6_c00214{height:33.221817pt;}
.h5_c00214{height:36.824856pt;}
.hd_c00214{height:38.019917pt;}
.h7_c00214{height:40.026651pt;}
.he_c00214{height:42.559601pt;}
.h2c_c00214{height:47.046718pt;}
.h10_c00214{height:47.099284pt;}
.h24_c00214{height:50.157091pt;}
.h2_c00214{height:52.149123pt;}
.hb_c00214{height:52.207390pt;}
.h3_c00214{height:56.683311pt;}
.h8_c00214{height:56.809977pt;}
.h4_c00214{height:56.936644pt;}
.h1e_c00214{height:1122.235200pt;}
.h1_c00214{height:1122.559167pt;}
.h0_c00214{height:1122.666667pt;}
.w3f_c00214{width:3.321600pt;}
.w3b_c00214{width:3.324800pt;}
.w38_c00214{width:3.486400pt;}
.w2c_c00214{width:3.958400pt;}
.w14_c00214{width:4.113600pt;}
.w1a_c00214{width:4.115200pt;}
.w10_c00214{width:4.115520pt;}
.w17_c00214{width:4.116800pt;}
.w1b_c00214{width:4.118400pt;}
.w21_c00214{width:4.120000pt;}
.w33_c00214{width:4.750400pt;}
.w22_c00214{width:4.904000pt;}
.w7_c00214{width:4.908800pt;}
.w31_c00214{width:5.216000pt;}
.w3c_c00214{width:5.227200pt;}
.w28_c00214{width:5.382400pt;}
.w2a_c00214{width:5.384000pt;}
.w39_c00214{width:5.540800pt;}
.w5_c00214{width:5.696800pt;}
.w1f_c00214{width:5.702400pt;}
.w2b_c00214{width:5.858080pt;}
.w29_c00214{width:5.859200pt;}
.w3d_c00214{width:6.016000pt;}
.w27_c00214{width:6.017600pt;}
.w26_c00214{width:6.020800pt;}
.w18_c00214{width:6.489600pt;}
.w11_c00214{width:6.492640pt;}
.w13_c00214{width:6.492800pt;}
.w4_c00214{width:6.494400pt;}
.we_c00214{width:6.649600pt;}
.w24_c00214{width:6.652800pt;}
.w1c_c00214{width:6.966400pt;}
.w37_c00214{width:6.968000pt;}
.w12_c00214{width:7.124960pt;}
.w6_c00214{width:7.126400pt;}
.w20_c00214{width:7.281600pt;}
.w1d_c00214{width:7.283200pt;}
.w9_c00214{width:7.283840pt;}
.w2d_c00214{width:7.284800pt;}
.wb_c00214{width:7.289600pt;}
.w2f_c00214{width:7.755200pt;}
.w30_c00214{width:8.556800pt;}
.w3a_c00214{width:9.025600pt;}
.w3e_c00214{width:9.340800pt;}
.wc_c00214{width:9.498720pt;}
.w35_c00214{width:9.500000pt;}
.wa_c00214{width:9.657600pt;}
.w3_c00214{width:9.658080pt;}
.w2_c00214{width:10.924960pt;}
.w15_c00214{width:10.929600pt;}
.w25_c00214{width:11.080000pt;}
.w8_c00214{width:12.033600pt;}
.w32_c00214{width:12.035200pt;}
.w34_c00214{width:12.510400pt;}
.w1e_c00214{width:12.664000pt;}
.w23_c00214{width:12.828800pt;}
.w19_c00214{width:13.614400pt;}
.w16_c00214{width:13.776000pt;}
.wf_c00214{width:15.359360pt;}
.w36_c00214{width:23.272000pt;}
.wd_c00214{width:23.276800pt;}
.w2e_c00214{width:793.032000pt;}
.w1_c00214{width:793.257550pt;}
.w0_c00214{width:793.333333pt;}
.x0_c00214{left:0.000000pt;}
.x7_c00214{left:101.584309pt;}
.x2_c00214{left:112.190515pt;}
.x8_c00214{left:113.616798pt;}
.x16_c00214{left:115.530080pt;}
.xa_c00214{left:116.955040pt;}
.xb_c00214{left:131.361920pt;}
.x11_c00214{left:132.776164pt;}
.x9_c00214{left:133.726030pt;}
.xc_c00214{left:141.020000pt;}
.xd_c00214{left:147.514400pt;}
.x19_c00214{left:150.836800pt;}
.xe_c00214{left:153.211200pt;}
.x1a_c00214{left:157.329440pt;}
.xf_c00214{left:160.337600pt;}
.x10_c00214{left:165.246400pt;}
.x1b_c00214{left:170.947200pt;}
.x1c_c00214{left:175.060800pt;}
.x1d_c00214{left:181.395200pt;}
.x1e_c00214{left:185.508800pt;}
.x1f_c00214{left:196.278400pt;}
.x20_c00214{left:210.054400pt;}
.x21_c00214{left:214.171200pt;}
.x22_c00214{left:223.196800pt;}
.x4_c00214{left:224.448440pt;}
.x23_c00214{left:236.811200pt;}
.x3_c00214{left:240.124654pt;}
.x24_c00214{left:245.044800pt;}
.x25_c00214{left:252.011200pt;}
.x26_c00214{left:256.920000pt;}
.x27_c00214{left:264.203200pt;}
.x28_c00214{left:276.867200pt;}
.x29_c00214{left:285.420800pt;}
.x2a_c00214{left:296.185600pt;}
.x2b_c00214{left:303.468800pt;}
.x6_c00214{left:307.886481pt;}
.x2c_c00214{left:312.492800pt;}
.x5_c00214{left:373.596470pt;}
.x12_c00214{left:409.856586pt;}
.x37_c00214{left:430.926400pt;}
.x3a_c00214{left:442.789906pt;}
.x1_c00214{left:446.111238pt;}
.x38_c00214{left:447.063238pt;}
.x3f_c00214{left:449.769600pt;}
.x2e_c00214{left:451.033600pt;}
.x2d_c00214{left:453.557902pt;}
.x39_c00214{left:455.138237pt;}
.x2f_c00214{left:457.686400pt;}
.x40_c00214{left:458.950400pt;}
.x3b_c00214{left:462.124800pt;}
.x3c_c00214{left:467.340800pt;}
.x30_c00214{left:468.766400pt;}
.x31_c00214{left:474.787200pt;}
.x41_c00214{left:476.843200pt;}
.x3d_c00214{left:479.376000pt;}
.x32_c00214{left:482.068800pt;}
.x3e_c00214{left:484.126400pt;}
.x42_c00214{left:485.395200pt;}
.x33_c00214{left:488.086400pt;}
.x43_c00214{left:491.411200pt;}
.x34_c00214{left:493.308800pt;}
.x13_c00214{left:503.916800pt;}
.x35_c00214{left:514.368000pt;}
.x36_c00214{left:518.628543pt;}
.x14_c00214{left:541.268533pt;}
.x15_c00214{left:619.340800pt;}
.x17_c00214{left:631.532800pt;}
.x18_c00214{left:654.809600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.112000;font-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_c00215{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00215{vertical-align:-2.854685px;}
.v0_c00215{vertical-align:0.000000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:-16.387643px;}
.ws1_c00215{word-spacing:0.000000px;}
._b_c00215{margin-left:-4.812635px;}
._a_c00215{margin-left:-3.765423px;}
._9_c00215{margin-left:-2.738639px;}
._0_c00215{margin-left:-1.339561px;}
._1_c00215{width:1.056634px;}
._3_c00215{width:2.457306px;}
._2_c00215{width:3.975505px;}
._f_c00215{width:7.401764px;}
._d_c00215{width:8.959433px;}
._c_c00215{width:10.193582px;}
._e_c00215{width:11.255638px;}
._8_c00215{width:27.832314px;}
._6_c00215{width:29.035822px;}
._7_c00215{width:30.059246px;}
._4_c00215{width:43.225224px;}
._5_c00215{width:44.272152px;}
.fc1_c00215{color:rgb(105,148,45);}
.fc0_c00215{color:rgb(35,31,32);}
.fs5_c00215{font-size:29.924628px;}
.fs6_c00215{font-size:35.624626px;}
.fs4_c00215{font-size:38.474625px;}
.fs3_c00215{font-size:50.586940px;}
.fs2_c00215{font-size:59.136936px;}
.fs0_c00215{font-size:65.550574px;}
.fs1_c00215{font-size:71.249972px;}
.y0_c00215{bottom:0.000000px;}
.y1_c00215{bottom:0.120938px;}
.y1a_c00215{bottom:2.668170px;}
.y18_c00215{bottom:4.450773px;}
.y28_c00215{bottom:4.451764px;}
.y8_c00215{bottom:6.826644px;}
.ya_c00215{bottom:65.133277px;}
.y3_c00215{bottom:83.414442px;}
.y2_c00215{bottom:84.131629px;}
.y31_c00215{bottom:455.870630px;}
.y30_c00215{bottom:481.521370px;}
.y2f_c00215{bottom:497.731863px;}
.y2e_c00215{bottom:512.694357px;}
.y2d_c00215{bottom:526.408852px;}
.y2c_c00215{bottom:538.340147px;}
.y2b_c00215{bottom:557.221840px;}
.y2a_c00215{bottom:570.759334px;}
.y27_c00215{bottom:586.026000px;}
.y29_c00215{bottom:589.821327px;}
.y26_c00215{bottom:619.449205px;}
.y25_c00215{bottom:643.140346px;}
.y23_c00215{bottom:667.008336px;}
.y24_c00215{bottom:667.012086px;}
.y22_c00215{bottom:690.700077px;}
.y21_c00215{bottom:690.700527px;}
.y20_c00215{bottom:714.565967px;}
.y1f_c00215{bottom:738.259208px;}
.y1d_c00215{bottom:755.180401px;}
.y1e_c00215{bottom:755.180551px;}
.y1c_c00215{bottom:779.581641px;}
.y1b_c00215{bottom:802.384032px;}
.y17_c00215{bottom:812.957400px;}
.y19_c00215{bottom:821.862000px;}
.y16_c00215{bottom:829.995496px;}
.y15_c00215{bottom:844.779400px;}
.y14_c00215{bottom:859.561894px;}
.y13_c00215{bottom:874.526503px;}
.y12_c00215{bottom:889.130498px;}
.y11_c00215{bottom:915.315537px;}
.y10_c00215{bottom:940.966277px;}
.yf_c00215{bottom:966.617017px;}
.ye_c00215{bottom:992.087756px;}
.yd_c00215{bottom:1017.734896px;}
.yc_c00215{bottom:1043.385636px;}
.yb_c00215{bottom:1077.764872px;}
.y9_c00215{bottom:1094.327416px;}
.y7_c00215{bottom:1125.436612px;}
.y6_c00215{bottom:1146.276554px;}
.y5_c00215{bottom:1166.762796px;}
.y4_c00215{bottom:1187.245588px;}
.hb_c00215{height:11.043000px;}
.he_c00215{height:18.912365px;}
.ha_c00215{height:19.947600px;}
.h10_c00215{height:22.514763px;}
.hc_c00215{height:24.315963px;}
.h9_c00215{height:31.970946px;}
.h7_c00215{height:37.374544px;}
.h6_c00215{height:41.427963px;}
.hf_c00215{height:52.927558px;}
.hd_c00215{height:52.986695px;}
.h8_c00215{height:53.045832px;}
.h2_c00215{height:58.667764px;}
.h3_c00215{height:63.768724px;}
.h4_c00215{height:64.053724px;}
.h5_c00215{height:1249.830756px;}
.h1_c00215{height:1262.879062px;}
.h0_c00215{height:1263.000000px;}
.w4_c00215{width:5.699520px;}
.w3_c00215{width:8.194320px;}
.w2_c00215{width:883.195846px;}
.w1_c00215{width:892.414744px;}
.w0_c00215{width:892.500000px;}
.x0_c00215{left:0.000000px;}
.x7_c00215{left:1.541954px;}
.x8_c00215{left:112.753050px;}
.x13_c00215{left:114.282348px;}
.x2_c00215{left:126.214330px;}
.x15_c00215{left:127.819435px;}
.x9_c00215{left:149.385960px;}
.xa_c00215{left:152.653485px;}
.x12_c00215{left:154.182782px;}
.xb_c00215{left:155.867499px;}
.xc_c00215{left:159.248120px;}
.xf_c00215{left:167.792978px;}
.x14_c00215{left:180.363474px;}
.xd_c00215{left:249.907446px;}
.x4_c00215{left:252.504495px;}
.x3_c00215{left:270.140236px;}
.xe_c00215{left:330.242913px;}
.x6_c00215{left:346.372291px;}
.x5_c00215{left:420.296029px;}
.x10_c00215{left:459.382362px;}
.x1_c00215{left:501.875143px;}
.x11_c00215{left:552.182825px;}
@media print{
.v1_c00215{vertical-align:-2.537498pt;}
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws0_c00215{word-spacing:-14.566794pt;}
.ws1_c00215{word-spacing:0.000000pt;}
._b_c00215{margin-left:-4.277898pt;}
._a_c00215{margin-left:-3.347043pt;}
._9_c00215{margin-left:-2.434346pt;}
._0_c00215{margin-left:-1.190721pt;}
._1_c00215{width:0.939230pt;}
._3_c00215{width:2.184272pt;}
._2_c00215{width:3.533783pt;}
._f_c00215{width:6.579346pt;}
._d_c00215{width:7.963940pt;}
._c_c00215{width:9.060961pt;}
._e_c00215{width:10.005012pt;}
._8_c00215{width:24.739834pt;}
._6_c00215{width:25.809619pt;}
._7_c00215{width:26.719329pt;}
._4_c00215{width:38.422421pt;}
._5_c00215{width:39.353024pt;}
.fs5_c00215{font-size:26.599669pt;}
.fs6_c00215{font-size:31.666334pt;}
.fs4_c00215{font-size:34.199666pt;}
.fs3_c00215{font-size:44.966169pt;}
.fs2_c00215{font-size:52.566166pt;}
.fs0_c00215{font-size:58.267177pt;}
.fs1_c00215{font-size:63.333308pt;}
.y0_c00215{bottom:0.000000pt;}
.y1_c00215{bottom:0.107500pt;}
.y1a_c00215{bottom:2.371707pt;}
.y18_c00215{bottom:3.956243pt;}
.y28_c00215{bottom:3.957123pt;}
.y8_c00215{bottom:6.068128pt;}
.ya_c00215{bottom:57.896246pt;}
.y3_c00215{bottom:74.146170pt;}
.y2_c00215{bottom:74.783670pt;}
.y31_c00215{bottom:405.218338pt;}
.y30_c00215{bottom:428.018995pt;}
.y2f_c00215{bottom:442.428323pt;}
.y2e_c00215{bottom:455.728318pt;}
.y2d_c00215{bottom:467.918979pt;}
.y2c_c00215{bottom:478.524575pt;}
.y2b_c00215{bottom:495.308302pt;}
.y2a_c00215{bottom:507.341630pt;}
.y27_c00215{bottom:520.912000pt;}
.y29_c00215{bottom:524.285624pt;}
.y26_c00215{bottom:550.621516pt;}
.y25_c00215{bottom:571.680308pt;}
.y23_c00215{bottom:592.896299pt;}
.y24_c00215{bottom:592.899632pt;}
.y22_c00215{bottom:613.955624pt;}
.y21_c00215{bottom:613.956024pt;}
.y20_c00215{bottom:635.169749pt;}
.y1f_c00215{bottom:656.230407pt;}
.y1d_c00215{bottom:671.271468pt;}
.y1e_c00215{bottom:671.271601pt;}
.y1c_c00215{bottom:692.961459pt;}
.y1b_c00215{bottom:713.230251pt;}
.y17_c00215{bottom:722.628800pt;}
.y19_c00215{bottom:730.544000pt;}
.y16_c00215{bottom:737.773774pt;}
.y15_c00215{bottom:750.915023pt;}
.y14_c00215{bottom:764.055017pt;}
.y13_c00215{bottom:777.356892pt;}
.y12_c00215{bottom:790.338220pt;}
.y11_c00215{bottom:813.613811pt;}
.y10_c00215{bottom:836.414468pt;}
.yf_c00215{bottom:859.215126pt;}
.ye_c00215{bottom:881.855783pt;}
.yd_c00215{bottom:904.653241pt;}
.yc_c00215{bottom:927.453899pt;}
.yb_c00215{bottom:958.013220pt;}
.y9_c00215{bottom:972.735480pt;}
.y7_c00215{bottom:1000.388100pt;}
.y6_c00215{bottom:1018.912492pt;}
.y5_c00215{bottom:1037.122485pt;}
.y4_c00215{bottom:1055.329411pt;}
.hb_c00215{height:9.816000pt;}
.he_c00215{height:16.810991pt;}
.ha_c00215{height:17.731200pt;}
.h10_c00215{height:20.013123pt;}
.hc_c00215{height:21.614189pt;}
.h9_c00215{height:28.418619pt;}
.h7_c00215{height:33.221817pt;}
.h6_c00215{height:36.824856pt;}
.hf_c00215{height:47.046718pt;}
.hd_c00215{height:47.099284pt;}
.h8_c00215{height:47.151851pt;}
.h2_c00215{height:52.149123pt;}
.h3_c00215{height:56.683311pt;}
.h4_c00215{height:56.936644pt;}
.h5_c00215{height:1110.960672pt;}
.h1_c00215{height:1122.559167pt;}
.h0_c00215{height:1122.666667pt;}
.w4_c00215{width:5.066240pt;}
.w3_c00215{width:7.283840pt;}
.w2_c00215{width:785.062974pt;}
.w1_c00215{width:793.257550pt;}
.w0_c00215{width:793.333333pt;}
.x0_c00215{left:0.000000pt;}
.x7_c00215{left:1.370626pt;}
.x8_c00215{left:100.224934pt;}
.x13_c00215{left:101.584309pt;}
.x2_c00215{left:112.190515pt;}
.x15_c00215{left:113.617276pt;}
.x9_c00215{left:132.787520pt;}
.xa_c00215{left:135.691986pt;}
.x12_c00215{left:137.051362pt;}
.xb_c00215{left:138.548888pt;}
.xc_c00215{left:141.553885pt;}
.xf_c00215{left:149.149314pt;}
.x14_c00215{left:160.323088pt;}
.xd_c00215{left:222.139952pt;}
.x4_c00215{left:224.448440pt;}
.x3_c00215{left:240.124654pt;}
.xe_c00215{left:293.549256pt;}
.x6_c00215{left:307.886481pt;}
.x5_c00215{left:373.596470pt;}
.x10_c00215{left:408.339877pt;}
.x1_c00215{left:446.111238pt;}
.x11_c00215{left:490.829178pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00216;src:url('chunks/assets/font_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.112000;font-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_c00216{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00216{vertical-align:-2.851877px;}
.v0_c00216{vertical-align:0.000000px;}
.ls0_c00216{letter-spacing:0.000000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:-16.387643px;}
.ws1_c00216{word-spacing:0.000000px;}
._6_c00216{margin-left:-4.027518px;}
._5_c00216{margin-left:-2.932510px;}
._0_c00216{margin-left:-1.339561px;}
._1_c00216{width:1.056634px;}
._9_c00216{width:2.702421px;}
._8_c00216{width:4.137139px;}
._7_c00216{width:5.503792px;}
._a_c00216{width:6.553372px;}
._c_c00216{width:7.569205px;}
._b_c00216{width:8.641525px;}
._4_c00216{width:10.477233px;}
._3_c00216{width:11.711747px;}
._2_c00216{width:13.232187px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(105,148,45);}
.fc0_c00216{color:rgb(35,31,32);}
.fs7_c00216{font-size:32.774747px;}
.fs3_c00216{font-size:41.324503px;}
.fs6_c00216{font-size:47.737061px;}
.fs5_c00216{font-size:53.436999px;}
.fs2_c00216{font-size:59.136936px;}
.fs0_c00216{font-size:65.550574px;}
.fs1_c00216{font-size:71.249972px;}
.fs4_c00216{font-size:76.949969px;}
.y75_c00216{bottom:-0.177121px;}
.y0_c00216{bottom:0.000000px;}
.y1_c00216{bottom:0.120938px;}
.y51_c00216{bottom:2.132225px;}
.y2a_c00216{bottom:2.133888px;}
.y6a_c00216{bottom:2.137101px;}
.y5c_c00216{bottom:2.845963px;}
.y61_c00216{bottom:2.846279px;}
.y67_c00216{bottom:2.846297px;}
.y64_c00216{bottom:2.850185px;}
.y41_c00216{bottom:2.850676px;}
.y30_c00216{bottom:2.850919px;}
.y34_c00216{bottom:2.850930px;}
.y19_c00216{bottom:3.204231px;}
.y16_c00216{bottom:3.912232px;}
.y6f_c00216{bottom:3.922116px;}
.y10_c00216{bottom:5.163512px;}
.y4e_c00216{bottom:5.164029px;}
.y27_c00216{bottom:5.164792px;}
.y58_c00216{bottom:5.165865px;}
.y1d_c00216{bottom:5.166552px;}
.y8_c00216{bottom:6.826644px;}
.ya_c00216{bottom:65.133277px;}
.y3_c00216{bottom:83.414442px;}
.y2_c00216{bottom:84.131629px;}
.y77_c00216{bottom:132.998800px;}
.y76_c00216{bottom:151.345293px;}
.y74_c00216{bottom:153.718560px;}
.y73_c00216{bottom:178.180856px;}
.y72_c00216{bottom:191.718111px;}
.y70_c00216{bottom:193.854485px;}
.y71_c00216{bottom:205.077480px;}
.y6e_c00216{bottom:205.372800px;}
.y6d_c00216{bottom:223.662799px;}
.y6b_c00216{bottom:227.048762px;}
.y6c_c00216{bottom:237.020758px;}
.y69_c00216{bottom:245.809800px;}
.y66_c00216{bottom:255.783600px;}
.y68_c00216{bottom:259.579959px;}
.y65_c00216{bottom:274.363953px;}
.y63_c00216{bottom:285.172200px;}
.y62_c00216{bottom:287.901447px;}
.y60_c00216{bottom:298.533600px;}
.y5f_c00216{bottom:301.263442px;}
.y5e_c00216{bottom:315.335071px;}
.y59_c00216{bottom:320.496434px;}
.y5d_c00216{bottom:329.050931px;}
.y57_c00216{bottom:331.839000px;}
.y5b_c00216{bottom:339.683400px;}
.y5a_c00216{bottom:342.408425px;}
.y56_c00216{bottom:369.660985px;}
.y55_c00216{bottom:383.200354px;}
.y54_c00216{bottom:397.271984px;}
.y53_c00216{bottom:410.986433px;}
.y4f_c00216{bottom:411.342398px;}
.y4d_c00216{bottom:422.506800px;}
.y52_c00216{bottom:424.524393px;}
.y50_c00216{bottom:434.802600px;}
.y4c_c00216{bottom:454.510381px;}
.y4b_c00216{bottom:468.048341px;}
.y4a_c00216{bottom:482.119970px;}
.y49_c00216{bottom:495.831600px;}
.y44_c00216{bottom:507.947650px;}
.y48_c00216{bottom:509.369560px;}
.y47_c00216{bottom:522.906814px;}
.y43_c00216{bottom:523.267144px;}
.y46_c00216{bottom:536.804774px;}
.y42_c00216{bottom:538.228138px;}
.y45_c00216{bottom:550.340633px;}
.y40_c00216{bottom:556.275600px;}
.y3f_c00216{bottom:567.439096px;}
.y3e_c00216{bottom:581.153546px;}
.y3d_c00216{bottom:594.870095px;}
.y3c_c00216{bottom:608.405955px;}
.y3b_c00216{bottom:621.943914px;}
.y37_c00216{bottom:622.660104px;}
.y3a_c00216{bottom:635.480464px;}
.y36_c00216{bottom:638.155098px;}
.y39_c00216{bottom:649.020539px;}
.y35_c00216{bottom:652.943592px;}
.y38_c00216{bottom:662.557088px;}
.y33_c00216{bottom:670.987800px;}
.y32_c00216{bottom:688.144922px;}
.y2f_c00216{bottom:699.130800px;}
.y31_c00216{bottom:701.860782px;}
.y2e_c00216{bottom:726.085772px;}
.y2d_c00216{bottom:739.623027px;}
.y2c_c00216{bottom:753.162396px;}
.y28_c00216{bottom:753.340761px;}
.y26_c00216{bottom:764.681400px;}
.y2b_c00216{bottom:766.698256px;}
.y29_c00216{bottom:777.151800px;}
.y25_c00216{bottom:786.350554px;}
.y24_c00216{bottom:800.068513px;}
.y23_c00216{bottom:813.604373px;}
.y22_c00216{bottom:827.142332px;}
.y21_c00216{bottom:840.679587px;}
.y1e_c00216{bottom:845.848015px;}
.y20_c00216{bottom:854.396137px;}
.y1c_c00216{bottom:863.895600px;}
.y1f_c00216{bottom:867.755506px;}
.y1b_c00216{bottom:896.017149px;}
.y17_c00216{bottom:904.564701px;}
.y1a_c00216{bottom:909.553699px;}
.y15_c00216{bottom:916.268400px;}
.y18_c00216{bottom:919.472400px;}
.y14_c00216{bottom:942.149871px;}
.y11_c00216{bottom:953.550181px;}
.y13_c00216{bottom:955.687125px;}
.yf_c00216{bottom:964.893600px;}
.y12_c00216{bottom:969.223675px;}
.ye_c00216{bottom:982.292460px;}
.yd_c00216{bottom:1007.047550px;}
.yc_c00216{bottom:1032.695440px;}
.yb_c00216{bottom:1058.168880px;}
.y9_c00216{bottom:1094.327416px;}
.y7_c00216{bottom:1125.436612px;}
.y6_c00216{bottom:1146.276554px;}
.y5_c00216{bottom:1166.762796px;}
.y4_c00216{bottom:1187.245588px;}
.h1d_c00216{height:8.730000px;}
.h13_c00216{height:8.901000px;}
.h18_c00216{height:9.261000px;}
.h16_c00216{height:11.579400px;}
.hf_c00216{height:12.828600px;}
.h1a_c00216{height:13.534200px;}
.h1b_c00216{height:13.537800px;}
.h1c_c00216{height:14.781600px;}
.h15_c00216{height:14.790600px;}
.h1f_c00216{height:15.319800px;}
.he_c00216{height:16.032600px;}
.h1e_c00216{height:16.209000px;}
.h14_c00216{height:20.713640px;}
.h12_c00216{height:21.371400px;}
.ha_c00216{height:21.373200px;}
.h11_c00216{height:21.375000px;}
.h17_c00216{height:21.556800px;}
.h19_c00216{height:21.558600px;}
.h9_c00216{height:26.117086px;}
.h10_c00216{height:30.169822px;}
.h7_c00216{height:37.374544px;}
.h6_c00216{height:41.427963px;}
.hd_c00216{height:42.772407px;}
.hc_c00216{height:47.932988px;}
.hb_c00216{height:48.632381px;}
.h20_c00216{height:52.927558px;}
.h8_c00216{height:53.045832px;}
.h2_c00216{height:58.667764px;}
.h3_c00216{height:63.768724px;}
.h4_c00216{height:64.053724px;}
.h5_c00216{height:1249.830756px;}
.h1_c00216{height:1262.879062px;}
.h0_c00216{height:1263.000000px;}
.wa_c00216{width:0.534600px;}
.w9_c00216{width:1.425600px;}
.wb_c00216{width:2.853000px;}
.w6_c00216{width:4.810140px;}
.wc_c00216{width:4.810860px;}
.w8_c00216{width:6.058080px;}
.w5_c00216{width:6.947640px;}
.wd_c00216{width:8.194320px;}
.w4_c00216{width:8.728560px;}
.w7_c00216{width:9.618840px;}
.w3_c00216{width:11.223360px;}
.w2_c00216{width:883.195846px;}
.w1_c00216{width:892.414744px;}
.w0_c00216{width:892.500000px;}
.x0_c00216{left:0.000000px;}
.x7_c00216{left:1.541954px;}
.x8_c00216{left:112.753050px;}
.x2_c00216{left:126.214330px;}
.xc_c00216{left:134.484592px;}
.x9_c00216{left:136.013889px;}
.xb_c00216{left:149.385960px;}
.xd_c00216{left:152.653485px;}
.xa_c00216{left:154.182782px;}
.x10_c00216{left:178.837474px;}
.x4_c00216{left:252.504495px;}
.x3_c00216{left:270.140236px;}
.x6_c00216{left:346.372291px;}
.x5_c00216{left:420.296029px;}
.x1_c00216{left:501.875143px;}
.xf_c00216{left:754.824600px;}
.xe_c00216{left:756.252000px;}
@media print{
.v1_c00216{vertical-align:-2.535002pt;}
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:-14.566794pt;}
.ws1_c00216{word-spacing:0.000000pt;}
._6_c00216{margin-left:-3.580016pt;}
._5_c00216{margin-left:-2.606675pt;}
._0_c00216{margin-left:-1.190721pt;}
._1_c00216{width:0.939230pt;}
._9_c00216{width:2.402152pt;}
._8_c00216{width:3.677457pt;}
._7_c00216{width:4.892259pt;}
._a_c00216{width:5.825220pt;}
._c_c00216{width:6.728182pt;}
._b_c00216{width:7.681355pt;}
._4_c00216{width:9.313096pt;}
._3_c00216{width:10.410442pt;}
._2_c00216{width:11.761944pt;}
.fs7_c00216{font-size:29.133108pt;}
.fs3_c00216{font-size:36.732892pt;}
.fs6_c00216{font-size:42.432943pt;}
.fs5_c00216{font-size:47.499554pt;}
.fs2_c00216{font-size:52.566166pt;}
.fs0_c00216{font-size:58.267177pt;}
.fs1_c00216{font-size:63.333308pt;}
.fs4_c00216{font-size:68.399973pt;}
.y75_c00216{bottom:-0.157441pt;}
.y0_c00216{bottom:0.000000pt;}
.y1_c00216{bottom:0.107500pt;}
.y51_c00216{bottom:1.895311pt;}
.y2a_c00216{bottom:1.896790pt;}
.y6a_c00216{bottom:1.899645pt;}
.y5c_c00216{bottom:2.529745pt;}
.y61_c00216{bottom:2.530026pt;}
.y67_c00216{bottom:2.530041pt;}
.y64_c00216{bottom:2.533498pt;}
.y41_c00216{bottom:2.533935pt;}
.y30_c00216{bottom:2.534150pt;}
.y34_c00216{bottom:2.534160pt;}
.y19_c00216{bottom:2.848205pt;}
.y16_c00216{bottom:3.477539pt;}
.y6f_c00216{bottom:3.486326pt;}
.y10_c00216{bottom:4.589788pt;}
.y4e_c00216{bottom:4.590248pt;}
.y27_c00216{bottom:4.590926pt;}
.y58_c00216{bottom:4.591880pt;}
.y1d_c00216{bottom:4.592491pt;}
.y8_c00216{bottom:6.068128pt;}
.ya_c00216{bottom:57.896246pt;}
.y3_c00216{bottom:74.146170pt;}
.y2_c00216{bottom:74.783670pt;}
.y77_c00216{bottom:118.221156pt;}
.y76_c00216{bottom:134.529149pt;}
.y74_c00216{bottom:136.638720pt;}
.y73_c00216{bottom:158.382983pt;}
.y72_c00216{bottom:170.416098pt;}
.y70_c00216{bottom:172.315098pt;}
.y71_c00216{bottom:182.291094pt;}
.y6e_c00216{bottom:182.553600pt;}
.y6d_c00216{bottom:198.811377pt;}
.y6b_c00216{bottom:201.821122pt;}
.y6c_c00216{bottom:210.685119pt;}
.y69_c00216{bottom:218.497600pt;}
.y66_c00216{bottom:227.363200pt;}
.y68_c00216{bottom:230.737741pt;}
.y65_c00216{bottom:243.879069pt;}
.y63_c00216{bottom:253.486400pt;}
.y62_c00216{bottom:255.912398pt;}
.y60_c00216{bottom:265.363200pt;}
.y5f_c00216{bottom:267.789726pt;}
.y5e_c00216{bottom:280.297841pt;}
.y59_c00216{bottom:284.885719pt;}
.y5d_c00216{bottom:292.489716pt;}
.y57_c00216{bottom:294.968000pt;}
.y5b_c00216{bottom:301.940800pt;}
.y5a_c00216{bottom:304.363045pt;}
.y56_c00216{bottom:328.587542pt;}
.y55_c00216{bottom:340.622537pt;}
.y54_c00216{bottom:353.130652pt;}
.y53_c00216{bottom:365.321274pt;}
.y4f_c00216{bottom:365.637687pt;}
.y4d_c00216{bottom:375.561600pt;}
.y52_c00216{bottom:377.355016pt;}
.y50_c00216{bottom:386.491200pt;}
.y4c_c00216{bottom:404.009228pt;}
.y4b_c00216{bottom:416.042970pt;}
.y4a_c00216{bottom:428.551085pt;}
.y49_c00216{bottom:440.739200pt;}
.y44_c00216{bottom:451.509022pt;}
.y48_c00216{bottom:452.772942pt;}
.y47_c00216{bottom:464.806057pt;}
.y43_c00216{bottom:465.126350pt;}
.y46_c00216{bottom:477.159799pt;}
.y42_c00216{bottom:478.425012pt;}
.y45_c00216{bottom:489.191674pt;}
.y40_c00216{bottom:494.467200pt;}
.y3f_c00216{bottom:504.390308pt;}
.y3e_c00216{bottom:516.580930pt;}
.y3d_c00216{bottom:528.773418pt;}
.y3c_c00216{bottom:540.805293pt;}
.y3b_c00216{bottom:552.839035pt;}
.y37_c00216{bottom:553.475648pt;}
.y3a_c00216{bottom:564.871524pt;}
.y36_c00216{bottom:567.248976pt;}
.y39_c00216{bottom:576.907145pt;}
.y35_c00216{bottom:580.394304pt;}
.y38_c00216{bottom:588.939634pt;}
.y33_c00216{bottom:596.433600pt;}
.y32_c00216{bottom:611.684375pt;}
.y2f_c00216{bottom:621.449600pt;}
.y31_c00216{bottom:623.876250pt;}
.y2e_c00216{bottom:645.409575pt;}
.y2d_c00216{bottom:657.442690pt;}
.y2c_c00216{bottom:669.477685pt;}
.y28_c00216{bottom:669.636232pt;}
.y26_c00216{bottom:679.716800pt;}
.y2b_c00216{bottom:681.509561pt;}
.y29_c00216{bottom:690.801600pt;}
.y25_c00216{bottom:698.978270pt;}
.y24_c00216{bottom:711.172012pt;}
.y23_c00216{bottom:723.203887pt;}
.y22_c00216{bottom:735.237629pt;}
.y21_c00216{bottom:747.270744pt;}
.y1e_c00216{bottom:751.864902pt;}
.y20_c00216{bottom:759.463232pt;}
.y1c_c00216{bottom:767.907200pt;}
.y1f_c00216{bottom:771.338228pt;}
.y1b_c00216{bottom:796.459688pt;}
.y17_c00216{bottom:804.057512pt;}
.y1a_c00216{bottom:808.492177pt;}
.y15_c00216{bottom:814.460800pt;}
.y18_c00216{bottom:817.308800pt;}
.y14_c00216{bottom:837.466552pt;}
.y11_c00216{bottom:847.600161pt;}
.y13_c00216{bottom:849.499667pt;}
.yf_c00216{bottom:857.683200pt;}
.y12_c00216{bottom:861.532155pt;}
.ye_c00216{bottom:873.148854pt;}
.yd_c00216{bottom:895.153378pt;}
.yc_c00216{bottom:917.951502pt;}
.yb_c00216{bottom:940.594560pt;}
.y9_c00216{bottom:972.735480pt;}
.y7_c00216{bottom:1000.388100pt;}
.y6_c00216{bottom:1018.912492pt;}
.y5_c00216{bottom:1037.122485pt;}
.y4_c00216{bottom:1055.329411pt;}
.h1d_c00216{height:7.760000pt;}
.h13_c00216{height:7.912000pt;}
.h18_c00216{height:8.232000pt;}
.h16_c00216{height:10.292800pt;}
.hf_c00216{height:11.403200pt;}
.h1a_c00216{height:12.030400pt;}
.h1b_c00216{height:12.033600pt;}
.h1c_c00216{height:13.139200pt;}
.h15_c00216{height:13.147200pt;}
.h1f_c00216{height:13.617600pt;}
.he_c00216{height:14.251200pt;}
.h1e_c00216{height:14.408000pt;}
.h14_c00216{height:18.412124pt;}
.h12_c00216{height:18.996800pt;}
.ha_c00216{height:18.998400pt;}
.h11_c00216{height:19.000000pt;}
.h17_c00216{height:19.161600pt;}
.h19_c00216{height:19.163200pt;}
.h9_c00216{height:23.215188pt;}
.h10_c00216{height:26.817620pt;}
.h7_c00216{height:33.221817pt;}
.h6_c00216{height:36.824856pt;}
.hd_c00216{height:38.019917pt;}
.hc_c00216{height:42.607100pt;}
.hb_c00216{height:43.228783pt;}
.h20_c00216{height:47.046718pt;}
.h8_c00216{height:47.151851pt;}
.h2_c00216{height:52.149123pt;}
.h3_c00216{height:56.683311pt;}
.h4_c00216{height:56.936644pt;}
.h5_c00216{height:1110.960672pt;}
.h1_c00216{height:1122.559167pt;}
.h0_c00216{height:1122.666667pt;}
.wa_c00216{width:0.475200pt;}
.w9_c00216{width:1.267200pt;}
.wb_c00216{width:2.536000pt;}
.w6_c00216{width:4.275680pt;}
.wc_c00216{width:4.276320pt;}
.w8_c00216{width:5.384960pt;}
.w5_c00216{width:6.175680pt;}
.wd_c00216{width:7.283840pt;}
.w4_c00216{width:7.758720pt;}
.w7_c00216{width:8.550080pt;}
.w3_c00216{width:9.976320pt;}
.w2_c00216{width:785.062974pt;}
.w1_c00216{width:793.257550pt;}
.w0_c00216{width:793.333333pt;}
.x0_c00216{left:0.000000pt;}
.x7_c00216{left:1.370626pt;}
.x8_c00216{left:100.224934pt;}
.x2_c00216{left:112.190515pt;}
.xc_c00216{left:119.541859pt;}
.x9_c00216{left:120.901235pt;}
.xb_c00216{left:132.787520pt;}
.xd_c00216{left:135.691986pt;}
.xa_c00216{left:137.051362pt;}
.x10_c00216{left:158.966644pt;}
.x4_c00216{left:224.448440pt;}
.x3_c00216{left:240.124654pt;}
.x6_c00216{left:307.886481pt;}
.x5_c00216{left:373.596470pt;}
.x1_c00216{left:446.111238pt;}
.xf_c00216{left:670.955200pt;}
.xe_c00216{left:672.224000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00217{transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227810,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.238662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238662,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.md_c00217{transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240433,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.242136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242136,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.mc_c00217{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v3_c00217{vertical-align:-2.854685px;}
.v0_c00217{vertical-align:0.000000px;}
.v2_c00217{vertical-align:27.081529px;}
.v1_c00217{vertical-align:29.913768px;}
.ls0_c00217{letter-spacing:0.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00217{word-spacing:-17.812493px;}
.ws0_c00217{word-spacing:-16.387643px;}
.ws2_c00217{word-spacing:-14.784234px;}
.ws3_c00217{word-spacing:-9.618656px;}
.ws4_c00217{word-spacing:0.000000px;}
._8_c00217{margin-left:-5.288064px;}
._6_c00217{margin-left:-3.865900px;}
._4_c00217{margin-left:-2.595571px;}
._0_c00217{margin-left:-1.339561px;}
._1_c00217{width:1.056287px;}
._3_c00217{width:2.182401px;}
._2_c00217{width:3.221642px;}
._9_c00217{width:20.021681px;}
._5_c00217{width:28.427341px;}
._7_c00217{width:59.605313px;}
._a_c00217{width:590.788803px;}
.fc1_c00217{color:rgb(105,148,45);}
.fc0_c00217{color:rgb(35,31,32);}
.fs8_c00217{font-size:29.924628px;}
.fs7_c00217{font-size:32.774747px;}
.fs4_c00217{font-size:35.624626px;}
.fs3_c00217{font-size:38.474625px;}
.fsc_c00217{font-size:41.324503px;}
.fs9_c00217{font-size:47.737061px;}
.fsb_c00217{font-size:50.586940px;}
.fs5_c00217{font-size:53.436999px;}
.fs6_c00217{font-size:56.286877px;}
.fs2_c00217{font-size:59.136936px;}
.fs0_c00217{font-size:65.550574px;}
.fs1_c00217{font-size:71.249972px;}
.fsa_c00217{font-size:83.362767px;}
.y0_c00217{bottom:0.000000px;}
.y1_c00217{bottom:0.120938px;}
.y58_c00217{bottom:0.485156px;}
.y63_c00217{bottom:1.956677px;}
.y4f_c00217{bottom:1.957557px;}
.y24_c00217{bottom:2.311145px;}
.y14_c00217{bottom:2.312644px;}
.y4a_c00217{bottom:2.312757px;}
.y5e_c00217{bottom:2.313078px;}
.y80_c00217{bottom:2.672199px;}
.y7c_c00217{bottom:2.848299px;}
.y6b_c00217{bottom:3.201079px;}
.y54_c00217{bottom:3.206458px;}
.y57_c00217{bottom:3.206758px;}
.y68_c00217{bottom:3.208279px;}
.y77_c00217{bottom:3.385600px;}
.yb2_c00217{bottom:3.564467px;}
.y38_c00217{bottom:3.735308px;}
.y33_c00217{bottom:3.914708px;}
.yb_c00217{bottom:3.915223px;}
.yb0_c00217{bottom:3.915454px;}
.yf_c00217{bottom:3.915546px;}
.y72_c00217{bottom:3.916000px;}
.y3d_c00217{bottom:4.805709px;}
.y2a_c00217{bottom:4.806547px;}
.y40_c00217{bottom:4.806609px;}
.y41_c00217{bottom:6.826644px;}
.y9_c00217{bottom:71.838984px;}
.y3_c00217{bottom:83.414442px;}
.y2_c00217{bottom:84.131629px;}
.ybb_c00217{bottom:168.266786px;}
.yba_c00217{bottom:202.819272px;}
.yb9_c00217{bottom:224.912463px;}
.yb8_c00217{bottom:240.050757px;}
.yb7_c00217{bottom:267.302746px;}
.yb6_c00217{bottom:268.013746px;}
.yb4_c00217{bottom:297.227734px;}
.yb5_c00217{bottom:298.117234px;}
.yb3_c00217{bottom:326.443223px;}
.yb1_c00217{bottom:328.991400px;}
.yaf_c00217{bottom:359.987400px;}
.yae_c00217{bottom:378.631112px;}
.yad_c00217{bottom:393.413606px;}
.yac_c00217{bottom:408.376100px;}
.y84_c00217{bottom:410.512189px;}
.y83_c00217{bottom:411.403189px;}
.yab_c00217{bottom:423.160004px;}
.yaa_c00217{bottom:437.943908px;}
.y70_c00217{bottom:446.964384px;}
.ya9_c00217{bottom:452.907812px;}
.y75_c00217{bottom:457.467016px;}
.y74_c00217{bottom:462.632159px;}
.y82_c00217{bottom:465.910167px;}
.ya8_c00217{bottom:467.693816px;}
.y7a_c00217{bottom:468.874875px;}
.y79_c00217{bottom:469.590675px;}
.y7e_c00217{bottom:471.904874px;}
.y6f_c00217{bottom:472.615873px;}
.y73_c00217{bottom:478.307153px;}
.y81_c00217{bottom:482.120660px;}
.ya7_c00217{bottom:482.477720px;}
.y78_c00217{bottom:485.976368px;}
.y6e_c00217{bottom:487.578367px;}
.y7d_c00217{bottom:488.470867px;}
.y71_c00217{bottom:495.361800px;}
.y76_c00217{bottom:497.140200px;}
.ya6_c00217{bottom:497.441624px;}
.y6d_c00217{bottom:497.908863px;}
.y7b_c00217{bottom:499.815000px;}
.y7f_c00217{bottom:500.169600px;}
.ya5_c00217{bottom:512.222708px;}
.y61_c00217{bottom:522.486968px;}
.y66_c00217{bottom:524.091533px;}
.y5c_c00217{bottom:524.262634px;}
.ya4_c00217{bottom:527.008022px;}
.y60_c00217{bottom:527.477031px;}
.y65_c00217{bottom:529.257396px;}
.y69_c00217{bottom:536.740848px;}
.y6c_c00217{bottom:537.451847px;}
.y5b_c00217{bottom:539.225128px;}
.ya3_c00217{bottom:541.972631px;}
.y5f_c00217{bottom:542.082346px;}
.y64_c00217{bottom:543.151845px;}
.y5a_c00217{bottom:549.380124px;}
.y67_c00217{bottom:549.864000px;}
.y6a_c00217{bottom:550.222200px;}
.y5d_c00217{bottom:553.606200px;}
.y62_c00217{bottom:554.673600px;}
.ya2_c00217{bottom:556.756536px;}
.y48_c00217{bottom:569.755125px;}
.ya1_c00217{bottom:571.539030px;}
.y4d_c00217{bottom:574.500858px;}
.y52_c00217{bottom:576.107117px;}
.y4c_c00217{bottom:579.668821px;}
.y51_c00217{bottom:581.272965px;}
.y47_c00217{bottom:584.719119px;}
.ya0_c00217{bottom:586.501524px;}
.y55_c00217{bottom:588.573327px;}
.y59_c00217{bottom:588.921608px;}
.y4b_c00217{bottom:594.094825px;}
.y50_c00217{bottom:594.988824px;}
.y46_c00217{bottom:595.048115px;}
.y9f_c00217{bottom:601.284018px;}
.y53_c00217{bottom:601.696800px;}
.y56_c00217{bottom:602.055000px;}
.y49_c00217{bottom:605.619000px;}
.y4e_c00217{bottom:606.688200px;}
.y9e_c00217{bottom:616.066512px;}
.y45_c00217{bottom:623.369604px;}
.y9d_c00217{bottom:631.029006px;}
.y9c_c00217{bottom:645.814320px;}
.y44_c00217{bottom:654.719591px;}
.y43_c00217{bottom:655.789091px;}
.y9b_c00217{bottom:660.599634px;}
.y9a_c00217{bottom:675.560718px;}
.y99_c00217{bottom:690.344622px;}
.y36_c00217{bottom:695.802899px;}
.y3b_c00217{bottom:697.404553px;}
.y31_c00217{bottom:697.939783px;}
.y35_c00217{bottom:700.794372px;}
.y3a_c00217{bottom:702.571121px;}
.y42_c00217{bottom:703.882072px;}
.y98_c00217{bottom:705.130626px;}
.y3e_c00217{bottom:709.876779px;}
.y34_c00217{bottom:715.398276px;}
.y39_c00217{bottom:716.466276px;}
.y97_c00217{bottom:720.091710px;}
.y3c_c00217{bottom:722.646000px;}
.y3f_c00217{bottom:723.000600px;}
.y30_c00217{bottom:723.415773px;}
.y32_c00217{bottom:726.921000px;}
.y37_c00217{bottom:727.457400px;}
.y96_c00217{bottom:734.875614px;}
.y95_c00217{bottom:749.659518px;}
.y2f_c00217{bottom:757.791259px;}
.y94_c00217{bottom:764.620602px;}
.y93_c00217{bottom:779.406607px;}
.y21_c00217{bottom:786.648248px;}
.y22_c00217{bottom:793.416245px;}
.y92_c00217{bottom:794.190511px;}
.y20_c00217{bottom:803.926606px;}
.y2e_c00217{bottom:804.636241px;}
.y91_c00217{bottom:809.154415px;}
.y1f_c00217{bottom:817.998235px;}
.y90_c00217{bottom:823.936909px;}
.y1a_c00217{bottom:825.297232px;}
.y18_c00217{bottom:825.300232px;}
.y28_c00217{bottom:825.834982px;}
.y2d_c00217{bottom:830.110730px;}
.y1e_c00217{bottom:831.892730px;}
.y19_c00217{bottom:832.068230px;}
.y12_c00217{bottom:834.382729px;}
.y8f_c00217{bottom:838.719403px;}
.y27_c00217{bottom:842.935725px;}
.y17_c00217{bottom:843.648225px;}
.y2c_c00217{bottom:847.389373px;}
.y1d_c00217{bottom:847.563823px;}
.y11_c00217{bottom:851.662722px;}
.y8e_c00217{bottom:853.684012px;}
.y26_c00217{bottom:859.500399px;}
.y16_c00217{bottom:860.212808px;}
.y2b_c00217{bottom:864.310717px;}
.y1c_c00217{bottom:864.483817px;}
.y8d_c00217{bottom:867.041221px;}
.y10_c00217{bottom:869.116715px;}
.y25_c00217{bottom:874.285713px;}
.y8c_c00217{bottom:874.698253px;}
.y15_c00217{bottom:874.996712px;}
.y29_c00217{bottom:876.900600px;}
.ye_c00217{bottom:880.104600px;}
.y1b_c00217{bottom:881.406660px;}
.y8b_c00217{bottom:882.539500px;}
.y23_c00217{bottom:885.807000px;}
.y13_c00217{bottom:886.518000px;}
.y8a_c00217{bottom:910.683989px;}
.yd_c00217{bottom:912.399197px;}
.yc_c00217{bottom:930.748690px;}
.ya_c00217{bottom:939.245400px;}
.y89_c00217{bottom:948.444674px;}
.y88_c00217{bottom:981.395161px;}
.y87_c00217{bottom:1009.541299px;}
.y86_c00217{bottom:1037.685938px;}
.y85_c00217{bottom:1074.201924px;}
.y8_c00217{bottom:1101.033122px;}
.y7_c00217{bottom:1125.436612px;}
.y6_c00217{bottom:1146.276554px;}
.y5_c00217{bottom:1166.762796px;}
.y4_c00217{bottom:1187.245588px;}
.h1e_c00217{height:8.370000px;}
.h26_c00217{height:8.551800px;}
.h1c_c00217{height:9.439200px;}
.hd_c00217{height:9.441000px;}
.h25_c00217{height:9.619200px;}
.h11_c00217{height:10.152000px;}
.h2e_c00217{height:11.043000px;}
.h2c_c00217{height:11.397600px;}
.h23_c00217{height:13.003200px;}
.h21_c00217{height:13.361400px;}
.h2a_c00217{height:14.072400px;}
.h16_c00217{height:15.316200px;}
.h28_c00217{height:15.850800px;}
.h14_c00217{height:15.852600px;}
.ha_c00217{height:15.854400px;}
.h31_c00217{height:18.347400px;}
.h1f_c00217{height:18.912365px;}
.h12_c00217{height:19.058400px;}
.h19_c00217{height:19.773000px;}
.h30_c00217{height:20.125800px;}
.h7_c00217{height:20.127600px;}
.h1b_c00217{height:20.713640px;}
.he_c00217{height:22.514763px;}
.h9_c00217{height:24.315963px;}
.h2d_c00217{height:26.117086px;}
.h22_c00217{height:30.169822px;}
.h2b_c00217{height:31.970946px;}
.hf_c00217{height:34.511738px;}
.h17_c00217{height:35.573307px;}
.h6_c00217{height:37.374544px;}
.h5_c00217{height:41.427963px;}
.h32_c00217{height:42.772407px;}
.hb_c00217{height:45.029982px;}
.h10_c00217{height:47.932988px;}
.h29_c00217{height:52.685269px;}
.h33_c00217{height:52.927558px;}
.h13_c00217{height:52.986695px;}
.hc_c00217{height:53.045832px;}
.h2_c00217{height:58.667764px;}
.h2f_c00217{height:58.798865px;}
.h3_c00217{height:63.768724px;}
.h8_c00217{height:63.911224px;}
.h4_c00217{height:64.053724px;}
.h27_c00217{height:80.057004px;}
.h20_c00217{height:80.062644px;}
.h18_c00217{height:80.068224px;}
.h15_c00217{height:82.959600px;}
.h1d_c00217{height:82.973640px;}
.h1a_c00217{height:1249.830756px;}
.h24_c00217{height:1262.514600px;}
.h1_c00217{height:1262.879062px;}
.h0_c00217{height:1263.000000px;}
.w3c_c00217{width:4.278420px;}
.w4d_c00217{width:4.451400px;}
.w49_c00217{width:4.453200px;}
.w28_c00217{width:4.455000px;}
.w1c_c00217{width:4.986000px;}
.w23_c00217{width:5.166000px;}
.w2d_c00217{width:5.698800px;}
.w2f_c00217{width:5.875920px;}
.w2c_c00217{width:6.057000px;}
.w4f_c00217{width:6.231600px;}
.w41_c00217{width:6.413400px;}
.w4_c00217{width:6.946200px;}
.w38_c00217{width:6.948000px;}
.w29_c00217{width:6.949800px;}
.w43_c00217{width:7.128000px;}
.w40_c00217{width:7.299000px;}
.w4a_c00217{width:7.300800px;}
.w3f_c00217{width:7.302600px;}
.w48_c00217{width:7.306200px;}
.w2b_c00217{width:7.482600px;}
.w1d_c00217{width:7.835400px;}
.w21_c00217{width:8.019000px;}
.w44_c00217{width:8.190000px;}
.w47_c00217{width:8.195400px;}
.w26_c00217{width:8.197200px;}
.w22_c00217{width:8.725860px;}
.w25_c00217{width:8.726400px;}
.w1f_c00217{width:8.913600px;}
.w1b_c00217{width:9.082800px;}
.w20_c00217{width:9.972000px;}
.w35_c00217{width:9.979200px;}
.w18_c00217{width:9.981000px;}
.w3e_c00217{width:10.331820px;}
.w24_c00217{width:10.510200px;}
.w3a_c00217{width:11.219760px;}
.w4b_c00217{width:11.752200px;}
.w4c_c00217{width:11.757600px;}
.we_c00217{width:11.930400px;}
.wa_c00217{width:11.932200px;}
.w2e_c00217{width:11.933460px;}
.w34_c00217{width:11.934000px;}
.w10_c00217{width:11.935800px;}
.wb_c00217{width:11.939400px;}
.w12_c00217{width:12.112200px;}
.w3b_c00217{width:12.112740px;}
.w8_c00217{width:12.821400px;}
.wc_c00217{width:12.823200px;}
.w14_c00217{width:12.830400px;}
.w30_c00217{width:13.001400px;}
.w9_c00217{width:13.005000px;}
.w36_c00217{width:13.539600px;}
.w1a_c00217{width:13.719600px;}
.w15_c00217{width:13.892400px;}
.w7_c00217{width:13.894200px;}
.w32_c00217{width:13.897800px;}
.w1e_c00217{width:14.959800px;}
.w3d_c00217{width:16.205760px;}
.w45_c00217{width:16.385400px;}
.w5_c00217{width:16.745400px;}
.w13_c00217{width:17.101800px;}
.w46_c00217{width:17.276400px;}
.w2_c00217{width:18.703800px;}
.w4e_c00217{width:20.127600px;}
.w16_c00217{width:24.759000px;}
.wf_c00217{width:24.760800px;}
.w19_c00217{width:25.648200px;}
.w11_c00217{width:25.650000px;}
.w17_c00217{width:25.826400px;}
.w42_c00217{width:27.257400px;}
.w6_c00217{width:32.776200px;}
.w3_c00217{width:33.841260px;}
.w37_c00217{width:33.841800px;}
.w31_c00217{width:33.842520px;}
.w33_c00217{width:35.802000px;}
.wd_c00217{width:35.803800px;}
.w39_c00217{width:39.718800px;}
.w27_c00217{width:883.195846px;}
.w2a_c00217{width:892.161000px;}
.w1_c00217{width:892.414744px;}
.w0_c00217{width:892.500000px;}
.x0_c00217{left:0.000000px;}
.x47_c00217{left:1.541954px;}
.x51_c00217{left:108.301652px;}
.x7_c00217{left:109.830950px;}
.x4b_c00217{left:115.425599px;}
.x2c_c00217{left:117.667847px;}
.x4a_c00217{left:123.085496px;}
.x8_c00217{left:124.625340px;}
.x2_c00217{left:126.214330px;}
.x2d_c00217{left:133.874890px;}
.x52_c00217{left:136.383120px;}
.x9_c00217{left:147.427740px;}
.x5f_c00217{left:152.060580px;}
.x53_c00217{left:159.360480px;}
.x60_c00217{left:171.471780px;}
.x75_c00217{left:178.837474px;}
.xa_c00217{left:181.269000px;}
.xb_c00217{left:188.215200px;}
.x54_c00217{left:193.203000px;}
.x61_c00217{left:196.050600px;}
.x62_c00217{left:202.464000px;}
.x4f_c00217{left:203.594964px;}
.xc_c00217{left:204.960600px;}
.x55_c00217{left:211.017600px;}
.x48_c00217{left:212.324961px;}
.x63_c00217{left:229.721400px;}
.xd_c00217{left:237.736800px;}
.x56_c00217{left:240.053400px;}
.x4_c00217{left:248.050247px;}
.xe_c00217{left:251.631000px;}
.x57_c00217{left:252.876600px;}
.x64_c00217{left:260.001000px;}
.x2e_c00217{left:263.190738px;}
.x3_c00217{left:265.685237px;}
.xf_c00217{left:267.658200px;}
.x44_c00217{left:272.276921px;}
.x10_c00217{left:280.663200px;}
.x58_c00217{left:288.678600px;}
.x11_c00217{left:292.595400px;}
.x2f_c00217{left:297.569225px;}
.x59_c00217{left:300.612600px;}
.x30_c00217{left:302.202723px;}
.x65_c00217{left:304.354800px;}
.x12_c00217{left:308.629800px;}
.x5a_c00217{left:314.505000px;}
.x66_c00217{left:316.287000px;}
.x13_c00217{left:321.453000px;}
.x67_c00217{left:333.563400px;}
.x6_c00217{left:341.920141px;}
.x5b_c00217{left:343.539000px;}
.x68_c00217{left:345.497400px;}
.x73_c00217{left:353.935404px;}
.x14_c00217{left:357.256800px;}
.x15_c00217{left:373.107600px;}
.x69_c00217{left:382.368600px;}
.x34_c00217{left:387.344189px;}
.x36_c00217{left:388.593727px;}
.x6a_c00217{left:389.674800px;}
.x5c_c00217{left:390.920400px;}
.x6b_c00217{left:394.128000px;}
.x5d_c00217{left:397.868400px;}
.x16_c00217{left:402.141600px;}
.x6c_c00217{left:404.992800px;}
.x5e_c00217{left:411.766200px;}
.x17_c00217{left:414.077400px;}
.x5_c00217{left:415.840281px;}
.x37_c00217{left:417.450677px;}
.x32_c00217{left:419.230099px;}
.x31_c00217{left:421.186197px;}
.x33_c00217{left:431.341419px;}
.x6d_c00217{left:432.424800px;}
.x18_c00217{left:439.727400px;}
.x6e_c00217{left:444.182400px;}
.x38_c00217{left:445.770665px;}
.x45_c00217{left:447.548945px;}
.x6f_c00217{left:448.633800px;}
.x39_c00217{left:450.578164px;}
.x19_c00217{left:451.839600px;}
.x3a_c00217{left:455.565662px;}
.x1a_c00217{left:464.662800px;}
.x70_c00217{left:472.325400px;}
.x1b_c00217{left:481.764600px;}
.x1c_c00217{left:488.710800px;}
.x35_c00217{left:491.369147px;}
.x1d_c00217{left:500.643000px;}
.x1_c00217{left:501.875143px;}
.x1e_c00217{left:513.473400px;}
.x3b_c00217{left:523.089000px;}
.x1f_c00217{left:525.405600px;}
.x20_c00217{left:542.327400px;}
.x3c_c00217{left:558.701120px;}
.x4c_c00217{left:560.483120px;}
.x46_c00217{left:562.617619px;}
.x21_c00217{left:571.359600px;}
.x3d_c00217{left:575.088108px;}
.x22_c00217{left:597.186000px;}
.x23_c00217{left:611.260200px;}
.x24_c00217{left:641.185200px;}
.x4e_c00217{left:642.311789px;}
.x3e_c00217{left:643.854600px;}
.x25_c00217{left:654.904800px;}
.x41_c00217{left:656.490581px;}
.x26_c00217{left:663.987600px;}
.x72_c00217{left:667.432279px;}
.x27_c00217{left:668.973600px;}
.x49_c00217{left:672.235277px;}
.x50_c00217{left:674.374276px;}
.x28_c00217{left:676.809000px;}
.x4d_c00217{left:678.540104px;}
.x43_c00217{left:679.644572px;}
.x74_c00217{left:680.968273px;}
.x71_c00217{left:682.216273px;}
.x29_c00217{left:691.768800px;}
.x40_c00217{left:695.323171px;}
.x3f_c00217{left:697.458565px;}
.x2a_c00217{left:704.599200px;}
.x2b_c00217{left:714.571200px;}
.x42_c00217{left:737.357049px;}
@media print{
.v3_c00217{vertical-align:-2.537498pt;}
.v0_c00217{vertical-align:0.000000pt;}
.v2_c00217{vertical-align:24.072470pt;}
.v1_c00217{vertical-align:26.590016pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws1_c00217{word-spacing:-15.833327pt;}
.ws0_c00217{word-spacing:-14.566794pt;}
.ws2_c00217{word-spacing:-13.141541pt;}
.ws3_c00217{word-spacing:-8.549917pt;}
.ws4_c00217{word-spacing:0.000000pt;}
._8_c00217{margin-left:-4.700501pt;}
._6_c00217{margin-left:-3.436356pt;}
._4_c00217{margin-left:-2.307174pt;}
._0_c00217{margin-left:-1.190721pt;}
._1_c00217{width:0.938922pt;}
._3_c00217{width:1.939912pt;}
._2_c00217{width:2.863682pt;}
._9_c00217{width:17.797050pt;}
._5_c00217{width:25.268748pt;}
._7_c00217{width:52.982500pt;}
._a_c00217{width:525.145602pt;}
.fs8_c00217{font-size:26.599669pt;}
.fs7_c00217{font-size:29.133108pt;}
.fs4_c00217{font-size:31.666334pt;}
.fs3_c00217{font-size:34.199666pt;}
.fsc_c00217{font-size:36.732892pt;}
.fs9_c00217{font-size:42.432943pt;}
.fsb_c00217{font-size:44.966169pt;}
.fs5_c00217{font-size:47.499554pt;}
.fs6_c00217{font-size:50.032780pt;}
.fs2_c00217{font-size:52.566166pt;}
.fs0_c00217{font-size:58.267177pt;}
.fs1_c00217{font-size:63.333308pt;}
.fsa_c00217{font-size:74.100237pt;}
.y0_c00217{bottom:0.000000pt;}
.y1_c00217{bottom:0.107500pt;}
.y58_c00217{bottom:0.431250pt;}
.y63_c00217{bottom:1.739269pt;}
.y4f_c00217{bottom:1.740050pt;}
.y24_c00217{bottom:2.054351pt;}
.y14_c00217{bottom:2.055684pt;}
.y4a_c00217{bottom:2.055784pt;}
.y5e_c00217{bottom:2.056069pt;}
.y80_c00217{bottom:2.375288pt;}
.y7c_c00217{bottom:2.531821pt;}
.y6b_c00217{bottom:2.845403pt;}
.y54_c00217{bottom:2.850185pt;}
.y57_c00217{bottom:2.850451pt;}
.y68_c00217{bottom:2.851803pt;}
.y77_c00217{bottom:3.009422pt;}
.yb2_c00217{bottom:3.168415pt;}
.y38_c00217{bottom:3.320273pt;}
.y33_c00217{bottom:3.479740pt;}
.yb_c00217{bottom:3.480198pt;}
.yb0_c00217{bottom:3.480404pt;}
.yf_c00217{bottom:3.480486pt;}
.y72_c00217{bottom:3.480889pt;}
.y3d_c00217{bottom:4.271741pt;}
.y2a_c00217{bottom:4.272487pt;}
.y40_c00217{bottom:4.272541pt;}
.y41_c00217{bottom:6.068128pt;}
.y9_c00217{bottom:63.856874pt;}
.y3_c00217{bottom:74.146170pt;}
.y2_c00217{bottom:74.783670pt;}
.ybb_c00217{bottom:149.570476pt;}
.yba_c00217{bottom:180.283797pt;}
.yb9_c00217{bottom:199.922190pt;}
.yb8_c00217{bottom:213.378451pt;}
.yb7_c00217{bottom:237.602441pt;}
.yb6_c00217{bottom:238.234441pt;}
.yb4_c00217{bottom:264.202431pt;}
.yb5_c00217{bottom:264.993097pt;}
.yb3_c00217{bottom:290.171754pt;}
.yb1_c00217{bottom:292.436800pt;}
.yaf_c00217{bottom:319.988800pt;}
.yae_c00217{bottom:336.560988pt;}
.yad_c00217{bottom:349.700983pt;}
.yac_c00217{bottom:363.000978pt;}
.y84_c00217{bottom:364.899724pt;}
.y83_c00217{bottom:365.691723pt;}
.yab_c00217{bottom:376.142226pt;}
.yaa_c00217{bottom:389.283474pt;}
.y70_c00217{bottom:397.301674pt;}
.ya9_c00217{bottom:402.584722pt;}
.y75_c00217{bottom:406.637348pt;}
.y74_c00217{bottom:411.228586pt;}
.y82_c00217{bottom:414.142371pt;}
.ya8_c00217{bottom:415.727837pt;}
.y7a_c00217{bottom:416.777667pt;}
.y79_c00217{bottom:417.413933pt;}
.y7e_c00217{bottom:419.470999pt;}
.y6f_c00217{bottom:420.102999pt;}
.y73_c00217{bottom:425.161913pt;}
.y81_c00217{bottom:428.551698pt;}
.ya7_c00217{bottom:428.869085pt;}
.y78_c00217{bottom:431.978994pt;}
.y6e_c00217{bottom:433.402993pt;}
.y7d_c00217{bottom:434.196326pt;}
.y71_c00217{bottom:440.321600pt;}
.y76_c00217{bottom:441.902400pt;}
.ya6_c00217{bottom:442.170333pt;}
.y6d_c00217{bottom:442.585656pt;}
.y7b_c00217{bottom:444.280000pt;}
.y7f_c00217{bottom:444.595200pt;}
.ya5_c00217{bottom:455.309074pt;}
.y61_c00217{bottom:464.432861pt;}
.y66_c00217{bottom:465.859140pt;}
.y5c_c00217{bottom:466.011230pt;}
.ya4_c00217{bottom:468.451576pt;}
.y60_c00217{bottom:468.868472pt;}
.y65_c00217{bottom:470.451018pt;}
.y69_c00217{bottom:477.102976pt;}
.y6c_c00217{bottom:477.734976pt;}
.y5b_c00217{bottom:479.311225pt;}
.ya3_c00217{bottom:481.753450pt;}
.y5f_c00217{bottom:481.850974pt;}
.y64_c00217{bottom:482.801640pt;}
.y5a_c00217{bottom:488.337888pt;}
.y67_c00217{bottom:488.768000pt;}
.y6a_c00217{bottom:489.086400pt;}
.y5d_c00217{bottom:492.094400pt;}
.y62_c00217{bottom:493.043200pt;}
.ya2_c00217{bottom:494.894698pt;}
.y48_c00217{bottom:506.449000pt;}
.ya1_c00217{bottom:508.034693pt;}
.y4d_c00217{bottom:510.667429pt;}
.y52_c00217{bottom:512.095215pt;}
.y4c_c00217{bottom:515.261174pt;}
.y51_c00217{bottom:516.687080pt;}
.y47_c00217{bottom:519.750328pt;}
.ya0_c00217{bottom:521.334688pt;}
.y55_c00217{bottom:523.176291pt;}
.y59_c00217{bottom:523.485874pt;}
.y4b_c00217{bottom:528.084289pt;}
.y50_c00217{bottom:528.878955pt;}
.y46_c00217{bottom:528.931658pt;}
.y9f_c00217{bottom:534.474682pt;}
.y53_c00217{bottom:534.841600pt;}
.y56_c00217{bottom:535.160000pt;}
.y49_c00217{bottom:538.328000pt;}
.y4e_c00217{bottom:539.278400pt;}
.y9e_c00217{bottom:547.614677pt;}
.y45_c00217{bottom:554.106315pt;}
.y9d_c00217{bottom:560.914672pt;}
.y9c_c00217{bottom:574.057173pt;}
.y44_c00217{bottom:581.972970pt;}
.y43_c00217{bottom:582.923636pt;}
.y9b_c00217{bottom:587.199675pt;}
.y9a_c00217{bottom:600.498416pt;}
.y99_c00217{bottom:613.639664pt;}
.y36_c00217{bottom:618.491466pt;}
.y3b_c00217{bottom:619.915159pt;}
.y31_c00217{bottom:620.390918pt;}
.y35_c00217{bottom:622.928331pt;}
.y3a_c00217{bottom:624.507663pt;}
.y42_c00217{bottom:625.672953pt;}
.y98_c00217{bottom:626.782779pt;}
.y3e_c00217{bottom:631.001581pt;}
.y34_c00217{bottom:635.909579pt;}
.y39_c00217{bottom:636.858912pt;}
.y97_c00217{bottom:640.081520pt;}
.y3c_c00217{bottom:642.352000pt;}
.y3f_c00217{bottom:642.667200pt;}
.y30_c00217{bottom:643.036243pt;}
.y32_c00217{bottom:646.152000pt;}
.y37_c00217{bottom:646.628800pt;}
.y96_c00217{bottom:653.222768pt;}
.y95_c00217{bottom:666.364016pt;}
.y2f_c00217{bottom:673.592231pt;}
.y94_c00217{bottom:679.662758pt;}
.y93_c00217{bottom:692.805872pt;}
.y21_c00217{bottom:699.242887pt;}
.y22_c00217{bottom:705.258885pt;}
.y92_c00217{bottom:705.947121pt;}
.y20_c00217{bottom:714.601427pt;}
.y2e_c00217{bottom:715.232214pt;}
.y91_c00217{bottom:719.248369pt;}
.y1f_c00217{bottom:727.109542pt;}
.y90_c00217{bottom:732.388363pt;}
.y1a_c00217{bottom:733.597540pt;}
.y18_c00217{bottom:733.600207pt;}
.y28_c00217{bottom:734.075540pt;}
.y2d_c00217{bottom:737.876205pt;}
.y1e_c00217{bottom:739.460204pt;}
.y19_c00217{bottom:739.616204pt;}
.y12_c00217{bottom:741.673537pt;}
.y8f_c00217{bottom:745.528358pt;}
.y27_c00217{bottom:749.276200pt;}
.y17_c00217{bottom:749.909533pt;}
.y2c_c00217{bottom:753.234999pt;}
.y1d_c00217{bottom:753.390065pt;}
.y11_c00217{bottom:757.033530pt;}
.y8e_c00217{bottom:758.830233pt;}
.y26_c00217{bottom:764.000354pt;}
.y16_c00217{bottom:764.633607pt;}
.y2b_c00217{bottom:768.276193pt;}
.y1c_c00217{bottom:768.430059pt;}
.y8d_c00217{bottom:770.703308pt;}
.y10_c00217{bottom:772.548191pt;}
.y25_c00217{bottom:777.142856pt;}
.y8c_c00217{bottom:777.509559pt;}
.y15_c00217{bottom:777.774856pt;}
.y29_c00217{bottom:779.467200pt;}
.ye_c00217{bottom:782.315200pt;}
.y1b_c00217{bottom:783.472587pt;}
.y8b_c00217{bottom:784.479556pt;}
.y23_c00217{bottom:787.384000pt;}
.y13_c00217{bottom:788.016000pt;}
.y8a_c00217{bottom:809.496879pt;}
.yd_c00217{bottom:811.021509pt;}
.yc_c00217{bottom:827.332169pt;}
.ya_c00217{bottom:834.884800pt;}
.y89_c00217{bottom:843.061932pt;}
.y88_c00217{bottom:872.351254pt;}
.y87_c00217{bottom:897.370044pt;}
.y86_c00217{bottom:922.387501pt;}
.y85_c00217{bottom:954.846154pt;}
.y8_c00217{bottom:978.696108pt;}
.y7_c00217{bottom:1000.388100pt;}
.y6_c00217{bottom:1018.912492pt;}
.y5_c00217{bottom:1037.122485pt;}
.y4_c00217{bottom:1055.329411pt;}
.h1e_c00217{height:7.440000pt;}
.h26_c00217{height:7.601600pt;}
.h1c_c00217{height:8.390400pt;}
.hd_c00217{height:8.392000pt;}
.h25_c00217{height:8.550400pt;}
.h11_c00217{height:9.024000pt;}
.h2e_c00217{height:9.816000pt;}
.h2c_c00217{height:10.131200pt;}
.h23_c00217{height:11.558400pt;}
.h21_c00217{height:11.876800pt;}
.h2a_c00217{height:12.508800pt;}
.h16_c00217{height:13.614400pt;}
.h28_c00217{height:14.089600pt;}
.h14_c00217{height:14.091200pt;}
.ha_c00217{height:14.092800pt;}
.h31_c00217{height:16.308800pt;}
.h1f_c00217{height:16.810991pt;}
.h12_c00217{height:16.940800pt;}
.h19_c00217{height:17.576000pt;}
.h30_c00217{height:17.889600pt;}
.h7_c00217{height:17.891200pt;}
.h1b_c00217{height:18.412124pt;}
.he_c00217{height:20.013123pt;}
.h9_c00217{height:21.614189pt;}
.h2d_c00217{height:23.215188pt;}
.h22_c00217{height:26.817620pt;}
.h2b_c00217{height:28.418619pt;}
.hf_c00217{height:30.677101pt;}
.h17_c00217{height:31.620717pt;}
.h6_c00217{height:33.221817pt;}
.h5_c00217{height:36.824856pt;}
.h32_c00217{height:38.019917pt;}
.hb_c00217{height:40.026651pt;}
.h10_c00217{height:42.607100pt;}
.h29_c00217{height:46.831350pt;}
.h33_c00217{height:47.046718pt;}
.h13_c00217{height:47.099284pt;}
.hc_c00217{height:47.151851pt;}
.h2_c00217{height:52.149123pt;}
.h2f_c00217{height:52.265657pt;}
.h3_c00217{height:56.683311pt;}
.h8_c00217{height:56.809977pt;}
.h4_c00217{height:56.936644pt;}
.h27_c00217{height:71.161781pt;}
.h20_c00217{height:71.166795pt;}
.h18_c00217{height:71.171755pt;}
.h15_c00217{height:73.741867pt;}
.h1d_c00217{height:73.754347pt;}
.h1a_c00217{height:1110.960672pt;}
.h24_c00217{height:1122.235200pt;}
.h1_c00217{height:1122.559167pt;}
.h0_c00217{height:1122.666667pt;}
.w3c_c00217{width:3.803040pt;}
.w4d_c00217{width:3.956800pt;}
.w49_c00217{width:3.958400pt;}
.w28_c00217{width:3.960000pt;}
.w1c_c00217{width:4.432000pt;}
.w23_c00217{width:4.592000pt;}
.w2d_c00217{width:5.065600pt;}
.w2f_c00217{width:5.223040pt;}
.w2c_c00217{width:5.384000pt;}
.w4f_c00217{width:5.539200pt;}
.w41_c00217{width:5.700800pt;}
.w4_c00217{width:6.174400pt;}
.w38_c00217{width:6.176000pt;}
.w29_c00217{width:6.177600pt;}
.w43_c00217{width:6.336000pt;}
.w40_c00217{width:6.488000pt;}
.w4a_c00217{width:6.489600pt;}
.w3f_c00217{width:6.491200pt;}
.w48_c00217{width:6.494400pt;}
.w2b_c00217{width:6.651200pt;}
.w1d_c00217{width:6.964800pt;}
.w21_c00217{width:7.128000pt;}
.w44_c00217{width:7.280000pt;}
.w47_c00217{width:7.284800pt;}
.w26_c00217{width:7.286400pt;}
.w22_c00217{width:7.756320pt;}
.w25_c00217{width:7.756800pt;}
.w1f_c00217{width:7.923200pt;}
.w1b_c00217{width:8.073600pt;}
.w20_c00217{width:8.864000pt;}
.w35_c00217{width:8.870400pt;}
.w18_c00217{width:8.872000pt;}
.w3e_c00217{width:9.183840pt;}
.w24_c00217{width:9.342400pt;}
.w3a_c00217{width:9.973120pt;}
.w4b_c00217{width:10.446400pt;}
.w4c_c00217{width:10.451200pt;}
.we_c00217{width:10.604800pt;}
.wa_c00217{width:10.606400pt;}
.w2e_c00217{width:10.607520pt;}
.w34_c00217{width:10.608000pt;}
.w10_c00217{width:10.609600pt;}
.wb_c00217{width:10.612800pt;}
.w12_c00217{width:10.766400pt;}
.w3b_c00217{width:10.766880pt;}
.w8_c00217{width:11.396800pt;}
.wc_c00217{width:11.398400pt;}
.w14_c00217{width:11.404800pt;}
.w30_c00217{width:11.556800pt;}
.w9_c00217{width:11.560000pt;}
.w36_c00217{width:12.035200pt;}
.w1a_c00217{width:12.195200pt;}
.w15_c00217{width:12.348800pt;}
.w7_c00217{width:12.350400pt;}
.w32_c00217{width:12.353600pt;}
.w1e_c00217{width:13.297600pt;}
.w3d_c00217{width:14.405120pt;}
.w45_c00217{width:14.564800pt;}
.w5_c00217{width:14.884800pt;}
.w13_c00217{width:15.201600pt;}
.w46_c00217{width:15.356800pt;}
.w2_c00217{width:16.625600pt;}
.w4e_c00217{width:17.891200pt;}
.w16_c00217{width:22.008000pt;}
.wf_c00217{width:22.009600pt;}
.w19_c00217{width:22.798400pt;}
.w11_c00217{width:22.800000pt;}
.w17_c00217{width:22.956800pt;}
.w42_c00217{width:24.228800pt;}
.w6_c00217{width:29.134400pt;}
.w3_c00217{width:30.081120pt;}
.w37_c00217{width:30.081600pt;}
.w31_c00217{width:30.082240pt;}
.w33_c00217{width:31.824000pt;}
.wd_c00217{width:31.825600pt;}
.w39_c00217{width:35.305600pt;}
.w27_c00217{width:785.062974pt;}
.w2a_c00217{width:793.032000pt;}
.w1_c00217{width:793.257550pt;}
.w0_c00217{width:793.333333pt;}
.x0_c00217{left:0.000000pt;}
.x47_c00217{left:1.370626pt;}
.x51_c00217{left:96.268135pt;}
.x7_c00217{left:97.627511pt;}
.x4b_c00217{left:102.600533pt;}
.x2c_c00217{left:104.593641pt;}
.x4a_c00217{left:109.409330pt;}
.x8_c00217{left:110.778080pt;}
.x2_c00217{left:112.190515pt;}
.x2d_c00217{left:118.999902pt;}
.x52_c00217{left:121.229440pt;}
.x9_c00217{left:131.046880pt;}
.x5f_c00217{left:135.164960pt;}
.x53_c00217{left:141.653760pt;}
.x60_c00217{left:152.419360pt;}
.x75_c00217{left:158.966644pt;}
.xa_c00217{left:161.128000pt;}
.xb_c00217{left:167.302400pt;}
.x54_c00217{left:171.736000pt;}
.x61_c00217{left:174.267200pt;}
.x62_c00217{left:179.968000pt;}
.x4f_c00217{left:180.973301pt;}
.xc_c00217{left:182.187200pt;}
.x55_c00217{left:187.571200pt;}
.x48_c00217{left:188.733298pt;}
.x63_c00217{left:204.196800pt;}
.xd_c00217{left:211.321600pt;}
.x56_c00217{left:213.380800pt;}
.x4_c00217{left:220.489108pt;}
.xe_c00217{left:223.672000pt;}
.x57_c00217{left:224.779200pt;}
.x64_c00217{left:231.112000pt;}
.x2e_c00217{left:233.947323pt;}
.x3_c00217{left:236.164656pt;}
.xf_c00217{left:237.918400pt;}
.x44_c00217{left:242.023930pt;}
.x10_c00217{left:249.478400pt;}
.x58_c00217{left:256.603200pt;}
.x11_c00217{left:260.084800pt;}
.x2f_c00217{left:264.505978pt;}
.x59_c00217{left:267.211200pt;}
.x30_c00217{left:268.624643pt;}
.x65_c00217{left:270.537600pt;}
.x12_c00217{left:274.337600pt;}
.x5a_c00217{left:279.560000pt;}
.x66_c00217{left:281.144000pt;}
.x13_c00217{left:285.736000pt;}
.x67_c00217{left:296.500800pt;}
.x6_c00217{left:303.929014pt;}
.x5b_c00217{left:305.368000pt;}
.x68_c00217{left:307.108800pt;}
.x73_c00217{left:314.609248pt;}
.x14_c00217{left:317.561600pt;}
.x15_c00217{left:331.651200pt;}
.x69_c00217{left:339.883200pt;}
.x34_c00217{left:344.305946pt;}
.x36_c00217{left:345.416646pt;}
.x6a_c00217{left:346.377600pt;}
.x5c_c00217{left:347.484800pt;}
.x6b_c00217{left:350.336000pt;}
.x5d_c00217{left:353.660800pt;}
.x16_c00217{left:357.459200pt;}
.x6c_c00217{left:359.993600pt;}
.x5e_c00217{left:366.014400pt;}
.x17_c00217{left:368.068800pt;}
.x5_c00217{left:369.635805pt;}
.x37_c00217{left:371.067268pt;}
.x32_c00217{left:372.648977pt;}
.x31_c00217{left:374.387731pt;}
.x33_c00217{left:383.414594pt;}
.x6d_c00217{left:384.377600pt;}
.x18_c00217{left:390.868800pt;}
.x6e_c00217{left:394.828800pt;}
.x38_c00217{left:396.240591pt;}
.x45_c00217{left:397.821284pt;}
.x6f_c00217{left:398.785600pt;}
.x39_c00217{left:400.513923pt;}
.x19_c00217{left:401.635200pt;}
.x3a_c00217{left:404.947255pt;}
.x1a_c00217{left:413.033600pt;}
.x70_c00217{left:419.844800pt;}
.x1b_c00217{left:428.235200pt;}
.x1c_c00217{left:434.409600pt;}
.x35_c00217{left:436.772575pt;}
.x1d_c00217{left:445.016000pt;}
.x1_c00217{left:446.111238pt;}
.x1e_c00217{left:456.420800pt;}
.x3b_c00217{left:464.968000pt;}
.x1f_c00217{left:467.027200pt;}
.x20_c00217{left:482.068800pt;}
.x3c_c00217{left:496.623218pt;}
.x4c_c00217{left:498.207217pt;}
.x46_c00217{left:500.104550pt;}
.x21_c00217{left:507.875200pt;}
.x3d_c00217{left:511.189429pt;}
.x22_c00217{left:530.832000pt;}
.x23_c00217{left:543.342400pt;}
.x24_c00217{left:569.942400pt;}
.x4e_c00217{left:570.943812pt;}
.x3e_c00217{left:572.315200pt;}
.x25_c00217{left:582.137600pt;}
.x41_c00217{left:583.547183pt;}
.x26_c00217{left:590.211200pt;}
.x72_c00217{left:593.273137pt;}
.x27_c00217{left:594.643200pt;}
.x49_c00217{left:597.542468pt;}
.x50_c00217{left:599.443801pt;}
.x28_c00217{left:601.608000pt;}
.x4d_c00217{left:603.146759pt;}
.x43_c00217{left:604.128508pt;}
.x74_c00217{left:605.305132pt;}
.x71_c00217{left:606.414465pt;}
.x29_c00217{left:614.905600pt;}
.x40_c00217{left:618.065041pt;}
.x3f_c00217{left:619.963169pt;}
.x2a_c00217{left:626.310400pt;}
.x2b_c00217{left:635.174400pt;}
.x42_c00217{left:655.428488pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.113000;font-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_c00218{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls0_c00218{letter-spacing:0.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00218{word-spacing:-16.387643px;}
.ws1_c00218{word-spacing:0.000000px;}
._6_c00218{margin-left:-2.830897px;}
._0_c00218{margin-left:-1.339561px;}
._1_c00218{width:1.056634px;}
._5_c00218{width:2.725317px;}
._4_c00218{width:4.106459px;}
._3_c00218{width:5.987803px;}
._2_c00218{width:7.161083px;}
._d_c00218{width:9.247836px;}
._c_c00218{width:10.409577px;}
._b_c00218{width:11.481123px;}
._a_c00218{width:12.838674px;}
._f_c00218{width:14.006885px;}
._e_c00218{width:15.215749px;}
._9_c00218{width:16.260162px;}
._8_c00218{width:19.363781px;}
._7_c00218{width:20.727878px;}
.fc1_c00218{color:rgb(105,148,45);}
.fc0_c00218{color:rgb(35,31,32);}
.fs4_c00218{font-size:38.474625px;}
.fs5_c00218{font-size:44.887062px;}
.fs2_c00218{font-size:59.136936px;}
.fs0_c00218{font-size:65.550574px;}
.fs1_c00218{font-size:71.249972px;}
.fs3_c00218{font-size:76.949969px;}
.y0_c00218{bottom:0.000000px;}
.y1_c00218{bottom:0.120938px;}
.y8_c00218{bottom:6.826644px;}
.ya_c00218{bottom:65.133277px;}
.y3_c00218{bottom:83.414442px;}
.y2_c00218{bottom:84.131629px;}
.y26_c00218{bottom:438.302678px;}
.y25_c00218{bottom:469.117316px;}
.y24_c00218{bottom:499.753153px;}
.y23_c00218{bottom:530.568391px;}
.y22_c00218{bottom:560.849179px;}
.y21_c00218{bottom:592.020816px;}
.y20_c00218{bottom:622.658004px;}
.y1f_c00218{bottom:653.474592px;}
.y1e_c00218{bottom:672.532684px;}
.y1d_c00218{bottom:688.742578px;}
.y1c_c00218{bottom:715.284617px;}
.y1b_c00218{bottom:745.920455px;}
.y1a_c00218{bottom:776.737043px;}
.y19_c00218{bottom:795.796635px;}
.y18_c00218{bottom:812.006528px;}
.y17_c00218{bottom:838.543018px;}
.y16_c00218{bottom:869.180206px;}
.y15_c00218{bottom:899.996043px;}
.y14_c00218{bottom:930.633981px;}
.y13_c00218{bottom:949.873063px;}
.y12_c00218{bottom:964.656967px;}
.y11_c00218{bottom:978.726962px;}
.y10_c00218{bottom:992.262956px;}
.yf_c00218{bottom:1010.076949px;}
.ye_c00218{bottom:1022.900444px;}
.yd_c00218{bottom:1044.278436px;}
.yc_c00218{bottom:1062.980968px;}
.yb_c00218{bottom:1077.764872px;}
.y9_c00218{bottom:1094.327416px;}
.y7_c00218{bottom:1125.436612px;}
.y6_c00218{bottom:1146.276554px;}
.y5_c00218{bottom:1166.762796px;}
.y4_c00218{bottom:1187.245588px;}
.ha_c00218{height:24.315963px;}
.hb_c00218{height:28.368623px;}
.h7_c00218{height:37.374544px;}
.h6_c00218{height:41.427963px;}
.h8_c00218{height:48.632381px;}
.h2_c00218{height:58.667764px;}
.h3_c00218{height:63.768724px;}
.h9_c00218{height:63.839974px;}
.hc_c00218{height:63.911224px;}
.h4_c00218{height:64.053724px;}
.h5_c00218{height:1249.830756px;}
.h1_c00218{height:1262.879062px;}
.h0_c00218{height:1263.000000px;}
.w2_c00218{width:883.195846px;}
.w1_c00218{width:892.414744px;}
.w0_c00218{width:892.500000px;}
.x0_c00218{left:0.000000px;}
.x7_c00218{left:1.541954px;}
.x8_c00218{left:112.753050px;}
.x2_c00218{left:126.214330px;}
.x9_c00218{left:178.837474px;}
.x4_c00218{left:252.504495px;}
.x3_c00218{left:270.140236px;}
.x6_c00218{left:346.372291px;}
.x5_c00218{left:420.296029px;}
.x1_c00218{left:501.875143px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws0_c00218{word-spacing:-14.566794pt;}
.ws1_c00218{word-spacing:0.000000pt;}
._6_c00218{margin-left:-2.516353pt;}
._0_c00218{margin-left:-1.190721pt;}
._1_c00218{width:0.939230pt;}
._5_c00218{width:2.422504pt;}
._4_c00218{width:3.650186pt;}
._3_c00218{width:5.322491pt;}
._2_c00218{width:6.365407pt;}
._d_c00218{width:8.220299pt;}
._c_c00218{width:9.252958pt;}
._b_c00218{width:10.205442pt;}
._a_c00218{width:11.412155pt;}
._f_c00218{width:12.450564pt;}
._e_c00218{width:13.525110pt;}
._9_c00218{width:14.453477pt;}
._8_c00218{width:17.212250pt;}
._7_c00218{width:18.424780pt;}
.fs4_c00218{font-size:34.199666pt;}
.fs5_c00218{font-size:39.899611pt;}
.fs2_c00218{font-size:52.566166pt;}
.fs0_c00218{font-size:58.267177pt;}
.fs1_c00218{font-size:63.333308pt;}
.fs3_c00218{font-size:68.399973pt;}
.y0_c00218{bottom:0.000000pt;}
.y1_c00218{bottom:0.107500pt;}
.y8_c00218{bottom:6.068128pt;}
.ya_c00218{bottom:57.896246pt;}
.y3_c00218{bottom:74.146170pt;}
.y2_c00218{bottom:74.783670pt;}
.y26_c00218{bottom:389.602380pt;}
.y25_c00218{bottom:416.993169pt;}
.y24_c00218{bottom:444.225025pt;}
.y23_c00218{bottom:471.616348pt;}
.y22_c00218{bottom:498.532603pt;}
.y21_c00218{bottom:526.240726pt;}
.y20_c00218{bottom:553.473782pt;}
.y1f_c00218{bottom:580.866304pt;}
.y1e_c00218{bottom:597.806830pt;}
.y1d_c00218{bottom:612.215625pt;}
.y1c_c00218{bottom:635.808549pt;}
.y1b_c00218{bottom:663.040404pt;}
.y1a_c00218{bottom:690.432927pt;}
.y19_c00218{bottom:707.374787pt;}
.y18_c00218{bottom:721.783581pt;}
.y17_c00218{bottom:745.371571pt;}
.y16_c00218{bottom:772.604627pt;}
.y15_c00218{bottom:799.996483pt;}
.y14_c00218{bottom:827.230205pt;}
.y13_c00218{bottom:844.331612pt;}
.y12_c00218{bottom:857.472860pt;}
.y11_c00218{bottom:869.979522pt;}
.y10_c00218{bottom:882.011517pt;}
.yf_c00218{bottom:897.846177pt;}
.ye_c00218{bottom:909.244839pt;}
.yd_c00218{bottom:928.247498pt;}
.yc_c00218{bottom:944.871972pt;}
.yb_c00218{bottom:958.013220pt;}
.y9_c00218{bottom:972.735480pt;}
.y7_c00218{bottom:1000.388100pt;}
.y6_c00218{bottom:1018.912492pt;}
.y5_c00218{bottom:1037.122485pt;}
.y4_c00218{bottom:1055.329411pt;}
.ha_c00218{height:21.614189pt;}
.hb_c00218{height:25.216554pt;}
.h7_c00218{height:33.221817pt;}
.h6_c00218{height:36.824856pt;}
.h8_c00218{height:43.228783pt;}
.h2_c00218{height:52.149123pt;}
.h3_c00218{height:56.683311pt;}
.h9_c00218{height:56.746644pt;}
.hc_c00218{height:56.809977pt;}
.h4_c00218{height:56.936644pt;}
.h5_c00218{height:1110.960672pt;}
.h1_c00218{height:1122.559167pt;}
.h0_c00218{height:1122.666667pt;}
.w2_c00218{width:785.062974pt;}
.w1_c00218{width:793.257550pt;}
.w0_c00218{width:793.333333pt;}
.x0_c00218{left:0.000000pt;}
.x7_c00218{left:1.370626pt;}
.x8_c00218{left:100.224934pt;}
.x2_c00218{left:112.190515pt;}
.x9_c00218{left:158.966644pt;}
.x4_c00218{left:224.448440pt;}
.x3_c00218{left:240.124654pt;}
.x6_c00218{left:307.886481pt;}
.x5_c00218{left:373.596470pt;}
.x1_c00218{left:446.111238pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls0_c00219{letter-spacing:0.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:0.000000px;}
._0_c00219{width:1.264686px;}
.fc0_c00219{color:rgb(35,31,32);}
.fs0_c00219{font-size:106.873757px;}
.y0_c00219{bottom:0.000000px;}
.y1_c00219{bottom:0.120938px;}
.y2_c00219{bottom:413.119897px;}
.h2_c00219{height:95.865760px;}
.h1_c00219{height:1262.879062px;}
.h0_c00219{height:1263.000000px;}
.w1_c00219{width:892.414744px;}
.w0_c00219{width:892.500000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:108.404900px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws0_c00219{word-spacing:0.000000pt;}
._0_c00219{width:1.124165pt;}
.fs0_c00219{font-size:94.998895pt;}
.y0_c00219{bottom:0.000000pt;}
.y1_c00219{bottom:0.107500pt;}
.y2_c00219{bottom:367.217686pt;}
.h2_c00219{height:85.214009pt;}
.h1_c00219{height:1122.559167pt;}
.h0_c00219{height:1122.666667pt;}
.w1_c00219{width:793.257550pt;}
.w0_c00219{width:793.333333pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.111000;font-style:normal;font-weight:normal;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_1c4a2bf7dcf57520a7f17694.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.115000;font-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_c00220{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00220{word-spacing:-20.840692px;}
.ws0_c00220{word-spacing:-16.387643px;}
.ws2_c00220{word-spacing:0.000000px;}
._0_c00220{width:1.056292px;}
._3_c00220{width:3.720395px;}
._2_c00220{width:5.810527px;}
._1_c00220{width:14.453997px;}
.fc1_c00220{color:rgb(105,148,45);}
.fc0_c00220{color:rgb(35,31,32);}
.fs2_c00220{font-size:59.136936px;}
.fs0_c00220{font-size:65.550574px;}
.fs1_c00220{font-size:71.249972px;}
.fs3_c00220{font-size:83.362767px;}
.y0_c00220{bottom:0.000000px;}
.y5_c00220{bottom:0.120938px;}
.y4_c00220{bottom:3.740547px;}
.y2_c00220{bottom:3.916226px;}
.ya_c00220{bottom:6.826644px;}
.yd_c00220{bottom:65.133277px;}
.yc_c00220{bottom:65.134327px;}
.y3_c00220{bottom:78.194520px;}
.y1_c00220{bottom:80.156340px;}
.y15_c00220{bottom:869.360506px;}
.y14_c00220{bottom:895.361495px;}
.y13_c00220{bottom:935.082379px;}
.y12_c00220{bottom:974.628963px;}
.y11_c00220{bottom:1003.130452px;}
.y10_c00220{bottom:1019.514945px;}
.yf_c00220{bottom:1045.521770px;}
.ye_c00220{bottom:1060.486379px;}
.yb_c00220{bottom:1094.685915px;}
.y9_c00220{bottom:1125.436612px;}
.y8_c00220{bottom:1146.276554px;}
.y7_c00220{bottom:1166.762796px;}
.y6_c00220{bottom:1187.245588px;}
.h1_c00220{height:17.989380px;}
.h3_c00220{height:19.238940px;}
.h9_c00220{height:37.906776px;}
.h4_c00220{height:42.017918px;}
.h2_c00220{height:58.667764px;}
.h6_c00220{height:63.768724px;}
.h7_c00220{height:64.053724px;}
.ha_c00220{height:74.943127px;}
.h8_c00220{height:1249.830756px;}
.h5_c00220{height:1262.879062px;}
.h0_c00220{height:1263.000000px;}
.w15_c00220{width:4.095000px;}
.wf_c00220{width:4.096800px;}
.w5_c00220{width:4.987800px;}
.w8_c00220{width:6.408000px;}
.w14_c00220{width:6.413400px;}
.wb_c00220{width:7.300800px;}
.w11_c00220{width:7.488000px;}
.w13_c00220{width:8.013600px;}
.wc_c00220{width:8.015400px;}
.w6_c00220{width:8.191800px;}
.we_c00220{width:8.193600px;}
.w7_c00220{width:8.195400px;}
.w16_c00220{width:9.619380px;}
.wd_c00220{width:11.043000px;}
.w3_c00220{width:11.757600px;}
.w1_c00220{width:11.939400px;}
.w12_c00220{width:12.285000px;}
.w9_c00220{width:12.290400px;}
.w4_c00220{width:15.319800px;}
.wa_c00220{width:16.205400px;}
.w2_c00220{width:23.688000px;}
.w10_c00220{width:26.359200px;}
.w18_c00220{width:883.195846px;}
.w17_c00220{width:892.414744px;}
.w0_c00220{width:892.500000px;}
.x0_c00220{left:0.000000px;}
.x1f_c00220{left:1.541954px;}
.x13_c00220{left:2.851820px;}
.x20_c00220{left:112.753050px;}
.x21_c00220{left:121.125147px;}
.x1a_c00220{left:123.202260px;}
.x1c_c00220{left:252.502959px;}
.x1b_c00220{left:267.821237px;}
.x1e_c00220{left:363.293672px;}
.x22_c00220{left:405.407883px;}
.x1d_c00220{left:420.295991px;}
.x1_c00220{left:497.613600px;}
.x2_c00220{left:509.553000px;}
.x3_c00220{left:533.241000px;}
.x4_c00220{left:544.998600px;}
.x5_c00220{left:560.318400px;}
.x6_c00220{left:564.948000px;}
.x7_c00220{left:577.060200px;}
.x8_c00220{left:585.255600px;}
.x9_c00220{left:590.419800px;}
.xa_c00220{left:606.274200px;}
.xb_c00220{left:620.168400px;}
.xc_c00220{left:627.469200px;}
.xd_c00220{left:639.226800px;}
.xe_c00220{left:647.242200px;}
.xf_c00220{left:658.285200px;}
.x10_c00220{left:666.298800px;}
.x11_c00220{left:673.246800px;}
.x12_c00220{left:696.758400px;}
.x14_c00220{left:704.246400px;}
.x15_c00220{left:716.531400px;}
.x16_c00220{left:724.545000px;}
.x17_c00220{left:729.712800px;}
.x18_c00220{left:737.906400px;}
.x19_c00220{left:746.101800px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws1_c00220{word-spacing:-18.525059pt;}
.ws0_c00220{word-spacing:-14.566794pt;}
.ws2_c00220{word-spacing:0.000000pt;}
._0_c00220{width:0.938926pt;}
._3_c00220{width:3.307018pt;}
._2_c00220{width:5.164913pt;}
._1_c00220{width:12.847997pt;}
.fs2_c00220{font-size:52.566166pt;}
.fs0_c00220{font-size:58.267177pt;}
.fs1_c00220{font-size:63.333308pt;}
.fs3_c00220{font-size:74.100237pt;}
.y0_c00220{bottom:0.000000pt;}
.y5_c00220{bottom:0.107500pt;}
.y4_c00220{bottom:3.324931pt;}
.y2_c00220{bottom:3.481090pt;}
.ya_c00220{bottom:6.068128pt;}
.yd_c00220{bottom:57.896246pt;}
.yc_c00220{bottom:57.897180pt;}
.y3_c00220{bottom:69.506240pt;}
.y1_c00220{bottom:71.250080pt;}
.y15_c00220{bottom:772.764894pt;}
.y14_c00220{bottom:795.876885pt;}
.y13_c00220{bottom:831.184337pt;}
.y12_c00220{bottom:866.336856pt;}
.y11_c00220{bottom:891.671513pt;}
.y10_c00220{bottom:906.235507pt;}
.yf_c00220{bottom:929.352684pt;}
.ye_c00220{bottom:942.654559pt;}
.yb_c00220{bottom:973.054147pt;}
.y9_c00220{bottom:1000.388100pt;}
.y8_c00220{bottom:1018.912492pt;}
.y7_c00220{bottom:1037.122485pt;}
.y6_c00220{bottom:1055.329411pt;}
.h1_c00220{height:15.990560pt;}
.h3_c00220{height:17.101280pt;}
.h9_c00220{height:33.694912pt;}
.h4_c00220{height:37.349260pt;}
.h2_c00220{height:52.149123pt;}
.h6_c00220{height:56.683311pt;}
.h7_c00220{height:56.936644pt;}
.ha_c00220{height:66.616113pt;}
.h8_c00220{height:1110.960672pt;}
.h5_c00220{height:1122.559167pt;}
.h0_c00220{height:1122.666667pt;}
.w15_c00220{width:3.640000pt;}
.wf_c00220{width:3.641600pt;}
.w5_c00220{width:4.433600pt;}
.w8_c00220{width:5.696000pt;}
.w14_c00220{width:5.700800pt;}
.wb_c00220{width:6.489600pt;}
.w11_c00220{width:6.656000pt;}
.w13_c00220{width:7.123200pt;}
.wc_c00220{width:7.124800pt;}
.w6_c00220{width:7.281600pt;}
.we_c00220{width:7.283200pt;}
.w7_c00220{width:7.284800pt;}
.w16_c00220{width:8.550560pt;}
.wd_c00220{width:9.816000pt;}
.w3_c00220{width:10.451200pt;}
.w1_c00220{width:10.612800pt;}
.w12_c00220{width:10.920000pt;}
.w9_c00220{width:10.924800pt;}
.w4_c00220{width:13.617600pt;}
.wa_c00220{width:14.404800pt;}
.w2_c00220{width:21.056000pt;}
.w10_c00220{width:23.430400pt;}
.w18_c00220{width:785.062974pt;}
.w17_c00220{width:793.257550pt;}
.w0_c00220{width:793.333333pt;}
.x0_c00220{left:0.000000pt;}
.x1f_c00220{left:1.370626pt;}
.x13_c00220{left:2.534951pt;}
.x20_c00220{left:100.224934pt;}
.x21_c00220{left:107.666797pt;}
.x1a_c00220{left:109.513120pt;}
.x1c_c00220{left:224.447074pt;}
.x1b_c00220{left:238.063321pt;}
.x1e_c00220{left:322.927708pt;}
.x22_c00220{left:360.362563pt;}
.x1d_c00220{left:373.596437pt;}
.x1_c00220{left:442.323200pt;}
.x2_c00220{left:452.936000pt;}
.x3_c00220{left:473.992000pt;}
.x4_c00220{left:484.443200pt;}
.x5_c00220{left:498.060800pt;}
.x6_c00220{left:502.176000pt;}
.x7_c00220{left:512.942400pt;}
.x8_c00220{left:520.227200pt;}
.x9_c00220{left:524.817600pt;}
.xa_c00220{left:538.910400pt;}
.xb_c00220{left:551.260800pt;}
.xc_c00220{left:557.750400pt;}
.xd_c00220{left:568.201600pt;}
.xe_c00220{left:575.326400pt;}
.xf_c00220{left:585.142400pt;}
.x10_c00220{left:592.265600pt;}
.x11_c00220{left:598.441600pt;}
.x12_c00220{left:619.340800pt;}
.x14_c00220{left:625.996800pt;}
.x15_c00220{left:636.916800pt;}
.x16_c00220{left:644.040000pt;}
.x17_c00220{left:648.633600pt;}
.x18_c00220{left:655.916800pt;}
.x19_c00220{left:663.201600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.111000;font-style:normal;font-weight:normal;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_187f44ce96e22bceb44fdd64.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.115000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00221;src:url('chunks/assets/font_91c94d9680606deb988c60ae.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:0.865062;font-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_c00221{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls3_c00221{letter-spacing:0.000000px;}
.ls0_c00221{letter-spacing:74.158170px;}
.ls2_c00221{letter-spacing:74.164170px;}
.ls1_c00221{letter-spacing:74.169570px;}
.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:-16.387643px;}
.ws1_c00221{word-spacing:0.000000px;}
._4_c00221{margin-left:-2.970489px;}
._7_c00221{margin-left:-1.195874px;}
._0_c00221{width:1.056292px;}
._8_c00221{width:2.080802px;}
._a_c00221{width:3.823864px;}
._9_c00221{width:5.155677px;}
._2_c00221{width:6.208983px;}
._5_c00221{width:7.308112px;}
._3_c00221{width:8.315050px;}
._6_c00221{width:9.363237px;}
._c_c00221{width:12.629770px;}
._b_c00221{width:13.660832px;}
._1_c00221{width:15.797192px;}
._d_c00221{width:25.108185px;}
._e_c00221{width:26.138118px;}
._10_c00221{width:28.585493px;}
._f_c00221{width:31.437202px;}
._11_c00221{width:35.926347px;}
._12_c00221{width:38.044325px;}
.fc1_c00221{color:rgb(105,148,45);}
.fc0_c00221{color:rgb(35,31,32);}
.fs3_c00221{font-size:47.737061px;}
.fs2_c00221{font-size:59.136936px;}
.fs0_c00221{font-size:65.550574px;}
.fs1_c00221{font-size:71.249972px;}
.y0_c00221{bottom:0.000000px;}
.y5_c00221{bottom:0.120938px;}
.y4_c00221{bottom:3.740547px;}
.y2_c00221{bottom:3.916226px;}
.ya_c00221{bottom:6.826644px;}
.yd_c00221{bottom:65.133277px;}
.yc_c00221{bottom:65.134327px;}
.y3_c00221{bottom:78.194520px;}
.y1_c00221{bottom:80.156340px;}
.y2c_c00221{bottom:119.998605px;}
.y2b_c00221{bottom:150.633093px;}
.y2a_c00221{bottom:181.448931px;}
.y29_c00221{bottom:213.332768px;}
.y28_c00221{bottom:243.970706px;}
.y27_c00221{bottom:274.607893px;}
.y26_c00221{bottom:305.243731px;}
.y25_c00221{bottom:324.305724px;}
.y24_c00221{bottom:352.261962px;}
.y23_c00221{bottom:383.079150px;}
.y22_c00221{bottom:414.962987px;}
.y21_c00221{bottom:445.778825px;}
.y20_c00221{bottom:476.415413px;}
.y1f_c00221{bottom:508.477900px;}
.y1e_c00221{bottom:539.115088px;}
.y1d_c00221{bottom:571.177575px;}
.y1c_c00221{bottom:623.544954px;}
.y1b_c00221{bottom:654.361542px;}
.y1a_c00221{bottom:705.483621px;}
.y19_c00221{bottom:736.298109px;}
.y18_c00221{bottom:766.936046px;}
.y17_c00221{bottom:797.750534px;}
.y16_c00221{bottom:816.814027px;}
.y15_c00221{bottom:843.354866px;}
.y14_c00221{bottom:873.993554px;}
.y13_c00221{bottom:904.806541px;}
.y12_c00221{bottom:935.443129px;}
.y11_c00221{bottom:966.258967px;}
.y10_c00221{bottom:1005.266451px;}
.yf_c00221{bottom:1023.257444px;}
.ye_c00221{bottom:1060.486379px;}
.yb_c00221{bottom:1094.685915px;}
.y9_c00221{bottom:1125.436612px;}
.y8_c00221{bottom:1146.276554px;}
.y7_c00221{bottom:1166.762796px;}
.y6_c00221{bottom:1187.245588px;}
.h1_c00221{height:17.989380px;}
.h3_c00221{height:19.238940px;}
.hb_c00221{height:30.599456px;}
.h9_c00221{height:37.906776px;}
.h4_c00221{height:42.017918px;}
.h2_c00221{height:58.667764px;}
.h6_c00221{height:63.768724px;}
.hc_c00221{height:63.839974px;}
.ha_c00221{height:63.911224px;}
.h7_c00221{height:64.053724px;}
.h8_c00221{height:1249.830756px;}
.h5_c00221{height:1262.879062px;}
.h0_c00221{height:1263.000000px;}
.w15_c00221{width:4.095000px;}
.wf_c00221{width:4.096800px;}
.w5_c00221{width:4.987800px;}
.w8_c00221{width:6.408000px;}
.w14_c00221{width:6.413400px;}
.wb_c00221{width:7.300800px;}
.w11_c00221{width:7.488000px;}
.w13_c00221{width:8.013600px;}
.wc_c00221{width:8.015400px;}
.w6_c00221{width:8.191800px;}
.we_c00221{width:8.193600px;}
.w7_c00221{width:8.195400px;}
.w16_c00221{width:9.619380px;}
.wd_c00221{width:11.043000px;}
.w3_c00221{width:11.757600px;}
.w1_c00221{width:11.939400px;}
.w12_c00221{width:12.285000px;}
.w9_c00221{width:12.290400px;}
.w4_c00221{width:15.319800px;}
.wa_c00221{width:16.205400px;}
.w2_c00221{width:23.688000px;}
.w10_c00221{width:26.359200px;}
.w18_c00221{width:883.195846px;}
.w17_c00221{width:892.414744px;}
.w0_c00221{width:892.500000px;}
.x0_c00221{left:0.000000px;}
.x1f_c00221{left:1.541954px;}
.x13_c00221{left:2.851820px;}
.x20_c00221{left:112.753050px;}
.x21_c00221{left:121.125147px;}
.x1a_c00221{left:123.202260px;}
.x23_c00221{left:126.292370px;}
.x24_c00221{left:153.010872px;}
.x22_c00221{left:166.192479px;}
.x1c_c00221{left:252.502959px;}
.x1b_c00221{left:267.821237px;}
.x1e_c00221{left:363.293672px;}
.x1d_c00221{left:420.295991px;}
.x1_c00221{left:497.613600px;}
.x2_c00221{left:509.553000px;}
.x3_c00221{left:533.241000px;}
.x4_c00221{left:544.998600px;}
.x5_c00221{left:560.318400px;}
.x6_c00221{left:564.948000px;}
.x7_c00221{left:577.060200px;}
.x8_c00221{left:585.255600px;}
.x9_c00221{left:590.419800px;}
.xa_c00221{left:606.274200px;}
.xb_c00221{left:620.168400px;}
.xc_c00221{left:627.469200px;}
.xd_c00221{left:639.226800px;}
.xe_c00221{left:647.242200px;}
.xf_c00221{left:658.285200px;}
.x10_c00221{left:666.298800px;}
.x11_c00221{left:673.246800px;}
.x12_c00221{left:696.758400px;}
.x14_c00221{left:704.246400px;}
.x15_c00221{left:716.531400px;}
.x16_c00221{left:724.545000px;}
.x17_c00221{left:729.712800px;}
.x18_c00221{left:737.906400px;}
.x19_c00221{left:746.101800px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls3_c00221{letter-spacing:0.000000pt;}
.ls0_c00221{letter-spacing:65.918374pt;}
.ls2_c00221{letter-spacing:65.923707pt;}
.ls1_c00221{letter-spacing:65.928507pt;}
.ws0_c00221{word-spacing:-14.566794pt;}
.ws1_c00221{word-spacing:0.000000pt;}
._4_c00221{margin-left:-2.640435pt;}
._7_c00221{margin-left:-1.062999pt;}
._0_c00221{width:0.938926pt;}
._8_c00221{width:1.849602pt;}
._a_c00221{width:3.398990pt;}
._9_c00221{width:4.582824pt;}
._2_c00221{width:5.519096pt;}
._5_c00221{width:6.496100pt;}
._3_c00221{width:7.391155pt;}
._6_c00221{width:8.322877pt;}
._c_c00221{width:11.226462pt;}
._b_c00221{width:12.142962pt;}
._1_c00221{width:14.041949pt;}
._d_c00221{width:22.318386pt;}
._e_c00221{width:23.233882pt;}
._10_c00221{width:25.409327pt;}
._f_c00221{width:27.944179pt;}
._11_c00221{width:31.934531pt;}
._12_c00221{width:33.817178pt;}
.fs3_c00221{font-size:42.432943pt;}
.fs2_c00221{font-size:52.566166pt;}
.fs0_c00221{font-size:58.267177pt;}
.fs1_c00221{font-size:63.333308pt;}
.y0_c00221{bottom:0.000000pt;}
.y5_c00221{bottom:0.107500pt;}
.y4_c00221{bottom:3.324931pt;}
.y2_c00221{bottom:3.481090pt;}
.ya_c00221{bottom:6.068128pt;}
.yd_c00221{bottom:57.896246pt;}
.yc_c00221{bottom:57.897180pt;}
.y3_c00221{bottom:69.506240pt;}
.y1_c00221{bottom:71.250080pt;}
.y2c_c00221{bottom:106.665427pt;}
.y2b_c00221{bottom:133.896083pt;}
.y2a_c00221{bottom:161.287938pt;}
.y29_c00221{bottom:189.629127pt;}
.y28_c00221{bottom:216.862849pt;}
.y27_c00221{bottom:244.095905pt;}
.y26_c00221{bottom:271.327761pt;}
.y25_c00221{bottom:288.271754pt;}
.y24_c00221{bottom:313.121744pt;}
.y23_c00221{bottom:340.514800pt;}
.y22_c00221{bottom:368.855989pt;}
.y21_c00221{bottom:396.247844pt;}
.y20_c00221{bottom:423.480367pt;}
.y1f_c00221{bottom:451.980355pt;}
.y1e_c00221{bottom:479.213411pt;}
.y1d_c00221{bottom:507.713400pt;}
.y1c_c00221{bottom:554.262181pt;}
.y1b_c00221{bottom:581.654704pt;}
.y1a_c00221{bottom:627.096552pt;}
.y19_c00221{bottom:654.487208pt;}
.y18_c00221{bottom:681.720930pt;}
.y17_c00221{bottom:709.111586pt;}
.y16_c00221{bottom:726.056912pt;}
.y15_c00221{bottom:749.648770pt;}
.y14_c00221{bottom:776.883159pt;}
.y13_c00221{bottom:804.272481pt;}
.y12_c00221{bottom:831.505004pt;}
.y11_c00221{bottom:858.896859pt;}
.y10_c00221{bottom:893.570179pt;}
.yf_c00221{bottom:909.562172pt;}
.ye_c00221{bottom:942.654559pt;}
.yb_c00221{bottom:973.054147pt;}
.y9_c00221{bottom:1000.388100pt;}
.y8_c00221{bottom:1018.912492pt;}
.y7_c00221{bottom:1037.122485pt;}
.y6_c00221{bottom:1055.329411pt;}
.h1_c00221{height:15.990560pt;}
.h3_c00221{height:17.101280pt;}
.hb_c00221{height:27.199516pt;}
.h9_c00221{height:33.694912pt;}
.h4_c00221{height:37.349260pt;}
.h2_c00221{height:52.149123pt;}
.h6_c00221{height:56.683311pt;}
.hc_c00221{height:56.746644pt;}
.ha_c00221{height:56.809977pt;}
.h7_c00221{height:56.936644pt;}
.h8_c00221{height:1110.960672pt;}
.h5_c00221{height:1122.559167pt;}
.h0_c00221{height:1122.666667pt;}
.w15_c00221{width:3.640000pt;}
.wf_c00221{width:3.641600pt;}
.w5_c00221{width:4.433600pt;}
.w8_c00221{width:5.696000pt;}
.w14_c00221{width:5.700800pt;}
.wb_c00221{width:6.489600pt;}
.w11_c00221{width:6.656000pt;}
.w13_c00221{width:7.123200pt;}
.wc_c00221{width:7.124800pt;}
.w6_c00221{width:7.281600pt;}
.we_c00221{width:7.283200pt;}
.w7_c00221{width:7.284800pt;}
.w16_c00221{width:8.550560pt;}
.wd_c00221{width:9.816000pt;}
.w3_c00221{width:10.451200pt;}
.w1_c00221{width:10.612800pt;}
.w12_c00221{width:10.920000pt;}
.w9_c00221{width:10.924800pt;}
.w4_c00221{width:13.617600pt;}
.wa_c00221{width:14.404800pt;}
.w2_c00221{width:21.056000pt;}
.w10_c00221{width:23.430400pt;}
.w18_c00221{width:785.062974pt;}
.w17_c00221{width:793.257550pt;}
.w0_c00221{width:793.333333pt;}
.x0_c00221{left:0.000000pt;}
.x1f_c00221{left:1.370626pt;}
.x13_c00221{left:2.534951pt;}
.x20_c00221{left:100.224934pt;}
.x21_c00221{left:107.666797pt;}
.x1a_c00221{left:109.513120pt;}
.x23_c00221{left:112.259884pt;}
.x24_c00221{left:136.009664pt;}
.x22_c00221{left:147.726648pt;}
.x1c_c00221{left:224.447074pt;}
.x1b_c00221{left:238.063321pt;}
.x1e_c00221{left:322.927708pt;}
.x1d_c00221{left:373.596437pt;}
.x1_c00221{left:442.323200pt;}
.x2_c00221{left:452.936000pt;}
.x3_c00221{left:473.992000pt;}
.x4_c00221{left:484.443200pt;}
.x5_c00221{left:498.060800pt;}
.x6_c00221{left:502.176000pt;}
.x7_c00221{left:512.942400pt;}
.x8_c00221{left:520.227200pt;}
.x9_c00221{left:524.817600pt;}
.xa_c00221{left:538.910400pt;}
.xb_c00221{left:551.260800pt;}
.xc_c00221{left:557.750400pt;}
.xd_c00221{left:568.201600pt;}
.xe_c00221{left:575.326400pt;}
.xf_c00221{left:585.142400pt;}
.x10_c00221{left:592.265600pt;}
.x11_c00221{left:598.441600pt;}
.x12_c00221{left:619.340800pt;}
.x14_c00221{left:625.996800pt;}
.x15_c00221{left:636.916800pt;}
.x16_c00221{left:644.040000pt;}
.x17_c00221{left:648.633600pt;}
.x18_c00221{left:655.916800pt;}
.x19_c00221{left:663.201600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.111000;font-style:normal;font-weight:normal;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_887e6d41c4975815b90315ea.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.115000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.112000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_24d98807f733dc085d1c4453.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:0.712000;font-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_c00222{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00222{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00222{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls1_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:64.189174px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:-16.387643px;}
.ws2_c00222{word-spacing:0.000000px;}
.ws1_c00222{word-spacing:34.037269px;}
._9_c00222{margin-left:-3.693534px;}
._a_c00222{margin-left:-2.379739px;}
._6_c00222{margin-left:-1.337663px;}
._0_c00222{width:1.056292px;}
._3_c00222{width:3.865816px;}
._4_c00222{width:5.019028px;}
._2_c00222{width:6.193837px;}
._1_c00222{width:7.550227px;}
._d_c00222{width:9.269068px;}
._8_c00222{width:10.586948px;}
._b_c00222{width:12.324628px;}
._e_c00222{width:13.543819px;}
._10_c00222{width:15.444381px;}
._11_c00222{width:16.698404px;}
._5_c00222{width:20.567827px;}
._7_c00222{width:21.589596px;}
._f_c00222{width:23.506421px;}
._c_c00222{width:34.544108px;}
.fc1_c00222{color:rgb(105,148,45);}
.fc0_c00222{color:rgb(35,31,32);}
.fs3_c00222{font-size:47.737061px;}
.fs2_c00222{font-size:59.136936px;}
.fs0_c00222{font-size:65.550574px;}
.fs1_c00222{font-size:71.249972px;}
.y0_c00222{bottom:0.000000px;}
.y5_c00222{bottom:0.120938px;}
.y4_c00222{bottom:3.740547px;}
.y2_c00222{bottom:3.916226px;}
.ya_c00222{bottom:6.826644px;}
.yd_c00222{bottom:65.133277px;}
.yc_c00222{bottom:65.134327px;}
.y3_c00222{bottom:78.194520px;}
.y1_c00222{bottom:80.156340px;}
.y2c_c00222{bottom:142.080846px;}
.y2b_c00222{bottom:172.719534px;}
.y2a_c00222{bottom:203.538972px;}
.y29_c00222{bottom:234.170610px;}
.y28_c00222{bottom:264.989297px;}
.y27_c00222{bottom:295.623785px;}
.y26_c00222{bottom:326.441723px;}
.y25_c00222{bottom:357.077560px;}
.y24_c00222{bottom:387.892048px;}
.y23_c00222{bottom:418.529986px;}
.y22_c00222{bottom:449.167174px;}
.y21_c00222{bottom:479.804361px;}
.y20_c00222{bottom:510.440949px;}
.y1f_c00222{bottom:541.078137px;}
.y1e_c00222{bottom:560.138629px;}
.y1d_c00222{bottom:574.567123px;}
.y1c_c00222{bottom:592.554516px;}
.y1b_c00222{bottom:671.819135px;}
.y1a_c00222{bottom:702.458572px;}
.y19_c00222{bottom:733.095760px;}
.y18_c00222{bottom:763.731598px;}
.y17_c00222{bottom:794.369536px;}
.y16_c00222{bottom:825.005373px;}
.y15_c00222{bottom:855.644811px;}
.y14_c00222{bottom:886.281999px;}
.y13_c00222{bottom:905.342491px;}
.y12_c00222{bottom:933.305480px;}
.y11_c00222{bottom:963.941318px;}
.y10_c00222{bottom:994.755805px;}
.yf_c00222{bottom:1025.393743px;}
.ye_c00222{bottom:1056.210931px;}
.yb_c00222{bottom:1094.685915px;}
.y9_c00222{bottom:1125.436612px;}
.y8_c00222{bottom:1146.276554px;}
.y7_c00222{bottom:1166.762796px;}
.y6_c00222{bottom:1187.245588px;}
.h1_c00222{height:17.989380px;}
.h3_c00222{height:19.238940px;}
.hc_c00222{height:30.599456px;}
.h9_c00222{height:37.906776px;}
.h4_c00222{height:42.017918px;}
.h2_c00222{height:58.667764px;}
.h6_c00222{height:63.768724px;}
.ha_c00222{height:63.839974px;}
.hb_c00222{height:63.911224px;}
.h7_c00222{height:64.053724px;}
.h8_c00222{height:1249.830756px;}
.h5_c00222{height:1262.879062px;}
.h0_c00222{height:1263.000000px;}
.w15_c00222{width:4.095000px;}
.wf_c00222{width:4.096800px;}
.w5_c00222{width:4.987800px;}
.w8_c00222{width:6.408000px;}
.w14_c00222{width:6.413400px;}
.wb_c00222{width:7.300800px;}
.w11_c00222{width:7.488000px;}
.w13_c00222{width:8.013600px;}
.wc_c00222{width:8.015400px;}
.w6_c00222{width:8.191800px;}
.we_c00222{width:8.193600px;}
.w7_c00222{width:8.195400px;}
.w16_c00222{width:9.619380px;}
.wd_c00222{width:11.043000px;}
.w3_c00222{width:11.757600px;}
.w1_c00222{width:11.939400px;}
.w12_c00222{width:12.285000px;}
.w9_c00222{width:12.290400px;}
.w4_c00222{width:15.319800px;}
.wa_c00222{width:16.205400px;}
.w2_c00222{width:23.688000px;}
.w10_c00222{width:26.359200px;}
.w18_c00222{width:883.195846px;}
.w17_c00222{width:892.414744px;}
.w0_c00222{width:892.500000px;}
.x0_c00222{left:0.000000px;}
.x1f_c00222{left:1.541954px;}
.x13_c00222{left:2.851820px;}
.x20_c00222{left:112.753050px;}
.x21_c00222{left:121.125147px;}
.x1a_c00222{left:123.202260px;}
.x23_c00222{left:126.291981px;}
.x22_c00222{left:153.008984px;}
.x24_c00222{left:166.192479px;}
.x25_c00222{left:179.728474px;}
.x26_c00222{left:206.447276px;}
.x1c_c00222{left:252.502959px;}
.x1b_c00222{left:267.821237px;}
.x1e_c00222{left:363.293672px;}
.x1d_c00222{left:420.295991px;}
.x1_c00222{left:497.613600px;}
.x2_c00222{left:509.553000px;}
.x3_c00222{left:533.241000px;}
.x4_c00222{left:544.998600px;}
.x5_c00222{left:560.318400px;}
.x6_c00222{left:564.948000px;}
.x7_c00222{left:577.060200px;}
.x8_c00222{left:585.255600px;}
.x9_c00222{left:590.419800px;}
.xa_c00222{left:606.274200px;}
.xb_c00222{left:620.168400px;}
.xc_c00222{left:627.469200px;}
.xd_c00222{left:639.226800px;}
.xe_c00222{left:647.242200px;}
.xf_c00222{left:658.285200px;}
.x10_c00222{left:666.298800px;}
.x11_c00222{left:673.246800px;}
.x12_c00222{left:696.758400px;}
.x14_c00222{left:704.246400px;}
.x15_c00222{left:716.531400px;}
.x16_c00222{left:724.545000px;}
.x17_c00222{left:729.712800px;}
.x18_c00222{left:737.906400px;}
.x19_c00222{left:746.101800px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls1_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:57.057044pt;}
.ws0_c00222{word-spacing:-14.566794pt;}
.ws2_c00222{word-spacing:0.000000pt;}
.ws1_c00222{word-spacing:30.255351pt;}
._9_c00222{margin-left:-3.283142pt;}
._a_c00222{margin-left:-2.115323pt;}
._6_c00222{margin-left:-1.189034pt;}
._0_c00222{width:0.938926pt;}
._3_c00222{width:3.436281pt;}
._4_c00222{width:4.461358pt;}
._2_c00222{width:5.505633pt;}
._1_c00222{width:6.711313pt;}
._d_c00222{width:8.239172pt;}
._8_c00222{width:9.410620pt;}
._b_c00222{width:10.955224pt;}
._e_c00222{width:12.038950pt;}
._10_c00222{width:13.728338pt;}
._11_c00222{width:14.843025pt;}
._5_c00222{width:18.282513pt;}
._7_c00222{width:19.190752pt;}
._f_c00222{width:20.894596pt;}
._c_c00222{width:30.705874pt;}
.fs3_c00222{font-size:42.432943pt;}
.fs2_c00222{font-size:52.566166pt;}
.fs0_c00222{font-size:58.267177pt;}
.fs1_c00222{font-size:63.333308pt;}
.y0_c00222{bottom:0.000000pt;}
.y5_c00222{bottom:0.107500pt;}
.y4_c00222{bottom:3.324931pt;}
.y2_c00222{bottom:3.481090pt;}
.ya_c00222{bottom:6.068128pt;}
.yd_c00222{bottom:57.896246pt;}
.yc_c00222{bottom:57.897180pt;}
.y3_c00222{bottom:69.506240pt;}
.y1_c00222{bottom:71.250080pt;}
.y2c_c00222{bottom:126.294086pt;}
.y2b_c00222{bottom:153.528475pt;}
.y2a_c00222{bottom:180.923531pt;}
.y29_c00222{bottom:208.151653pt;}
.y28_c00222{bottom:235.546042pt;}
.y27_c00222{bottom:262.776698pt;}
.y26_c00222{bottom:290.170420pt;}
.y25_c00222{bottom:317.402276pt;}
.y24_c00222{bottom:344.792932pt;}
.y23_c00222{bottom:372.026654pt;}
.y22_c00222{bottom:399.259710pt;}
.y21_c00222{bottom:426.492766pt;}
.y20_c00222{bottom:453.725288pt;}
.y1f_c00222{bottom:480.958344pt;}
.y1e_c00222{bottom:497.901004pt;}
.y1d_c00222{bottom:510.726332pt;}
.y1c_c00222{bottom:526.715126pt;}
.y1b_c00222{bottom:597.172564pt;}
.y1a_c00222{bottom:624.407620pt;}
.y19_c00222{bottom:651.640676pt;}
.y18_c00222{bottom:678.872531pt;}
.y17_c00222{bottom:706.106254pt;}
.y16_c00222{bottom:733.338110pt;}
.y15_c00222{bottom:760.573165pt;}
.y14_c00222{bottom:787.806221pt;}
.y13_c00222{bottom:804.748881pt;}
.y12_c00222{bottom:829.604871pt;}
.y11_c00222{bottom:856.836727pt;}
.y10_c00222{bottom:884.227383pt;}
.yf_c00222{bottom:911.461105pt;}
.ye_c00222{bottom:938.854161pt;}
.yb_c00222{bottom:973.054147pt;}
.y9_c00222{bottom:1000.388100pt;}
.y8_c00222{bottom:1018.912492pt;}
.y7_c00222{bottom:1037.122485pt;}
.y6_c00222{bottom:1055.329411pt;}
.h1_c00222{height:15.990560pt;}
.h3_c00222{height:17.101280pt;}
.hc_c00222{height:27.199516pt;}
.h9_c00222{height:33.694912pt;}
.h4_c00222{height:37.349260pt;}
.h2_c00222{height:52.149123pt;}
.h6_c00222{height:56.683311pt;}
.ha_c00222{height:56.746644pt;}
.hb_c00222{height:56.809977pt;}
.h7_c00222{height:56.936644pt;}
.h8_c00222{height:1110.960672pt;}
.h5_c00222{height:1122.559167pt;}
.h0_c00222{height:1122.666667pt;}
.w15_c00222{width:3.640000pt;}
.wf_c00222{width:3.641600pt;}
.w5_c00222{width:4.433600pt;}
.w8_c00222{width:5.696000pt;}
.w14_c00222{width:5.700800pt;}
.wb_c00222{width:6.489600pt;}
.w11_c00222{width:6.656000pt;}
.w13_c00222{width:7.123200pt;}
.wc_c00222{width:7.124800pt;}
.w6_c00222{width:7.281600pt;}
.we_c00222{width:7.283200pt;}
.w7_c00222{width:7.284800pt;}
.w16_c00222{width:8.550560pt;}
.wd_c00222{width:9.816000pt;}
.w3_c00222{width:10.451200pt;}
.w1_c00222{width:10.612800pt;}
.w12_c00222{width:10.920000pt;}
.w9_c00222{width:10.924800pt;}
.w4_c00222{width:13.617600pt;}
.wa_c00222{width:14.404800pt;}
.w2_c00222{width:21.056000pt;}
.w10_c00222{width:23.430400pt;}
.w18_c00222{width:785.062974pt;}
.w17_c00222{width:793.257550pt;}
.w0_c00222{width:793.333333pt;}
.x0_c00222{left:0.000000pt;}
.x1f_c00222{left:1.370626pt;}
.x13_c00222{left:2.534951pt;}
.x20_c00222{left:100.224934pt;}
.x21_c00222{left:107.666797pt;}
.x1a_c00222{left:109.513120pt;}
.x23_c00222{left:112.259539pt;}
.x22_c00222{left:136.007986pt;}
.x24_c00222{left:147.726648pt;}
.x25_c00222{left:159.758644pt;}
.x26_c00222{left:183.508690pt;}
.x1c_c00222{left:224.447074pt;}
.x1b_c00222{left:238.063321pt;}
.x1e_c00222{left:322.927708pt;}
.x1d_c00222{left:373.596437pt;}
.x1_c00222{left:442.323200pt;}
.x2_c00222{left:452.936000pt;}
.x3_c00222{left:473.992000pt;}
.x4_c00222{left:484.443200pt;}
.x5_c00222{left:498.060800pt;}
.x6_c00222{left:502.176000pt;}
.x7_c00222{left:512.942400pt;}
.x8_c00222{left:520.227200pt;}
.x9_c00222{left:524.817600pt;}
.xa_c00222{left:538.910400pt;}
.xb_c00222{left:551.260800pt;}
.xc_c00222{left:557.750400pt;}
.xd_c00222{left:568.201600pt;}
.xe_c00222{left:575.326400pt;}
.xf_c00222{left:585.142400pt;}
.x10_c00222{left:592.265600pt;}
.x11_c00222{left:598.441600pt;}
.x12_c00222{left:619.340800pt;}
.x14_c00222{left:625.996800pt;}
.x15_c00222{left:636.916800pt;}
.x16_c00222{left:644.040000pt;}
.x17_c00222{left:648.633600pt;}
.x18_c00222{left:655.916800pt;}
.x19_c00222{left:663.201600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.111000;font-style:normal;font-weight:normal;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_80640e8a347eae68720a470e.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.115000;font-style:normal;font-weight:normal;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_24d98807f733dc085d1c4453.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:0.712000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00223;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:1.113000;font-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_c00223{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls1_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:64.189174px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:-16.387643px;}
.ws1_c00223{word-spacing:0.000000px;}
._8_c00223{margin-left:-3.614637px;}
._6_c00223{margin-left:-2.400289px;}
._3_c00223{margin-left:-1.198405px;}
._0_c00223{width:1.056292px;}
._4_c00223{width:4.015396px;}
._2_c00223{width:5.876029px;}
._7_c00223{width:7.013563px;}
._1_c00223{width:8.864563px;}
._5_c00223{width:47.582688px;}
.fc1_c00223{color:rgb(105,148,45);}
.fc0_c00223{color:rgb(35,31,32);}
.fs2_c00223{font-size:59.136936px;}
.fs0_c00223{font-size:65.550574px;}
.fs1_c00223{font-size:71.249972px;}
.y0_c00223{bottom:0.000000px;}
.y5_c00223{bottom:0.120938px;}
.y4_c00223{bottom:3.740547px;}
.y2_c00223{bottom:3.916226px;}
.ya_c00223{bottom:6.826644px;}
.yd_c00223{bottom:65.133277px;}
.yc_c00223{bottom:65.134327px;}
.y3_c00223{bottom:78.194520px;}
.y1_c00223{bottom:80.156340px;}
.y17_c00223{bottom:603.956012px;}
.y16_c00223{bottom:634.595449px;}
.y15_c00223{bottom:689.986977px;}
.y14_c00223{bottom:769.434445px;}
.y13_c00223{bottom:800.070283px;}
.y12_c00223{bottom:830.883271px;}
.y11_c00223{bottom:882.006100px;}
.y10_c00223{bottom:912.821938px;}
.yf_c00223{bottom:943.459126px;}
.ye_c00223{bottom:994.760455px;}
.yb_c00223{bottom:1094.685915px;}
.y9_c00223{bottom:1125.436612px;}
.y8_c00223{bottom:1146.276554px;}
.y7_c00223{bottom:1166.762796px;}
.y6_c00223{bottom:1187.245588px;}
.h1_c00223{height:17.989380px;}
.h3_c00223{height:19.238940px;}
.h9_c00223{height:37.906776px;}
.h4_c00223{height:42.017918px;}
.h2_c00223{height:58.667764px;}
.h6_c00223{height:63.768724px;}
.hb_c00223{height:63.839974px;}
.ha_c00223{height:63.911224px;}
.h7_c00223{height:64.053724px;}
.h8_c00223{height:1249.830756px;}
.h5_c00223{height:1262.879062px;}
.h0_c00223{height:1263.000000px;}
.w15_c00223{width:4.095000px;}
.wf_c00223{width:4.096800px;}
.w5_c00223{width:4.987800px;}
.w8_c00223{width:6.408000px;}
.w14_c00223{width:6.413400px;}
.wb_c00223{width:7.300800px;}
.w11_c00223{width:7.488000px;}
.w13_c00223{width:8.013600px;}
.wc_c00223{width:8.015400px;}
.w6_c00223{width:8.191800px;}
.we_c00223{width:8.193600px;}
.w7_c00223{width:8.195400px;}
.w16_c00223{width:9.619380px;}
.wd_c00223{width:11.043000px;}
.w3_c00223{width:11.757600px;}
.w1_c00223{width:11.939400px;}
.w12_c00223{width:12.285000px;}
.w9_c00223{width:12.290400px;}
.w4_c00223{width:15.319800px;}
.wa_c00223{width:16.205400px;}
.w2_c00223{width:23.688000px;}
.w10_c00223{width:26.359200px;}
.w18_c00223{width:883.195846px;}
.w17_c00223{width:892.414744px;}
.w0_c00223{width:892.500000px;}
.x0_c00223{left:0.000000px;}
.x1f_c00223{left:1.541954px;}
.x13_c00223{left:2.851820px;}
.x20_c00223{left:112.753050px;}
.x21_c00223{left:121.125147px;}
.x1a_c00223{left:123.202260px;}
.x24_c00223{left:126.293869px;}
.x25_c00223{left:153.012371px;}
.x23_c00223{left:166.193379px;}
.x22_c00223{left:179.729974px;}
.x1c_c00223{left:252.502959px;}
.x1b_c00223{left:267.821237px;}
.x1e_c00223{left:363.293672px;}
.x1d_c00223{left:420.295991px;}
.x1_c00223{left:497.613600px;}
.x2_c00223{left:509.553000px;}
.x3_c00223{left:533.241000px;}
.x4_c00223{left:544.998600px;}
.x5_c00223{left:560.318400px;}
.x6_c00223{left:564.948000px;}
.x7_c00223{left:577.060200px;}
.x8_c00223{left:585.255600px;}
.x9_c00223{left:590.419800px;}
.xa_c00223{left:606.274200px;}
.xb_c00223{left:620.168400px;}
.xc_c00223{left:627.469200px;}
.xd_c00223{left:639.226800px;}
.xe_c00223{left:647.242200px;}
.xf_c00223{left:658.285200px;}
.x10_c00223{left:666.298800px;}
.x11_c00223{left:673.246800px;}
.x12_c00223{left:696.758400px;}
.x14_c00223{left:704.246400px;}
.x15_c00223{left:716.531400px;}
.x16_c00223{left:724.545000px;}
.x17_c00223{left:729.712800px;}
.x18_c00223{left:737.906400px;}
.x19_c00223{left:746.101800px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls1_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:57.057044pt;}
.ws0_c00223{word-spacing:-14.566794pt;}
.ws1_c00223{word-spacing:0.000000pt;}
._8_c00223{margin-left:-3.213011pt;}
._6_c00223{margin-left:-2.133590pt;}
._3_c00223{margin-left:-1.065249pt;}
._0_c00223{width:0.938926pt;}
._4_c00223{width:3.569241pt;}
._2_c00223{width:5.223137pt;}
._7_c00223{width:6.234278pt;}
._1_c00223{width:7.879612pt;}
._5_c00223{width:42.295723pt;}
.fs2_c00223{font-size:52.566166pt;}
.fs0_c00223{font-size:58.267177pt;}
.fs1_c00223{font-size:63.333308pt;}
.y0_c00223{bottom:0.000000pt;}
.y5_c00223{bottom:0.107500pt;}
.y4_c00223{bottom:3.324931pt;}
.y2_c00223{bottom:3.481090pt;}
.ya_c00223{bottom:6.068128pt;}
.yd_c00223{bottom:57.896246pt;}
.yc_c00223{bottom:57.897180pt;}
.y3_c00223{bottom:69.506240pt;}
.y1_c00223{bottom:71.250080pt;}
.y17_c00223{bottom:536.849788pt;}
.y16_c00223{bottom:564.084844pt;}
.y15_c00223{bottom:613.321758pt;}
.y14_c00223{bottom:683.941729pt;}
.y13_c00223{bottom:711.173585pt;}
.y12_c00223{bottom:738.562907pt;}
.y11_c00223{bottom:784.005423pt;}
.y10_c00223{bottom:811.397278pt;}
.yf_c00223{bottom:838.630334pt;}
.ye_c00223{bottom:884.231516pt;}
.yb_c00223{bottom:973.054147pt;}
.y9_c00223{bottom:1000.388100pt;}
.y8_c00223{bottom:1018.912492pt;}
.y7_c00223{bottom:1037.122485pt;}
.y6_c00223{bottom:1055.329411pt;}
.h1_c00223{height:15.990560pt;}
.h3_c00223{height:17.101280pt;}
.h9_c00223{height:33.694912pt;}
.h4_c00223{height:37.349260pt;}
.h2_c00223{height:52.149123pt;}
.h6_c00223{height:56.683311pt;}
.hb_c00223{height:56.746644pt;}
.ha_c00223{height:56.809977pt;}
.h7_c00223{height:56.936644pt;}
.h8_c00223{height:1110.960672pt;}
.h5_c00223{height:1122.559167pt;}
.h0_c00223{height:1122.666667pt;}
.w15_c00223{width:3.640000pt;}
.wf_c00223{width:3.641600pt;}
.w5_c00223{width:4.433600pt;}
.w8_c00223{width:5.696000pt;}
.w14_c00223{width:5.700800pt;}
.wb_c00223{width:6.489600pt;}
.w11_c00223{width:6.656000pt;}
.w13_c00223{width:7.123200pt;}
.wc_c00223{width:7.124800pt;}
.w6_c00223{width:7.281600pt;}
.we_c00223{width:7.283200pt;}
.w7_c00223{width:7.284800pt;}
.w16_c00223{width:8.550560pt;}
.wd_c00223{width:9.816000pt;}
.w3_c00223{width:10.451200pt;}
.w1_c00223{width:10.612800pt;}
.w12_c00223{width:10.920000pt;}
.w9_c00223{width:10.924800pt;}
.w4_c00223{width:13.617600pt;}
.wa_c00223{width:14.404800pt;}
.w2_c00223{width:21.056000pt;}
.w10_c00223{width:23.430400pt;}
.w18_c00223{width:785.062974pt;}
.w17_c00223{width:793.257550pt;}
.w0_c00223{width:793.333333pt;}
.x0_c00223{left:0.000000pt;}
.x1f_c00223{left:1.370626pt;}
.x13_c00223{left:2.534951pt;}
.x20_c00223{left:100.224934pt;}
.x21_c00223{left:107.666797pt;}
.x1a_c00223{left:109.513120pt;}
.x24_c00223{left:112.261217pt;}
.x25_c00223{left:136.010997pt;}
.x23_c00223{left:147.727448pt;}
.x22_c00223{left:159.759977pt;}
.x1c_c00223{left:224.447074pt;}
.x1b_c00223{left:238.063321pt;}
.x1e_c00223{left:322.927708pt;}
.x1d_c00223{left:373.596437pt;}
.x1_c00223{left:442.323200pt;}
.x2_c00223{left:452.936000pt;}
.x3_c00223{left:473.992000pt;}
.x4_c00223{left:484.443200pt;}
.x5_c00223{left:498.060800pt;}
.x6_c00223{left:502.176000pt;}
.x7_c00223{left:512.942400pt;}
.x8_c00223{left:520.227200pt;}
.x9_c00223{left:524.817600pt;}
.xa_c00223{left:538.910400pt;}
.xb_c00223{left:551.260800pt;}
.xc_c00223{left:557.750400pt;}
.xd_c00223{left:568.201600pt;}
.xe_c00223{left:575.326400pt;}
.xf_c00223{left:585.142400pt;}
.x10_c00223{left:592.265600pt;}
.x11_c00223{left:598.441600pt;}
.x12_c00223{left:619.340800pt;}
.x14_c00223{left:625.996800pt;}
.x15_c00223{left:636.916800pt;}
.x16_c00223{left:644.040000pt;}
.x17_c00223{left:648.633600pt;}
.x18_c00223{left:655.916800pt;}
.x19_c00223{left:663.201600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls0_c00224{letter-spacing:0.000000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00224{word-spacing:0.000000px;}
._0_c00224{width:1.187595px;}
.fc0_c00224{color:rgb(35,31,32);}
.fs0_c00224{font-size:71.249972px;}
.y0_c00224{bottom:0.000000px;}
.y1_c00224{bottom:0.120938px;}
.y2_c00224{bottom:442.159886px;}
.h2_c00224{height:63.839974px;}
.h1_c00224{height:1262.879062px;}
.h0_c00224{height:1263.000000px;}
.w1_c00224{width:892.414744px;}
.w0_c00224{width:892.500000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:321.975715px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:0.000000pt;}
._0_c00224{width:1.055640pt;}
.fs0_c00224{font-size:63.333308pt;}
.y0_c00224{bottom:0.000000pt;}
.y1_c00224{bottom:0.107500pt;}
.y2_c00224{bottom:393.031009pt;}
.h2_c00224{height:56.746644pt;}
.h1_c00224{height:1122.559167pt;}
.h0_c00224{height:1122.666667pt;}
.w1_c00224{width:793.257550pt;}
.w0_c00224{width:793.333333pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:286.200636pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.107000;font-style: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.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00225{word-spacing:-14.062402px;}
.ws5_c00225{word-spacing:0.000000px;}
.ws0_c00225{word-spacing:20.608703px;}
.ws2_c00225{word-spacing:164.040448px;}
.ws4_c00225{word-spacing:194.011069px;}
.ws3_c00225{word-spacing:194.012081px;}
._d_c00225{margin-left:-5.815511px;}
._1c_c00225{margin-left:-4.483337px;}
._2_c00225{margin-left:-3.242840px;}
._0_c00225{margin-left:-1.954788px;}
._1_c00225{width:1.744541px;}
._3_c00225{width:2.883980px;}
._6_c00225{width:4.266702px;}
._a_c00225{width:5.325060px;}
._e_c00225{width:9.424633px;}
._2b_c00225{width:19.019536px;}
._20_c00225{width:23.500996px;}
._9_c00225{width:28.445106px;}
._26_c00225{width:33.273242px;}
._5_c00225{width:81.215725px;}
._f_c00225{width:94.978081px;}
._15_c00225{width:102.075647px;}
._8_c00225{width:103.432081px;}
._c_c00225{width:106.971689px;}
._1e_c00225{width:113.302762px;}
._29_c00225{width:117.300076px;}
._21_c00225{width:120.919146px;}
._1b_c00225{width:124.383695px;}
._1a_c00225{width:136.227222px;}
._23_c00225{width:142.254198px;}
._b_c00225{width:144.887340px;}
._19_c00225{width:146.524314px;}
._11_c00225{width:150.644527px;}
._2c_c00225{width:166.311339px;}
._24_c00225{width:177.980961px;}
._22_c00225{width:179.005152px;}
._13_c00225{width:196.307820px;}
._12_c00225{width:208.300881px;}
._17_c00225{width:225.564308px;}
._16_c00225{width:237.649779px;}
._2f_c00225{width:250.503249px;}
._7_c00225{width:276.580243px;}
._18_c00225{width:293.560640px;}
._30_c00225{width:311.134882px;}
._28_c00225{width:318.324616px;}
._2e_c00225{width:322.956525px;}
._10_c00225{width:324.098070px;}
._2a_c00225{width:327.787690px;}
._2d_c00225{width:343.712521px;}
._27_c00225{width:345.007931px;}
._1d_c00225{width:347.575258px;}
._14_c00225{width:353.355544px;}
._1f_c00225{width:357.044613px;}
._25_c00225{width:386.302922px;}
._4_c00225{width:419.332605px;}
.fc0_c00225{color:rgb(35,31,32);}
.fs1_c00225{font-size:50.584180px;}
.fs0_c00225{font-size:67.447173px;}
.y0_c00225{bottom:0.000000px;}
.y1_c00225{bottom:0.120938px;}
.y6_c00225{bottom:2.843833px;}
.y3a_c00225{bottom:2.849789px;}
.y7_c00225{bottom:6.826644px;}
.y39_c00225{bottom:75.701880px;}
.y38_c00225{bottom:75.998823px;}
.y3b_c00225{bottom:78.430731px;}
.y37_c00225{bottom:112.691358px;}
.y36_c00225{bottom:139.232948px;}
.y35_c00225{bottom:161.142989px;}
.y34_c00225{bottom:187.682478px;}
.y33_c00225{bottom:209.589669px;}
.y32_c00225{bottom:236.131259px;}
.y31_c00225{bottom:254.122102px;}
.y30_c00225{bottom:269.975445px;}
.y2f_c00225{bottom:291.882037px;}
.y2e_c00225{bottom:318.422126px;}
.y2d_c00225{bottom:336.235819px;}
.y2c_c00225{bottom:358.323010px;}
.y2b_c00225{bottom:384.862499px;}
.y2a_c00225{bottom:402.675442px;}
.y29_c00225{bottom:424.586233px;}
.y28_c00225{bottom:451.126323px;}
.y27_c00225{bottom:469.115816px;}
.y26_c00225{bottom:491.025857px;}
.y25_c00225{bottom:517.565346px;}
.y24_c00225{bottom:535.554839px;}
.y23_c00225{bottom:551.229533px;}
.y22_c00225{bottom:569.220376px;}
.y21_c00225{bottom:585.075819px;}
.y20_c00225{bottom:602.888012px;}
.y1f_c00225{bottom:620.875405px;}
.y1e_c00225{bottom:642.786946px;}
.y1d_c00225{bottom:669.327036px;}
.y1c_c00225{bottom:687.319228px;}
.y1b_c00225{bottom:709.225820px;}
.y1a_c00225{bottom:735.768759px;}
.y19_c00225{bottom:753.578252px;}
.y18_c00225{bottom:771.567745px;}
.y17_c00225{bottom:789.559937px;}
.y16_c00225{bottom:807.370780px;}
.y15_c00225{bottom:825.364473px;}
.y14_c00225{bottom:843.176666px;}
.y13_c00225{bottom:861.163309px;}
.y12_c00225{bottom:878.975502px;}
.y11_c00225{bottom:901.063443px;}
.y10_c00225{bottom:927.605032px;}
.yf_c00225{bottom:949.515073px;}
.ye_c00225{bottom:976.053063px;}
.yd_c00225{bottom:997.963104px;}
.yc_c00225{bottom:1024.501843px;}
.yb_c00225{bottom:1046.413385px;}
.ya_c00225{bottom:1072.951374px;}
.y9_c00225{bottom:1094.862915px;}
.y8_c00225{bottom:1121.402405px;}
.y5_c00225{bottom:1165.462200px;}
.y4_c00225{bottom:1168.185095px;}
.y3_c00225{bottom:1193.301085px;}
.y2_c00225{bottom:1215.565576px;}
.h5_c00225{height:14.247000px;}
.h7_c00225{height:14.248980px;}
.h4_c00225{height:45.374009px;}
.h3_c00225{height:46.891535px;}
.h2_c00225{height:62.523529px;}
.h6_c00225{height:1249.830756px;}
.h1_c00225{height:1262.879062px;}
.h0_c00225{height:1263.000000px;}
.w5_c00225{width:39.900600px;}
.w2_c00225{width:44.353800px;}
.w3_c00225{width:57.889800px;}
.w4_c00225{width:883.195846px;}
.w1_c00225{width:892.414744px;}
.w0_c00225{width:892.500000px;}
.x0_c00225{left:0.000000px;}
.x5_c00225{left:1.541954px;}
.x6_c00225{left:106.162653px;}
.x2_c00225{left:107.691951px;}
.x1_c00225{left:111.965599px;}
.x8_c00225{left:350.370899px;}
.x7_c00225{left:476.835783px;}
.x3_c00225{left:587.748600px;}
.x9_c00225{left:592.618395px;}
.xa_c00225{left:599.921300px;}
.x4_c00225{left:655.255800px;}
.xb_c00225{left:794.194200px;}
.xc_c00225{left:855.278002px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws1_c00225{word-spacing:-12.499913pt;}
.ws5_c00225{word-spacing:0.000000pt;}
.ws0_c00225{word-spacing:18.318847pt;}
.ws2_c00225{word-spacing:145.813732pt;}
.ws4_c00225{word-spacing:172.454283pt;}
.ws3_c00225{word-spacing:172.455183pt;}
._d_c00225{margin-left:-5.169343pt;}
._1c_c00225{margin-left:-3.985188pt;}
._2_c00225{margin-left:-2.882524pt;}
._0_c00225{margin-left:-1.737589pt;}
._1_c00225{width:1.550703pt;}
._3_c00225{width:2.563538pt;}
._6_c00225{width:3.792624pt;}
._a_c00225{width:4.733386pt;}
._e_c00225{width:8.377451pt;}
._2b_c00225{width:16.906254pt;}
._20_c00225{width:20.889774pt;}
._9_c00225{width:25.284539pt;}
._26_c00225{width:29.576215pt;}
._5_c00225{width:72.191755pt;}
._f_c00225{width:84.424961pt;}
._15_c00225{width:90.733909pt;}
._8_c00225{width:91.939628pt;}
._c_c00225{width:95.085946pt;}
._1e_c00225{width:100.713567pt;}
._29_c00225{width:104.266734pt;}
._21_c00225{width:107.483686pt;}
._1b_c00225{width:110.563285pt;}
._1a_c00225{width:121.090864pt;}
._23_c00225{width:126.448176pt;}
._b_c00225{width:128.788747pt;}
._19_c00225{width:130.243835pt;}
._11_c00225{width:133.906246pt;}
._2c_c00225{width:147.832301pt;}
._24_c00225{width:158.205298pt;}
._22_c00225{width:159.115691pt;}
._13_c00225{width:174.495840pt;}
._12_c00225{width:185.156339pt;}
._17_c00225{width:200.501607pt;}
._16_c00225{width:211.244248pt;}
._2f_c00225{width:222.669555pt;}
._7_c00225{width:245.849105pt;}
._18_c00225{width:260.942791pt;}
._30_c00225{width:276.564339pt;}
._28_c00225{width:282.955214pt;}
._2e_c00225{width:287.072467pt;}
._10_c00225{width:288.087173pt;}
._2a_c00225{width:291.366835pt;}
._2d_c00225{width:305.522241pt;}
._27_c00225{width:306.673716pt;}
._1d_c00225{width:308.955785pt;}
._14_c00225{width:314.093817pt;}
._1f_c00225{width:317.372989pt;}
._25_c00225{width:343.380375pt;}
._4_c00225{width:372.740093pt;}
.fs1_c00225{font-size:44.963715pt;}
.fs0_c00225{font-size:59.953043pt;}
.y0_c00225{bottom:0.000000pt;}
.y1_c00225{bottom:0.107500pt;}
.y6_c00225{bottom:2.527851pt;}
.y3a_c00225{bottom:2.533145pt;}
.y7_c00225{bottom:6.068128pt;}
.y39_c00225{bottom:67.290560pt;}
.y38_c00225{bottom:67.554509pt;}
.y3b_c00225{bottom:69.716205pt;}
.y37_c00225{bottom:100.170096pt;}
.y36_c00225{bottom:123.762620pt;}
.y35_c00225{bottom:143.238212pt;}
.y34_c00225{bottom:166.828870pt;}
.y33_c00225{bottom:186.301928pt;}
.y32_c00225{bottom:209.894452pt;}
.y31_c00225{bottom:225.886313pt;}
.y30_c00225{bottom:239.978174pt;}
.y2f_c00225{bottom:259.450699pt;}
.y2e_c00225{bottom:283.041890pt;}
.y2d_c00225{bottom:298.876283pt;}
.y2c_c00225{bottom:318.509342pt;}
.y2b_c00225{bottom:342.099999pt;}
.y2a_c00225{bottom:357.933726pt;}
.y29_c00225{bottom:377.409985pt;}
.y28_c00225{bottom:401.001176pt;}
.y27_c00225{bottom:416.991836pt;}
.y26_c00225{bottom:436.467428pt;}
.y25_c00225{bottom:460.058086pt;}
.y24_c00225{bottom:476.048746pt;}
.y23_c00225{bottom:489.981807pt;}
.y22_c00225{bottom:505.973667pt;}
.y21_c00225{bottom:520.067395pt;}
.y20_c00225{bottom:535.900455pt;}
.y1f_c00225{bottom:551.889249pt;}
.y1e_c00225{bottom:571.366174pt;}
.y1d_c00225{bottom:594.957365pt;}
.y1c_c00225{bottom:610.950425pt;}
.y1b_c00225{bottom:630.422951pt;}
.y1a_c00225{bottom:654.016675pt;}
.y19_c00225{bottom:669.847335pt;}
.y18_c00225{bottom:685.837995pt;}
.y17_c00225{bottom:701.831056pt;}
.y16_c00225{bottom:717.662916pt;}
.y15_c00225{bottom:733.657309pt;}
.y14_c00225{bottom:749.490370pt;}
.y13_c00225{bottom:765.478497pt;}
.y12_c00225{bottom:781.311557pt;}
.y11_c00225{bottom:800.945283pt;}
.y10_c00225{bottom:824.537806pt;}
.yf_c00225{bottom:844.013399pt;}
.ye_c00225{bottom:867.602723pt;}
.yd_c00225{bottom:887.078315pt;}
.yc_c00225{bottom:910.668305pt;}
.yb_c00225{bottom:930.145231pt;}
.ya_c00225{bottom:953.734555pt;}
.y9_c00225{bottom:973.211480pt;}
.y8_c00225{bottom:996.802138pt;}
.y5_c00225{bottom:1035.966400pt;}
.y4_c00225{bottom:1038.386751pt;}
.y3_c00225{bottom:1060.712076pt;}
.y2_c00225{bottom:1080.502734pt;}
.h5_c00225{height:12.664000pt;}
.h7_c00225{height:12.665760pt;}
.h4_c00225{height:40.332453pt;}
.h3_c00225{height:41.681364pt;}
.h2_c00225{height:55.576471pt;}
.h6_c00225{height:1110.960672pt;}
.h1_c00225{height:1122.559167pt;}
.h0_c00225{height:1122.666667pt;}
.w5_c00225{width:35.467200pt;}
.w2_c00225{width:39.425600pt;}
.w3_c00225{width:51.457600pt;}
.w4_c00225{width:785.062974pt;}
.w1_c00225{width:793.257550pt;}
.w0_c00225{width:793.333333pt;}
.x0_c00225{left:0.000000pt;}
.x5_c00225{left:1.370626pt;}
.x6_c00225{left:94.366803pt;}
.x2_c00225{left:95.726178pt;}
.x1_c00225{left:99.524977pt;}
.x8_c00225{left:311.440799pt;}
.x7_c00225{left:423.854029pt;}
.x3_c00225{left:522.443200pt;}
.x9_c00225{left:526.771906pt;}
.xa_c00225{left:533.263378pt;}
.x4_c00225{left:582.449600pt;}
.xb_c00225{left:705.950400pt;}
.xc_c00225{left:760.247113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.107000;font-style: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.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls0_c00226{letter-spacing:0.000000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00226{word-spacing:-14.062402px;}
.ws5_c00226{word-spacing:0.000000px;}
.ws0_c00226{word-spacing:20.608703px;}
.ws3_c00226{word-spacing:164.039942px;}
.ws4_c00226{word-spacing:194.011575px;}
.ws2_c00226{word-spacing:194.012081px;}
._e_c00226{margin-left:-7.008868px;}
._d_c00226{margin-left:-5.815511px;}
._a_c00226{margin-left:-4.319257px;}
._2_c00226{margin-left:-3.242840px;}
._0_c00226{margin-left:-1.954788px;}
._1_c00226{width:1.744541px;}
._3_c00226{width:2.883980px;}
._6_c00226{width:4.266702px;}
._30_c00226{width:5.425117px;}
._26_c00226{width:9.224648px;}
._29_c00226{width:18.901020px;}
._11_c00226{width:22.826615px;}
._15_c00226{width:24.625146px;}
._2b_c00226{width:27.183187px;}
._9_c00226{width:28.445020px;}
._1a_c00226{width:33.181948px;}
._2c_c00226{width:47.992886px;}
._5_c00226{width:81.215725px;}
._31_c00226{width:82.885971px;}
._36_c00226{width:85.603943px;}
._2f_c00226{width:91.575328px;}
._27_c00226{width:94.979255px;}
._35_c00226{width:101.723545px;}
._8_c00226{width:102.750726px;}
._18_c00226{width:107.609453px;}
._16_c00226{width:113.026624px;}
._25_c00226{width:115.691157px;}
._20_c00226{width:117.344902px;}
._34_c00226{width:119.891679px;}
._12_c00226{width:121.301305px;}
._24_c00226{width:135.835231px;}
._13_c00226{width:136.903757px;}
._b_c00226{width:142.732470px;}
._2e_c00226{width:149.095825px;}
._38_c00226{width:150.609604px;}
._2a_c00226{width:178.004132px;}
._1b_c00226{width:179.004411px;}
._f_c00226{width:196.362857px;}
._c_c00226{width:208.300532px;}
._22_c00226{width:237.335352px;}
._1e_c00226{width:251.909093px;}
._23_c00226{width:290.405112px;}
._1c_c00226{width:294.724053px;}
._33_c00226{width:314.859438px;}
._1f_c00226{width:319.660840px;}
._7_c00226{width:322.694051px;}
._19_c00226{width:323.981209px;}
._14_c00226{width:327.587391px;}
._32_c00226{width:329.036685px;}
._2d_c00226{width:344.121763px;}
._37_c00226{width:347.791990px;}
._21_c00226{width:348.920119px;}
._1d_c00226{width:353.238087px;}
._10_c00226{width:356.845418px;}
._17_c00226{width:386.103171px;}
._28_c00226{width:390.884800px;}
._4_c00226{width:419.332605px;}
.fc0_c00226{color:rgb(35,31,32);}
.fs1_c00226{font-size:50.584180px;}
.fs0_c00226{font-size:67.447173px;}
.y0_c00226{bottom:0.000000px;}
.y1_c00226{bottom:0.120938px;}
.y6_c00226{bottom:2.843833px;}
.y43_c00226{bottom:2.849789px;}
.y7_c00226{bottom:6.826644px;}
.y42_c00226{bottom:75.701880px;}
.y41_c00226{bottom:75.995823px;}
.y44_c00226{bottom:78.430731px;}
.y40_c00226{bottom:110.729509px;}
.y3f_c00226{bottom:128.721852px;}
.y3e_c00226{bottom:144.572345px;}
.y3d_c00226{bottom:162.384538px;}
.y3c_c00226{bottom:180.375381px;}
.y3b_c00226{bottom:198.187574px;}
.y3a_c00226{bottom:214.040918px;}
.y39_c00226{bottom:232.031760px;}
.y38_c00226{bottom:249.843953px;}
.y37_c00226{bottom:267.836146px;}
.y36_c00226{bottom:285.648339px;}
.y35_c00226{bottom:301.500333px;}
.y34_c00226{bottom:319.491175px;}
.y33_c00226{bottom:337.303368px;}
.y32_c00226{bottom:355.294211px;}
.y31_c00226{bottom:373.106404px;}
.y30_c00226{bottom:388.959748px;}
.y2f_c00226{bottom:406.946390px;}
.y2e_c00226{bottom:424.761433px;}
.y2d_c00226{bottom:442.750926px;}
.y2c_c00226{bottom:460.743119px;}
.y2b_c00226{bottom:478.556812px;}
.y2a_c00226{bottom:496.546305px;}
.y29_c00226{bottom:514.358498px;}
.y28_c00226{bottom:532.345890px;}
.y27_c00226{bottom:550.159583px;}
.y26_c00226{bottom:568.149076px;}
.y25_c00226{bottom:586.142769px;}
.y24_c00226{bottom:603.952262px;}
.y23_c00226{bottom:621.945954px;}
.y22_c00226{bottom:639.758147px;}
.y21_c00226{bottom:657.747640px;}
.y20_c00226{bottom:679.657681px;}
.y1f_c00226{bottom:706.197171px;}
.y1e_c00226{bottom:724.188014px;}
.y1d_c00226{bottom:742.000206px;}
.y1c_c00226{bottom:759.994499px;}
.y1b_c00226{bottom:777.803242px;}
.y1a_c00226{bottom:795.797535px;}
.y19_c00226{bottom:813.784928px;}
.y18_c00226{bottom:831.595771px;}
.y17_c00226{bottom:849.585263px;}
.y16_c00226{bottom:867.398956px;}
.y15_c00226{bottom:885.389799px;}
.y14_c00226{bottom:903.204842px;}
.y13_c00226{bottom:921.192835px;}
.y12_c00226{bottom:939.183678px;}
.y11_c00226{bottom:956.997370px;}
.y10_c00226{bottom:974.986863px;}
.yf_c00226{bottom:992.799056px;}
.ye_c00226{bottom:1010.787799px;}
.yd_c00226{bottom:1028.775792px;}
.yc_c00226{bottom:1046.590835px;}
.yb_c00226{bottom:1064.578827px;}
.ya_c00226{bottom:1082.392520px;}
.y9_c00226{bottom:1104.482561px;}
.y8_c00226{bottom:1130.843401px;}
.y5_c00226{bottom:1165.462200px;}
.y4_c00226{bottom:1168.185095px;}
.y3_c00226{bottom:1193.301085px;}
.y2_c00226{bottom:1215.565576px;}
.h5_c00226{height:14.247000px;}
.h7_c00226{height:14.248980px;}
.h4_c00226{height:45.374009px;}
.h3_c00226{height:46.891535px;}
.h2_c00226{height:62.523529px;}
.h6_c00226{height:1249.830756px;}
.h1_c00226{height:1262.879062px;}
.h0_c00226{height:1263.000000px;}
.w5_c00226{width:39.900600px;}
.w2_c00226{width:44.353800px;}
.w3_c00226{width:57.889800px;}
.w4_c00226{width:883.195846px;}
.w1_c00226{width:892.414744px;}
.w0_c00226{width:892.500000px;}
.x0_c00226{left:0.000000px;}
.x5_c00226{left:1.541954px;}
.x6_c00226{left:106.162653px;}
.x2_c00226{left:107.691951px;}
.x1_c00226{left:111.965599px;}
.x8_c00226{left:350.368593px;}
.x7_c00226{left:476.836951px;}
.x9_c00226{left:585.136605px;}
.x3_c00226{left:587.748600px;}
.xb_c00226{left:592.617586px;}
.xa_c00226{left:599.921839px;}
.x4_c00226{left:655.255800px;}
.xc_c00226{left:794.194200px;}
.xd_c00226{left:855.278002px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws1_c00226{word-spacing:-12.499913pt;}
.ws5_c00226{word-spacing:0.000000pt;}
.ws0_c00226{word-spacing:18.318847pt;}
.ws3_c00226{word-spacing:145.813282pt;}
.ws4_c00226{word-spacing:172.454733pt;}
.ws2_c00226{word-spacing:172.455183pt;}
._e_c00226{margin-left:-6.230105pt;}
._d_c00226{margin-left:-5.169343pt;}
._a_c00226{margin-left:-3.839339pt;}
._2_c00226{margin-left:-2.882524pt;}
._0_c00226{margin-left:-1.737589pt;}
._1_c00226{width:1.550703pt;}
._3_c00226{width:2.563538pt;}
._6_c00226{width:3.792624pt;}
._30_c00226{width:4.822326pt;}
._26_c00226{width:8.199687pt;}
._29_c00226{width:16.800906pt;}
._11_c00226{width:20.290325pt;}
._15_c00226{width:21.889019pt;}
._2b_c00226{width:24.162833pt;}
._9_c00226{width:25.284462pt;}
._1a_c00226{width:29.495065pt;}
._2c_c00226{width:42.660343pt;}
._5_c00226{width:72.191755pt;}
._31_c00226{width:73.676419pt;}
._36_c00226{width:76.092394pt;}
._2f_c00226{width:81.400291pt;}
._27_c00226{width:84.426004pt;}
._35_c00226{width:90.420929pt;}
._8_c00226{width:91.333979pt;}
._18_c00226{width:95.652847pt;}
._16_c00226{width:100.468110pt;}
._25_c00226{width:102.836584pt;}
._20_c00226{width:104.306580pt;}
._34_c00226{width:106.570382pt;}
._12_c00226{width:107.823383pt;}
._24_c00226{width:120.742427pt;}
._13_c00226{width:121.692229pt;}
._b_c00226{width:126.873307pt;}
._2e_c00226{width:132.529622pt;}
._38_c00226{width:133.875203pt;}
._2a_c00226{width:158.225895pt;}
._1b_c00226{width:159.115032pt;}
._f_c00226{width:174.544761pt;}
._c_c00226{width:185.156029pt;}
._22_c00226{width:210.964757pt;}
._1e_c00226{width:223.919193pt;}
._23_c00226{width:258.137877pt;}
._1c_c00226{width:261.976936pt;}
._33_c00226{width:279.875056pt;}
._1f_c00226{width:284.142969pt;}
._7_c00226{width:286.839156pt;}
._19_c00226{width:287.983297pt;}
._14_c00226{width:291.188792pt;}
._32_c00226{width:292.477054pt;}
._2d_c00226{width:305.886011pt;}
._37_c00226{width:309.148435pt;}
._21_c00226{width:310.151216pt;}
._1d_c00226{width:313.989411pt;}
._10_c00226{width:317.195927pt;}
._17_c00226{width:343.202818pt;}
._28_c00226{width:347.453156pt;}
._4_c00226{width:372.740093pt;}
.fs1_c00226{font-size:44.963715pt;}
.fs0_c00226{font-size:59.953043pt;}
.y0_c00226{bottom:0.000000pt;}
.y1_c00226{bottom:0.107500pt;}
.y6_c00226{bottom:2.527851pt;}
.y43_c00226{bottom:2.533145pt;}
.y7_c00226{bottom:6.068128pt;}
.y42_c00226{bottom:67.290560pt;}
.y41_c00226{bottom:67.551843pt;}
.y44_c00226{bottom:69.716205pt;}
.y40_c00226{bottom:98.426230pt;}
.y3f_c00226{bottom:114.419424pt;}
.y3e_c00226{bottom:128.508752pt;}
.y3d_c00226{bottom:144.341812pt;}
.y3c_c00226{bottom:160.333672pt;}
.y3b_c00226{bottom:176.166732pt;}
.y3a_c00226{bottom:190.258593pt;}
.y39_c00226{bottom:206.250454pt;}
.y38_c00226{bottom:222.083514pt;}
.y37_c00226{bottom:238.076574pt;}
.y36_c00226{bottom:253.909635pt;}
.y35_c00226{bottom:268.000296pt;}
.y34_c00226{bottom:283.992156pt;}
.y33_c00226{bottom:299.825216pt;}
.y32_c00226{bottom:315.817077pt;}
.y31_c00226{bottom:331.650137pt;}
.y30_c00226{bottom:345.741998pt;}
.y2f_c00226{bottom:361.730125pt;}
.y2e_c00226{bottom:377.565719pt;}
.y2d_c00226{bottom:393.556379pt;}
.y2c_c00226{bottom:409.549439pt;}
.y2b_c00226{bottom:425.383833pt;}
.y2a_c00226{bottom:441.374493pt;}
.y29_c00226{bottom:457.207553pt;}
.y28_c00226{bottom:473.196347pt;}
.y27_c00226{bottom:489.030741pt;}
.y26_c00226{bottom:505.021401pt;}
.y25_c00226{bottom:521.015794pt;}
.y24_c00226{bottom:536.846455pt;}
.y23_c00226{bottom:552.840848pt;}
.y22_c00226{bottom:568.673909pt;}
.y21_c00226{bottom:584.664569pt;}
.y20_c00226{bottom:604.140161pt;}
.y1f_c00226{bottom:627.730818pt;}
.y1e_c00226{bottom:643.722679pt;}
.y1d_c00226{bottom:659.555739pt;}
.y1c_c00226{bottom:675.550666pt;}
.y1b_c00226{bottom:691.380660pt;}
.y1a_c00226{bottom:707.375587pt;}
.y19_c00226{bottom:723.364380pt;}
.y18_c00226{bottom:739.196241pt;}
.y17_c00226{bottom:755.186901pt;}
.y16_c00226{bottom:771.021294pt;}
.y15_c00226{bottom:787.013155pt;}
.y14_c00226{bottom:802.848748pt;}
.y13_c00226{bottom:818.838075pt;}
.y12_c00226{bottom:834.829936pt;}
.y11_c00226{bottom:850.664329pt;}
.y10_c00226{bottom:866.654990pt;}
.yf_c00226{bottom:882.488050pt;}
.ye_c00226{bottom:898.478044pt;}
.yd_c00226{bottom:914.467370pt;}
.yc_c00226{bottom:930.302964pt;}
.yb_c00226{bottom:946.292291pt;}
.ya_c00226{bottom:962.126685pt;}
.y9_c00226{bottom:981.762277pt;}
.y8_c00226{bottom:1005.194134pt;}
.y5_c00226{bottom:1035.966400pt;}
.y4_c00226{bottom:1038.386751pt;}
.y3_c00226{bottom:1060.712076pt;}
.y2_c00226{bottom:1080.502734pt;}
.h5_c00226{height:12.664000pt;}
.h7_c00226{height:12.665760pt;}
.h4_c00226{height:40.332453pt;}
.h3_c00226{height:41.681364pt;}
.h2_c00226{height:55.576471pt;}
.h6_c00226{height:1110.960672pt;}
.h1_c00226{height:1122.559167pt;}
.h0_c00226{height:1122.666667pt;}
.w5_c00226{width:35.467200pt;}
.w2_c00226{width:39.425600pt;}
.w3_c00226{width:51.457600pt;}
.w4_c00226{width:785.062974pt;}
.w1_c00226{width:793.257550pt;}
.w0_c00226{width:793.333333pt;}
.x0_c00226{left:0.000000pt;}
.x5_c00226{left:1.370626pt;}
.x6_c00226{left:94.366803pt;}
.x2_c00226{left:95.726178pt;}
.x1_c00226{left:99.524977pt;}
.x8_c00226{left:311.438749pt;}
.x7_c00226{left:423.855068pt;}
.x9_c00226{left:520.121427pt;}
.x3_c00226{left:522.443200pt;}
.xb_c00226{left:526.771188pt;}
.xa_c00226{left:533.263857pt;}
.x4_c00226{left:582.449600pt;}
.xc_c00226{left:705.950400pt;}
.xd_c00226{left:760.247113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.107000;font-style: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.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls0_c00227{letter-spacing:0.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00227{word-spacing:-14.062402px;}
.ws5_c00227{word-spacing:0.000000px;}
.ws0_c00227{word-spacing:20.608703px;}
.ws3_c00227{word-spacing:121.938730px;}
.ws2_c00227{word-spacing:194.011069px;}
.ws4_c00227{word-spacing:223.267441px;}
._7_c00227{margin-left:-5.815511px;}
._16_c00227{margin-left:-4.282464px;}
._2_c00227{margin-left:-3.242840px;}
._0_c00227{margin-left:-1.954788px;}
._1_c00227{width:1.744541px;}
._3_c00227{width:2.883980px;}
._6_c00227{width:4.266702px;}
._10_c00227{width:5.485468px;}
._12_c00227{width:18.740032px;}
._b_c00227{width:20.033015px;}
._20_c00227{width:26.797837px;}
._22_c00227{width:28.234809px;}
._5_c00227{width:81.215725px;}
._27_c00227{width:82.982072px;}
._8_c00227{width:95.343418px;}
._a_c00227{width:102.750306px;}
._e_c00227{width:115.586664px;}
._19_c00227{width:117.203811px;}
._c_c00227{width:120.997589px;}
._21_c00227{width:124.600296px;}
._d_c00227{width:136.903606px;}
._15_c00227{width:142.315124px;}
._1e_c00227{width:144.840645px;}
._17_c00227{width:146.608795px;}
._1c_c00227{width:150.943324px;}
._23_c00227{width:166.701347px;}
._28_c00227{width:177.966892px;}
._f_c00227{width:179.004995px;}
._18_c00227{width:208.300729px;}
._13_c00227{width:238.168992px;}
._1d_c00227{width:242.132899px;}
._1b_c00227{width:284.946888px;}
._25_c00227{width:290.408862px;}
._1f_c00227{width:315.322802px;}
._2b_c00227{width:324.195281px;}
._14_c00227{width:332.371919px;}
._29_c00227{width:334.148766px;}
._24_c00227{width:344.380618px;}
._2a_c00227{width:348.924171px;}
._1a_c00227{width:352.311386px;}
._26_c00227{width:353.453039px;}
._9_c00227{width:361.628428px;}
._11_c00227{width:390.884800px;}
._4_c00227{width:419.332605px;}
.fc0_c00227{color:rgb(35,31,32);}
.fs1_c00227{font-size:50.584180px;}
.fs0_c00227{font-size:67.447173px;}
.y0_c00227{bottom:0.000000px;}
.y1_c00227{bottom:0.120938px;}
.y6_c00227{bottom:2.843833px;}
.y41_c00227{bottom:2.849789px;}
.y7_c00227{bottom:6.826644px;}
.y40_c00227{bottom:75.701880px;}
.y3f_c00227{bottom:75.996423px;}
.y42_c00227{bottom:78.430731px;}
.y3e_c00227{bottom:106.635111px;}
.y3d_c00227{bottom:124.444603px;}
.y3c_c00227{bottom:142.436796px;}
.y3b_c00227{bottom:160.248989px;}
.y3a_c00227{bottom:178.238482px;}
.y39_c00227{bottom:196.229325px;}
.y38_c00227{bottom:214.041518px;}
.y37_c00227{bottom:232.033710px;}
.y36_c00227{bottom:249.843203px;}
.y35_c00227{bottom:267.835396px;}
.y34_c00227{bottom:285.647589px;}
.y33_c00227{bottom:303.637082px;}
.y32_c00227{bottom:321.629275px;}
.y31_c00227{bottom:339.440117px;}
.y30_c00227{bottom:357.428860px;}
.y2f_c00227{bottom:375.243303px;}
.y2e_c00227{bottom:391.097997px;}
.y2d_c00227{bottom:409.085990px;}
.y2c_c00227{bottom:426.896083px;}
.y2b_c00227{bottom:448.806124px;}
.y2a_c00227{bottom:475.346363px;}
.y29_c00227{bottom:491.201057px;}
.y28_c00227{bottom:509.190550px;}
.y27_c00227{bottom:531.100591px;}
.y26_c00227{bottom:557.642180px;}
.y25_c00227{bottom:575.454373px;}
.y24_c00227{bottom:593.443116px;}
.y23_c00227{bottom:611.435309px;}
.y22_c00227{bottom:629.247502px;}
.y21_c00227{bottom:647.236994px;}
.y20_c00227{bottom:669.147036px;}
.y1f_c00227{bottom:695.687125px;}
.y1e_c00227{bottom:713.675868px;}
.y1d_c00227{bottom:731.488211px;}
.y1c_c00227{bottom:747.343654px;}
.y1b_c00227{bottom:765.154497px;}
.y1a_c00227{bottom:783.148190px;}
.y19_c00227{bottom:801.135583px;}
.y18_c00227{bottom:818.948526px;}
.y17_c00227{bottom:836.937268px;}
.y16_c00227{bottom:858.848810px;}
.y15_c00227{bottom:885.387549px;}
.y14_c00227{bottom:903.201242px;}
.y13_c00227{bottom:921.192085px;}
.y12_c00227{bottom:939.179478px;}
.y11_c00227{bottom:956.991670px;}
.y10_c00227{bottom:974.985963px;}
.yf_c00227{bottom:992.794706px;}
.ye_c00227{bottom:1010.786899px;}
.yd_c00227{bottom:1028.776392px;}
.yc_c00227{bottom:1046.590085px;}
.yb_c00227{bottom:1064.579577px;}
.ya_c00227{bottom:1082.391770px;}
.y9_c00227{bottom:1100.382613px;}
.y8_c00227{bottom:1122.291904px;}
.y5_c00227{bottom:1165.462200px;}
.y4_c00227{bottom:1168.185095px;}
.y3_c00227{bottom:1193.301085px;}
.y2_c00227{bottom:1215.565576px;}
.h5_c00227{height:14.247000px;}
.h7_c00227{height:14.248980px;}
.h4_c00227{height:45.374009px;}
.h3_c00227{height:46.891535px;}
.h2_c00227{height:62.523529px;}
.h6_c00227{height:1249.830756px;}
.h1_c00227{height:1262.879062px;}
.h0_c00227{height:1263.000000px;}
.w5_c00227{width:39.900600px;}
.w2_c00227{width:44.353800px;}
.w3_c00227{width:57.889800px;}
.w4_c00227{width:883.195846px;}
.w1_c00227{width:892.414744px;}
.w0_c00227{width:892.500000px;}
.x0_c00227{left:0.000000px;}
.x5_c00227{left:1.541954px;}
.x7_c00227{left:106.166105px;}
.x2_c00227{left:107.691951px;}
.x1_c00227{left:111.965599px;}
.x8_c00227{left:350.374531px;}
.x6_c00227{left:476.839355px;}
.x3_c00227{left:587.748600px;}
.xa_c00227{left:592.628616px;}
.x9_c00227{left:599.923284px;}
.x4_c00227{left:655.255800px;}
.xb_c00227{left:794.194200px;}
.xc_c00227{left:855.278002px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws1_c00227{word-spacing:-12.499913pt;}
.ws5_c00227{word-spacing:0.000000pt;}
.ws0_c00227{word-spacing:18.318847pt;}
.ws3_c00227{word-spacing:108.389982pt;}
.ws2_c00227{word-spacing:172.454283pt;}
.ws4_c00227{word-spacing:198.459948pt;}
._7_c00227{margin-left:-5.169343pt;}
._16_c00227{margin-left:-3.806635pt;}
._2_c00227{margin-left:-2.882524pt;}
._0_c00227{margin-left:-1.737589pt;}
._1_c00227{width:1.550703pt;}
._3_c00227{width:2.563538pt;}
._6_c00227{width:3.792624pt;}
._10_c00227{width:4.875971pt;}
._12_c00227{width:16.657806pt;}
._b_c00227{width:17.807124pt;}
._20_c00227{width:23.820299pt;}
._22_c00227{width:25.097608pt;}
._5_c00227{width:72.191755pt;}
._27_c00227{width:73.761842pt;}
._8_c00227{width:84.749705pt;}
._a_c00227{width:91.333606pt;}
._e_c00227{width:102.743702pt;}
._19_c00227{width:104.181166pt;}
._c_c00227{width:107.553413pt;}
._21_c00227{width:110.755819pt;}
._d_c00227{width:121.692094pt;}
._15_c00227{width:126.502333pt;}
._1e_c00227{width:128.747240pt;}
._17_c00227{width:130.318929pt;}
._1c_c00227{width:134.171843pt;}
._23_c00227{width:148.178975pt;}
._28_c00227{width:158.192793pt;}
._f_c00227{width:159.115552pt;}
._18_c00227{width:185.156204pt;}
._13_c00227{width:211.705770pt;}
._1d_c00227{width:215.229243pt;}
._1b_c00227{width:253.286123pt;}
._25_c00227{width:258.141211pt;}
._1f_c00227{width:280.286936pt;}
._2b_c00227{width:288.173583pt;}
._14_c00227{width:295.441706pt;}
._29_c00227{width:297.021126pt;}
._24_c00227{width:306.116105pt;}
._2a_c00227{width:310.154818pt;}
._1a_c00227{width:313.165676pt;}
._26_c00227{width:314.180479pt;}
._9_c00227{width:321.447492pt;}
._11_c00227{width:347.453156pt;}
._4_c00227{width:372.740093pt;}
.fs1_c00227{font-size:44.963715pt;}
.fs0_c00227{font-size:59.953043pt;}
.y0_c00227{bottom:0.000000pt;}
.y1_c00227{bottom:0.107500pt;}
.y6_c00227{bottom:2.527851pt;}
.y41_c00227{bottom:2.533145pt;}
.y7_c00227{bottom:6.068128pt;}
.y40_c00227{bottom:67.290560pt;}
.y3f_c00227{bottom:67.552376pt;}
.y42_c00227{bottom:69.716205pt;}
.y3e_c00227{bottom:94.786765pt;}
.y3d_c00227{bottom:110.617425pt;}
.y3c_c00227{bottom:126.610486pt;}
.y3b_c00227{bottom:142.443546pt;}
.y3a_c00227{bottom:158.434206pt;}
.y39_c00227{bottom:174.426066pt;}
.y38_c00227{bottom:190.259127pt;}
.y37_c00227{bottom:206.252187pt;}
.y36_c00227{bottom:222.082847pt;}
.y35_c00227{bottom:238.075908pt;}
.y34_c00227{bottom:253.908968pt;}
.y33_c00227{bottom:269.899628pt;}
.y32_c00227{bottom:285.892689pt;}
.y31_c00227{bottom:301.724549pt;}
.y30_c00227{bottom:317.714542pt;}
.y2f_c00227{bottom:333.549603pt;}
.y2e_c00227{bottom:347.642664pt;}
.y2d_c00227{bottom:363.631991pt;}
.y2c_c00227{bottom:379.463184pt;}
.y2b_c00227{bottom:398.938777pt;}
.y2a_c00227{bottom:422.530101pt;}
.y29_c00227{bottom:436.623162pt;}
.y28_c00227{bottom:452.613822pt;}
.y27_c00227{bottom:472.089414pt;}
.y26_c00227{bottom:495.681938pt;}
.y25_c00227{bottom:511.514998pt;}
.y24_c00227{bottom:527.504992pt;}
.y23_c00227{bottom:543.498052pt;}
.y22_c00227{bottom:559.331113pt;}
.y21_c00227{bottom:575.321773pt;}
.y20_c00227{bottom:594.797365pt;}
.y1f_c00227{bottom:618.388556pt;}
.y1e_c00227{bottom:634.378549pt;}
.y1d_c00227{bottom:650.211743pt;}
.y1c_c00227{bottom:664.305471pt;}
.y1b_c00227{bottom:680.137331pt;}
.y1a_c00227{bottom:696.131724pt;}
.y19_c00227{bottom:712.120518pt;}
.y18_c00227{bottom:727.954245pt;}
.y17_c00227{bottom:743.944239pt;}
.y16_c00227{bottom:763.421164pt;}
.y15_c00227{bottom:787.011155pt;}
.y14_c00227{bottom:802.845548pt;}
.y13_c00227{bottom:818.837409pt;}
.y12_c00227{bottom:834.826202pt;}
.y11_c00227{bottom:850.659263pt;}
.y10_c00227{bottom:866.654190pt;}
.yf_c00227{bottom:882.484183pt;}
.ye_c00227{bottom:898.477244pt;}
.yd_c00227{bottom:914.467904pt;}
.yc_c00227{bottom:930.302297pt;}
.yb_c00227{bottom:946.292958pt;}
.ya_c00227{bottom:962.126018pt;}
.y9_c00227{bottom:978.117878pt;}
.y8_c00227{bottom:997.592804pt;}
.y5_c00227{bottom:1035.966400pt;}
.y4_c00227{bottom:1038.386751pt;}
.y3_c00227{bottom:1060.712076pt;}
.y2_c00227{bottom:1080.502734pt;}
.h5_c00227{height:12.664000pt;}
.h7_c00227{height:12.665760pt;}
.h4_c00227{height:40.332453pt;}
.h3_c00227{height:41.681364pt;}
.h2_c00227{height:55.576471pt;}
.h6_c00227{height:1110.960672pt;}
.h1_c00227{height:1122.559167pt;}
.h0_c00227{height:1122.666667pt;}
.w5_c00227{width:35.467200pt;}
.w2_c00227{width:39.425600pt;}
.w3_c00227{width:51.457600pt;}
.w4_c00227{width:785.062974pt;}
.w1_c00227{width:793.257550pt;}
.w0_c00227{width:793.333333pt;}
.x0_c00227{left:0.000000pt;}
.x5_c00227{left:1.370626pt;}
.x7_c00227{left:94.369871pt;}
.x2_c00227{left:95.726178pt;}
.x1_c00227{left:99.524977pt;}
.x8_c00227{left:311.444028pt;}
.x6_c00227{left:423.857204pt;}
.x3_c00227{left:522.443200pt;}
.xa_c00227{left:526.780992pt;}
.x9_c00227{left:533.265142pt;}
.x4_c00227{left:582.449600pt;}
.xb_c00227{left:705.950400pt;}
.xc_c00227{left:760.247113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.107000;font-style: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.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00228{word-spacing:-14.062402px;}
.ws7_c00228{word-spacing:0.000000px;}
.ws0_c00228{word-spacing:20.608703px;}
.ws5_c00228{word-spacing:121.938224px;}
.ws2_c00228{word-spacing:164.039942px;}
.ws3_c00228{word-spacing:164.040448px;}
.ws4_c00228{word-spacing:194.011575px;}
.ws6_c00228{word-spacing:223.267441px;}
._7_c00228{margin-left:-5.815511px;}
._c_c00228{margin-left:-4.349150px;}
._2_c00228{margin-left:-3.242840px;}
._0_c00228{margin-left:-1.954788px;}
._1_c00228{width:1.744541px;}
._3_c00228{width:2.883980px;}
._6_c00228{width:4.266702px;}
._10_c00228{width:5.338533px;}
._1a_c00228{width:18.562824px;}
._b_c00228{width:20.245513px;}
._11_c00228{width:24.392502px;}
._f_c00228{width:27.210301px;}
._2f_c00228{width:28.815828px;}
._5_c00228{width:81.215725px;}
._21_c00228{width:83.433234px;}
._24_c00228{width:86.593702px;}
._23_c00228{width:91.570036px;}
._1e_c00228{width:92.999613px;}
._a_c00228{width:102.074453px;}
._12_c00228{width:113.716531px;}
._25_c00228{width:117.161824px;}
._2e_c00228{width:119.807149px;}
._1d_c00228{width:121.103770px;}
._8_c00228{width:124.600296px;}
._1f_c00228{width:135.865533px;}
._27_c00228{width:142.168356px;}
._29_c00228{width:144.870781px;}
._2b_c00228{width:146.403034px;}
._1b_c00228{width:150.603932px;}
._d_c00228{width:166.702015px;}
._22_c00228{width:177.966766px;}
._13_c00228{width:179.005324px;}
._16_c00228{width:196.673298px;}
._15_c00228{width:208.895521px;}
._2a_c00228{width:237.556267px;}
._19_c00228{width:285.863254px;}
._2c_c00228{width:319.656568px;}
._1c_c00228{width:324.195278px;}
._26_c00228{width:328.536825px;}
._17_c00228{width:343.920000px;}
._30_c00228{width:347.603245px;}
._14_c00228{width:348.924176px;}
._2d_c00228{width:352.305203px;}
._18_c00228{width:353.453168px;}
._20_c00228{width:355.405993px;}
._28_c00228{width:357.794715px;}
._e_c00228{width:361.628337px;}
._9_c00228{width:390.884800px;}
._4_c00228{width:419.332605px;}
.fc0_c00228{color:rgb(35,31,32);}
.fs1_c00228{font-size:50.584180px;}
.fs0_c00228{font-size:67.447173px;}
.y0_c00228{bottom:0.000000px;}
.y1_c00228{bottom:0.120938px;}
.y6_c00228{bottom:2.843833px;}
.y3f_c00228{bottom:2.849789px;}
.y7_c00228{bottom:6.826644px;}
.y3e_c00228{bottom:75.701880px;}
.y3d_c00228{bottom:75.996273px;}
.y40_c00228{bottom:78.430731px;}
.y3c_c00228{bottom:119.102056px;}
.y3b_c00228{bottom:145.640795px;}
.y3a_c00228{bottom:163.454488px;}
.y39_c00228{bottom:181.446681px;}
.y38_c00228{bottom:199.258874px;}
.y37_c00228{bottom:215.110867px;}
.y36_c00228{bottom:233.103060px;}
.y35_c00228{bottom:250.912553px;}
.y34_c00228{bottom:268.901296px;}
.y33_c00228{bottom:286.717089px;}
.y32_c00228{bottom:304.706581px;}
.y31_c00228{bottom:322.696674px;}
.y30_c00228{bottom:340.510967px;}
.y2f_c00228{bottom:358.501810px;}
.y2e_c00228{bottom:376.311903px;}
.y2d_c00228{bottom:394.301396px;}
.y2c_c00228{bottom:412.113588px;}
.y2b_c00228{bottom:430.105781px;}
.y2a_c00228{bottom:448.095274px;}
.y29_c00228{bottom:465.907467px;}
.y28_c00228{bottom:483.899660px;}
.y27_c00228{bottom:501.711853px;}
.y26_c00228{bottom:519.701345px;}
.y25_c00228{bottom:541.610037px;}
.y24_c00228{bottom:568.150876px;}
.y23_c00228{bottom:586.140369px;}
.y22_c00228{bottom:603.954062px;}
.y21_c00228{bottom:619.808155px;}
.y20_c00228{bottom:637.796898px;}
.y1f_c00228{bottom:659.706939px;}
.y1e_c00228{bottom:686.248529px;}
.y1d_c00228{bottom:704.059372px;}
.y1c_c00228{bottom:722.050214px;}
.y1b_c00228{bottom:743.956806px;}
.y1a_c00228{bottom:770.498395px;}
.y19_c00228{bottom:786.348889px;}
.y18_c00228{bottom:804.162582px;}
.y17_c00228{bottom:822.154774px;}
.y16_c00228{bottom:838.008118px;}
.y15_c00228{bottom:859.918159px;}
.y14_c00228{bottom:886.456899px;}
.y13_c00228{bottom:908.363490px;}
.y12_c00228{bottom:934.905079px;}
.y11_c00228{bottom:952.897422px;}
.y10_c00228{bottom:968.572116px;}
.yf_c00228{bottom:986.560259px;}
.ye_c00228{bottom:1002.414952px;}
.yd_c00228{bottom:1020.224445px;}
.yc_c00228{bottom:1036.081239px;}
.yb_c00228{bottom:1057.989180px;}
.ya_c00228{bottom:1084.530619px;}
.y9_c00228{bottom:1100.382613px;}
.y8_c00228{bottom:1122.291904px;}
.y5_c00228{bottom:1165.462200px;}
.y4_c00228{bottom:1168.185095px;}
.y3_c00228{bottom:1193.301085px;}
.y2_c00228{bottom:1215.565576px;}
.h5_c00228{height:14.247000px;}
.h7_c00228{height:14.248980px;}
.h4_c00228{height:45.374009px;}
.h3_c00228{height:46.891535px;}
.h2_c00228{height:62.523529px;}
.h6_c00228{height:1249.830756px;}
.h1_c00228{height:1262.879062px;}
.h0_c00228{height:1263.000000px;}
.w5_c00228{width:39.900600px;}
.w2_c00228{width:44.353800px;}
.w3_c00228{width:57.889800px;}
.w4_c00228{width:883.195846px;}
.w1_c00228{width:892.414744px;}
.w0_c00228{width:892.500000px;}
.x0_c00228{left:0.000000px;}
.x5_c00228{left:1.541954px;}
.x7_c00228{left:106.166105px;}
.x2_c00228{left:107.691951px;}
.x1_c00228{left:111.965599px;}
.x8_c00228{left:350.375580px;}
.x6_c00228{left:476.839355px;}
.xb_c00228{left:585.146587px;}
.x3_c00228{left:587.748600px;}
.x9_c00228{left:592.620080px;}
.xa_c00228{left:599.923734px;}
.x4_c00228{left:655.255800px;}
.xc_c00228{left:794.194200px;}
.xd_c00228{left:855.278002px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws1_c00228{word-spacing:-12.499913pt;}
.ws7_c00228{word-spacing:0.000000pt;}
.ws0_c00228{word-spacing:18.318847pt;}
.ws5_c00228{word-spacing:108.389532pt;}
.ws2_c00228{word-spacing:145.813282pt;}
.ws3_c00228{word-spacing:145.813732pt;}
.ws4_c00228{word-spacing:172.454733pt;}
.ws6_c00228{word-spacing:198.459948pt;}
._7_c00228{margin-left:-5.169343pt;}
._c_c00228{margin-left:-3.865911pt;}
._2_c00228{margin-left:-2.882524pt;}
._0_c00228{margin-left:-1.737589pt;}
._1_c00228{width:1.550703pt;}
._3_c00228{width:2.563538pt;}
._6_c00228{width:3.792624pt;}
._10_c00228{width:4.745363pt;}
._1a_c00228{width:16.500288pt;}
._b_c00228{width:17.996012pt;}
._11_c00228{width:21.682224pt;}
._f_c00228{width:24.186934pt;}
._2f_c00228{width:25.614069pt;}
._5_c00228{width:72.191755pt;}
._21_c00228{width:74.162875pt;}
._24_c00228{width:76.972179pt;}
._23_c00228{width:81.395588pt;}
._1e_c00228{width:82.666322pt;}
._a_c00228{width:90.732848pt;}
._12_c00228{width:101.081361pt;}
._25_c00228{width:104.143843pt;}
._2e_c00228{width:106.495243pt;}
._1d_c00228{width:107.647796pt;}
._8_c00228{width:110.755819pt;}
._1f_c00228{width:120.769363pt;}
._27_c00228{width:126.371872pt;}
._29_c00228{width:128.774028pt;}
._2b_c00228{width:130.136030pt;}
._1b_c00228{width:133.870162pt;}
._d_c00228{width:148.179569pt;}
._22_c00228{width:158.192681pt;}
._13_c00228{width:159.115844pt;}
._16_c00228{width:174.820710pt;}
._15_c00228{width:185.684908pt;}
._2a_c00228{width:211.161126pt;}
._19_c00228{width:254.100670pt;}
._2c_c00228{width:284.139172pt;}
._1c_c00228{width:288.173581pt;}
._26_c00228{width:292.032733pt;}
._17_c00228{width:305.706666pt;}
._30_c00228{width:308.980662pt;}
._14_c00228{width:310.154823pt;}
._2d_c00228{width:313.160181pt;}
._18_c00228{width:314.180593pt;}
._20_c00228{width:315.916438pt;}
._28_c00228{width:318.039746pt;}
._e_c00228{width:321.447411pt;}
._9_c00228{width:347.453156pt;}
._4_c00228{width:372.740093pt;}
.fs1_c00228{font-size:44.963715pt;}
.fs0_c00228{font-size:59.953043pt;}
.y0_c00228{bottom:0.000000pt;}
.y1_c00228{bottom:0.107500pt;}
.y6_c00228{bottom:2.527851pt;}
.y3f_c00228{bottom:2.533145pt;}
.y7_c00228{bottom:6.068128pt;}
.y3e_c00228{bottom:67.290560pt;}
.y3d_c00228{bottom:67.552243pt;}
.y40_c00228{bottom:69.716205pt;}
.y3c_c00228{bottom:105.868494pt;}
.y3b_c00228{bottom:129.458484pt;}
.y3a_c00228{bottom:145.292878pt;}
.y39_c00228{bottom:161.285938pt;}
.y38_c00228{bottom:177.118999pt;}
.y37_c00228{bottom:191.209660pt;}
.y36_c00228{bottom:207.202720pt;}
.y35_c00228{bottom:223.033380pt;}
.y34_c00228{bottom:239.023374pt;}
.y33_c00228{bottom:254.859634pt;}
.y32_c00228{bottom:270.850295pt;}
.y31_c00228{bottom:286.841488pt;}
.y30_c00228{bottom:302.676415pt;}
.y2f_c00228{bottom:318.668275pt;}
.y2e_c00228{bottom:334.499469pt;}
.y2d_c00228{bottom:350.490129pt;}
.y2c_c00228{bottom:366.323190pt;}
.y2b_c00228{bottom:382.316250pt;}
.y2a_c00228{bottom:398.306910pt;}
.y29_c00228{bottom:414.139971pt;}
.y28_c00228{bottom:430.133031pt;}
.y27_c00228{bottom:445.966091pt;}
.y26_c00228{bottom:461.956751pt;}
.y25_c00228{bottom:481.431144pt;}
.y24_c00228{bottom:505.023001pt;}
.y23_c00228{bottom:521.013661pt;}
.y22_c00228{bottom:536.848055pt;}
.y21_c00228{bottom:550.940583pt;}
.y20_c00228{bottom:566.930576pt;}
.y1f_c00228{bottom:586.406168pt;}
.y1e_c00228{bottom:609.998692pt;}
.y1d_c00228{bottom:625.830553pt;}
.y1c_c00228{bottom:641.822413pt;}
.y1b_c00228{bottom:661.294938pt;}
.y1a_c00228{bottom:684.887462pt;}
.y19_c00228{bottom:698.976790pt;}
.y18_c00228{bottom:714.811184pt;}
.y17_c00228{bottom:730.804244pt;}
.y16_c00228{bottom:744.896105pt;}
.y15_c00228{bottom:764.371697pt;}
.y14_c00228{bottom:787.961688pt;}
.y13_c00228{bottom:807.434213pt;}
.y12_c00228{bottom:831.026737pt;}
.y11_c00228{bottom:847.019931pt;}
.y10_c00228{bottom:860.952992pt;}
.yf_c00228{bottom:876.942452pt;}
.ye_c00228{bottom:891.035513pt;}
.yd_c00228{bottom:906.866173pt;}
.yc_c00228{bottom:920.961101pt;}
.yb_c00228{bottom:940.434827pt;}
.ya_c00228{bottom:964.027217pt;}
.y9_c00228{bottom:978.117878pt;}
.y8_c00228{bottom:997.592804pt;}
.y5_c00228{bottom:1035.966400pt;}
.y4_c00228{bottom:1038.386751pt;}
.y3_c00228{bottom:1060.712076pt;}
.y2_c00228{bottom:1080.502734pt;}
.h5_c00228{height:12.664000pt;}
.h7_c00228{height:12.665760pt;}
.h4_c00228{height:40.332453pt;}
.h3_c00228{height:41.681364pt;}
.h2_c00228{height:55.576471pt;}
.h6_c00228{height:1110.960672pt;}
.h1_c00228{height:1122.559167pt;}
.h0_c00228{height:1122.666667pt;}
.w5_c00228{width:35.467200pt;}
.w2_c00228{width:39.425600pt;}
.w3_c00228{width:51.457600pt;}
.w4_c00228{width:785.062974pt;}
.w1_c00228{width:793.257550pt;}
.w0_c00228{width:793.333333pt;}
.x0_c00228{left:0.000000pt;}
.x5_c00228{left:1.370626pt;}
.x7_c00228{left:94.369871pt;}
.x2_c00228{left:95.726178pt;}
.x1_c00228{left:99.524977pt;}
.x8_c00228{left:311.444960pt;}
.x6_c00228{left:423.857204pt;}
.xb_c00228{left:520.130300pt;}
.x3_c00228{left:522.443200pt;}
.x9_c00228{left:526.773404pt;}
.xa_c00228{left:533.265541pt;}
.x4_c00228{left:582.449600pt;}
.xc_c00228{left:705.950400pt;}
.xd_c00228{left:760.247113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.107000;font-style: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.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00229{word-spacing:-14.062402px;}
.ws6_c00229{word-spacing:0.000000px;}
.ws0_c00229{word-spacing:20.608703px;}
.ws2_c00229{word-spacing:92.682863px;}
.ws4_c00229{word-spacing:121.938224px;}
.ws5_c00229{word-spacing:164.039942px;}
.ws3_c00229{word-spacing:164.040448px;}
._d_c00229{margin-left:-5.815511px;}
._7_c00229{margin-left:-4.613357px;}
._2_c00229{margin-left:-3.242840px;}
._0_c00229{margin-left:-1.954788px;}
._1_c00229{width:1.744541px;}
._3_c00229{width:2.883980px;}
._6_c00229{width:4.266702px;}
._17_c00229{width:9.223241px;}
._2e_c00229{width:18.779043px;}
._1b_c00229{width:20.196979px;}
._22_c00229{width:23.136941px;}
._a_c00229{width:26.797574px;}
._10_c00229{width:28.751628px;}
._5_c00229{width:81.215725px;}
._29_c00229{width:83.384540px;}
._26_c00229{width:87.340199px;}
._2c_c00229{width:91.560913px;}
._11_c00229{width:95.539232px;}
._9_c00229{width:102.595284px;}
._15_c00229{width:106.970146px;}
._1c_c00229{width:113.113048px;}
._b_c00229{width:115.538202px;}
._1f_c00229{width:121.391166px;}
._e_c00229{width:124.797283px;}
._c_c00229{width:136.903434px;}
._2b_c00229{width:144.921691px;}
._23_c00229{width:146.469846px;}
._14_c00229{width:150.853028px;}
._19_c00229{width:166.702349px;}
._2d_c00229{width:177.967752px;}
._1d_c00229{width:179.004823px;}
._2f_c00229{width:196.464101px;}
._27_c00229{width:207.939233px;}
._20_c00229{width:208.977113px;}
._25_c00229{width:225.720807px;}
._24_c00229{width:237.557102px;}
._13_c00229{width:247.422604px;}
._8_c00229{width:297.675227px;}
._12_c00229{width:314.748980px;}
._1a_c00229{width:318.595190px;}
._2a_c00229{width:322.984059px;}
._28_c00229{width:344.004045px;}
._1e_c00229{width:347.852493px;}
._f_c00229{width:352.481280px;}
._21_c00229{width:353.536346px;}
._16_c00229{width:370.539099px;}
._18_c00229{width:373.432929px;}
._4_c00229{width:419.332605px;}
.fc0_c00229{color:rgb(35,31,32);}
.fs1_c00229{font-size:50.584180px;}
.fs0_c00229{font-size:67.447173px;}
.y0_c00229{bottom:0.000000px;}
.y1_c00229{bottom:0.120938px;}
.y6_c00229{bottom:2.843833px;}
.y29_c00229{bottom:2.849789px;}
.y7_c00229{bottom:6.826644px;}
.y28_c00229{bottom:75.701880px;}
.y27_c00229{bottom:75.997023px;}
.y2a_c00229{bottom:78.430731px;}
.y26_c00229{bottom:494.231356px;}
.y25_c00229{bottom:520.770095px;}
.y24_c00229{bottom:542.678036px;}
.y23_c00229{bottom:569.220976px;}
.y22_c00229{bottom:587.210468px;}
.y21_c00229{bottom:605.025511px;}
.y20_c00229{bottom:623.010804px;}
.y1f_c00229{bottom:644.922345px;}
.y1e_c00229{bottom:671.460335px;}
.y1d_c00229{bottom:693.373226px;}
.y1c_c00229{bottom:719.911965px;}
.y1b_c00229{bottom:737.901458px;}
.y1a_c00229{bottom:755.715151px;}
.y19_c00229{bottom:773.705994px;}
.y18_c00229{bottom:795.611085px;}
.y17_c00229{bottom:822.154174px;}
.y16_c00229{bottom:838.008868px;}
.y15_c00229{bottom:859.918909px;}
.y14_c00229{bottom:886.458999px;}
.y13_c00229{bottom:902.312342px;}
.y12_c00229{bottom:924.218934px;}
.y11_c00229{bottom:950.760373px;}
.y10_c00229{bottom:966.434467px;}
.yf_c00229{bottom:984.423209px;}
.ye_c00229{bottom:1002.414202px;}
.yd_c00229{bottom:1018.090996px;}
.yc_c00229{bottom:1040.177587px;}
.yb_c00229{bottom:1066.719177px;}
.ya_c00229{bottom:1082.392520px;}
.y9_c00229{bottom:1104.482561px;}
.y8_c00229{bottom:1130.843401px;}
.y5_c00229{bottom:1165.462200px;}
.y4_c00229{bottom:1168.185095px;}
.y3_c00229{bottom:1193.301085px;}
.y2_c00229{bottom:1215.565576px;}
.h5_c00229{height:14.247000px;}
.h7_c00229{height:14.248980px;}
.h4_c00229{height:45.374009px;}
.h3_c00229{height:46.891535px;}
.h2_c00229{height:62.523529px;}
.h6_c00229{height:1249.830756px;}
.h1_c00229{height:1262.879062px;}
.h0_c00229{height:1263.000000px;}
.w5_c00229{width:39.900600px;}
.w2_c00229{width:44.353800px;}
.w3_c00229{width:57.889800px;}
.w4_c00229{width:883.195846px;}
.w1_c00229{width:892.414744px;}
.w0_c00229{width:892.500000px;}
.x0_c00229{left:0.000000px;}
.x5_c00229{left:1.541954px;}
.x6_c00229{left:106.162653px;}
.x2_c00229{left:107.691951px;}
.x1_c00229{left:111.965599px;}
.x8_c00229{left:350.373775px;}
.x7_c00229{left:476.837550px;}
.x9_c00229{left:574.629474px;}
.xc_c00229{left:585.150474px;}
.x3_c00229{left:587.748600px;}
.xa_c00229{left:592.618125px;}
.xb_c00229{left:599.925374px;}
.x4_c00229{left:655.255800px;}
.xd_c00229{left:794.194200px;}
.xe_c00229{left:855.278002px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws1_c00229{word-spacing:-12.499913pt;}
.ws6_c00229{word-spacing:0.000000pt;}
.ws0_c00229{word-spacing:18.318847pt;}
.ws2_c00229{word-spacing:82.384767pt;}
.ws4_c00229{word-spacing:108.389532pt;}
.ws5_c00229{word-spacing:145.813282pt;}
.ws3_c00229{word-spacing:145.813732pt;}
._d_c00229{margin-left:-5.169343pt;}
._7_c00229{margin-left:-4.100761pt;}
._2_c00229{margin-left:-2.882524pt;}
._0_c00229{margin-left:-1.737589pt;}
._1_c00229{width:1.550703pt;}
._3_c00229{width:2.563538pt;}
._6_c00229{width:3.792624pt;}
._17_c00229{width:8.198436pt;}
._2e_c00229{width:16.692482pt;}
._1b_c00229{width:17.952870pt;}
._22_c00229{width:20.566170pt;}
._a_c00229{width:23.820066pt;}
._10_c00229{width:25.557003pt;}
._5_c00229{width:72.191755pt;}
._29_c00229{width:74.119591pt;}
._26_c00229{width:77.635732pt;}
._2c_c00229{width:81.387478pt;}
._11_c00229{width:84.923761pt;}
._9_c00229{width:91.195808pt;}
._15_c00229{width:95.084575pt;}
._1c_c00229{width:100.544932pt;}
._b_c00229{width:102.700624pt;}
._1f_c00229{width:107.903259pt;}
._e_c00229{width:110.930918pt;}
._c_c00229{width:121.691941pt;}
._2b_c00229{width:128.819281pt;}
._23_c00229{width:130.195418pt;}
._14_c00229{width:134.091580pt;}
._19_c00229{width:148.179866pt;}
._2d_c00229{width:158.193558pt;}
._1d_c00229{width:159.115399pt;}
._2f_c00229{width:174.634757pt;}
._27_c00229{width:184.834874pt;}
._20_c00229{width:185.757434pt;}
._25_c00229{width:200.640717pt;}
._24_c00229{width:211.161868pt;}
._13_c00229{width:219.931203pt;}
._8_c00229{width:264.600202pt;}
._12_c00229{width:279.776872pt;}
._1a_c00229{width:283.195725pt;}
._2a_c00229{width:287.096941pt;}
._28_c00229{width:305.781373pt;}
._1e_c00229{width:309.202216pt;}
._f_c00229{width:313.316693pt;}
._21_c00229{width:314.254530pt;}
._16_c00229{width:329.368088pt;}
._18_c00229{width:331.940382pt;}
._4_c00229{width:372.740093pt;}
.fs1_c00229{font-size:44.963715pt;}
.fs0_c00229{font-size:59.953043pt;}
.y0_c00229{bottom:0.000000pt;}
.y1_c00229{bottom:0.107500pt;}
.y6_c00229{bottom:2.527851pt;}
.y29_c00229{bottom:2.533145pt;}
.y7_c00229{bottom:6.068128pt;}
.y28_c00229{bottom:67.290560pt;}
.y27_c00229{bottom:67.552909pt;}
.y2a_c00229{bottom:69.716205pt;}
.y26_c00229{bottom:439.316761pt;}
.y25_c00229{bottom:462.906751pt;}
.y24_c00229{bottom:482.380477pt;}
.y23_c00229{bottom:505.974201pt;}
.y22_c00229{bottom:521.964861pt;}
.y21_c00229{bottom:537.800454pt;}
.y20_c00229{bottom:553.787381pt;}
.y1f_c00229{bottom:573.264307pt;}
.y1e_c00229{bottom:596.853631pt;}
.y1d_c00229{bottom:616.331756pt;}
.y1c_c00229{bottom:639.921747pt;}
.y1b_c00229{bottom:655.912407pt;}
.y1a_c00229{bottom:671.746801pt;}
.y19_c00229{bottom:687.738661pt;}
.y18_c00229{bottom:707.209853pt;}
.y17_c00229{bottom:730.803711pt;}
.y16_c00229{bottom:744.896772pt;}
.y15_c00229{bottom:764.372364pt;}
.y14_c00229{bottom:787.963554pt;}
.y13_c00229{bottom:802.055415pt;}
.y12_c00229{bottom:821.527941pt;}
.y11_c00229{bottom:845.120332pt;}
.y10_c00229{bottom:859.052859pt;}
.yf_c00229{bottom:875.042853pt;}
.ye_c00229{bottom:891.034846pt;}
.yd_c00229{bottom:904.969774pt;}
.yc_c00229{bottom:924.602300pt;}
.yb_c00229{bottom:948.194824pt;}
.ya_c00229{bottom:962.126685pt;}
.y9_c00229{bottom:981.762277pt;}
.y8_c00229{bottom:1005.194134pt;}
.y5_c00229{bottom:1035.966400pt;}
.y4_c00229{bottom:1038.386751pt;}
.y3_c00229{bottom:1060.712076pt;}
.y2_c00229{bottom:1080.502734pt;}
.h5_c00229{height:12.664000pt;}
.h7_c00229{height:12.665760pt;}
.h4_c00229{height:40.332453pt;}
.h3_c00229{height:41.681364pt;}
.h2_c00229{height:55.576471pt;}
.h6_c00229{height:1110.960672pt;}
.h1_c00229{height:1122.559167pt;}
.h0_c00229{height:1122.666667pt;}
.w5_c00229{width:35.467200pt;}
.w2_c00229{width:39.425600pt;}
.w3_c00229{width:51.457600pt;}
.w4_c00229{width:785.062974pt;}
.w1_c00229{width:793.257550pt;}
.w0_c00229{width:793.333333pt;}
.x0_c00229{left:0.000000pt;}
.x5_c00229{left:1.370626pt;}
.x6_c00229{left:94.366803pt;}
.x2_c00229{left:95.726178pt;}
.x1_c00229{left:99.524977pt;}
.x8_c00229{left:311.443356pt;}
.x7_c00229{left:423.855600pt;}
.x9_c00229{left:510.781754pt;}
.xc_c00229{left:520.133754pt;}
.x3_c00229{left:522.443200pt;}
.xa_c00229{left:526.771667pt;}
.xb_c00229{left:533.266999pt;}
.x4_c00229{left:582.449600pt;}
.xd_c00229{left:705.950400pt;}
.xe_c00229{left:760.247113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls0_c00230{letter-spacing:0.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:0.000000px;}
._1_c00230{margin-left:-1.629237px;}
._0_c00230{width:1.388451px;}
.fc0_c00230{color:rgb(35,31,32);}
.fs0_c00230{font-size:71.249972px;}
.y0_c00230{bottom:0.000000px;}
.y1_c00230{bottom:0.120938px;}
.y2_c00230{bottom:467.808375px;}
.h2_c00230{height:63.839974px;}
.h1_c00230{height:1262.879062px;}
.h0_c00230{height:1263.000000px;}
.w1_c00230{width:892.414744px;}
.w0_c00230{width:892.500000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:429.027672px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:0.000000pt;}
._1_c00230{margin-left:-1.448211pt;}
._0_c00230{width:1.234179pt;}
.fs0_c00230{font-size:63.333308pt;}
.y0_c00230{bottom:0.000000pt;}
.y1_c00230{bottom:0.107500pt;}
.y2_c00230{bottom:415.829667pt;}
.h2_c00230{height:56.746644pt;}
.h1_c00230{height:1122.559167pt;}
.h0_c00230{height:1122.666667pt;}
.w1_c00230{width:793.257550pt;}
.w0_c00230{width:793.333333pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:381.357931pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.107000;font-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_c00231{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00231{word-spacing:-15.234605px;}
.ws2_c00231{word-spacing:-14.062402px;}
.ws3_c00231{word-spacing:0.000000px;}
.ws0_c00231{word-spacing:4.190849px;}
._1d_c00231{margin-left:-1190.345798px;}
._20_c00231{margin-left:-1185.937295px;}
._25_c00231{margin-left:-1132.403277px;}
._14_c00231{margin-left:-1106.783419px;}
._22_c00231{margin-left:-1039.736058px;}
._10_c00231{margin-left:-976.150622px;}
._17_c00231{margin-left:-934.464670px;}
._16_c00231{margin-left:-19.763857px;}
._24_c00231{margin-left:-14.712060px;}
._1c_c00231{margin-left:-11.020621px;}
._d_c00231{margin-left:-6.998006px;}
._c_c00231{margin-left:-4.707627px;}
._1_c00231{margin-left:-2.891340px;}
._2_c00231{margin-left:-1.096806px;}
._0_c00231{width:1.389554px;}
._3_c00231{width:2.543831px;}
._6_c00231{width:3.601428px;}
._9_c00231{width:5.196653px;}
._21_c00231{width:6.317233px;}
._4_c00231{width:26.867520px;}
._b_c00231{width:56.673686px;}
._e_c00231{width:64.674837px;}
._f_c00231{width:98.879295px;}
._5_c00231{width:102.964944px;}
._13_c00231{width:116.238650px;}
._a_c00231{width:196.397973px;}
._1a_c00231{width:200.686529px;}
._8_c00231{width:236.330499px;}
._1e_c00231{width:341.028817px;}
._12_c00231{width:342.707776px;}
._1f_c00231{width:343.838520px;}
._19_c00231{width:373.610738px;}
._15_c00231{width:453.250928px;}
._26_c00231{width:457.705600px;}
._23_c00231{width:520.719726px;}
._1b_c00231{width:584.011800px;}
._11_c00231{width:585.395257px;}
._18_c00231{width:656.017941px;}
._7_c00231{width:1284.311781px;}
.fc0_c00231{color:rgb(35,31,32);}
.fs1_c00231{font-size:50.584180px;}
.fs2_c00231{font-size:54.800738px;}
.fs0_c00231{font-size:80.090968px;}
.y0_c00231{bottom:0.000000px;}
.y37_c00231{bottom:0.120938px;}
.y36_c00231{bottom:2.846846px;}
.y1_c00231{bottom:6.826644px;}
.y34_c00231{bottom:80.273071px;}
.y35_c00231{bottom:81.045720px;}
.y38_c00231{bottom:83.771629px;}
.y33_c00231{bottom:146.536295px;}
.y32_c00231{bottom:162.388288px;}
.y31_c00231{bottom:189.640277px;}
.y30_c00231{bottom:190.709777px;}
.y2f_c00231{bottom:222.415714px;}
.y2e_c00231{bottom:241.474557px;}
.y2d_c00231{bottom:260.356249px;}
.y2c_c00231{bottom:279.415092px;}
.y2b_c00231{bottom:298.298134px;}
.y2a_c00231{bottom:324.659723px;}
.y29_c00231{bottom:340.511717px;}
.y28_c00231{bottom:361.349709px;}
.y27_c00231{bottom:388.961698px;}
.y26_c00231{bottom:416.215187px;}
.y25_c00231{bottom:417.286186px;}
.y24_c00231{bottom:448.991224px;}
.y23_c00231{bottom:468.046616px;}
.y22_c00231{bottom:486.928308px;}
.y21_c00231{bottom:505.990001px;}
.y20_c00231{bottom:524.868843px;}
.y1f_c00231{bottom:551.231783px;}
.y1e_c00231{bottom:567.085126px;}
.y1d_c00231{bottom:587.923118px;}
.y1c_c00231{bottom:615.533607px;}
.y1b_c00231{bottom:642.788596px;}
.y1a_c00231{bottom:643.855096px;}
.y19_c00231{bottom:675.737733px;}
.y18_c00231{bottom:694.620775px;}
.y17_c00231{bottom:713.678268px;}
.y16_c00231{bottom:739.864057px;}
.y15_c00231{bottom:760.883549px;}
.y14_c00231{bottom:788.492538px;}
.y13_c00231{bottom:815.564527px;}
.y12_c00231{bottom:816.634027px;}
.y11_c00231{bottom:848.518014px;}
.y10_c00231{bottom:867.399706px;}
.yf_c00231{bottom:886.457199px;}
.ye_c00231{bottom:912.821488px;}
.yd_c00231{bottom:933.663980px;}
.yc_c00231{bottom:961.269969px;}
.yb_c00231{bottom:988.523458px;}
.ya_c00231{bottom:989.589957px;}
.y9_c00231{bottom:1021.295445px;}
.y8_c00231{bottom:1040.354287px;}
.y7_c00231{bottom:1059.237330px;}
.y6_c00231{bottom:1085.598919px;}
.y5_c00231{bottom:1106.441411px;}
.y4_c00231{bottom:1138.322398px;}
.y3_c00231{bottom:1186.595379px;}
.y2_c00231{bottom:1210.286369px;}
.h6_c00231{height:14.250240px;}
.h4_c00231{height:45.374009px;}
.h3_c00231{height:46.891535px;}
.h5_c00231{height:50.800284px;}
.h2_c00231{height:74.244327px;}
.h1_c00231{height:1249.830756px;}
.h7_c00231{height:1262.879062px;}
.h0_c00231{height:1263.000000px;}
.w2_c00231{width:40.080600px;}
.w1_c00231{width:883.195846px;}
.w3_c00231{width:892.414744px;}
.w0_c00231{width:892.500000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:1.541954px;}
.x2_c00231{left:106.162653px;}
.x6_c00231{left:110.436301px;}
.x3_c00231{left:253.649944px;}
.x4_c00231{left:392.582889px;}
.x7_c00231{left:761.125241px;}
.x5_c00231{left:768.422738px;}
.x8_c00231{left:792.054000px;}
.x9_c00231{left:852.068003px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws1_c00231{word-spacing:-13.541871pt;}
.ws2_c00231{word-spacing:-12.499913pt;}
.ws3_c00231{word-spacing:0.000000pt;}
.ws0_c00231{word-spacing:3.725199pt;}
._1d_c00231{margin-left:-1058.085153pt;}
._20_c00231{margin-left:-1054.166484pt;}
._25_c00231{margin-left:-1006.580691pt;}
._14_c00231{margin-left:-983.807484pt;}
._22_c00231{margin-left:-924.209829pt;}
._10_c00231{margin-left:-867.689442pt;}
._17_c00231{margin-left:-830.635262pt;}
._16_c00231{margin-left:-17.567873pt;}
._24_c00231{margin-left:-13.077387pt;}
._1c_c00231{margin-left:-9.796107pt;}
._d_c00231{margin-left:-6.220450pt;}
._c_c00231{margin-left:-4.184558pt;}
._1_c00231{margin-left:-2.570080pt;}
._2_c00231{margin-left:-0.974938pt;}
._0_c00231{width:1.235159pt;}
._3_c00231{width:2.261184pt;}
._6_c00231{width:3.201269pt;}
._9_c00231{width:4.619247pt;}
._21_c00231{width:5.615318pt;}
._4_c00231{width:23.882240pt;}
._b_c00231{width:50.376610pt;}
._e_c00231{width:57.488744pt;}
._f_c00231{width:87.892707pt;}
._5_c00231{width:91.524395pt;}
._13_c00231{width:103.323245pt;}
._a_c00231{width:174.575976pt;}
._1a_c00231{width:178.388026pt;}
._8_c00231{width:210.071554pt;}
._1e_c00231{width:303.136726pt;}
._12_c00231{width:304.629134pt;}
._1f_c00231{width:305.634240pt;}
._19_c00231{width:332.098434pt;}
._15_c00231{width:402.889714pt;}
._26_c00231{width:406.849423pt;}
._23_c00231{width:462.861979pt;}
._1b_c00231{width:519.121600pt;}
._11_c00231{width:520.351339pt;}
._18_c00231{width:583.127059pt;}
._7_c00231{width:1141.610472pt;}
.fs1_c00231{font-size:44.963715pt;}
.fs2_c00231{font-size:48.711767pt;}
.fs0_c00231{font-size:71.191972pt;}
.y0_c00231{bottom:0.000000pt;}
.y37_c00231{bottom:0.107500pt;}
.y36_c00231{bottom:2.530530pt;}
.y1_c00231{bottom:6.068128pt;}
.y34_c00231{bottom:71.353841pt;}
.y35_c00231{bottom:72.040640pt;}
.y38_c00231{bottom:74.463670pt;}
.y33_c00231{bottom:130.254484pt;}
.y32_c00231{bottom:144.345145pt;}
.y31_c00231{bottom:168.569135pt;}
.y30_c00231{bottom:169.519802pt;}
.y2f_c00231{bottom:197.702857pt;}
.y2e_c00231{bottom:214.644050pt;}
.y2d_c00231{bottom:231.427777pt;}
.y2c_c00231{bottom:248.368970pt;}
.y2b_c00231{bottom:265.153897pt;}
.y2a_c00231{bottom:288.586421pt;}
.y29_c00231{bottom:302.677082pt;}
.y28_c00231{bottom:321.199741pt;}
.y27_c00231{bottom:345.743731pt;}
.y26_c00231{bottom:369.969055pt;}
.y25_c00231{bottom:370.921055pt;}
.y24_c00231{bottom:399.103310pt;}
.y23_c00231{bottom:416.041436pt;}
.y22_c00231{bottom:432.825163pt;}
.y21_c00231{bottom:449.768890pt;}
.y20_c00231{bottom:466.550083pt;}
.y1f_c00231{bottom:489.983807pt;}
.y1e_c00231{bottom:504.075668pt;}
.y1d_c00231{bottom:522.598327pt;}
.y1c_c00231{bottom:547.140984pt;}
.y1b_c00231{bottom:571.367641pt;}
.y1a_c00231{bottom:572.315641pt;}
.y19_c00231{bottom:600.655763pt;}
.y18_c00231{bottom:617.440689pt;}
.y17_c00231{bottom:634.380682pt;}
.y16_c00231{bottom:657.656940pt;}
.y15_c00231{bottom:676.340932pt;}
.y14_c00231{bottom:700.882256pt;}
.y13_c00231{bottom:724.946246pt;}
.y12_c00231{bottom:725.896913pt;}
.y11_c00231{bottom:754.238235pt;}
.y10_c00231{bottom:771.021961pt;}
.yf_c00231{bottom:787.961954pt;}
.ye_c00231{bottom:811.396878pt;}
.yd_c00231{bottom:829.923538pt;}
.yc_c00231{bottom:854.462194pt;}
.yb_c00231{bottom:878.687518pt;}
.ya_c00231{bottom:879.635518pt;}
.y9_c00231{bottom:907.818173pt;}
.y8_c00231{bottom:924.759366pt;}
.y7_c00231{bottom:941.544293pt;}
.y6_c00231{bottom:964.976817pt;}
.y5_c00231{bottom:983.503476pt;}
.y4_c00231{bottom:1011.842132pt;}
.y3_c00231{bottom:1054.751448pt;}
.y2_c00231{bottom:1075.810106pt;}
.h6_c00231{height:12.666880pt;}
.h4_c00231{height:40.332453pt;}
.h3_c00231{height:41.681364pt;}
.h5_c00231{height:45.155808pt;}
.h2_c00231{height:65.994958pt;}
.h1_c00231{height:1110.960672pt;}
.h7_c00231{height:1122.559167pt;}
.h0_c00231{height:1122.666667pt;}
.w2_c00231{width:35.627200pt;}
.w1_c00231{width:785.062974pt;}
.w3_c00231{width:793.257550pt;}
.w0_c00231{width:793.333333pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:1.370626pt;}
.x2_c00231{left:94.366803pt;}
.x6_c00231{left:98.165601pt;}
.x3_c00231{left:225.466617pt;}
.x4_c00231{left:348.962568pt;}
.x7_c00231{left:676.555770pt;}
.x5_c00231{left:683.042434pt;}
.x8_c00231{left:704.048000pt;}
.x9_c00231{left:757.393780pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.107000;font-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_c00232{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls0_c00232{letter-spacing:0.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;}
}
.ws1_c00232{word-spacing:-15.234605px;}
.ws2_c00232{word-spacing:-14.062402px;}
.ws3_c00232{word-spacing:0.000000px;}
.ws0_c00232{word-spacing:4.190849px;}
._15_c00232{margin-left:-1185.899244px;}
._32_c00232{margin-left:-1139.724779px;}
._2b_c00232{margin-left:-1135.418158px;}
._1e_c00232{margin-left:-1132.808793px;}
._37_c00232{margin-left:-1106.776669px;}
._29_c00232{margin-left:-1086.023431px;}
._17_c00232{margin-left:-1069.531556px;}
._40_c00232{margin-left:-1060.809582px;}
._24_c00232{margin-left:-1055.099174px;}
._22_c00232{margin-left:-1039.843811px;}
._35_c00232{margin-left:-1000.563229px;}
._10_c00232{margin-left:-976.152145px;}
._2d_c00232{margin-left:-974.960886px;}
._2e_c00232{margin-left:-958.098864px;}
._1a_c00232{margin-left:-934.426288px;}
._3b_c00232{margin-left:-921.503335px;}
._39_c00232{margin-left:-912.009788px;}
._19_c00232{margin-left:-19.763857px;}
._1d_c00232{margin-left:-15.095731px;}
._13_c00232{margin-left:-11.020631px;}
._d_c00232{margin-left:-5.992123px;}
._c_c00232{margin-left:-4.323956px;}
._1_c00232{margin-left:-2.891340px;}
._2_c00232{margin-left:-1.096806px;}
._0_c00232{width:1.389554px;}
._3_c00232{width:2.543831px;}
._6_c00232{width:3.601428px;}
._9_c00232{width:5.196653px;}
._4_c00232{width:26.867520px;}
._3e_c00232{width:43.682385px;}
._b_c00232{width:56.673686px;}
._27_c00232{width:61.128235px;}
._e_c00232{width:64.675677px;}
._30_c00232{width:65.905653px;}
._34_c00232{width:69.360542px;}
._31_c00232{width:74.029014px;}
._3f_c00232{width:82.731794px;}
._28_c00232{width:91.936152px;}
._f_c00232{width:98.879978px;}
._5_c00232{width:102.964944px;}
._14_c00232{width:116.125386px;}
._a_c00232{width:196.397973px;}
._26_c00232{width:200.225777px;}
._8_c00232{width:236.330499px;}
._12_c00232{width:342.707756px;}
._21_c00232{width:343.855430px;}
._1c_c00232{width:373.611087px;}
._16_c00232{width:374.843668px;}
._33_c00232{width:420.739913px;}
._2c_c00232{width:425.009955px;}
._1f_c00232{width:457.699600px;}
._2a_c00232{width:474.400602px;}
._38_c00232{width:483.644504px;}
._18_c00232{width:491.253129px;}
._41_c00232{width:499.650647px;}
._25_c00232{width:504.948770px;}
._23_c00232{width:520.741309px;}
._20_c00232{width:584.017800px;}
._11_c00232{width:585.395079px;}
._36_c00232{width:589.857240px;}
._2f_c00232{width:632.301311px;}
._3d_c00232{width:638.860981px;}
._3c_c00232{width:640.181374px;}
._3a_c00232{width:648.748346px;}
._1b_c00232{width:656.426424px;}
._7_c00232{width:1284.311781px;}
.fc0_c00232{color:rgb(35,31,32);}
.fs1_c00232{font-size:50.584180px;}
.fs2_c00232{font-size:54.800738px;}
.fs0_c00232{font-size:80.090968px;}
.y0_c00232{bottom:0.000000px;}
.y3b_c00232{bottom:0.120938px;}
.y3a_c00232{bottom:2.846846px;}
.y1_c00232{bottom:6.826644px;}
.y38_c00232{bottom:80.272921px;}
.y39_c00232{bottom:81.045720px;}
.y3c_c00232{bottom:83.771629px;}
.y37_c00232{bottom:107.706710px;}
.y36_c00232{bottom:134.780499px;}
.y35_c00232{bottom:135.847899px;}
.y34_c00232{bottom:167.728886px;}
.y33_c00232{bottom:186.611929px;}
.y32_c00232{bottom:205.670771px;}
.y31_c00232{bottom:224.553813px;}
.y30_c00232{bottom:243.609956px;}
.y2f_c00232{bottom:262.489548px;}
.y2e_c00232{bottom:281.551241px;}
.y2d_c00232{bottom:300.432933px;}
.y2c_c00232{bottom:319.491775px;}
.y2b_c00232{bottom:345.854715px;}
.y2a_c00232{bottom:366.694207px;}
.y29_c00232{bottom:394.306196px;}
.y28_c00232{bottom:421.553685px;}
.y27_c00232{bottom:422.623184px;}
.y26_c00232{bottom:454.328372px;}
.y25_c00232{bottom:473.390064px;}
.y24_c00232{bottom:492.271756px;}
.y23_c00232{bottom:518.631846px;}
.y22_c00232{bottom:534.483839px;}
.y21_c00232{bottom:550.160033px;}
.y20_c00232{bottom:566.014127px;}
.y1f_c00232{bottom:586.855119px;}
.y1e_c00232{bottom:614.465757px;}
.y1d_c00232{bottom:630.319101px;}
.y1c_c00232{bottom:657.569590px;}
.y1b_c00232{bottom:658.639090px;}
.y1a_c00232{bottom:690.345027px;}
.y19_c00232{bottom:709.403870px;}
.y18_c00232{bottom:728.285562px;}
.y17_c00232{bottom:747.345904px;}
.y16_c00232{bottom:766.224747px;}
.y15_c00232{bottom:785.282989px;}
.y14_c00232{bottom:811.649529px;}
.y13_c00232{bottom:827.501522px;}
.y12_c00232{bottom:848.338014px;}
.y11_c00232{bottom:875.948803px;}
.y10_c00232{bottom:891.623497px;}
.yf_c00232{bottom:918.878486px;}
.ye_c00232{bottom:919.946485px;}
.yd_c00232{bottom:951.826723px;}
.yc_c00232{bottom:970.709765px;}
.yb_c00232{bottom:989.768607px;}
.ya_c00232{bottom:1008.648950px;}
.y9_c00232{bottom:1027.705692px;}
.y8_c00232{bottom:1054.068632px;}
.y7_c00232{bottom:1069.746925px;}
.y6_c00232{bottom:1085.598919px;}
.y5_c00232{bottom:1106.441411px;}
.y4_c00232{bottom:1138.322398px;}
.y3_c00232{bottom:1186.595379px;}
.y2_c00232{bottom:1210.286369px;}
.h6_c00232{height:14.250240px;}
.h4_c00232{height:45.374009px;}
.h3_c00232{height:46.891535px;}
.h5_c00232{height:50.800284px;}
.h2_c00232{height:74.244327px;}
.h1_c00232{height:1249.830756px;}
.h7_c00232{height:1262.879062px;}
.h0_c00232{height:1263.000000px;}
.w2_c00232{width:40.080600px;}
.w1_c00232{width:883.195846px;}
.w3_c00232{width:892.414744px;}
.w0_c00232{width:892.500000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:1.541954px;}
.x2_c00232{left:106.162653px;}
.x6_c00232{left:110.436301px;}
.x3_c00232{left:253.649944px;}
.x4_c00232{left:392.582889px;}
.x5_c00232{left:768.422738px;}
.x7_c00232{left:775.909235px;}
.x8_c00232{left:792.054000px;}
.x9_c00232{left:852.068003px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws1_c00232{word-spacing:-13.541871pt;}
.ws2_c00232{word-spacing:-12.499913pt;}
.ws3_c00232{word-spacing:0.000000pt;}
.ws0_c00232{word-spacing:3.725199pt;}
._15_c00232{margin-left:-1054.132661pt;}
._32_c00232{margin-left:-1013.088693pt;}
._2b_c00232{margin-left:-1009.260585pt;}
._1e_c00232{margin-left:-1006.941150pt;}
._37_c00232{margin-left:-983.801483pt;}
._29_c00232{margin-left:-965.354161pt;}
._17_c00232{margin-left:-950.694717pt;}
._40_c00232{margin-left:-942.941851pt;}
._24_c00232{margin-left:-937.865932pt;}
._22_c00232{margin-left:-924.305610pt;}
._35_c00232{margin-left:-889.389537pt;}
._10_c00232{margin-left:-867.690795pt;}
._2d_c00232{margin-left:-866.631899pt;}
._2e_c00232{margin-left:-851.643434pt;}
._1a_c00232{margin-left:-830.601145pt;}
._3b_c00232{margin-left:-819.114075pt;}
._39_c00232{margin-left:-810.675367pt;}
._19_c00232{margin-left:-17.567873pt;}
._1d_c00232{margin-left:-13.418428pt;}
._13_c00232{margin-left:-9.796116pt;}
._d_c00232{margin-left:-5.326332pt;}
._c_c00232{margin-left:-3.843516pt;}
._1_c00232{margin-left:-2.570080pt;}
._2_c00232{margin-left:-0.974938pt;}
._0_c00232{width:1.235159pt;}
._3_c00232{width:2.261184pt;}
._6_c00232{width:3.201269pt;}
._9_c00232{width:4.619247pt;}
._4_c00232{width:23.882240pt;}
._3e_c00232{width:38.828787pt;}
._b_c00232{width:50.376610pt;}
._27_c00232{width:54.336209pt;}
._e_c00232{width:57.489490pt;}
._30_c00232{width:58.582803pt;}
._34_c00232{width:61.653815pt;}
._31_c00232{width:65.803568pt;}
._3f_c00232{width:73.539372pt;}
._28_c00232{width:81.721024pt;}
._f_c00232{width:87.893314pt;}
._5_c00232{width:91.524395pt;}
._14_c00232{width:103.222566pt;}
._a_c00232{width:174.575976pt;}
._26_c00232{width:177.978468pt;}
._8_c00232{width:210.071554pt;}
._12_c00232{width:304.629116pt;}
._21_c00232{width:305.649271pt;}
._1c_c00232{width:332.098744pt;}
._16_c00232{width:333.194371pt;}
._33_c00232{width:373.991033pt;}
._2c_c00232{width:377.786627pt;}
._1f_c00232{width:406.844089pt;}
._2a_c00232{width:421.689424pt;}
._38_c00232{width:429.906226pt;}
._18_c00232{width:436.669448pt;}
._41_c00232{width:444.133908pt;}
._25_c00232{width:448.843351pt;}
._23_c00232{width:462.881164pt;}
._20_c00232{width:519.126933pt;}
._11_c00232{width:520.351182pt;}
._36_c00232{width:524.317546pt;}
._2f_c00232{width:562.045610pt;}
._3d_c00232{width:567.876427pt;}
._3c_c00232{width:569.050110pt;}
._3a_c00232{width:576.665196pt;}
._1b_c00232{width:583.490155pt;}
._7_c00232{width:1141.610472pt;}
.fs1_c00232{font-size:44.963715pt;}
.fs2_c00232{font-size:48.711767pt;}
.fs0_c00232{font-size:71.191972pt;}
.y0_c00232{bottom:0.000000pt;}
.y3b_c00232{bottom:0.107500pt;}
.y3a_c00232{bottom:2.530530pt;}
.y1_c00232{bottom:6.068128pt;}
.y38_c00232{bottom:71.353708pt;}
.y39_c00232{bottom:72.040640pt;}
.y3c_c00232{bottom:74.463670pt;}
.y37_c00232{bottom:95.739298pt;}
.y36_c00232{bottom:119.804888pt;}
.y35_c00232{bottom:120.753688pt;}
.y34_c00232{bottom:149.092343pt;}
.y33_c00232{bottom:165.877270pt;}
.y32_c00232{bottom:182.818463pt;}
.y31_c00232{bottom:199.603390pt;}
.y30_c00232{bottom:216.542183pt;}
.y2f_c00232{bottom:233.324043pt;}
.y2e_c00232{bottom:250.267769pt;}
.y2d_c00232{bottom:267.051496pt;}
.y2c_c00232{bottom:283.992689pt;}
.y2b_c00232{bottom:307.426413pt;}
.y2a_c00232{bottom:325.950406pt;}
.y29_c00232{bottom:350.494396pt;}
.y28_c00232{bottom:374.714386pt;}
.y27_c00232{bottom:375.665053pt;}
.y26_c00232{bottom:403.847441pt;}
.y25_c00232{bottom:420.791168pt;}
.y24_c00232{bottom:437.574895pt;}
.y23_c00232{bottom:461.006085pt;}
.y22_c00232{bottom:475.096746pt;}
.y21_c00232{bottom:489.031141pt;}
.y20_c00232{bottom:503.123668pt;}
.y1f_c00232{bottom:521.648994pt;}
.y1e_c00232{bottom:546.191784pt;}
.y1d_c00232{bottom:560.283645pt;}
.y1c_c00232{bottom:584.506302pt;}
.y1b_c00232{bottom:585.456969pt;}
.y1a_c00232{bottom:613.640024pt;}
.y19_c00232{bottom:630.581217pt;}
.y18_c00232{bottom:647.364944pt;}
.y17_c00232{bottom:664.307471pt;}
.y16_c00232{bottom:681.088664pt;}
.y15_c00232{bottom:698.029324pt;}
.y14_c00232{bottom:721.466248pt;}
.y13_c00232{bottom:735.556909pt;}
.y12_c00232{bottom:754.078235pt;}
.y11_c00232{bottom:778.621158pt;}
.y10_c00232{bottom:792.554219pt;}
.yf_c00232{bottom:816.780876pt;}
.ye_c00232{bottom:817.730209pt;}
.yd_c00232{bottom:846.068198pt;}
.yc_c00232{bottom:862.853124pt;}
.yb_c00232{bottom:879.794318pt;}
.ya_c00232{bottom:896.576844pt;}
.y9_c00232{bottom:913.516171pt;}
.y8_c00232{bottom:936.949895pt;}
.y7_c00232{bottom:950.886156pt;}
.y6_c00232{bottom:964.976817pt;}
.y5_c00232{bottom:983.503476pt;}
.y4_c00232{bottom:1011.842132pt;}
.y3_c00232{bottom:1054.751448pt;}
.y2_c00232{bottom:1075.810106pt;}
.h6_c00232{height:12.666880pt;}
.h4_c00232{height:40.332453pt;}
.h3_c00232{height:41.681364pt;}
.h5_c00232{height:45.155808pt;}
.h2_c00232{height:65.994958pt;}
.h1_c00232{height:1110.960672pt;}
.h7_c00232{height:1122.559167pt;}
.h0_c00232{height:1122.666667pt;}
.w2_c00232{width:35.627200pt;}
.w1_c00232{width:785.062974pt;}
.w3_c00232{width:793.257550pt;}
.w0_c00232{width:793.333333pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:1.370626pt;}
.x2_c00232{left:94.366803pt;}
.x6_c00232{left:98.165601pt;}
.x3_c00232{left:225.466617pt;}
.x4_c00232{left:348.962568pt;}
.x5_c00232{left:683.042434pt;}
.x7_c00232{left:689.697098pt;}
.x8_c00232{left:704.048000pt;}
.x9_c00232{left:757.393780pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00233{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls0_c00233{letter-spacing:0.000000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00233{word-spacing:-15.234605px;}
.ws2_c00233{word-spacing:-14.062402px;}
.ws3_c00233{word-spacing:0.000000px;}
.ws0_c00233{word-spacing:4.190849px;}
._23_c00233{margin-left:-1178.803960px;}
._2f_c00233{margin-left:-1174.898246px;}
._18_c00233{margin-left:-1132.433481px;}
._15_c00233{margin-left:-1127.984632px;}
._f_c00233{margin-left:-1101.951871px;}
._21_c00233{margin-left:-1097.311899px;}
._1f_c00233{margin-left:-1090.701806px;}
._2d_c00233{margin-left:-989.236139px;}
._1c_c00233{margin-left:-974.942709px;}
._12_c00233{margin-left:-958.076486px;}
._2b_c00233{margin-left:-929.818817px;}
._27_c00233{margin-left:-921.522958px;}
._25_c00233{margin-left:-912.296263px;}
._1a_c00233{margin-left:-879.548110px;}
._c_c00233{margin-left:-4.323956px;}
._1_c00233{margin-left:-2.891340px;}
._2_c00233{margin-left:-1.096806px;}
._0_c00233{width:1.389554px;}
._3_c00233{width:2.543831px;}
._6_c00233{width:3.601428px;}
._9_c00233{width:5.196653px;}
._1e_c00233{width:7.334536px;}
._4_c00233{width:26.867520px;}
._b_c00233{width:61.128235px;}
._d_c00233{width:65.433766px;}
._14_c00233{width:73.907601px;}
._e_c00233{width:92.274691px;}
._5_c00233{width:102.964944px;}
._a_c00233{width:200.225777px;}
._2a_c00233{width:203.003397px;}
._8_c00233{width:236.330499px;}
._17_c00233{width:342.709274px;}
._11_c00233{width:373.611618px;}
._24_c00233{width:381.630628px;}
._30_c00233{width:415.645738px;}
._19_c00233{width:428.005600px;}
._16_c00233{width:432.052642px;}
._20_c00233{width:470.141838px;}
._10_c00233{width:488.450680px;}
._22_c00233{width:493.092636px;}
._2e_c00233{width:571.211417px;}
._29_c00233{width:584.286274px;}
._1d_c00233{width:585.401257px;}
._13_c00233{width:631.896239px;}
._31_c00233{width:638.868181px;}
._28_c00233{width:640.187374px;}
._26_c00233{width:648.742346px;}
._2c_c00233{width:660.593200px;}
._1b_c00233{width:710.674106px;}
._7_c00233{width:1284.311781px;}
.fc0_c00233{color:rgb(35,31,32);}
.fs1_c00233{font-size:50.584180px;}
.fs2_c00233{font-size:54.800738px;}
.fs0_c00233{font-size:80.090968px;}
.y0_c00233{bottom:0.000000px;}
.y33_c00233{bottom:0.120938px;}
.y32_c00233{bottom:2.846846px;}
.y1_c00233{bottom:6.826644px;}
.y30_c00233{bottom:80.270821px;}
.y31_c00233{bottom:81.045720px;}
.y34_c00233{bottom:83.771629px;}
.y2f_c00233{bottom:274.072244px;}
.y2e_c00233{bottom:301.324233px;}
.y2d_c00233{bottom:302.393732px;}
.y2c_c00233{bottom:334.273970px;}
.y2b_c00233{bottom:353.154312px;}
.y2a_c00233{bottom:372.214654px;}
.y29_c00233{bottom:391.094997px;}
.y28_c00233{bottom:410.156689px;}
.y27_c00233{bottom:429.034932px;}
.y26_c00233{bottom:455.397871px;}
.y25_c00233{bottom:471.253315px;}
.y24_c00233{bottom:486.926658px;}
.y23_c00233{bottom:507.947650px;}
.y22_c00233{bottom:535.555139px;}
.y21_c00233{bottom:562.636128px;}
.y20_c00233{bottom:563.696628px;}
.y1f_c00233{bottom:595.585865px;}
.y1e_c00233{bottom:614.464707px;}
.y1d_c00233{bottom:633.523550px;}
.y1c_c00233{bottom:652.409442px;}
.y1b_c00233{bottom:671.461985px;}
.y1a_c00233{bottom:690.347277px;}
.y19_c00233{bottom:709.404020px;}
.y18_c00233{bottom:728.287062px;}
.y17_c00233{bottom:747.347404px;}
.y16_c00233{bottom:766.224897px;}
.y15_c00233{bottom:792.590686px;}
.y14_c00233{bottom:808.444030px;}
.y13_c00233{bottom:824.296024px;}
.y12_c00233{bottom:845.135515px;}
.y11_c00233{bottom:872.743904px;}
.y10_c00233{bottom:888.596498px;}
.yf_c00233{bottom:915.669987px;}
.ye_c00233{bottom:916.740987px;}
.yd_c00233{bottom:948.619724px;}
.yc_c00233{bottom:967.500066px;}
.yb_c00233{bottom:986.558909px;}
.ya_c00233{bottom:1005.441951px;}
.y9_c00233{bottom:1024.502293px;}
.y8_c00233{bottom:1043.382636px;}
.y7_c00233{bottom:1069.746925px;}
.y6_c00233{bottom:1085.598919px;}
.y5_c00233{bottom:1106.441411px;}
.y4_c00233{bottom:1138.322398px;}
.y3_c00233{bottom:1186.595379px;}
.y2_c00233{bottom:1210.286369px;}
.h6_c00233{height:14.250240px;}
.h4_c00233{height:45.374009px;}
.h3_c00233{height:46.891535px;}
.h5_c00233{height:50.800284px;}
.h2_c00233{height:74.244327px;}
.h1_c00233{height:1249.830756px;}
.h7_c00233{height:1262.879062px;}
.h0_c00233{height:1263.000000px;}
.w2_c00233{width:40.080600px;}
.w1_c00233{width:883.195846px;}
.w3_c00233{width:892.414744px;}
.w0_c00233{width:892.500000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:1.541954px;}
.x2_c00233{left:106.162653px;}
.x6_c00233{left:110.436301px;}
.x3_c00233{left:253.649944px;}
.x4_c00233{left:392.582889px;}
.x5_c00233{left:768.422738px;}
.x7_c00233{left:775.909235px;}
.x8_c00233{left:792.054000px;}
.x9_c00233{left:852.068003px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws1_c00233{word-spacing:-13.541871pt;}
.ws2_c00233{word-spacing:-12.499913pt;}
.ws3_c00233{word-spacing:0.000000pt;}
.ws0_c00233{word-spacing:3.725199pt;}
._23_c00233{margin-left:-1047.825742pt;}
._2f_c00233{margin-left:-1044.353996pt;}
._18_c00233{margin-left:-1006.607539pt;}
._15_c00233{margin-left:-1002.653006pt;}
._f_c00233{margin-left:-979.512774pt;}
._21_c00233{margin-left:-975.388355pt;}
._1f_c00233{margin-left:-969.512716pt;}
._2d_c00233{margin-left:-879.321012pt;}
._1c_c00233{margin-left:-866.615741pt;}
._12_c00233{margin-left:-851.623544pt;}
._2b_c00233{margin-left:-826.505615pt;}
._27_c00233{margin-left:-819.131518pt;}
._25_c00233{margin-left:-810.930011pt;}
._1a_c00233{margin-left:-781.820542pt;}
._c_c00233{margin-left:-3.843516pt;}
._1_c00233{margin-left:-2.570080pt;}
._2_c00233{margin-left:-0.974938pt;}
._0_c00233{width:1.235159pt;}
._3_c00233{width:2.261184pt;}
._6_c00233{width:3.201269pt;}
._9_c00233{width:4.619247pt;}
._1e_c00233{width:6.519587pt;}
._4_c00233{width:23.882240pt;}
._b_c00233{width:54.336209pt;}
._d_c00233{width:58.163348pt;}
._14_c00233{width:65.695645pt;}
._e_c00233{width:82.021947pt;}
._5_c00233{width:91.524395pt;}
._a_c00233{width:177.978468pt;}
._2a_c00233{width:180.447464pt;}
._8_c00233{width:210.071554pt;}
._17_c00233{width:304.630465pt;}
._11_c00233{width:332.099216pt;}
._24_c00233{width:339.227225pt;}
._30_c00233{width:369.462878pt;}
._19_c00233{width:380.449422pt;}
._16_c00233{width:384.046793pt;}
._20_c00233{width:417.903856pt;}
._10_c00233{width:434.178382pt;}
._22_c00233{width:438.304565pt;}
._2e_c00233{width:507.743482pt;}
._29_c00233{width:519.365577pt;}
._1d_c00233{width:520.356672pt;}
._13_c00233{width:561.685546pt;}
._31_c00233{width:567.882827pt;}
._28_c00233{width:569.055444pt;}
._26_c00233{width:576.659863pt;}
._2c_c00233{width:587.193956pt;}
._1b_c00233{width:631.710316pt;}
._7_c00233{width:1141.610472pt;}
.fs1_c00233{font-size:44.963715pt;}
.fs2_c00233{font-size:48.711767pt;}
.fs0_c00233{font-size:71.191972pt;}
.y0_c00233{bottom:0.000000pt;}
.y33_c00233{bottom:0.107500pt;}
.y32_c00233{bottom:2.530530pt;}
.y1_c00233{bottom:6.068128pt;}
.y30_c00233{bottom:71.351841pt;}
.y31_c00233{bottom:72.040640pt;}
.y34_c00233{bottom:74.463670pt;}
.y2f_c00233{bottom:243.619772pt;}
.y2e_c00233{bottom:267.843762pt;}
.y2d_c00233{bottom:268.794429pt;}
.y2c_c00233{bottom:297.132417pt;}
.y2b_c00233{bottom:313.914944pt;}
.y2a_c00233{bottom:330.857471pt;}
.y29_c00233{bottom:347.639997pt;}
.y28_c00233{bottom:364.583724pt;}
.y27_c00233{bottom:381.364384pt;}
.y26_c00233{bottom:404.798108pt;}
.y25_c00233{bottom:418.891835pt;}
.y24_c00233{bottom:432.823696pt;}
.y23_c00233{bottom:451.509022pt;}
.y22_c00233{bottom:476.049012pt;}
.y21_c00233{bottom:500.121003pt;}
.y20_c00233{bottom:501.063669pt;}
.y1f_c00233{bottom:529.409658pt;}
.y1e_c00233{bottom:546.190851pt;}
.y1d_c00233{bottom:563.132044pt;}
.y1c_c00233{bottom:579.919504pt;}
.y1b_c00233{bottom:596.855097pt;}
.y1a_c00233{bottom:613.642024pt;}
.y19_c00233{bottom:630.581351pt;}
.y18_c00233{bottom:647.366277pt;}
.y17_c00233{bottom:664.308804pt;}
.y16_c00233{bottom:681.088797pt;}
.y15_c00233{bottom:704.525054pt;}
.y14_c00233{bottom:718.616915pt;}
.y13_c00233{bottom:732.707576pt;}
.y12_c00233{bottom:751.231569pt;}
.y11_c00233{bottom:775.772359pt;}
.y10_c00233{bottom:789.863554pt;}
.yf_c00233{bottom:813.928877pt;}
.ye_c00233{bottom:814.880877pt;}
.yd_c00233{bottom:843.217532pt;}
.yc_c00233{bottom:860.000059pt;}
.yb_c00233{bottom:876.941252pt;}
.ya_c00233{bottom:893.726179pt;}
.y9_c00233{bottom:910.668705pt;}
.y8_c00233{bottom:927.451232pt;}
.y7_c00233{bottom:950.886156pt;}
.y6_c00233{bottom:964.976817pt;}
.y5_c00233{bottom:983.503476pt;}
.y4_c00233{bottom:1011.842132pt;}
.y3_c00233{bottom:1054.751448pt;}
.y2_c00233{bottom:1075.810106pt;}
.h6_c00233{height:12.666880pt;}
.h4_c00233{height:40.332453pt;}
.h3_c00233{height:41.681364pt;}
.h5_c00233{height:45.155808pt;}
.h2_c00233{height:65.994958pt;}
.h1_c00233{height:1110.960672pt;}
.h7_c00233{height:1122.559167pt;}
.h0_c00233{height:1122.666667pt;}
.w2_c00233{width:35.627200pt;}
.w1_c00233{width:785.062974pt;}
.w3_c00233{width:793.257550pt;}
.w0_c00233{width:793.333333pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:1.370626pt;}
.x2_c00233{left:94.366803pt;}
.x6_c00233{left:98.165601pt;}
.x3_c00233{left:225.466617pt;}
.x4_c00233{left:348.962568pt;}
.x5_c00233{left:683.042434pt;}
.x7_c00233{left:689.697098pt;}
.x8_c00233{left:704.048000pt;}
.x9_c00233{left:757.393780pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00234{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls0_c00234{letter-spacing:0.000000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00234{word-spacing:-15.234605px;}
.ws2_c00234{word-spacing:-14.062402px;}
.ws3_c00234{word-spacing:0.000000px;}
.ws0_c00234{word-spacing:4.190849px;}
._34_c00234{margin-left:-1186.434124px;}
._36_c00234{margin-left:-1143.769501px;}
._29_c00234{margin-left:-1124.184352px;}
._22_c00234{margin-left:-1093.318796px;}
._25_c00234{margin-left:-1072.059516px;}
._2d_c00234{margin-left:-1004.446845px;}
._1f_c00234{margin-left:-980.898464px;}
._17_c00234{margin-left:-976.180563px;}
._30_c00234{margin-left:-958.413556px;}
._1d_c00234{margin-left:-946.896158px;}
._f_c00234{margin-left:-928.642383px;}
._15_c00234{margin-left:-921.520328px;}
._12_c00234{margin-left:-913.370972px;}
._39_c00234{margin-left:-31.517458px;}
._1b_c00234{margin-left:-10.316156px;}
._2f_c00234{margin-left:-6.645235px;}
._14_c00234{margin-left:-5.060398px;}
._c_c00234{margin-left:-4.007430px;}
._1_c00234{margin-left:-2.891340px;}
._2_c00234{margin-left:-1.096806px;}
._0_c00234{width:1.389554px;}
._3_c00234{width:2.543831px;}
._6_c00234{width:3.601428px;}
._9_c00234{width:5.196653px;}
._24_c00234{width:6.396605px;}
._2e_c00234{width:7.442316px;}
._4_c00234{width:26.867520px;}
._28_c00234{width:56.673686px;}
._b_c00234{width:61.127862px;}
._d_c00234{width:64.826159px;}
._2b_c00234{width:66.252307px;}
._1a_c00234{width:74.392120px;}
._a_c00234{width:79.231407px;}
._2c_c00234{width:82.580057px;}
._3a_c00234{width:86.618977px;}
._21_c00234{width:88.033780px;}
._e_c00234{width:92.274519px;}
._1c_c00234{width:99.020575px;}
._5_c00234{width:102.964944px;}
._27_c00234{width:155.981112px;}
._19_c00234{width:164.549445px;}
._8_c00234{width:236.330499px;}
._38_c00234{width:314.584191px;}
._32_c00234{width:342.707422px;}
._11_c00234{width:373.611921px;}
._37_c00234{width:387.474755px;}
._35_c00234{width:404.139528px;}
._2a_c00234{width:466.767983px;}
._23_c00234{width:497.095636px;}
._26_c00234{width:516.806660px;}
._20_c00234{width:579.545962px;}
._33_c00234{width:584.035710px;}
._18_c00234{width:585.401257px;}
._31_c00234{width:602.329760px;}
._1e_c00234{width:613.168630px;}
._16_c00234{width:640.196193px;}
._13_c00234{width:648.730466px;}
._10_c00234{width:661.778557px;}
._7_c00234{width:1284.311781px;}
.fc0_c00234{color:rgb(35,31,32);}
.fs1_c00234{font-size:50.584180px;}
.fs2_c00234{font-size:54.800738px;}
.fs0_c00234{font-size:80.090968px;}
.y0_c00234{bottom:0.000000px;}
.y32_c00234{bottom:0.120938px;}
.y31_c00234{bottom:2.846846px;}
.y1_c00234{bottom:6.826644px;}
.y2f_c00234{bottom:80.272321px;}
.y30_c00234{bottom:81.045720px;}
.y33_c00234{bottom:83.771629px;}
.y2e_c00234{bottom:268.906246px;}
.y2d_c00234{bottom:284.758239px;}
.y2c_c00234{bottom:311.830229px;}
.y2b_c00234{bottom:312.901228px;}
.y2a_c00234{bottom:344.787315px;}
.y29_c00234{bottom:363.667658px;}
.y28_c00234{bottom:382.729350px;}
.y27_c00234{bottom:401.609693px;}
.y26_c00234{bottom:420.665085px;}
.y25_c00234{bottom:447.031624px;}
.y24_c00234{bottom:462.703618px;}
.y23_c00234{bottom:478.558312px;}
.y22_c00234{bottom:494.411656px;}
.y21_c00234{bottom:515.252647px;}
.y20_c00234{bottom:542.858636px;}
.y1f_c00234{bottom:570.113625px;}
.y1e_c00234{bottom:571.181625px;}
.y1d_c00234{bottom:602.888162px;}
.y1c_c00234{bottom:621.947754px;}
.y1b_c00234{bottom:640.826597px;}
.y1a_c00234{bottom:659.886939px;}
.y19_c00234{bottom:686.249879px;}
.y18_c00234{bottom:701.924572px;}
.y17_c00234{bottom:722.939564px;}
.y16_c00234{bottom:750.548553px;}
.y15_c00234{bottom:777.628042px;}
.y14_c00234{bottom:778.693042px;}
.y13_c00234{bottom:810.574479px;}
.y12_c00234{bottom:829.457521px;}
.y11_c00234{bottom:848.517864px;}
.y10_c00234{bottom:867.399556px;}
.yf_c00234{bottom:893.762496px;}
.ye_c00234{bottom:909.614489px;}
.yd_c00234{bottom:930.455481px;}
.yc_c00234{bottom:958.064470px;}
.yb_c00234{bottom:985.317959px;}
.ya_c00234{bottom:986.384459px;}
.y9_c00234{bottom:1018.094146px;}
.y8_c00234{bottom:1037.149538px;}
.y7_c00234{bottom:1056.032581px;}
.y6_c00234{bottom:1075.092923px;}
.y5_c00234{bottom:1106.441411px;}
.y4_c00234{bottom:1138.322398px;}
.y3_c00234{bottom:1186.595379px;}
.y2_c00234{bottom:1210.286369px;}
.h6_c00234{height:14.250240px;}
.h4_c00234{height:45.374009px;}
.h3_c00234{height:46.891535px;}
.h5_c00234{height:50.800284px;}
.h2_c00234{height:74.244327px;}
.h1_c00234{height:1249.830756px;}
.h7_c00234{height:1262.879062px;}
.h0_c00234{height:1263.000000px;}
.w2_c00234{width:40.080600px;}
.w1_c00234{width:883.195846px;}
.w3_c00234{width:892.414744px;}
.w0_c00234{width:892.500000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:1.541954px;}
.x2_c00234{left:106.162653px;}
.x5_c00234{left:110.436301px;}
.x6_c00234{left:253.649944px;}
.x3_c00234{left:392.582889px;}
.x7_c00234{left:761.125241px;}
.x4_c00234{left:775.909235px;}
.x8_c00234{left:792.054000px;}
.x9_c00234{left:852.068003px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws1_c00234{word-spacing:-13.541871pt;}
.ws2_c00234{word-spacing:-12.499913pt;}
.ws3_c00234{word-spacing:0.000000pt;}
.ws0_c00234{word-spacing:3.725199pt;}
._34_c00234{margin-left:-1054.608110pt;}
._36_c00234{margin-left:-1016.684001pt;}
._29_c00234{margin-left:-999.274980pt;}
._22_c00234{margin-left:-971.838929pt;}
._25_c00234{margin-left:-952.941792pt;}
._2d_c00234{margin-left:-892.841640pt;}
._1f_c00234{margin-left:-871.909746pt;}
._17_c00234{margin-left:-867.716056pt;}
._30_c00234{margin-left:-851.923161pt;}
._1d_c00234{margin-left:-841.685474pt;}
._f_c00234{margin-left:-825.459896pt;}
._15_c00234{margin-left:-819.129181pt;}
._12_c00234{margin-left:-811.885308pt;}
._39_c00234{margin-left:-28.015518pt;}
._1b_c00234{margin-left:-9.169916pt;}
._2f_c00234{margin-left:-5.906876pt;}
._14_c00234{margin-left:-4.498132pt;}
._c_c00234{margin-left:-3.562160pt;}
._1_c00234{margin-left:-2.570080pt;}
._2_c00234{margin-left:-0.974938pt;}
._0_c00234{width:1.235159pt;}
._3_c00234{width:2.261184pt;}
._6_c00234{width:3.201269pt;}
._9_c00234{width:4.619247pt;}
._24_c00234{width:5.685872pt;}
._2e_c00234{width:6.615392pt;}
._4_c00234{width:23.882240pt;}
._28_c00234{width:50.376610pt;}
._b_c00234{width:54.335877pt;}
._d_c00234{width:57.623252pt;}
._2b_c00234{width:58.890939pt;}
._1a_c00234{width:66.126328pt;}
._a_c00234{width:70.427917pt;}
._2c_c00234{width:73.404495pt;}
._3a_c00234{width:76.994646pt;}
._21_c00234{width:78.252249pt;}
._e_c00234{width:82.021794pt;}
._1c_c00234{width:88.018289pt;}
._5_c00234{width:91.524395pt;}
._27_c00234{width:138.649877pt;}
._19_c00234{width:146.266173pt;}
._8_c00234{width:210.071554pt;}
._38_c00234{width:279.630392pt;}
._32_c00234{width:304.628820pt;}
._11_c00234{width:332.099486pt;}
._37_c00234{width:344.422005pt;}
._35_c00234{width:359.235136pt;}
._2a_c00234{width:414.904874pt;}
._23_c00234{width:441.862787pt;}
._26_c00234{width:459.383698pt;}
._20_c00234{width:515.151966pt;}
._33_c00234{width:519.142854pt;}
._18_c00234{width:520.356672pt;}
._31_c00234{width:535.404231pt;}
._1e_c00234{width:545.038782pt;}
._16_c00234{width:569.063282pt;}
._13_c00234{width:576.649303pt;}
._10_c00234{width:588.247607pt;}
._7_c00234{width:1141.610472pt;}
.fs1_c00234{font-size:44.963715pt;}
.fs2_c00234{font-size:48.711767pt;}
.fs0_c00234{font-size:71.191972pt;}
.y0_c00234{bottom:0.000000pt;}
.y32_c00234{bottom:0.107500pt;}
.y31_c00234{bottom:2.530530pt;}
.y1_c00234{bottom:6.068128pt;}
.y2f_c00234{bottom:71.353174pt;}
.y30_c00234{bottom:72.040640pt;}
.y33_c00234{bottom:74.463670pt;}
.y2e_c00234{bottom:239.027774pt;}
.y2d_c00234{bottom:253.118435pt;}
.y2c_c00234{bottom:277.182425pt;}
.y2b_c00234{bottom:278.134425pt;}
.y2a_c00234{bottom:306.477614pt;}
.y29_c00234{bottom:323.260140pt;}
.y28_c00234{bottom:340.203867pt;}
.y27_c00234{bottom:356.986393pt;}
.y26_c00234{bottom:373.924520pt;}
.y25_c00234{bottom:397.361444pt;}
.y24_c00234{bottom:411.292105pt;}
.y23_c00234{bottom:425.385166pt;}
.y22_c00234{bottom:439.477027pt;}
.y21_c00234{bottom:458.002353pt;}
.y20_c00234{bottom:482.541010pt;}
.y1f_c00234{bottom:506.767667pt;}
.y1e_c00234{bottom:507.717000pt;}
.y1d_c00234{bottom:535.900589pt;}
.y1c_c00234{bottom:552.842448pt;}
.y1b_c00234{bottom:569.623642pt;}
.y1a_c00234{bottom:586.566168pt;}
.y19_c00234{bottom:609.999892pt;}
.y18_c00234{bottom:623.932953pt;}
.y17_c00234{bottom:642.612946pt;}
.y16_c00234{bottom:667.154269pt;}
.y15_c00234{bottom:691.224926pt;}
.y14_c00234{bottom:692.171593pt;}
.y13_c00234{bottom:720.510648pt;}
.y12_c00234{bottom:737.295575pt;}
.y11_c00234{bottom:754.238101pt;}
.y10_c00234{bottom:771.021828pt;}
.yf_c00234{bottom:794.455552pt;}
.ye_c00234{bottom:808.546213pt;}
.yd_c00234{bottom:827.071539pt;}
.yc_c00234{bottom:851.612862pt;}
.yb_c00234{bottom:875.838186pt;}
.ya_c00234{bottom:876.786186pt;}
.y9_c00234{bottom:904.972574pt;}
.y8_c00234{bottom:921.910701pt;}
.y7_c00234{bottom:938.695627pt;}
.y6_c00234{bottom:955.638154pt;}
.y5_c00234{bottom:983.503476pt;}
.y4_c00234{bottom:1011.842132pt;}
.y3_c00234{bottom:1054.751448pt;}
.y2_c00234{bottom:1075.810106pt;}
.h6_c00234{height:12.666880pt;}
.h4_c00234{height:40.332453pt;}
.h3_c00234{height:41.681364pt;}
.h5_c00234{height:45.155808pt;}
.h2_c00234{height:65.994958pt;}
.h1_c00234{height:1110.960672pt;}
.h7_c00234{height:1122.559167pt;}
.h0_c00234{height:1122.666667pt;}
.w2_c00234{width:35.627200pt;}
.w1_c00234{width:785.062974pt;}
.w3_c00234{width:793.257550pt;}
.w0_c00234{width:793.333333pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:1.370626pt;}
.x2_c00234{left:94.366803pt;}
.x5_c00234{left:98.165601pt;}
.x6_c00234{left:225.466617pt;}
.x3_c00234{left:348.962568pt;}
.x7_c00234{left:676.555770pt;}
.x4_c00234{left:689.697098pt;}
.x8_c00234{left:704.048000pt;}
.x9_c00234{left:757.393780pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.107000;font-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_c00235{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00235{word-spacing:-15.234605px;}
.ws2_c00235{word-spacing:-14.062402px;}
.ws3_c00235{word-spacing:0.000000px;}
.ws0_c00235{word-spacing:4.190849px;}
._24_c00235{margin-left:-1162.261652px;}
._17_c00235{margin-left:-1143.740450px;}
._21_c00235{margin-left:-1027.292850px;}
._1b_c00235{margin-left:-1004.540937px;}
._13_c00235{margin-left:-976.425789px;}
._10_c00235{margin-left:-958.414219px;}
._28_c00235{margin-left:-921.561991px;}
._20_c00235{margin-left:-10.316156px;}
._d_c00235{margin-left:-6.833523px;}
._c_c00235{margin-left:-4.872060px;}
._1_c00235{margin-left:-2.891340px;}
._2_c00235{margin-left:-1.096806px;}
._0_c00235{width:1.389554px;}
._3_c00235{width:2.543831px;}
._6_c00235{width:3.601428px;}
._9_c00235{width:5.196653px;}
._4_c00235{width:26.867520px;}
._b_c00235{width:56.672765px;}
._e_c00235{width:64.674710px;}
._16_c00235{width:65.924823px;}
._1f_c00235{width:70.277173px;}
._23_c00235{width:82.872745px;}
._1a_c00235{width:83.920184px;}
._27_c00235{width:85.985107px;}
._f_c00235{width:98.879887px;}
._5_c00235{width:102.964944px;}
._26_c00235{width:150.697344px;}
._1e_c00235{width:163.266639px;}
._a_c00235{width:167.674215px;}
._8_c00235{width:236.330499px;}
._19_c00235{width:314.585203px;}
._12_c00235{width:342.708434px;}
._15_c00235{width:372.676728px;}
._1d_c00235{width:373.804598px;}
._18_c00235{width:387.432551px;}
._25_c00235{width:428.033423px;}
._1c_c00235{width:526.722850px;}
._22_c00235{width:533.138335px;}
._14_c00235{width:584.286451px;}
._11_c00235{width:602.329760px;}
._29_c00235{width:638.892039px;}
._7_c00235{width:1284.311781px;}
.fc0_c00235{color:rgb(35,31,32);}
.fs1_c00235{font-size:50.584180px;}
.fs2_c00235{font-size:54.800738px;}
.fs0_c00235{font-size:80.090968px;}
.y0_c00235{bottom:0.000000px;}
.y23_c00235{bottom:0.120938px;}
.y22_c00235{bottom:2.846846px;}
.y1_c00235{bottom:6.826644px;}
.y20_c00235{bottom:80.275471px;}
.y21_c00235{bottom:81.045720px;}
.y24_c00235{bottom:83.771629px;}
.y1f_c00235{bottom:568.153276px;}
.y1e_c00235{bottom:584.006620px;}
.y1d_c00235{bottom:611.260109px;}
.y1c_c00235{bottom:612.325108px;}
.y1b_c00235{bottom:644.031946px;}
.y1a_c00235{bottom:663.093638px;}
.y19_c00235{bottom:681.974580px;}
.y18_c00235{bottom:713.326068px;}
.y17_c00235{bottom:740.932057px;}
.y16_c00235{bottom:768.182546px;}
.y15_c00235{bottom:769.252046px;}
.y14_c00235{bottom:801.138883px;}
.y13_c00235{bottom:820.019225px;}
.y12_c00235{bottom:846.383515px;}
.y11_c00235{bottom:862.235508px;}
.y10_c00235{bottom:883.076500px;}
.yf_c00235{bottom:910.681139px;}
.ye_c00235{bottom:926.534483px;}
.yd_c00235{bottom:953.610972px;}
.yc_c00235{bottom:954.678971px;}
.yb_c00235{bottom:986.558909px;}
.ya_c00235{bottom:1005.441951px;}
.y9_c00235{bottom:1024.502293px;}
.y8_c00235{bottom:1043.382636px;}
.y7_c00235{bottom:1069.746925px;}
.y6_c00235{bottom:1085.598919px;}
.y5_c00235{bottom:1106.441411px;}
.y4_c00235{bottom:1138.322398px;}
.y3_c00235{bottom:1186.595379px;}
.y2_c00235{bottom:1210.286369px;}
.h6_c00235{height:14.250240px;}
.h4_c00235{height:45.374009px;}
.h3_c00235{height:46.891535px;}
.h5_c00235{height:50.800284px;}
.h2_c00235{height:74.244327px;}
.h1_c00235{height:1249.830756px;}
.h7_c00235{height:1262.879062px;}
.h0_c00235{height:1263.000000px;}
.w2_c00235{width:40.080600px;}
.w1_c00235{width:883.195846px;}
.w3_c00235{width:892.414744px;}
.w0_c00235{width:892.500000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:1.541954px;}
.x2_c00235{left:106.162653px;}
.x6_c00235{left:110.436301px;}
.x3_c00235{left:253.649944px;}
.x4_c00235{left:392.582889px;}
.x5_c00235{left:761.125241px;}
.x7_c00235{left:768.422738px;}
.x8_c00235{left:792.054000px;}
.x9_c00235{left:852.068003px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws1_c00235{word-spacing:-13.541871pt;}
.ws2_c00235{word-spacing:-12.499913pt;}
.ws3_c00235{word-spacing:0.000000pt;}
.ws0_c00235{word-spacing:3.725199pt;}
._24_c00235{margin-left:-1033.121468pt;}
._17_c00235{margin-left:-1016.658178pt;}
._21_c00235{margin-left:-913.149200pt;}
._1b_c00235{margin-left:-892.925278pt;}
._13_c00235{margin-left:-867.934035pt;}
._10_c00235{margin-left:-851.923750pt;}
._28_c00235{margin-left:-819.166214pt;}
._20_c00235{margin-left:-9.169916pt;}
._d_c00235{margin-left:-6.074242pt;}
._c_c00235{margin-left:-4.330720pt;}
._1_c00235{margin-left:-2.570080pt;}
._2_c00235{margin-left:-0.974938pt;}
._0_c00235{width:1.235159pt;}
._3_c00235{width:2.261184pt;}
._6_c00235{width:3.201269pt;}
._9_c00235{width:4.619247pt;}
._4_c00235{width:23.882240pt;}
._b_c00235{width:50.375792pt;}
._e_c00235{width:57.488631pt;}
._16_c00235{width:58.599843pt;}
._1f_c00235{width:62.468598pt;}
._23_c00235{width:73.664662pt;}
._1a_c00235{width:74.595719pt;}
._27_c00235{width:76.431206pt;}
._f_c00235{width:87.893233pt;}
._5_c00235{width:91.524395pt;}
._26_c00235{width:133.953195pt;}
._1e_c00235{width:145.125901pt;}
._a_c00235{width:149.043747pt;}
._8_c00235{width:210.071554pt;}
._19_c00235{width:279.631292pt;}
._12_c00235{width:304.629719pt;}
._15_c00235{width:331.268202pt;}
._1d_c00235{width:332.270754pt;}
._18_c00235{width:344.384490pt;}
._25_c00235{width:380.474154pt;}
._1c_c00235{width:468.198089pt;}
._22_c00235{width:473.900742pt;}
._14_c00235{width:519.365734pt;}
._11_c00235{width:535.404231pt;}
._29_c00235{width:567.904035pt;}
._7_c00235{width:1141.610472pt;}
.fs1_c00235{font-size:44.963715pt;}
.fs2_c00235{font-size:48.711767pt;}
.fs0_c00235{font-size:71.191972pt;}
.y0_c00235{bottom:0.000000pt;}
.y23_c00235{bottom:0.107500pt;}
.y22_c00235{bottom:2.530530pt;}
.y1_c00235{bottom:6.068128pt;}
.y20_c00235{bottom:71.355974pt;}
.y21_c00235{bottom:72.040640pt;}
.y24_c00235{bottom:74.463670pt;}
.y1f_c00235{bottom:505.025134pt;}
.y1e_c00235{bottom:519.116995pt;}
.y1d_c00235{bottom:543.342319pt;}
.y1c_c00235{bottom:544.288985pt;}
.y1b_c00235{bottom:572.472841pt;}
.y1a_c00235{bottom:589.416567pt;}
.y19_c00235{bottom:606.199627pt;}
.y18_c00235{bottom:634.067616pt;}
.y17_c00235{bottom:658.606273pt;}
.y16_c00235{bottom:682.828930pt;}
.y15_c00235{bottom:683.779596pt;}
.y14_c00235{bottom:712.123451pt;}
.y13_c00235{bottom:728.905978pt;}
.y12_c00235{bottom:752.340902pt;}
.y11_c00235{bottom:766.431563pt;}
.y10_c00235{bottom:784.956889pt;}
.yf_c00235{bottom:809.494346pt;}
.ye_c00235{bottom:823.586207pt;}
.yd_c00235{bottom:847.654197pt;}
.yc_c00235{bottom:848.603530pt;}
.yb_c00235{bottom:876.941252pt;}
.ya_c00235{bottom:893.726179pt;}
.y9_c00235{bottom:910.668705pt;}
.y8_c00235{bottom:927.451232pt;}
.y7_c00235{bottom:950.886156pt;}
.y6_c00235{bottom:964.976817pt;}
.y5_c00235{bottom:983.503476pt;}
.y4_c00235{bottom:1011.842132pt;}
.y3_c00235{bottom:1054.751448pt;}
.y2_c00235{bottom:1075.810106pt;}
.h6_c00235{height:12.666880pt;}
.h4_c00235{height:40.332453pt;}
.h3_c00235{height:41.681364pt;}
.h5_c00235{height:45.155808pt;}
.h2_c00235{height:65.994958pt;}
.h1_c00235{height:1110.960672pt;}
.h7_c00235{height:1122.559167pt;}
.h0_c00235{height:1122.666667pt;}
.w2_c00235{width:35.627200pt;}
.w1_c00235{width:785.062974pt;}
.w3_c00235{width:793.257550pt;}
.w0_c00235{width:793.333333pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:1.370626pt;}
.x2_c00235{left:94.366803pt;}
.x6_c00235{left:98.165601pt;}
.x3_c00235{left:225.466617pt;}
.x4_c00235{left:348.962568pt;}
.x5_c00235{left:676.555770pt;}
.x7_c00235{left:683.042434pt;}
.x8_c00235{left:704.048000pt;}
.x9_c00235{left:757.393780pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.112000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls0_c00236{letter-spacing:0.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:0.000000px;}
._1_c00236{margin-left:-1.629237px;}
._0_c00236{width:1.388451px;}
.fc0_c00236{color:rgb(35,31,32);}
.fs0_c00236{font-size:71.249972px;}
.y0_c00236{bottom:0.000000px;}
.y1_c00236{bottom:0.120938px;}
.y2_c00236{bottom:493.456865px;}
.h2_c00236{height:63.839974px;}
.h1_c00236{height:1262.879062px;}
.h0_c00236{height:1263.000000px;}
.w1_c00236{width:892.414744px;}
.w0_c00236{width:892.500000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:429.027672px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:0.000000pt;}
._1_c00236{margin-left:-1.448211pt;}
._0_c00236{width:1.234179pt;}
.fs0_c00236{font-size:63.333308pt;}
.y0_c00236{bottom:0.000000pt;}
.y1_c00236{bottom:0.107500pt;}
.y2_c00236{bottom:438.628325pt;}
.h2_c00236{height:56.746644pt;}
.h1_c00236{height:1122.559167pt;}
.h0_c00236{height:1122.666667pt;}
.w1_c00236{width:793.257550pt;}
.w0_c00236{width:793.333333pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:381.357931pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.107000;font-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_c00237{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:-14.062402px;}
.ws2_c00237{word-spacing:0.000000px;}
.ws1_c00237{word-spacing:17.040596px;}
._5_c00237{margin-left:-5.498440px;}
._c_c00237{margin-left:-3.895967px;}
._1_c00237{margin-left:-2.887239px;}
._3_c00237{margin-left:-1.750725px;}
._0_c00237{width:1.522265px;}
._4_c00237{width:3.068940px;}
._2_c00237{width:4.308527px;}
._9_c00237{width:5.825625px;}
._a_c00237{width:6.842412px;}
._f_c00237{width:8.201116px;}
._21_c00237{width:11.453908px;}
._16_c00237{width:22.845334px;}
._1e_c00237{width:31.744139px;}
._1a_c00237{width:33.056641px;}
._6_c00237{width:36.224916px;}
._e_c00237{width:64.716951px;}
._1c_c00237{width:115.985165px;}
._15_c00237{width:120.519705px;}
._d_c00237{width:138.930666px;}
._12_c00237{width:145.248177px;}
._19_c00237{width:154.364238px;}
._25_c00237{width:159.341698px;}
._1d_c00237{width:162.641826px;}
._18_c00237{width:172.121705px;}
._20_c00237{width:181.032719px;}
._8_c00237{width:185.578389px;}
._17_c00237{width:192.507188px;}
._10_c00237{width:196.431529px;}
._14_c00237{width:277.437452px;}
._22_c00237{width:289.240686px;}
._24_c00237{width:292.842550px;}
._28_c00237{width:301.180814px;}
._11_c00237{width:322.000219px;}
._1f_c00237{width:323.004833px;}
._13_c00237{width:331.156256px;}
._26_c00237{width:332.165791px;}
._23_c00237{width:356.513531px;}
._b_c00237{width:366.293431px;}
._1b_c00237{width:395.546872px;}
._27_c00237{width:457.372843px;}
._7_c00237{width:1014.471987px;}
.fc0_c00237{color:rgb(35,31,32);}
.fs2_c00237{font-size:50.584180px;}
.fs1_c00237{font-size:54.800738px;}
.fs0_c00237{font-size:80.090968px;}
.y0_c00237{bottom:0.000000px;}
.y1_c00237{bottom:0.120938px;}
.y6_c00237{bottom:2.845041px;}
.y34_c00237{bottom:2.849733px;}
.y7_c00237{bottom:6.826644px;}
.y32_c00237{bottom:63.350424px;}
.y33_c00237{bottom:64.122840px;}
.y35_c00237{bottom:66.851636px;}
.y31_c00237{bottom:232.034357px;}
.y30_c00237{bottom:257.149297px;}
.y2f_c00237{bottom:258.218750px;}
.y2e_c00237{bottom:283.688636px;}
.y2d_c00237{bottom:306.841877px;}
.y2c_c00237{bottom:329.999918px;}
.y2b_c00237{bottom:353.157359px;}
.y2a_c00237{bottom:376.311949px;}
.y29_c00237{bottom:399.465790px;}
.y28_c00237{bottom:422.801731px;}
.y27_c00237{bottom:445.959771px;}
.y26_c00237{bottom:472.319261px;}
.y25_c00237{bottom:487.992605px;}
.y24_c00237{bottom:504.738898px;}
.y23_c00237{bottom:537.515085px;}
.y22_c00237{bottom:562.627175px;}
.y21_c00237{bottom:563.696628px;}
.y20_c00237{bottom:589.172421px;}
.y1f_c00237{bottom:612.505662px;}
.y1e_c00237{bottom:635.662353px;}
.y1d_c00237{bottom:658.818293px;}
.y1c_c00237{bottom:681.974234px;}
.y1b_c00237{bottom:705.129575px;}
.y1a_c00237{bottom:728.285515px;}
.y19_c00237{bottom:751.620106px;}
.y18_c00237{bottom:774.776797px;}
.y17_c00237{bottom:797.931388px;}
.y16_c00237{bottom:824.294327px;}
.y15_c00237{bottom:840.146321px;}
.y14_c00237{bottom:855.824614px;}
.y13_c00237{bottom:871.675108px;}
.y12_c00237{bottom:888.420651px;}
.y11_c00237{bottom:921.192638px;}
.y10_c00237{bottom:946.310428px;}
.yf_c00237{bottom:947.378474px;}
.ye_c00237{bottom:972.844264px;}
.yd_c00237{bottom:996.001705px;}
.yc_c00237{bottom:1022.363294px;}
.yb_c00237{bottom:1038.217988px;}
.ya_c00237{bottom:1054.782931px;}
.y9_c00237{bottom:1082.748920px;}
.y8_c00237{bottom:1141.529397px;}
.y5_c00237{bottom:1145.511000px;}
.y4_c00237{bottom:1171.217494px;}
.y3_c00237{bottom:1187.959587px;}
.y2_c00237{bottom:1216.992076px;}
.h8_c00237{height:14.250240px;}
.h4_c00237{height:14.252400px;}
.h5_c00237{height:45.374009px;}
.h7_c00237{height:46.891535px;}
.h3_c00237{height:50.800284px;}
.h2_c00237{height:74.244327px;}
.h6_c00237{height:1249.830756px;}
.h1_c00237{height:1262.879062px;}
.h0_c00237{height:1263.000000px;}
.w4_c00237{width:40.080600px;}
.w2_c00237{width:40.966920px;}
.w3_c00237{width:883.195846px;}
.w1_c00237{width:892.414744px;}
.w0_c00237{width:892.500000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:1.541954px;}
.x4_c00237{left:106.162653px;}
.x1_c00237{left:107.691951px;}
.x3_c00237{left:197.717966px;}
.x5_c00237{left:283.037307px;}
.x7_c00237{left:469.357507px;}
.x8_c00237{left:711.604261px;}
.x6_c00237{left:718.907758px;}
.x9_c00237{left:792.054000px;}
.xa_c00237{left:853.136002px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws0_c00237{word-spacing:-12.499913pt;}
.ws2_c00237{word-spacing:0.000000pt;}
.ws1_c00237{word-spacing:15.147197pt;}
._5_c00237{margin-left:-4.887502pt;}
._c_c00237{margin-left:-3.463082pt;}
._1_c00237{margin-left:-2.566435pt;}
._3_c00237{margin-left:-1.556200pt;}
._0_c00237{width:1.353124pt;}
._4_c00237{width:2.727947pt;}
._2_c00237{width:3.829802pt;}
._9_c00237{width:5.178333pt;}
._a_c00237{width:6.082144pt;}
._f_c00237{width:7.289881pt;}
._21_c00237{width:10.181251pt;}
._16_c00237{width:20.306964pt;}
._1e_c00237{width:28.217012pt;}
._1a_c00237{width:29.383681pt;}
._6_c00237{width:32.199926pt;}
._e_c00237{width:57.526179pt;}
._1c_c00237{width:103.097924pt;}
._15_c00237{width:107.128627pt;}
._d_c00237{width:123.493926pt;}
._12_c00237{width:129.109491pt;}
._19_c00237{width:137.212656pt;}
._25_c00237{width:141.637065pt;}
._1d_c00237{width:144.570512pt;}
._18_c00237{width:152.997071pt;}
._20_c00237{width:160.917972pt;}
._8_c00237{width:164.958568pt;}
._17_c00237{width:171.117501pt;}
._10_c00237{width:174.605804pt;}
._14_c00237{width:246.611068pt;}
._22_c00237{width:257.102832pt;}
._24_c00237{width:260.304489pt;}
._28_c00237{width:267.716279pt;}
._11_c00237{width:286.222417pt;}
._1f_c00237{width:287.115407pt;}
._13_c00237{width:294.361117pt;}
._26_c00237{width:295.258481pt;}
._23_c00237{width:316.900917pt;}
._b_c00237{width:325.594161pt;}
._1b_c00237{width:351.597219pt;}
._27_c00237{width:406.553638pt;}
._7_c00237{width:901.752877pt;}
.fs2_c00237{font-size:44.963715pt;}
.fs1_c00237{font-size:48.711767pt;}
.fs0_c00237{font-size:71.191972pt;}
.y0_c00237{bottom:0.000000pt;}
.y1_c00237{bottom:0.107500pt;}
.y6_c00237{bottom:2.528925pt;}
.y34_c00237{bottom:2.533096pt;}
.y7_c00237{bottom:6.068128pt;}
.y32_c00237{bottom:56.311488pt;}
.y33_c00237{bottom:56.998080pt;}
.y35_c00237{bottom:59.423676pt;}
.y31_c00237{bottom:206.252762pt;}
.y30_c00237{bottom:228.577153pt;}
.y2f_c00237{bottom:229.527778pt;}
.y2e_c00237{bottom:252.167677pt;}
.y2d_c00237{bottom:272.748335pt;}
.y2c_c00237{bottom:293.333260pt;}
.y2b_c00237{bottom:313.917652pt;}
.y2a_c00237{bottom:334.499510pt;}
.y29_c00237{bottom:355.080702pt;}
.y28_c00237{bottom:375.823761pt;}
.y27_c00237{bottom:396.408686pt;}
.y26_c00237{bottom:419.839343pt;}
.y25_c00237{bottom:433.771204pt;}
.y24_c00237{bottom:448.656798pt;}
.y23_c00237{bottom:477.791186pt;}
.y22_c00237{bottom:500.113044pt;}
.y21_c00237{bottom:501.063669pt;}
.y20_c00237{bottom:523.708819pt;}
.y1f_c00237{bottom:544.449477pt;}
.y1e_c00237{bottom:565.033202pt;}
.y1d_c00237{bottom:585.616261pt;}
.y1c_c00237{bottom:606.199319pt;}
.y1b_c00237{bottom:626.781844pt;}
.y1a_c00237{bottom:647.364903pt;}
.y19_c00237{bottom:668.106761pt;}
.y18_c00237{bottom:688.690486pt;}
.y17_c00237{bottom:709.272345pt;}
.y16_c00237{bottom:732.706068pt;}
.y15_c00237{bottom:746.796730pt;}
.y14_c00237{bottom:760.732991pt;}
.y13_c00237{bottom:774.822318pt;}
.y12_c00237{bottom:789.707246pt;}
.y11_c00237{bottom:818.837901pt;}
.y10_c00237{bottom:841.164825pt;}
.yf_c00237{bottom:842.114199pt;}
.ye_c00237{bottom:864.750457pt;}
.yd_c00237{bottom:885.334849pt;}
.yc_c00237{bottom:908.767373pt;}
.yb_c00237{bottom:922.860434pt;}
.ya_c00237{bottom:937.584828pt;}
.y9_c00237{bottom:962.443485pt;}
.y8_c00237{bottom:1014.692797pt;}
.y5_c00237{bottom:1018.232000pt;}
.y4_c00237{bottom:1041.082217pt;}
.y3_c00237{bottom:1055.964078pt;}
.y2_c00237{bottom:1081.770734pt;}
.h8_c00237{height:12.666880pt;}
.h4_c00237{height:12.668800pt;}
.h5_c00237{height:40.332453pt;}
.h7_c00237{height:41.681364pt;}
.h3_c00237{height:45.155808pt;}
.h2_c00237{height:65.994958pt;}
.h6_c00237{height:1110.960672pt;}
.h1_c00237{height:1122.559167pt;}
.h0_c00237{height:1122.666667pt;}
.w4_c00237{width:35.627200pt;}
.w2_c00237{width:36.415040pt;}
.w3_c00237{width:785.062974pt;}
.w1_c00237{width:793.257550pt;}
.w0_c00237{width:793.333333pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:1.370626pt;}
.x4_c00237{left:94.366803pt;}
.x1_c00237{left:95.726178pt;}
.x3_c00237{left:175.749304pt;}
.x5_c00237{left:251.588718pt;}
.x7_c00237{left:417.206673pt;}
.x8_c00237{left:632.537121pt;}
.x6_c00237{left:639.029118pt;}
.x9_c00237{left:704.048000pt;}
.xa_c00237{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.107000;font-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_c00238{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls0_c00238{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00238{word-spacing:-14.062402px;}
.ws2_c00238{word-spacing:0.000000px;}
.ws1_c00238{word-spacing:17.040596px;}
._5_c00238{margin-left:-5.498440px;}
._9_c00238{margin-left:-4.483337px;}
._1_c00238{margin-left:-2.887239px;}
._3_c00238{margin-left:-1.750725px;}
._0_c00238{width:1.522265px;}
._4_c00238{width:3.068940px;}
._2_c00238{width:4.308527px;}
._15_c00238{width:6.387387px;}
._18_c00238{width:7.650767px;}
._25_c00238{width:15.660009px;}
._d_c00238{width:22.845051px;}
._1f_c00238{width:32.995699px;}
._6_c00238{width:36.224916px;}
._c_c00238{width:64.718028px;}
._1e_c00238{width:115.547409px;}
._23_c00238{width:117.112793px;}
._b_c00238{width:120.322822px;}
._10_c00238{width:138.815416px;}
._1c_c00238{width:145.247722px;}
._12_c00238{width:153.699382px;}
._14_c00238{width:159.341693px;}
._11_c00238{width:171.725317px;}
._8_c00238{width:185.578389px;}
._e_c00238{width:192.506126px;}
._24_c00238{width:197.802740px;}
._28_c00238{width:202.441049px;}
._21_c00238{width:268.849315px;}
._27_c00238{width:286.576903px;}
._17_c00238{width:292.030964px;}
._13_c00238{width:293.460830px;}
._1d_c00238{width:301.197843px;}
._f_c00238{width:321.998702px;}
._26_c00238{width:323.100981px;}
._20_c00238{width:327.451630px;}
._16_c00238{width:328.492119px;}
._22_c00238{width:330.371348px;}
._1b_c00238{width:331.855023px;}
._a_c00238{width:356.192983px;}
._29_c00238{width:387.252549px;}
._1a_c00238{width:394.135151px;}
._19_c00238{width:458.274537px;}
._7_c00238{width:1014.471987px;}
.fc0_c00238{color:rgb(35,31,32);}
.fs2_c00238{font-size:50.584180px;}
.fs1_c00238{font-size:54.800738px;}
.fs0_c00238{font-size:80.090968px;}
.y0_c00238{bottom:0.000000px;}
.y1_c00238{bottom:0.120938px;}
.y6_c00238{bottom:2.845041px;}
.y32_c00238{bottom:2.849733px;}
.y7_c00238{bottom:6.826644px;}
.y30_c00238{bottom:63.353435px;}
.y31_c00238{bottom:64.122840px;}
.y33_c00238{bottom:66.851636px;}
.y2f_c00238{bottom:310.944836px;}
.y2e_c00238{bottom:336.061876px;}
.y2d_c00238{bottom:337.129218px;}
.y2c_c00238{bottom:362.603765px;}
.y2b_c00238{bottom:385.758356px;}
.y2a_c00238{bottom:409.090097px;}
.y29_c00238{bottom:432.248887px;}
.y28_c00238{bottom:455.402728px;}
.y27_c00238{bottom:481.765668px;}
.y26_c00238{bottom:497.619011px;}
.y25_c00238{bottom:513.293705px;}
.y24_c00238{bottom:530.036548px;}
.y23_c00238{bottom:562.816185px;}
.y22_c00238{bottom:587.928275px;}
.y21_c00238{bottom:588.995618px;}
.y20_c00238{bottom:614.458361px;}
.y1f_c00238{bottom:637.797152px;}
.y1e_c00238{bottom:660.948892px;}
.y1d_c00238{bottom:684.105583px;}
.y1c_c00238{bottom:707.264374px;}
.y1b_c00238{bottom:730.417615px;}
.y1a_c00238{bottom:756.779204px;}
.y19_c00238{bottom:772.635998px;}
.y18_c00238{bottom:788.487991px;}
.y17_c00238{bottom:805.050835px;}
.y16_c00238{bottom:838.007022px;}
.y15_c00238{bottom:863.121962px;}
.y14_c00238{bottom:864.190008px;}
.y13_c00238{bottom:889.664797px;}
.y12_c00238{bottom:912.820138px;}
.y11_c00238{bottom:935.976079px;}
.y10_c00238{bottom:959.132020px;}
.yf_c00238{bottom:982.288710px;}
.ye_c00238{bottom:1005.446151px;}
.yd_c00238{bottom:1028.777892px;}
.yc_c00238{bottom:1051.935932px;}
.yb_c00238{bottom:1078.296022px;}
.ya_c00238{bottom:1093.972216px;}
.y9_c00238{bottom:1110.716409px;}
.y8_c00238{bottom:1141.529397px;}
.y5_c00238{bottom:1145.511000px;}
.y4_c00238{bottom:1171.217494px;}
.y3_c00238{bottom:1187.959587px;}
.y2_c00238{bottom:1216.992076px;}
.h8_c00238{height:14.250240px;}
.h4_c00238{height:14.252400px;}
.h5_c00238{height:45.374009px;}
.h7_c00238{height:46.891535px;}
.h3_c00238{height:50.800284px;}
.h2_c00238{height:74.244327px;}
.h6_c00238{height:1249.830756px;}
.h1_c00238{height:1262.879062px;}
.h0_c00238{height:1263.000000px;}
.w4_c00238{width:40.080600px;}
.w2_c00238{width:40.966920px;}
.w3_c00238{width:883.195846px;}
.w1_c00238{width:892.414744px;}
.w0_c00238{width:892.500000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:1.541954px;}
.x4_c00238{left:106.162653px;}
.x1_c00238{left:107.691951px;}
.x3_c00238{left:197.717966px;}
.x5_c00238{left:283.037307px;}
.x7_c00238{left:469.355268px;}
.x6_c00238{left:711.604261px;}
.x8_c00238{left:718.907758px;}
.x9_c00238{left:792.054000px;}
.xa_c00238{left:853.136002px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws0_c00238{word-spacing:-12.499913pt;}
.ws2_c00238{word-spacing:0.000000pt;}
.ws1_c00238{word-spacing:15.147197pt;}
._5_c00238{margin-left:-4.887502pt;}
._9_c00238{margin-left:-3.985188pt;}
._1_c00238{margin-left:-2.566435pt;}
._3_c00238{margin-left:-1.556200pt;}
._0_c00238{width:1.353124pt;}
._4_c00238{width:2.727947pt;}
._2_c00238{width:3.829802pt;}
._15_c00238{width:5.677677pt;}
._18_c00238{width:6.800682pt;}
._25_c00238{width:13.920008pt;}
._d_c00238{width:20.306712pt;}
._1f_c00238{width:29.329510pt;}
._6_c00238{width:32.199926pt;}
._c_c00238{width:57.527136pt;}
._1e_c00238{width:102.708808pt;}
._23_c00238{width:104.100260pt;}
._b_c00238{width:106.953620pt;}
._10_c00238{width:123.391481pt;}
._1c_c00238{width:129.109086pt;}
._12_c00238{width:136.621673pt;}
._14_c00238{width:141.637061pt;}
._11_c00238{width:152.644727pt;}
._8_c00238{width:164.958568pt;}
._e_c00238{width:171.116557pt;}
._24_c00238{width:175.824657pt;}
._28_c00238{width:179.947599pt;}
._21_c00238{width:238.977169pt;}
._27_c00238{width:254.735025pt;}
._17_c00238{width:259.583079pt;}
._13_c00238{width:260.854071pt;}
._1d_c00238{width:267.731416pt;}
._f_c00238{width:286.221068pt;}
._26_c00238{width:287.200872pt;}
._20_c00238{width:291.068116pt;}
._16_c00238{width:291.992995pt;}
._22_c00238{width:293.663420pt;}
._1b_c00238{width:294.982243pt;}
._a_c00238{width:316.615984pt;}
._29_c00238{width:344.224488pt;}
._1a_c00238{width:350.342356pt;}
._19_c00238{width:407.355144pt;}
._7_c00238{width:901.752877pt;}
.fs2_c00238{font-size:44.963715pt;}
.fs1_c00238{font-size:48.711767pt;}
.fs0_c00238{font-size:71.191972pt;}
.y0_c00238{bottom:0.000000pt;}
.y1_c00238{bottom:0.107500pt;}
.y6_c00238{bottom:2.528925pt;}
.y32_c00238{bottom:2.533096pt;}
.y7_c00238{bottom:6.068128pt;}
.y30_c00238{bottom:56.314164pt;}
.y31_c00238{bottom:56.998080pt;}
.y33_c00238{bottom:59.423676pt;}
.y2f_c00238{bottom:276.395410pt;}
.y2e_c00238{bottom:298.721667pt;}
.y2d_c00238{bottom:299.670416pt;}
.y2c_c00238{bottom:322.314458pt;}
.y2b_c00238{bottom:342.896316pt;}
.y2a_c00238{bottom:363.635641pt;}
.y29_c00238{bottom:384.221233pt;}
.y28_c00238{bottom:404.802425pt;}
.y27_c00238{bottom:428.236149pt;}
.y26_c00238{bottom:442.328010pt;}
.y25_c00238{bottom:456.261071pt;}
.y24_c00238{bottom:471.143598pt;}
.y23_c00238{bottom:500.281053pt;}
.y22_c00238{bottom:522.602911pt;}
.y21_c00238{bottom:523.551660pt;}
.y20_c00238{bottom:546.185210pt;}
.y1f_c00238{bottom:566.930801pt;}
.y1e_c00238{bottom:587.510127pt;}
.y1d_c00238{bottom:608.093852pt;}
.y1c_c00238{bottom:628.679443pt;}
.y1b_c00238{bottom:649.260102pt;}
.y1a_c00238{bottom:672.692626pt;}
.y19_c00238{bottom:686.787554pt;}
.y18_c00238{bottom:700.878215pt;}
.y17_c00238{bottom:715.600742pt;}
.y16_c00238{bottom:744.895130pt;}
.y15_c00238{bottom:767.219521pt;}
.y14_c00238{bottom:768.168896pt;}
.y13_c00238{bottom:790.813153pt;}
.y12_c00238{bottom:811.395678pt;}
.y11_c00238{bottom:831.978737pt;}
.y10_c00238{bottom:852.561795pt;}
.yf_c00238{bottom:873.145520pt;}
.ye_c00238{bottom:893.729912pt;}
.yd_c00238{bottom:914.469237pt;}
.yc_c00238{bottom:935.054162pt;}
.yb_c00238{bottom:958.485353pt;}
.ya_c00238{bottom:972.419747pt;}
.y9_c00238{bottom:987.303475pt;}
.y8_c00238{bottom:1014.692797pt;}
.y5_c00238{bottom:1018.232000pt;}
.y4_c00238{bottom:1041.082217pt;}
.y3_c00238{bottom:1055.964078pt;}
.y2_c00238{bottom:1081.770734pt;}
.h8_c00238{height:12.666880pt;}
.h4_c00238{height:12.668800pt;}
.h5_c00238{height:40.332453pt;}
.h7_c00238{height:41.681364pt;}
.h3_c00238{height:45.155808pt;}
.h2_c00238{height:65.994958pt;}
.h6_c00238{height:1110.960672pt;}
.h1_c00238{height:1122.559167pt;}
.h0_c00238{height:1122.666667pt;}
.w4_c00238{width:35.627200pt;}
.w2_c00238{width:36.415040pt;}
.w3_c00238{width:785.062974pt;}
.w1_c00238{width:793.257550pt;}
.w0_c00238{width:793.333333pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:1.370626pt;}
.x4_c00238{left:94.366803pt;}
.x1_c00238{left:95.726178pt;}
.x3_c00238{left:175.749304pt;}
.x5_c00238{left:251.588718pt;}
.x7_c00238{left:417.204683pt;}
.x6_c00238{left:632.537121pt;}
.x8_c00238{left:639.029118pt;}
.x9_c00238{left:704.048000pt;}
.xa_c00238{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.107000;font-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_c00239{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls0_c00239{letter-spacing:0.000000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00239{word-spacing:-14.062402px;}
.ws2_c00239{word-spacing:0.000000px;}
.ws1_c00239{word-spacing:17.040596px;}
._5_c00239{margin-left:-5.498440px;}
._b_c00239{margin-left:-4.234714px;}
._1_c00239{margin-left:-2.887239px;}
._3_c00239{margin-left:-1.750725px;}
._0_c00239{width:1.522265px;}
._4_c00239{width:3.068940px;}
._2_c00239{width:4.308527px;}
._1e_c00239{width:6.022854px;}
._1a_c00239{width:11.654183px;}
._a_c00239{width:16.022343px;}
._18_c00239{width:20.016567px;}
._12_c00239{width:31.589868px;}
._e_c00239{width:32.996720px;}
._6_c00239{width:36.224916px;}
._d_c00239{width:64.716860px;}
._17_c00239{width:113.138134px;}
._c_c00239{width:115.546949px;}
._14_c00239{width:120.055310px;}
._1c_c00239{width:145.248263px;}
._22_c00239{width:162.213694px;}
._13_c00239{width:167.917738px;}
._20_c00239{width:180.720256px;}
._8_c00239{width:185.578389px;}
._15_c00239{width:222.680201px;}
._21_c00239{width:243.706323px;}
._19_c00239{width:259.464855px;}
._9_c00239{width:277.634976px;}
._16_c00239{width:292.354951px;}
._1f_c00239{width:298.449438px;}
._1d_c00239{width:301.186648px;}
._10_c00239{width:322.322188px;}
._f_c00239{width:327.446227px;}
._11_c00239{width:331.254724px;}
._1b_c00239{width:403.930763px;}
._7_c00239{width:1014.471987px;}
.fc0_c00239{color:rgb(35,31,32);}
.fs2_c00239{font-size:50.584180px;}
.fs1_c00239{font-size:54.800738px;}
.fs0_c00239{font-size:80.090968px;}
.y0_c00239{bottom:0.000000px;}
.y1_c00239{bottom:0.120938px;}
.y6_c00239{bottom:2.845041px;}
.y36_c00239{bottom:2.849733px;}
.y7_c00239{bottom:6.826644px;}
.y34_c00239{bottom:63.351981px;}
.y35_c00239{bottom:64.122840px;}
.y37_c00239{bottom:66.851636px;}
.y33_c00239{bottom:233.103914px;}
.y32_c00239{bottom:258.220203px;}
.y31_c00239{bottom:259.288250px;}
.y30_c00239{bottom:284.759036px;}
.y2f_c00239{bottom:307.918577px;}
.y2e_c00239{bottom:331.071817px;}
.y2d_c00239{bottom:354.229258px;}
.y2c_c00239{bottom:377.383849px;}
.y2b_c00239{bottom:400.540540px;}
.y2a_c00239{bottom:423.695130px;}
.y29_c00239{bottom:450.060920px;}
.y28_c00239{bottom:465.915013px;}
.y27_c00239{bottom:481.765507px;}
.y26_c00239{bottom:498.511050px;}
.y25_c00239{bottom:531.285737px;}
.y24_c00239{bottom:556.399177px;}
.y23_c00239{bottom:557.468630px;}
.y22_c00239{bottom:582.938124px;}
.y21_c00239{bottom:606.096914px;}
.y20_c00239{bottom:629.250755px;}
.y1f_c00239{bottom:652.406696px;}
.y1e_c00239{bottom:675.738436px;}
.y1d_c00239{bottom:698.897977px;}
.y1c_c00239{bottom:722.051218px;}
.y1b_c00239{bottom:748.414157px;}
.y1a_c00239{bottom:764.267501px;}
.y19_c00239{bottom:779.942195px;}
.y18_c00239{bottom:796.683538px;}
.y17_c00239{bottom:829.460325px;}
.y16_c00239{bottom:845.313669px;}
.y15_c00239{bottom:870.429959px;}
.y14_c00239{bottom:871.498005px;}
.y13_c00239{bottom:896.966644px;}
.y12_c00239{bottom:920.124085px;}
.y11_c00239{bottom:943.278676px;}
.y10_c00239{bottom:966.435367px;}
.yf_c00239{bottom:989.771307px;}
.ye_c00239{bottom:1012.925898px;}
.yd_c00239{bottom:1036.082589px;}
.yc_c00239{bottom:1062.445528px;}
.yb_c00239{bottom:1078.296022px;}
.ya_c00239{bottom:1093.972216px;}
.y9_c00239{bottom:1110.716409px;}
.y8_c00239{bottom:1141.529397px;}
.y5_c00239{bottom:1145.511000px;}
.y4_c00239{bottom:1171.217494px;}
.y3_c00239{bottom:1187.959587px;}
.y2_c00239{bottom:1216.992076px;}
.h8_c00239{height:14.250240px;}
.h4_c00239{height:14.252400px;}
.h5_c00239{height:45.374009px;}
.h7_c00239{height:46.891535px;}
.h3_c00239{height:50.800284px;}
.h2_c00239{height:74.244327px;}
.h6_c00239{height:1249.830756px;}
.h1_c00239{height:1262.879062px;}
.h0_c00239{height:1263.000000px;}
.w4_c00239{width:40.080600px;}
.w2_c00239{width:40.966920px;}
.w3_c00239{width:883.195846px;}
.w1_c00239{width:892.414744px;}
.w0_c00239{width:892.500000px;}
.x0_c00239{left:0.000000px;}
.x2_c00239{left:1.541954px;}
.x4_c00239{left:106.162653px;}
.x1_c00239{left:107.691951px;}
.x3_c00239{left:197.717966px;}
.x5_c00239{left:283.035810px;}
.x7_c00239{left:469.355268px;}
.x6_c00239{left:711.604261px;}
.x8_c00239{left:792.054000px;}
.x9_c00239{left:853.136002px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws0_c00239{word-spacing:-12.499913pt;}
.ws2_c00239{word-spacing:0.000000pt;}
.ws1_c00239{word-spacing:15.147197pt;}
._5_c00239{margin-left:-4.887502pt;}
._b_c00239{margin-left:-3.764190pt;}
._1_c00239{margin-left:-2.566435pt;}
._3_c00239{margin-left:-1.556200pt;}
._0_c00239{width:1.353124pt;}
._4_c00239{width:2.727947pt;}
._2_c00239{width:3.829802pt;}
._1e_c00239{width:5.353648pt;}
._1a_c00239{width:10.359274pt;}
._a_c00239{width:14.242083pt;}
._18_c00239{width:17.792504pt;}
._12_c00239{width:28.079883pt;}
._e_c00239{width:29.330418pt;}
._6_c00239{width:32.199926pt;}
._d_c00239{width:57.526098pt;}
._17_c00239{width:100.567231pt;}
._c_c00239{width:102.708399pt;}
._14_c00239{width:106.715831pt;}
._1c_c00239{width:129.109567pt;}
._22_c00239{width:144.189950pt;}
._13_c00239{width:149.260212pt;}
._20_c00239{width:160.640228pt;}
._8_c00239{width:164.958568pt;}
._15_c00239{width:197.937957pt;}
._21_c00239{width:216.627842pt;}
._19_c00239{width:230.635427pt;}
._9_c00239{width:246.786646pt;}
._16_c00239{width:259.871068pt;}
._1f_c00239{width:265.288389pt;}
._1d_c00239{width:267.721464pt;}
._10_c00239{width:286.508611pt;}
._f_c00239{width:291.063313pt;}
._11_c00239{width:294.448644pt;}
._1b_c00239{width:359.049567pt;}
._7_c00239{width:901.752877pt;}
.fs2_c00239{font-size:44.963715pt;}
.fs1_c00239{font-size:48.711767pt;}
.fs0_c00239{font-size:71.191972pt;}
.y0_c00239{bottom:0.000000pt;}
.y1_c00239{bottom:0.107500pt;}
.y6_c00239{bottom:2.528925pt;}
.y36_c00239{bottom:2.533096pt;}
.y7_c00239{bottom:6.068128pt;}
.y34_c00239{bottom:56.312872pt;}
.y35_c00239{bottom:56.998080pt;}
.y37_c00239{bottom:59.423676pt;}
.y33_c00239{bottom:207.203479pt;}
.y32_c00239{bottom:229.529070pt;}
.y31_c00239{bottom:230.478444pt;}
.y30_c00239{bottom:253.119143pt;}
.y2f_c00239{bottom:273.705401pt;}
.y2e_c00239{bottom:294.286060pt;}
.y2d_c00239{bottom:314.870452pt;}
.y2c_c00239{bottom:335.452310pt;}
.y2b_c00239{bottom:356.036035pt;}
.y2a_c00239{bottom:376.617894pt;}
.y29_c00239{bottom:400.054151pt;}
.y28_c00239{bottom:414.146679pt;}
.y27_c00239{bottom:428.236006pt;}
.y26_c00239{bottom:443.120934pt;}
.y25_c00239{bottom:472.253989pt;}
.y24_c00239{bottom:494.577046pt;}
.y23_c00239{bottom:495.527671pt;}
.y22_c00239{bottom:518.167221pt;}
.y21_c00239{bottom:538.752813pt;}
.y20_c00239{bottom:559.334005pt;}
.y1f_c00239{bottom:579.917063pt;}
.y1e_c00239{bottom:600.656388pt;}
.y1d_c00239{bottom:621.242646pt;}
.y1c_c00239{bottom:641.823305pt;}
.y1b_c00239{bottom:665.257029pt;}
.y1a_c00239{bottom:679.348890pt;}
.y19_c00239{bottom:693.281951pt;}
.y18_c00239{bottom:708.163145pt;}
.y17_c00239{bottom:737.298067pt;}
.y16_c00239{bottom:751.389928pt;}
.y15_c00239{bottom:773.715519pt;}
.y14_c00239{bottom:774.664893pt;}
.y13_c00239{bottom:797.303684pt;}
.y12_c00239{bottom:817.888076pt;}
.y11_c00239{bottom:838.469934pt;}
.y10_c00239{bottom:859.053659pt;}
.yf_c00239{bottom:879.796718pt;}
.ye_c00239{bottom:900.378576pt;}
.yd_c00239{bottom:920.962301pt;}
.yc_c00239{bottom:944.396025pt;}
.yb_c00239{bottom:958.485353pt;}
.ya_c00239{bottom:972.419747pt;}
.y9_c00239{bottom:987.303475pt;}
.y8_c00239{bottom:1014.692797pt;}
.y5_c00239{bottom:1018.232000pt;}
.y4_c00239{bottom:1041.082217pt;}
.y3_c00239{bottom:1055.964078pt;}
.y2_c00239{bottom:1081.770734pt;}
.h8_c00239{height:12.666880pt;}
.h4_c00239{height:12.668800pt;}
.h5_c00239{height:40.332453pt;}
.h7_c00239{height:41.681364pt;}
.h3_c00239{height:45.155808pt;}
.h2_c00239{height:65.994958pt;}
.h6_c00239{height:1110.960672pt;}
.h1_c00239{height:1122.559167pt;}
.h0_c00239{height:1122.666667pt;}
.w4_c00239{width:35.627200pt;}
.w2_c00239{width:36.415040pt;}
.w3_c00239{width:785.062974pt;}
.w1_c00239{width:793.257550pt;}
.w0_c00239{width:793.333333pt;}
.x0_c00239{left:0.000000pt;}
.x2_c00239{left:1.370626pt;}
.x4_c00239{left:94.366803pt;}
.x1_c00239{left:95.726178pt;}
.x3_c00239{left:175.749304pt;}
.x5_c00239{left:251.587386pt;}
.x7_c00239{left:417.204683pt;}
.x6_c00239{left:632.537121pt;}
.x8_c00239{left:704.048000pt;}
.x9_c00239{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.107000;font-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_c00240{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls0_c00240{letter-spacing:0.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00240{word-spacing:-14.062402px;}
.ws2_c00240{word-spacing:0.000000px;}
.ws1_c00240{word-spacing:17.040596px;}
._5_c00240{margin-left:-5.498440px;}
._a_c00240{margin-left:-4.221311px;}
._1_c00240{margin-left:-2.887239px;}
._3_c00240{margin-left:-1.750725px;}
._0_c00240{width:1.522265px;}
._4_c00240{width:3.068940px;}
._2_c00240{width:4.308527px;}
._9_c00240{width:5.825625px;}
._15_c00240{width:31.359744px;}
._e_c00240{width:32.996700px;}
._6_c00240{width:36.224916px;}
._d_c00240{width:64.718377px;}
._c_c00240{width:113.000261px;}
._18_c00240{width:115.875986px;}
._14_c00240{width:121.520186px;}
._11_c00240{width:145.248268px;}
._16_c00240{width:162.257441px;}
._19_c00240{width:171.901514px;}
._8_c00240{width:185.578389px;}
._f_c00240{width:195.941443px;}
._b_c00240{width:281.816921px;}
._17_c00240{width:288.956472px;}
._13_c00240{width:294.066561px;}
._10_c00240{width:322.322011px;}
._12_c00240{width:331.161063px;}
._7_c00240{width:1014.471987px;}
.fc0_c00240{color:rgb(35,31,32);}
.fs2_c00240{font-size:50.584180px;}
.fs1_c00240{font-size:54.800738px;}
.fs4_c00240{font-size:67.447173px;}
.fs3_c00240{font-size:71.662171px;}
.fs0_c00240{font-size:80.090968px;}
.y0_c00240{bottom:0.000000px;}
.y1_c00240{bottom:0.120938px;}
.y6_c00240{bottom:2.845041px;}
.y28_c00240{bottom:2.849733px;}
.y7_c00240{bottom:6.826644px;}
.y26_c00240{bottom:63.350481px;}
.y27_c00240{bottom:64.122840px;}
.y29_c00240{bottom:66.851636px;}
.y25_c00240{bottom:495.477809px;}
.y24_c00240{bottom:520.594099px;}
.y23_c00240{bottom:521.662145px;}
.y22_c00240{bottom:547.134431px;}
.y21_c00240{bottom:570.291872px;}
.y20_c00240{bottom:593.447212px;}
.y1f_c00240{bottom:619.810152px;}
.y1e_c00240{bottom:635.660646px;}
.y1d_c00240{bottom:652.223489px;}
.y1c_c00240{bottom:685.179676px;}
.y1b_c00240{bottom:710.294616px;}
.y1a_c00240{bottom:711.364069px;}
.y19_c00240{bottom:736.836450px;}
.y18_c00240{bottom:759.991040px;}
.y17_c00240{bottom:783.144281px;}
.y16_c00240{bottom:809.509320px;}
.y15_c00240{bottom:825.362664px;}
.y14_c00240{bottom:841.929707px;}
.y13_c00240{bottom:874.881694px;}
.y12_c00240{bottom:899.995134px;}
.y11_c00240{bottom:901.065993px;}
.y10_c00240{bottom:926.534933px;}
.yf_c00240{bottom:949.689523px;}
.ye_c00240{bottom:976.053813px;}
.yd_c00240{bottom:991.729257px;}
.yc_c00240{bottom:1008.473450px;}
.yb_c00240{bottom:1027.535442px;}
.ya_c00240{bottom:1049.621433px;}
.y9_c00240{bottom:1082.748920px;}
.y8_c00240{bottom:1141.529397px;}
.y5_c00240{bottom:1145.511000px;}
.y4_c00240{bottom:1171.217494px;}
.y3_c00240{bottom:1187.959587px;}
.y2_c00240{bottom:1216.992076px;}
.ha_c00240{height:14.250240px;}
.h4_c00240{height:14.252400px;}
.h5_c00240{height:45.374009px;}
.h9_c00240{height:46.891535px;}
.h3_c00240{height:50.800284px;}
.h8_c00240{height:62.523529px;}
.h7_c00240{height:66.430833px;}
.h2_c00240{height:74.244327px;}
.h6_c00240{height:1249.830756px;}
.h1_c00240{height:1262.879062px;}
.h0_c00240{height:1263.000000px;}
.w4_c00240{width:40.080600px;}
.w2_c00240{width:40.966920px;}
.w3_c00240{width:883.195846px;}
.w1_c00240{width:892.414744px;}
.w0_c00240{width:892.500000px;}
.x0_c00240{left:0.000000px;}
.x2_c00240{left:1.541954px;}
.x4_c00240{left:106.162653px;}
.x1_c00240{left:107.691951px;}
.x3_c00240{left:197.717966px;}
.x5_c00240{left:283.032814px;}
.x7_c00240{left:469.357507px;}
.x6_c00240{left:718.907758px;}
.x8_c00240{left:792.054000px;}
.x9_c00240{left:853.136002px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:-12.499913pt;}
.ws2_c00240{word-spacing:0.000000pt;}
.ws1_c00240{word-spacing:15.147197pt;}
._5_c00240{margin-left:-4.887502pt;}
._a_c00240{margin-left:-3.752276pt;}
._1_c00240{margin-left:-2.566435pt;}
._3_c00240{margin-left:-1.556200pt;}
._0_c00240{width:1.353124pt;}
._4_c00240{width:2.727947pt;}
._2_c00240{width:3.829802pt;}
._9_c00240{width:5.178333pt;}
._15_c00240{width:27.875328pt;}
._e_c00240{width:29.330400pt;}
._6_c00240{width:32.199926pt;}
._d_c00240{width:57.527447pt;}
._c_c00240{width:100.444676pt;}
._18_c00240{width:103.000877pt;}
._14_c00240{width:108.017944pt;}
._11_c00240{width:129.109572pt;}
._16_c00240{width:144.228837pt;}
._19_c00240{width:152.801345pt;}
._8_c00240{width:164.958568pt;}
._f_c00240{width:174.170171pt;}
._b_c00240{width:250.503930pt;}
._17_c00240{width:256.850197pt;}
._13_c00240{width:261.392498pt;}
._10_c00240{width:286.508454pt;}
._12_c00240{width:294.365389pt;}
._7_c00240{width:901.752877pt;}
.fs2_c00240{font-size:44.963715pt;}
.fs1_c00240{font-size:48.711767pt;}
.fs4_c00240{font-size:59.953043pt;}
.fs3_c00240{font-size:63.699708pt;}
.fs0_c00240{font-size:71.191972pt;}
.y0_c00240{bottom:0.000000pt;}
.y1_c00240{bottom:0.107500pt;}
.y6_c00240{bottom:2.528925pt;}
.y28_c00240{bottom:2.533096pt;}
.y7_c00240{bottom:6.068128pt;}
.y26_c00240{bottom:56.311539pt;}
.y27_c00240{bottom:56.998080pt;}
.y29_c00240{bottom:59.423676pt;}
.y25_c00240{bottom:440.424719pt;}
.y24_c00240{bottom:462.750310pt;}
.y23_c00240{bottom:463.699684pt;}
.y22_c00240{bottom:486.341716pt;}
.y21_c00240{bottom:506.926108pt;}
.y20_c00240{bottom:527.508633pt;}
.y1f_c00240{bottom:550.942357pt;}
.y1e_c00240{bottom:565.031685pt;}
.y1d_c00240{bottom:579.754212pt;}
.y1c_c00240{bottom:609.048601pt;}
.y1b_c00240{bottom:631.372992pt;}
.y1a_c00240{bottom:632.323617pt;}
.y19_c00240{bottom:654.965733pt;}
.y18_c00240{bottom:675.547591pt;}
.y17_c00240{bottom:696.128250pt;}
.y16_c00240{bottom:719.563840pt;}
.y15_c00240{bottom:733.655701pt;}
.y14_c00240{bottom:748.381962pt;}
.y13_c00240{bottom:777.672617pt;}
.y12_c00240{bottom:799.995675pt;}
.y11_c00240{bottom:800.947549pt;}
.y10_c00240{bottom:823.586607pt;}
.yf_c00240{bottom:844.168465pt;}
.ye_c00240{bottom:867.603389pt;}
.yd_c00240{bottom:881.537117pt;}
.yc_c00240{bottom:896.420844pt;}
.yb_c00240{bottom:913.364838pt;}
.ya_c00240{bottom:932.996830pt;}
.y9_c00240{bottom:962.443485pt;}
.y8_c00240{bottom:1014.692797pt;}
.y5_c00240{bottom:1018.232000pt;}
.y4_c00240{bottom:1041.082217pt;}
.y3_c00240{bottom:1055.964078pt;}
.y2_c00240{bottom:1081.770734pt;}
.ha_c00240{height:12.666880pt;}
.h4_c00240{height:12.668800pt;}
.h5_c00240{height:40.332453pt;}
.h9_c00240{height:41.681364pt;}
.h3_c00240{height:45.155808pt;}
.h8_c00240{height:55.576471pt;}
.h7_c00240{height:59.049629pt;}
.h2_c00240{height:65.994958pt;}
.h6_c00240{height:1110.960672pt;}
.h1_c00240{height:1122.559167pt;}
.h0_c00240{height:1122.666667pt;}
.w4_c00240{width:35.627200pt;}
.w2_c00240{width:36.415040pt;}
.w3_c00240{width:785.062974pt;}
.w1_c00240{width:793.257550pt;}
.w0_c00240{width:793.333333pt;}
.x0_c00240{left:0.000000pt;}
.x2_c00240{left:1.370626pt;}
.x4_c00240{left:94.366803pt;}
.x1_c00240{left:95.726178pt;}
.x3_c00240{left:175.749304pt;}
.x5_c00240{left:251.584724pt;}
.x7_c00240{left:417.206673pt;}
.x6_c00240{left:639.029118pt;}
.x8_c00240{left:704.048000pt;}
.x9_c00240{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.107000;font-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_c00241{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00241{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls0_c00241{letter-spacing:0.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:-14.062402px;}
.ws3_c00241{word-spacing:0.000000px;}
.ws1_c00241{word-spacing:17.040596px;}
.ws2_c00241{word-spacing:248.957123px;}
._5_c00241{margin-left:-5.498440px;}
._9_c00241{margin-left:-4.483337px;}
._1_c00241{margin-left:-2.887239px;}
._3_c00241{margin-left:-1.750725px;}
._0_c00241{width:1.522265px;}
._4_c00241{width:3.068940px;}
._2_c00241{width:4.308527px;}
._e_c00241{width:5.401723px;}
._c_c00241{width:7.278254px;}
._d_c00241{width:8.291996px;}
._b_c00241{width:10.622330px;}
._f_c00241{width:12.471393px;}
._1f_c00241{width:19.821926px;}
._18_c00241{width:32.995198px;}
._6_c00241{width:36.224916px;}
._11_c00241{width:64.718200px;}
._10_c00241{width:113.211136px;}
._1a_c00241{width:116.041091px;}
._17_c00241{width:120.029884px;}
._12_c00241{width:133.386726px;}
._1c_c00241{width:145.248182px;}
._1b_c00241{width:167.713329px;}
._8_c00241{width:185.578389px;}
._14_c00241{width:196.780151px;}
._20_c00241{width:201.971970px;}
._21_c00241{width:271.940156px;}
._1e_c00241{width:277.142946px;}
._16_c00241{width:290.069809px;}
._13_c00241{width:291.965407px;}
._a_c00241{width:298.469303px;}
._1d_c00241{width:301.191211px;}
._15_c00241{width:321.998196px;}
._19_c00241{width:330.851314px;}
._7_c00241{width:1014.471987px;}
.fc0_c00241{color:rgb(35,31,32);}
.fs2_c00241{font-size:50.584180px;}
.fs1_c00241{font-size:54.800738px;}
.fs3_c00241{font-size:67.447173px;}
.fs0_c00241{font-size:80.090968px;}
.y0_c00241{bottom:0.000000px;}
.y1_c00241{bottom:0.120938px;}
.y6_c00241{bottom:2.845041px;}
.y2b_c00241{bottom:2.849733px;}
.y7_c00241{bottom:6.826644px;}
.y29_c00241{bottom:63.350706px;}
.y2a_c00241{bottom:64.122840px;}
.y2c_c00241{bottom:66.851636px;}
.y28_c00241{bottom:495.479534px;}
.y27_c00241{bottom:511.331527px;}
.y26_c00241{bottom:536.444967px;}
.y25_c00241{bottom:537.338638px;}
.y24_c00241{bottom:562.807832px;}
.y23_c00241{bottom:586.143772px;}
.y22_c00241{bottom:609.300463px;}
.y21_c00241{bottom:625.150957px;}
.y20_c00241{bottom:651.333896px;}
.y1f_c00241{bottom:667.190090px;}
.y1e_c00241{bottom:683.043434px;}
.y1d_c00241{bottom:699.786877px;}
.y1c_c00241{bottom:732.563064px;}
.y1b_c00241{bottom:757.676504px;}
.y1a_c00241{bottom:758.744550px;}
.y19_c00241{bottom:784.213836px;}
.y18_c00241{bottom:807.370527px;}
.y17_c00241{bottom:830.525118px;}
.y16_c00241{bottom:856.889407px;}
.y15_c00241{bottom:872.744101px;}
.y14_c00241{bottom:888.594594px;}
.y13_c00241{bottom:905.160888px;}
.y12_c00241{bottom:938.111375px;}
.y11_c00241{bottom:963.230514px;}
.y10_c00241{bottom:964.299968px;}
.yf_c00241{bottom:989.770407px;}
.ye_c00241{bottom:1012.926348px;}
.yd_c00241{bottom:1039.289288px;}
.yc_c00241{bottom:1054.961281px;}
.yb_c00241{bottom:1070.815375px;}
.ya_c00241{bottom:1087.560918px;}
.y9_c00241{bottom:1106.619911px;}
.y8_c00241{bottom:1141.529397px;}
.y5_c00241{bottom:1145.511000px;}
.y4_c00241{bottom:1171.217494px;}
.y3_c00241{bottom:1187.959587px;}
.y2_c00241{bottom:1216.992076px;}
.h9_c00241{height:14.250240px;}
.h4_c00241{height:14.252400px;}
.h5_c00241{height:45.374009px;}
.h8_c00241{height:46.891535px;}
.h3_c00241{height:50.800284px;}
.h7_c00241{height:62.523529px;}
.h2_c00241{height:74.244327px;}
.h6_c00241{height:1249.830756px;}
.h1_c00241{height:1262.879062px;}
.h0_c00241{height:1263.000000px;}
.w4_c00241{width:40.080600px;}
.w2_c00241{width:40.966920px;}
.w3_c00241{width:883.195846px;}
.w1_c00241{width:892.414744px;}
.w0_c00241{width:892.500000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:1.541954px;}
.x4_c00241{left:106.162653px;}
.x1_c00241{left:107.691951px;}
.x3_c00241{left:197.717966px;}
.x5_c00241{left:283.040303px;}
.x7_c00241{left:469.355268px;}
.x8_c00241{left:602.068920px;}
.x9_c00241{left:704.120764px;}
.x6_c00241{left:711.604261px;}
.xa_c00241{left:792.054000px;}
.xb_c00241{left:853.136002px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws0_c00241{word-spacing:-12.499913pt;}
.ws3_c00241{word-spacing:0.000000pt;}
.ws1_c00241{word-spacing:15.147197pt;}
.ws2_c00241{word-spacing:221.295220pt;}
._5_c00241{margin-left:-4.887502pt;}
._9_c00241{margin-left:-3.985188pt;}
._1_c00241{margin-left:-2.566435pt;}
._3_c00241{margin-left:-1.556200pt;}
._0_c00241{width:1.353124pt;}
._4_c00241{width:2.727947pt;}
._2_c00241{width:3.829802pt;}
._e_c00241{width:4.801532pt;}
._c_c00241{width:6.469559pt;}
._d_c00241{width:7.370663pt;}
._b_c00241{width:9.442071pt;}
._f_c00241{width:11.085683pt;}
._1f_c00241{width:17.619490pt;}
._18_c00241{width:29.329065pt;}
._6_c00241{width:32.199926pt;}
._11_c00241{width:57.527289pt;}
._10_c00241{width:100.632121pt;}
._1a_c00241{width:103.147637pt;}
._17_c00241{width:106.693230pt;}
._12_c00241{width:118.565979pt;}
._1c_c00241{width:129.109495pt;}
._1b_c00241{width:149.078514pt;}
._8_c00241{width:164.958568pt;}
._14_c00241{width:174.915690pt;}
._20_c00241{width:179.530640pt;}
._21_c00241{width:241.724583pt;}
._1e_c00241{width:246.349285pt;}
._16_c00241{width:257.839830pt;}
._13_c00241{width:259.524807pt;}
._a_c00241{width:265.306047pt;}
._1d_c00241{width:267.725521pt;}
._15_c00241{width:286.220618pt;}
._19_c00241{width:294.090057pt;}
._7_c00241{width:901.752877pt;}
.fs2_c00241{font-size:44.963715pt;}
.fs1_c00241{font-size:48.711767pt;}
.fs3_c00241{font-size:59.953043pt;}
.fs0_c00241{font-size:71.191972pt;}
.y0_c00241{bottom:0.000000pt;}
.y1_c00241{bottom:0.107500pt;}
.y6_c00241{bottom:2.528925pt;}
.y2b_c00241{bottom:2.533096pt;}
.y7_c00241{bottom:6.068128pt;}
.y29_c00241{bottom:56.311739pt;}
.y2a_c00241{bottom:56.998080pt;}
.y2c_c00241{bottom:59.423676pt;}
.y28_c00241{bottom:440.426252pt;}
.y27_c00241{bottom:454.516913pt;}
.y26_c00241{bottom:476.839971pt;}
.y25_c00241{bottom:477.634345pt;}
.y24_c00241{bottom:500.273628pt;}
.y23_c00241{bottom:521.016686pt;}
.y22_c00241{bottom:541.600412pt;}
.y21_c00241{bottom:555.689739pt;}
.y20_c00241{bottom:578.963463pt;}
.y1f_c00241{bottom:593.057858pt;}
.y1e_c00241{bottom:607.149719pt;}
.y1d_c00241{bottom:622.032779pt;}
.y1c_c00241{bottom:651.167168pt;}
.y1b_c00241{bottom:673.490226pt;}
.y1a_c00241{bottom:674.439600pt;}
.y19_c00241{bottom:697.078965pt;}
.y18_c00241{bottom:717.662691pt;}
.y17_c00241{bottom:738.244549pt;}
.y16_c00241{bottom:761.679473pt;}
.y15_c00241{bottom:775.772534pt;}
.y14_c00241{bottom:789.861862pt;}
.y13_c00241{bottom:804.587456pt;}
.y12_c00241{bottom:833.876777pt;}
.y11_c00241{bottom:856.204902pt;}
.y10_c00241{bottom:857.155527pt;}
.yf_c00241{bottom:879.795918pt;}
.ye_c00241{bottom:900.378976pt;}
.yd_c00241{bottom:923.812700pt;}
.yc_c00241{bottom:937.743361pt;}
.yb_c00241{bottom:951.835889pt;}
.ya_c00241{bottom:966.720816pt;}
.y9_c00241{bottom:983.662143pt;}
.y8_c00241{bottom:1014.692797pt;}
.y5_c00241{bottom:1018.232000pt;}
.y4_c00241{bottom:1041.082217pt;}
.y3_c00241{bottom:1055.964078pt;}
.y2_c00241{bottom:1081.770734pt;}
.h9_c00241{height:12.666880pt;}
.h4_c00241{height:12.668800pt;}
.h5_c00241{height:40.332453pt;}
.h8_c00241{height:41.681364pt;}
.h3_c00241{height:45.155808pt;}
.h7_c00241{height:55.576471pt;}
.h2_c00241{height:65.994958pt;}
.h6_c00241{height:1110.960672pt;}
.h1_c00241{height:1122.559167pt;}
.h0_c00241{height:1122.666667pt;}
.w4_c00241{width:35.627200pt;}
.w2_c00241{width:36.415040pt;}
.w3_c00241{width:785.062974pt;}
.w1_c00241{width:793.257550pt;}
.w0_c00241{width:793.333333pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:1.370626pt;}
.x4_c00241{left:94.366803pt;}
.x1_c00241{left:95.726178pt;}
.x3_c00241{left:175.749304pt;}
.x5_c00241{left:251.591380pt;}
.x7_c00241{left:417.204683pt;}
.x8_c00241{left:535.172373pt;}
.x9_c00241{left:625.885123pt;}
.x6_c00241{left:632.537121pt;}
.xa_c00241{left:704.048000pt;}
.xb_c00241{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.107000;font-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_c00242{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00242{word-spacing:-14.062402px;}
.ws2_c00242{word-spacing:0.000000px;}
.ws1_c00242{word-spacing:17.040596px;}
._17_c00242{margin-left:-6.668515px;}
._5_c00242{margin-left:-5.498440px;}
._9_c00242{margin-left:-4.483337px;}
._1_c00242{margin-left:-2.887239px;}
._3_c00242{margin-left:-1.750725px;}
._0_c00242{width:1.522265px;}
._4_c00242{width:3.068940px;}
._2_c00242{width:4.308527px;}
._15_c00242{width:6.271476px;}
._11_c00242{width:11.169616px;}
._d_c00242{width:32.996700px;}
._6_c00242{width:36.224916px;}
._c_c00242{width:64.716511px;}
._22_c00242{width:112.250379px;}
._b_c00242{width:115.547777px;}
._20_c00242{width:120.075390px;}
._23_c00242{width:132.854288px;}
._1e_c00242{width:141.226057px;}
._1a_c00242{width:142.813546px;}
._13_c00242{width:145.248142px;}
._8_c00242{width:185.578389px;}
._12_c00242{width:201.986593px;}
._21_c00242{width:229.745632px;}
._19_c00242{width:263.296058px;}
._1d_c00242{width:269.255570px;}
._1b_c00242{width:271.936063px;}
._10_c00242{width:280.187406px;}
._a_c00242{width:290.069859px;}
._1c_c00242{width:291.965377px;}
._18_c00242{width:292.982952px;}
._16_c00242{width:297.135928px;}
._14_c00242{width:301.198951px;}
._e_c00242{width:314.921021px;}
._f_c00242{width:322.323523px;}
._1f_c00242{width:347.893120px;}
._7_c00242{width:1014.471987px;}
.fc0_c00242{color:rgb(35,31,32);}
.fs2_c00242{font-size:50.584180px;}
.fs1_c00242{font-size:54.800738px;}
.fs3_c00242{font-size:67.447173px;}
.fs0_c00242{font-size:80.090968px;}
.y0_c00242{bottom:0.000000px;}
.y1_c00242{bottom:0.120938px;}
.y6_c00242{bottom:2.845041px;}
.y37_c00242{bottom:2.849733px;}
.y7_c00242{bottom:6.826644px;}
.y35_c00242{bottom:63.352374px;}
.y36_c00242{bottom:64.122840px;}
.y38_c00242{bottom:66.851636px;}
.y34_c00242{bottom:206.739867px;}
.y33_c00242{bottom:231.854807px;}
.y32_c00242{bottom:232.924260px;}
.y31_c00242{bottom:258.398346px;}
.y30_c00242{bottom:281.552937px;}
.y2f_c00242{bottom:304.709628px;}
.y2e_c00242{bottom:327.868419px;}
.y2d_c00242{bottom:351.022259px;}
.y2c_c00242{bottom:374.176850px;}
.y2b_c00242{bottom:400.539790px;}
.y2a_c00242{bottom:416.391783px;}
.y29_c00242{bottom:433.137327px;}
.y28_c00242{bottom:465.912763px;}
.y27_c00242{bottom:491.026203px;}
.y26_c00242{bottom:492.095656px;}
.y25_c00242{bottom:517.564100px;}
.y24_c00242{bottom:540.717340px;}
.y23_c00242{bottom:563.875381px;}
.y22_c00242{bottom:587.208622px;}
.y21_c00242{bottom:613.392911px;}
.y20_c00242{bottom:629.247605px;}
.y1f_c00242{bottom:645.991048px;}
.y1e_c00242{bottom:678.765735px;}
.y1d_c00242{bottom:694.619079px;}
.y1c_c00242{bottom:719.734019px;}
.y1b_c00242{bottom:720.802065px;}
.y1a_c00242{bottom:746.280501px;}
.y19_c00242{bottom:769.432242px;}
.y18_c00242{bottom:792.591783px;}
.y17_c00242{bottom:815.746373px;}
.y16_c00242{bottom:842.109313px;}
.y15_c00242{bottom:857.961307px;}
.y14_c00242{bottom:874.704150px;}
.y13_c00242{bottom:907.482437px;}
.y12_c00242{bottom:932.594527px;}
.y11_c00242{bottom:933.663980px;}
.y10_c00242{bottom:959.131120px;}
.yf_c00242{bottom:982.287810px;}
.ye_c00242{bottom:1005.443751px;}
.yd_c00242{bottom:1028.778342px;}
.yc_c00242{bottom:1054.961281px;}
.yb_c00242{bottom:1070.815375px;}
.ya_c00242{bottom:1087.560918px;}
.y9_c00242{bottom:1106.619911px;}
.y8_c00242{bottom:1141.529397px;}
.y5_c00242{bottom:1145.511000px;}
.y4_c00242{bottom:1171.217494px;}
.y3_c00242{bottom:1187.959587px;}
.y2_c00242{bottom:1216.992076px;}
.h9_c00242{height:14.250240px;}
.h4_c00242{height:14.252400px;}
.h5_c00242{height:45.374009px;}
.h8_c00242{height:46.891535px;}
.h3_c00242{height:50.800284px;}
.h7_c00242{height:62.523529px;}
.h2_c00242{height:74.244327px;}
.h6_c00242{height:1249.830756px;}
.h1_c00242{height:1262.879062px;}
.h0_c00242{height:1263.000000px;}
.w4_c00242{width:40.080600px;}
.w2_c00242{width:40.966920px;}
.w3_c00242{width:883.195846px;}
.w1_c00242{width:892.414744px;}
.w0_c00242{width:892.500000px;}
.x0_c00242{left:0.000000px;}
.x2_c00242{left:1.541954px;}
.x4_c00242{left:106.162653px;}
.x1_c00242{left:107.691951px;}
.x3_c00242{left:197.717966px;}
.x5_c00242{left:283.037307px;}
.x7_c00242{left:469.355268px;}
.x8_c00242{left:704.120764px;}
.x6_c00242{left:711.604261px;}
.x9_c00242{left:792.054000px;}
.xa_c00242{left:853.136002px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws0_c00242{word-spacing:-12.499913pt;}
.ws2_c00242{word-spacing:0.000000pt;}
.ws1_c00242{word-spacing:15.147197pt;}
._17_c00242{margin-left:-5.927569pt;}
._5_c00242{margin-left:-4.887502pt;}
._9_c00242{margin-left:-3.985188pt;}
._1_c00242{margin-left:-2.566435pt;}
._3_c00242{margin-left:-1.556200pt;}
._0_c00242{width:1.353124pt;}
._4_c00242{width:2.727947pt;}
._2_c00242{width:3.829802pt;}
._15_c00242{width:5.574646pt;}
._11_c00242{width:9.928547pt;}
._d_c00242{width:29.330400pt;}
._6_c00242{width:32.199926pt;}
._c_c00242{width:57.525787pt;}
._22_c00242{width:99.778115pt;}
._b_c00242{width:102.709135pt;}
._20_c00242{width:106.733680pt;}
._23_c00242{width:118.092700pt;}
._1e_c00242{width:125.534273pt;}
._1a_c00242{width:126.945374pt;}
._13_c00242{width:129.109459pt;}
._8_c00242{width:164.958568pt;}
._12_c00242{width:179.543638pt;}
._21_c00242{width:204.218340pt;}
._19_c00242{width:234.040941pt;}
._1d_c00242{width:239.338284pt;}
._1b_c00242{width:241.720945pt;}
._10_c00242{width:249.055472pt;}
._a_c00242{width:257.839874pt;}
._1c_c00242{width:259.524780pt;}
._18_c00242{width:260.429291pt;}
._16_c00242{width:264.120825pt;}
._14_c00242{width:267.732401pt;}
._e_c00242{width:279.929796pt;}
._f_c00242{width:286.509798pt;}
._1f_c00242{width:309.238328pt;}
._7_c00242{width:901.752877pt;}
.fs2_c00242{font-size:44.963715pt;}
.fs1_c00242{font-size:48.711767pt;}
.fs3_c00242{font-size:59.953043pt;}
.fs0_c00242{font-size:71.191972pt;}
.y0_c00242{bottom:0.000000pt;}
.y1_c00242{bottom:0.107500pt;}
.y6_c00242{bottom:2.528925pt;}
.y37_c00242{bottom:2.533096pt;}
.y7_c00242{bottom:6.068128pt;}
.y35_c00242{bottom:56.313222pt;}
.y36_c00242{bottom:56.998080pt;}
.y38_c00242{bottom:59.423676pt;}
.y34_c00242{bottom:183.768771pt;}
.y33_c00242{bottom:206.093162pt;}
.y32_c00242{bottom:207.043787pt;}
.y31_c00242{bottom:229.687419pt;}
.y30_c00242{bottom:250.269277pt;}
.y2f_c00242{bottom:270.853003pt;}
.y2e_c00242{bottom:291.438594pt;}
.y2d_c00242{bottom:312.019786pt;}
.y2c_c00242{bottom:332.601645pt;}
.y2b_c00242{bottom:356.035368pt;}
.y2a_c00242{bottom:370.126030pt;}
.y29_c00242{bottom:385.010957pt;}
.y28_c00242{bottom:414.144679pt;}
.y27_c00242{bottom:436.467736pt;}
.y26_c00242{bottom:437.418361pt;}
.y25_c00242{bottom:460.056978pt;}
.y24_c00242{bottom:480.637636pt;}
.y23_c00242{bottom:501.222561pt;}
.y22_c00242{bottom:521.963219pt;}
.y21_c00242{bottom:545.238143pt;}
.y20_c00242{bottom:559.331205pt;}
.y1f_c00242{bottom:574.214265pt;}
.y1e_c00242{bottom:603.347320pt;}
.y1d_c00242{bottom:617.439181pt;}
.y1c_c00242{bottom:639.763572pt;}
.y1b_c00242{bottom:640.712947pt;}
.y1a_c00242{bottom:663.360446pt;}
.y19_c00242{bottom:683.939771pt;}
.y18_c00242{bottom:704.526029pt;}
.y17_c00242{bottom:725.107888pt;}
.y16_c00242{bottom:748.541611pt;}
.y15_c00242{bottom:762.632273pt;}
.y14_c00242{bottom:777.514800pt;}
.y13_c00242{bottom:806.651055pt;}
.y12_c00242{bottom:828.972913pt;}
.y11_c00242{bottom:829.923538pt;}
.y10_c00242{bottom:852.560995pt;}
.yf_c00242{bottom:873.144720pt;}
.ye_c00242{bottom:893.727779pt;}
.yd_c00242{bottom:914.469637pt;}
.yc_c00242{bottom:937.743361pt;}
.yb_c00242{bottom:951.835889pt;}
.ya_c00242{bottom:966.720816pt;}
.y9_c00242{bottom:983.662143pt;}
.y8_c00242{bottom:1014.692797pt;}
.y5_c00242{bottom:1018.232000pt;}
.y4_c00242{bottom:1041.082217pt;}
.y3_c00242{bottom:1055.964078pt;}
.y2_c00242{bottom:1081.770734pt;}
.h9_c00242{height:12.666880pt;}
.h4_c00242{height:12.668800pt;}
.h5_c00242{height:40.332453pt;}
.h8_c00242{height:41.681364pt;}
.h3_c00242{height:45.155808pt;}
.h7_c00242{height:55.576471pt;}
.h2_c00242{height:65.994958pt;}
.h6_c00242{height:1110.960672pt;}
.h1_c00242{height:1122.559167pt;}
.h0_c00242{height:1122.666667pt;}
.w4_c00242{width:35.627200pt;}
.w2_c00242{width:36.415040pt;}
.w3_c00242{width:785.062974pt;}
.w1_c00242{width:793.257550pt;}
.w0_c00242{width:793.333333pt;}
.x0_c00242{left:0.000000pt;}
.x2_c00242{left:1.370626pt;}
.x4_c00242{left:94.366803pt;}
.x1_c00242{left:95.726178pt;}
.x3_c00242{left:175.749304pt;}
.x5_c00242{left:251.588718pt;}
.x7_c00242{left:417.204683pt;}
.x8_c00242{left:625.885123pt;}
.x6_c00242{left:632.537121pt;}
.x9_c00242{left:704.048000pt;}
.xa_c00242{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.107000;font-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_c00243{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls0_c00243{letter-spacing:0.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00243{word-spacing:-14.062402px;}
.ws3_c00243{word-spacing:0.000000px;}
.ws1_c00243{word-spacing:17.040596px;}
.ws2_c00243{word-spacing:248.957123px;}
._b_c00243{margin-left:-6.668769px;}
._5_c00243{margin-left:-5.498440px;}
._9_c00243{margin-left:-4.483337px;}
._1_c00243{margin-left:-2.887239px;}
._3_c00243{margin-left:-1.750725px;}
._0_c00243{width:1.522265px;}
._4_c00243{width:3.068940px;}
._2_c00243{width:4.308527px;}
._14_c00243{width:5.605009px;}
._1d_c00243{width:7.161514px;}
._17_c00243{width:11.578595px;}
._13_c00243{width:15.661046px;}
._1e_c00243{width:18.566179px;}
._e_c00243{width:32.996720px;}
._6_c00243{width:36.224916px;}
._d_c00243{width:64.716688px;}
._24_c00243{width:83.022755px;}
._12_c00243{width:103.012619px;}
._26_c00243{width:112.280184px;}
._c_c00243{width:115.546903px;}
._21_c00243{width:120.030248px;}
._29_c00243{width:129.625561px;}
._18_c00243{width:142.890775px;}
._1a_c00243{width:145.248218px;}
._2a_c00243{width:162.225367px;}
._8_c00243{width:185.578389px;}
._28_c00243{width:192.046494px;}
._1f_c00243{width:201.972881px;}
._27_c00243{width:234.455287px;}
._a_c00243{width:251.691625px;}
._19_c00243{width:262.707644px;}
._1b_c00243{width:271.941805px;}
._1c_c00243{width:277.142572px;}
._11_c00243{width:280.188078px;}
._10_c00243{width:292.354931px;}
._20_c00243{width:298.469439px;}
._2b_c00243{width:301.192865px;}
._25_c00243{width:303.049123px;}
._f_c00243{width:314.909698px;}
._15_c00243{width:321.995393px;}
._22_c00243{width:348.048262px;}
._23_c00243{width:385.774769px;}
._16_c00243{width:433.036901px;}
._7_c00243{width:1014.471987px;}
.fc0_c00243{color:rgb(35,31,32);}
.fs2_c00243{font-size:50.584180px;}
.fs1_c00243{font-size:54.800738px;}
.fs3_c00243{font-size:67.447173px;}
.fs0_c00243{font-size:80.090968px;}
.y0_c00243{bottom:0.000000px;}
.y1_c00243{bottom:0.120938px;}
.y6_c00243{bottom:2.845041px;}
.y36_c00243{bottom:2.849733px;}
.y7_c00243{bottom:6.826644px;}
.y34_c00243{bottom:63.350978px;}
.y35_c00243{bottom:64.122840px;}
.y37_c00243{bottom:66.851636px;}
.y33_c00243{bottom:255.191901px;}
.y32_c00243{bottom:280.303991px;}
.y31_c00243{bottom:281.372741px;}
.y30_c00243{bottom:306.845881px;}
.y2f_c00243{bottom:330.003921px;}
.y2e_c00243{bottom:353.157162px;}
.y2d_c00243{bottom:376.315203px;}
.y2c_c00243{bottom:399.471143px;}
.y2b_c00243{bottom:422.804384px;}
.y2a_c00243{bottom:445.958975px;}
.y29_c00243{bottom:469.117016px;}
.y28_c00243{bottom:495.475005px;}
.y27_c00243{bottom:511.331799px;}
.y26_c00243{bottom:527.006492px;}
.y25_c00243{bottom:542.859836px;}
.y24_c00243{bottom:558.711830px;}
.y23_c00243{bottom:575.278123px;}
.y22_c00243{bottom:594.512615px;}
.y21_c00243{bottom:631.389154px;}
.y20_c00243{bottom:647.243248px;}
.y1f_c00243{bottom:672.359538px;}
.y1e_c00243{bottom:673.427584px;}
.y1d_c00243{bottom:698.897320px;}
.y1c_c00243{bottom:722.050561px;}
.y1b_c00243{bottom:745.206502px;}
.y1a_c00243{bottom:761.059845px;}
.y19_c00243{bottom:787.422785px;}
.y18_c00243{bottom:803.098229px;}
.y17_c00243{bottom:818.951572px;}
.y16_c00243{bottom:835.694415px;}
.y15_c00243{bottom:868.467752px;}
.y14_c00243{bottom:884.323946px;}
.y13_c00243{bottom:909.436036px;}
.y12_c00243{bottom:910.505489px;}
.y11_c00243{bottom:935.976079px;}
.y10_c00243{bottom:959.132020px;}
.yf_c00243{bottom:982.288710px;}
.ye_c00243{bottom:1005.446151px;}
.yd_c00243{bottom:1028.777892px;}
.yc_c00243{bottom:1051.935932px;}
.yb_c00243{bottom:1078.296022px;}
.ya_c00243{bottom:1093.972216px;}
.y9_c00243{bottom:1110.716409px;}
.y8_c00243{bottom:1141.529397px;}
.y5_c00243{bottom:1145.511000px;}
.y4_c00243{bottom:1171.217494px;}
.y3_c00243{bottom:1187.959587px;}
.y2_c00243{bottom:1216.992076px;}
.h9_c00243{height:14.250240px;}
.h4_c00243{height:14.252400px;}
.h5_c00243{height:45.374009px;}
.h7_c00243{height:46.891535px;}
.h3_c00243{height:50.800284px;}
.h8_c00243{height:62.523529px;}
.h2_c00243{height:74.244327px;}
.h6_c00243{height:1249.830756px;}
.h1_c00243{height:1262.879062px;}
.h0_c00243{height:1263.000000px;}
.w4_c00243{width:40.080600px;}
.w2_c00243{width:40.966920px;}
.w3_c00243{width:883.195846px;}
.w1_c00243{width:892.414744px;}
.w0_c00243{width:892.500000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:1.541954px;}
.x4_c00243{left:106.162653px;}
.x1_c00243{left:107.691951px;}
.x3_c00243{left:197.717966px;}
.x5_c00243{left:283.038805px;}
.x7_c00243{left:469.355747px;}
.x8_c00243{left:602.058915px;}
.x6_c00243{left:704.120764px;}
.x9_c00243{left:711.604261px;}
.xa_c00243{left:792.054000px;}
.xb_c00243{left:853.136002px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:-12.499913pt;}
.ws3_c00243{word-spacing:0.000000pt;}
.ws1_c00243{word-spacing:15.147197pt;}
.ws2_c00243{word-spacing:221.295220pt;}
._b_c00243{margin-left:-5.927795pt;}
._5_c00243{margin-left:-4.887502pt;}
._9_c00243{margin-left:-3.985188pt;}
._1_c00243{margin-left:-2.566435pt;}
._3_c00243{margin-left:-1.556200pt;}
._0_c00243{width:1.353124pt;}
._4_c00243{width:2.727947pt;}
._2_c00243{width:3.829802pt;}
._14_c00243{width:4.982231pt;}
._1d_c00243{width:6.365791pt;}
._17_c00243{width:10.292084pt;}
._13_c00243{width:13.920929pt;}
._1e_c00243{width:16.503270pt;}
._e_c00243{width:29.330418pt;}
._6_c00243{width:32.199926pt;}
._d_c00243{width:57.525945pt;}
._24_c00243{width:73.798004pt;}
._12_c00243{width:91.566772pt;}
._26_c00243{width:99.804608pt;}
._c_c00243{width:102.708358pt;}
._21_c00243{width:106.693554pt;}
._29_c00243{width:115.222721pt;}
._18_c00243{width:127.014022pt;}
._1a_c00243{width:129.109527pt;}
._2a_c00243{width:144.200326pt;}
._8_c00243{width:164.958568pt;}
._28_c00243{width:170.707994pt;}
._1f_c00243{width:179.531450pt;}
._27_c00243{width:208.404700pt;}
._a_c00243{width:223.725889pt;}
._19_c00243{width:233.517906pt;}
._1b_c00243{width:241.726049pt;}
._1c_c00243{width:246.348953pt;}
._11_c00243{width:249.056069pt;}
._10_c00243{width:259.871050pt;}
._20_c00243{width:265.306168pt;}
._2b_c00243{width:267.726991pt;}
._25_c00243{width:269.376998pt;}
._f_c00243{width:279.919731pt;}
._15_c00243{width:286.218127pt;}
._22_c00243{width:309.376232pt;}
._23_c00243{width:342.910906pt;}
._16_c00243{width:384.921690pt;}
._7_c00243{width:901.752877pt;}
.fs2_c00243{font-size:44.963715pt;}
.fs1_c00243{font-size:48.711767pt;}
.fs3_c00243{font-size:59.953043pt;}
.fs0_c00243{font-size:71.191972pt;}
.y0_c00243{bottom:0.000000pt;}
.y1_c00243{bottom:0.107500pt;}
.y6_c00243{bottom:2.528925pt;}
.y36_c00243{bottom:2.533096pt;}
.y7_c00243{bottom:6.068128pt;}
.y34_c00243{bottom:56.311980pt;}
.y35_c00243{bottom:56.998080pt;}
.y37_c00243{bottom:59.423676pt;}
.y33_c00243{bottom:226.837246pt;}
.y32_c00243{bottom:249.159103pt;}
.y31_c00243{bottom:250.109103pt;}
.y30_c00243{bottom:272.751894pt;}
.y2f_c00243{bottom:293.336819pt;}
.y2e_c00243{bottom:313.917477pt;}
.y2d_c00243{bottom:334.502402pt;}
.y2c_c00243{bottom:355.085461pt;}
.y2b_c00243{bottom:375.826119pt;}
.y2a_c00243{bottom:396.407978pt;}
.y29_c00243{bottom:416.992903pt;}
.y28_c00243{bottom:440.422227pt;}
.y27_c00243{bottom:454.517154pt;}
.y26_c00243{bottom:468.450216pt;}
.y25_c00243{bottom:482.542077pt;}
.y24_c00243{bottom:496.632738pt;}
.y23_c00243{bottom:511.358332pt;}
.y22_c00243{bottom:528.455658pt;}
.y21_c00243{bottom:561.234804pt;}
.y20_c00243{bottom:575.327331pt;}
.y1f_c00243{bottom:597.652923pt;}
.y1e_c00243{bottom:598.602297pt;}
.y1d_c00243{bottom:621.242062pt;}
.y1c_c00243{bottom:641.822721pt;}
.y1b_c00243{bottom:662.405779pt;}
.y1a_c00243{bottom:676.497640pt;}
.y19_c00243{bottom:699.931364pt;}
.y18_c00243{bottom:713.865092pt;}
.y17_c00243{bottom:727.956953pt;}
.y16_c00243{bottom:742.839480pt;}
.y15_c00243{bottom:771.971335pt;}
.y14_c00243{bottom:786.065730pt;}
.y13_c00243{bottom:808.387588pt;}
.y12_c00243{bottom:809.338213pt;}
.y11_c00243{bottom:831.978737pt;}
.y10_c00243{bottom:852.561795pt;}
.yf_c00243{bottom:873.145520pt;}
.ye_c00243{bottom:893.729912pt;}
.yd_c00243{bottom:914.469237pt;}
.yc_c00243{bottom:935.054162pt;}
.yb_c00243{bottom:958.485353pt;}
.ya_c00243{bottom:972.419747pt;}
.y9_c00243{bottom:987.303475pt;}
.y8_c00243{bottom:1014.692797pt;}
.y5_c00243{bottom:1018.232000pt;}
.y4_c00243{bottom:1041.082217pt;}
.y3_c00243{bottom:1055.964078pt;}
.y2_c00243{bottom:1081.770734pt;}
.h9_c00243{height:12.666880pt;}
.h4_c00243{height:12.668800pt;}
.h5_c00243{height:40.332453pt;}
.h7_c00243{height:41.681364pt;}
.h3_c00243{height:45.155808pt;}
.h8_c00243{height:55.576471pt;}
.h2_c00243{height:65.994958pt;}
.h6_c00243{height:1110.960672pt;}
.h1_c00243{height:1122.559167pt;}
.h0_c00243{height:1122.666667pt;}
.w4_c00243{width:35.627200pt;}
.w2_c00243{width:36.415040pt;}
.w3_c00243{width:785.062974pt;}
.w1_c00243{width:793.257550pt;}
.w0_c00243{width:793.333333pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:1.370626pt;}
.x4_c00243{left:94.366803pt;}
.x1_c00243{left:95.726178pt;}
.x3_c00243{left:175.749304pt;}
.x5_c00243{left:251.590049pt;}
.x7_c00243{left:417.205109pt;}
.x8_c00243{left:535.163480pt;}
.x6_c00243{left:625.885123pt;}
.x9_c00243{left:632.537121pt;}
.xa_c00243{left:704.048000pt;}
.xb_c00243{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.107000;font-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_c00244{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls0_c00244{letter-spacing:0.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:-14.062402px;}
.ws2_c00244{word-spacing:0.000000px;}
.ws1_c00244{word-spacing:17.040596px;}
._5_c00244{margin-left:-5.498440px;}
._9_c00244{margin-left:-4.483337px;}
._1_c00244{margin-left:-2.887239px;}
._3_c00244{margin-left:-1.750725px;}
._0_c00244{width:1.522265px;}
._4_c00244{width:3.068940px;}
._2_c00244{width:4.308527px;}
._b_c00244{width:5.568095px;}
._1a_c00244{width:7.136885px;}
._1b_c00244{width:8.304331px;}
._20_c00244{width:11.172827px;}
._23_c00244{width:18.974516px;}
._e_c00244{width:32.996685px;}
._6_c00244{width:36.224916px;}
._d_c00244{width:64.716774px;}
._1e_c00244{width:90.797292px;}
._15_c00244{width:112.532358px;}
._12_c00244{width:115.547777px;}
._c_c00244{width:120.031493px;}
._1f_c00244{width:129.625733px;}
._17_c00244{width:145.247712px;}
._24_c00244{width:162.363395px;}
._21_c00244{width:163.493060px;}
._22_c00244{width:171.891106px;}
._8_c00244{width:185.578389px;}
._16_c00244{width:196.624918px;}
._14_c00244{width:197.890313px;}
._19_c00244{width:277.245090px;}
._13_c00244{width:280.186986px;}
._1d_c00244{width:292.354956px;}
._18_c00244{width:301.193457px;}
._a_c00244{width:303.049260px;}
._10_c00244{width:322.324540px;}
._11_c00244{width:330.845167px;}
._1c_c00244{width:348.046962px;}
._f_c00244{width:385.773297px;}
._7_c00244{width:1014.471987px;}
.fc0_c00244{color:rgb(35,31,32);}
.fs2_c00244{font-size:50.584180px;}
.fs1_c00244{font-size:54.800738px;}
.fs3_c00244{font-size:67.447173px;}
.fs0_c00244{font-size:80.090968px;}
.y0_c00244{bottom:0.000000px;}
.y1_c00244{bottom:0.120938px;}
.y6_c00244{bottom:2.845041px;}
.y3c_c00244{bottom:2.849733px;}
.y7_c00244{bottom:6.826644px;}
.y3a_c00244{bottom:63.353274px;}
.y3b_c00244{bottom:64.122840px;}
.y3d_c00244{bottom:66.851636px;}
.y39_c00244{bottom:138.162895px;}
.y38_c00244{bottom:163.277834px;}
.y37_c00244{bottom:164.347288px;}
.y36_c00244{bottom:189.818281px;}
.y35_c00244{bottom:212.977822px;}
.y34_c00244{bottom:236.131062px;}
.y33_c00244{bottom:259.465653px;}
.y32_c00244{bottom:282.618894px;}
.y31_c00244{bottom:305.776934px;}
.y30_c00244{bottom:328.931525px;}
.y2f_c00244{bottom:355.295815px;}
.y2e_c00244{bottom:371.149158px;}
.y2d_c00244{bottom:386.823852px;}
.y2c_c00244{bottom:402.676446px;}
.y2b_c00244{bottom:418.529789px;}
.y2a_c00244{bottom:434.384483px;}
.y29_c00244{bottom:450.951526px;}
.y28_c00244{bottom:483.899313px;}
.y27_c00244{bottom:509.017103px;}
.y26_c00244{bottom:510.085149px;}
.y25_c00244{bottom:535.553189px;}
.y24_c00244{bottom:558.709130px;}
.y23_c00244{bottom:581.865821px;}
.y22_c00244{bottom:605.019061px;}
.y21_c00244{bottom:628.177852px;}
.y20_c00244{bottom:651.334543px;}
.y1f_c00244{bottom:674.666283px;}
.y1e_c00244{bottom:701.029223px;}
.y1d_c00244{bottom:716.705417px;}
.y1c_c00244{bottom:732.559510px;}
.y1b_c00244{bottom:748.411504px;}
.y1a_c00244{bottom:764.263498px;}
.y19_c00244{bottom:779.939691px;}
.y18_c00244{bottom:796.682535px;}
.y17_c00244{bottom:815.741527px;}
.y16_c00244{bottom:852.792816px;}
.y15_c00244{bottom:877.731956px;}
.y14_c00244{bottom:878.800002px;}
.y13_c00244{bottom:904.270742px;}
.y12_c00244{bottom:927.603982px;}
.y11_c00244{bottom:950.759923px;}
.y10_c00244{bottom:973.916614px;}
.yf_c00244{bottom:997.072554px;}
.ye_c00244{bottom:1020.230595px;}
.yd_c00244{bottom:1046.592185px;}
.yc_c00244{bottom:1062.445528px;}
.yb_c00244{bottom:1078.296022px;}
.ya_c00244{bottom:1093.972216px;}
.y9_c00244{bottom:1110.716409px;}
.y8_c00244{bottom:1141.529397px;}
.y5_c00244{bottom:1145.511000px;}
.y4_c00244{bottom:1171.217494px;}
.y3_c00244{bottom:1187.959587px;}
.y2_c00244{bottom:1216.992076px;}
.h9_c00244{height:14.250240px;}
.h4_c00244{height:14.252400px;}
.h5_c00244{height:45.374009px;}
.h7_c00244{height:46.891535px;}
.h3_c00244{height:50.800284px;}
.h8_c00244{height:62.523529px;}
.h2_c00244{height:74.244327px;}
.h6_c00244{height:1249.830756px;}
.h1_c00244{height:1262.879062px;}
.h0_c00244{height:1263.000000px;}
.w4_c00244{width:40.080600px;}
.w2_c00244{width:40.966920px;}
.w3_c00244{width:883.195846px;}
.w1_c00244{width:892.414744px;}
.w0_c00244{width:892.500000px;}
.x0_c00244{left:0.000000px;}
.x2_c00244{left:1.541954px;}
.x4_c00244{left:106.162653px;}
.x1_c00244{left:107.691951px;}
.x3_c00244{left:197.717966px;}
.x5_c00244{left:283.038805px;}
.x7_c00244{left:469.355268px;}
.x6_c00244{left:711.604261px;}
.x8_c00244{left:792.054000px;}
.x9_c00244{left:853.136002px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws0_c00244{word-spacing:-12.499913pt;}
.ws2_c00244{word-spacing:0.000000pt;}
.ws1_c00244{word-spacing:15.147197pt;}
._5_c00244{margin-left:-4.887502pt;}
._9_c00244{margin-left:-3.985188pt;}
._1_c00244{margin-left:-2.566435pt;}
._3_c00244{margin-left:-1.556200pt;}
._0_c00244{width:1.353124pt;}
._4_c00244{width:2.727947pt;}
._2_c00244{width:3.829802pt;}
._b_c00244{width:4.949418pt;}
._1a_c00244{width:6.343897pt;}
._1b_c00244{width:7.381628pt;}
._20_c00244{width:9.931402pt;}
._23_c00244{width:16.866237pt;}
._e_c00244{width:29.330387pt;}
._6_c00244{width:32.199926pt;}
._d_c00244{width:57.526021pt;}
._1e_c00244{width:80.708704pt;}
._15_c00244{width:100.028762pt;}
._12_c00244{width:102.709135pt;}
._c_c00244{width:106.694660pt;}
._1f_c00244{width:115.222874pt;}
._17_c00244{width:129.109077pt;}
._24_c00244{width:144.323018pt;}
._21_c00244{width:145.327164pt;}
._22_c00244{width:152.792094pt;}
._8_c00244{width:164.958568pt;}
._16_c00244{width:174.777705pt;}
._14_c00244{width:175.902501pt;}
._19_c00244{width:246.440080pt;}
._13_c00244{width:249.055099pt;}
._1d_c00244{width:259.871072pt;}
._18_c00244{width:267.727517pt;}
._a_c00244{width:269.377120pt;}
._10_c00244{width:286.510702pt;}
._11_c00244{width:294.084593pt;}
._1c_c00244{width:309.375077pt;}
._f_c00244{width:342.909598pt;}
._7_c00244{width:901.752877pt;}
.fs2_c00244{font-size:44.963715pt;}
.fs1_c00244{font-size:48.711767pt;}
.fs3_c00244{font-size:59.953043pt;}
.fs0_c00244{font-size:71.191972pt;}
.y0_c00244{bottom:0.000000pt;}
.y1_c00244{bottom:0.107500pt;}
.y6_c00244{bottom:2.528925pt;}
.y3c_c00244{bottom:2.533096pt;}
.y7_c00244{bottom:6.068128pt;}
.y3a_c00244{bottom:56.314022pt;}
.y3b_c00244{bottom:56.998080pt;}
.y3d_c00244{bottom:59.423676pt;}
.y39_c00244{bottom:122.811462pt;}
.y38_c00244{bottom:145.135853pt;}
.y37_c00244{bottom:146.086478pt;}
.y36_c00244{bottom:168.727361pt;}
.y35_c00244{bottom:189.313619pt;}
.y34_c00244{bottom:209.894278pt;}
.y33_c00244{bottom:230.636136pt;}
.y32_c00244{bottom:251.216794pt;}
.y31_c00244{bottom:271.801720pt;}
.y30_c00244{bottom:292.383578pt;}
.y2f_c00244{bottom:315.818502pt;}
.y2e_c00244{bottom:329.910363pt;}
.y2d_c00244{bottom:343.843424pt;}
.y2c_c00244{bottom:357.934618pt;}
.y2b_c00244{bottom:372.026479pt;}
.y2a_c00244{bottom:386.119540pt;}
.y29_c00244{bottom:400.845801pt;}
.y28_c00244{bottom:430.132723pt;}
.y27_c00244{bottom:452.459647pt;}
.y26_c00244{bottom:453.409022pt;}
.y25_c00244{bottom:476.047279pt;}
.y24_c00244{bottom:496.630338pt;}
.y23_c00244{bottom:517.214063pt;}
.y22_c00244{bottom:537.794721pt;}
.y21_c00244{bottom:558.380313pt;}
.y20_c00244{bottom:578.964038pt;}
.y1f_c00244{bottom:599.703363pt;}
.y1e_c00244{bottom:623.137087pt;}
.y1d_c00244{bottom:637.071481pt;}
.y1c_c00244{bottom:651.164009pt;}
.y1b_c00244{bottom:665.254670pt;}
.y1a_c00244{bottom:679.345331pt;}
.y19_c00244{bottom:693.279726pt;}
.y18_c00244{bottom:708.162253pt;}
.y17_c00244{bottom:725.103580pt;}
.y16_c00244{bottom:758.038058pt;}
.y15_c00244{bottom:780.206183pt;}
.y14_c00244{bottom:781.155557pt;}
.y13_c00244{bottom:803.796215pt;}
.y12_c00244{bottom:824.536873pt;}
.y11_c00244{bottom:845.119932pt;}
.y10_c00244{bottom:865.703657pt;}
.yf_c00244{bottom:886.286715pt;}
.ye_c00244{bottom:906.871640pt;}
.yd_c00244{bottom:930.304164pt;}
.yc_c00244{bottom:944.396025pt;}
.yb_c00244{bottom:958.485353pt;}
.ya_c00244{bottom:972.419747pt;}
.y9_c00244{bottom:987.303475pt;}
.y8_c00244{bottom:1014.692797pt;}
.y5_c00244{bottom:1018.232000pt;}
.y4_c00244{bottom:1041.082217pt;}
.y3_c00244{bottom:1055.964078pt;}
.y2_c00244{bottom:1081.770734pt;}
.h9_c00244{height:12.666880pt;}
.h4_c00244{height:12.668800pt;}
.h5_c00244{height:40.332453pt;}
.h7_c00244{height:41.681364pt;}
.h3_c00244{height:45.155808pt;}
.h8_c00244{height:55.576471pt;}
.h2_c00244{height:65.994958pt;}
.h6_c00244{height:1110.960672pt;}
.h1_c00244{height:1122.559167pt;}
.h0_c00244{height:1122.666667pt;}
.w4_c00244{width:35.627200pt;}
.w2_c00244{width:36.415040pt;}
.w3_c00244{width:785.062974pt;}
.w1_c00244{width:793.257550pt;}
.w0_c00244{width:793.333333pt;}
.x0_c00244{left:0.000000pt;}
.x2_c00244{left:1.370626pt;}
.x4_c00244{left:94.366803pt;}
.x1_c00244{left:95.726178pt;}
.x3_c00244{left:175.749304pt;}
.x5_c00244{left:251.590049pt;}
.x7_c00244{left:417.204683pt;}
.x6_c00244{left:632.537121pt;}
.x8_c00244{left:704.048000pt;}
.x9_c00244{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.107000;font-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_c00245{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls0_c00245{letter-spacing:0.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:-14.062402px;}
.ws2_c00245{word-spacing:0.000000px;}
.ws1_c00245{word-spacing:17.040596px;}
._5_c00245{margin-left:-5.498440px;}
._9_c00245{margin-left:-4.483337px;}
._1_c00245{margin-left:-2.887239px;}
._3_c00245{margin-left:-1.750725px;}
._0_c00245{width:1.522265px;}
._4_c00245{width:3.068940px;}
._2_c00245{width:4.308527px;}
._17_c00245{width:6.271476px;}
._1a_c00245{width:8.174972px;}
._14_c00245{width:11.170100px;}
._19_c00245{width:16.022176px;}
._d_c00245{width:32.996720px;}
._6_c00245{width:36.224916px;}
._20_c00245{width:49.720628px;}
._c_c00245{width:64.718463px;}
._1b_c00245{width:90.774979px;}
._11_c00245{width:112.246272px;}
._13_c00245{width:116.042118px;}
._b_c00245{width:120.029833px;}
._23_c00245{width:129.625596px;}
._15_c00245{width:145.248263px;}
._1e_c00245{width:154.744419px;}
._12_c00245{width:162.347784px;}
._24_c00245{width:163.483083px;}
._28_c00245{width:166.914176px;}
._22_c00245{width:171.821397px;}
._8_c00245{width:185.578389px;}
._21_c00245{width:200.698739px;}
._29_c00245{width:221.641478px;}
._27_c00245{width:223.108615px;}
._25_c00245{width:229.831759px;}
._1c_c00245{width:263.900979px;}
._26_c00245{width:271.886683px;}
._18_c00245{width:281.770009px;}
._1f_c00245{width:291.965579px;}
._16_c00245{width:301.184872px;}
._a_c00245{width:303.049437px;}
._f_c00245{width:322.323887px;}
._10_c00245{width:330.844929px;}
._e_c00245{width:348.046881px;}
._1d_c00245{width:387.002868px;}
._7_c00245{width:1014.471987px;}
.fc0_c00245{color:rgb(35,31,32);}
.fs2_c00245{font-size:50.584180px;}
.fs1_c00245{font-size:54.800738px;}
.fs0_c00245{font-size:80.090968px;}
.y0_c00245{bottom:0.000000px;}
.y1_c00245{bottom:0.120938px;}
.y6_c00245{bottom:2.845041px;}
.y3d_c00245{bottom:2.849733px;}
.y7_c00245{bottom:6.826644px;}
.y3b_c00245{bottom:63.351081px;}
.y3c_c00245{bottom:64.122840px;}
.y3e_c00245{bottom:66.851636px;}
.y3a_c00245{bottom:122.310958px;}
.y39_c00245{bottom:147.427248px;}
.y38_c00245{bottom:148.495294px;}
.y37_c00245{bottom:173.961730px;}
.y36_c00245{bottom:197.118421px;}
.y35_c00245{bottom:220.454362px;}
.y34_c00245{bottom:243.607602px;}
.y33_c00245{bottom:266.765643px;}
.y32_c00245{bottom:289.920234px;}
.y31_c00245{bottom:316.286023px;}
.y30_c00245{bottom:332.138617px;}
.y2f_c00245{bottom:347.813311px;}
.y2e_c00245{bottom:363.665304px;}
.y2d_c00245{bottom:379.518648px;}
.y2c_c00245{bottom:396.261491px;}
.y2b_c00245{bottom:429.033478px;}
.y2a_c00245{bottom:444.890272px;}
.y29_c00245{bottom:470.003712px;}
.y28_c00245{bottom:471.073165px;}
.y27_c00245{bottom:496.546708px;}
.y26_c00245{bottom:519.702649px;}
.y25_c00245{bottom:542.857240px;}
.y24_c00245{bottom:566.015280px;}
.y23_c00245{bottom:589.171221px;}
.y22_c00245{bottom:612.504462px;}
.y21_c00245{bottom:635.661153px;}
.y20_c00245{bottom:658.815743px;}
.y1f_c00245{bottom:681.971684px;}
.y1e_c00245{bottom:705.128375px;}
.y1d_c00245{bottom:731.491314px;}
.y1c_c00245{bottom:747.343308px;}
.y1b_c00245{bottom:763.196651px;}
.y1a_c00245{bottom:778.871345px;}
.y19_c00245{bottom:794.721839px;}
.y18_c00245{bottom:810.578633px;}
.y17_c00245{bottom:827.319976px;}
.y16_c00245{bottom:860.096163px;}
.y15_c00245{bottom:885.213953px;}
.y14_c00245{bottom:886.281999px;}
.y13_c00245{bottom:911.751989px;}
.y12_c00245{bottom:934.907929px;}
.y11_c00245{bottom:958.064620px;}
.y10_c00245{bottom:981.220561px;}
.yf_c00245{bottom:1004.375152px;}
.ye_c00245{bottom:1030.738091px;}
.yd_c00245{bottom:1046.592185px;}
.yc_c00245{bottom:1062.445528px;}
.yb_c00245{bottom:1078.296022px;}
.ya_c00245{bottom:1093.972216px;}
.y9_c00245{bottom:1110.716409px;}
.y8_c00245{bottom:1141.529397px;}
.y5_c00245{bottom:1145.511000px;}
.y4_c00245{bottom:1171.217494px;}
.y3_c00245{bottom:1187.959587px;}
.y2_c00245{bottom:1216.992076px;}
.h8_c00245{height:14.250240px;}
.h4_c00245{height:14.252400px;}
.h5_c00245{height:45.374009px;}
.h7_c00245{height:46.891535px;}
.h3_c00245{height:50.800284px;}
.h2_c00245{height:74.244327px;}
.h6_c00245{height:1249.830756px;}
.h1_c00245{height:1262.879062px;}
.h0_c00245{height:1263.000000px;}
.w4_c00245{width:40.080600px;}
.w2_c00245{width:40.966920px;}
.w3_c00245{width:883.195846px;}
.w1_c00245{width:892.414744px;}
.w0_c00245{width:892.500000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:1.541954px;}
.x4_c00245{left:106.162653px;}
.x1_c00245{left:107.691951px;}
.x3_c00245{left:197.717966px;}
.x5_c00245{left:283.040303px;}
.x7_c00245{left:469.355268px;}
.x8_c00245{left:693.613268px;}
.x6_c00245{left:711.604261px;}
.x9_c00245{left:792.054000px;}
.xa_c00245{left:853.136002px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:-12.499913pt;}
.ws2_c00245{word-spacing:0.000000pt;}
.ws1_c00245{word-spacing:15.147197pt;}
._5_c00245{margin-left:-4.887502pt;}
._9_c00245{margin-left:-3.985188pt;}
._1_c00245{margin-left:-2.566435pt;}
._3_c00245{margin-left:-1.556200pt;}
._0_c00245{width:1.353124pt;}
._4_c00245{width:2.727947pt;}
._2_c00245{width:3.829802pt;}
._17_c00245{width:5.574646pt;}
._1a_c00245{width:7.266642pt;}
._14_c00245{width:9.928978pt;}
._19_c00245{width:14.241935pt;}
._d_c00245{width:29.330418pt;}
._6_c00245{width:32.199926pt;}
._20_c00245{width:44.196114pt;}
._c_c00245{width:57.527523pt;}
._1b_c00245{width:80.688870pt;}
._11_c00245{width:99.774464pt;}
._13_c00245{width:103.148549pt;}
._b_c00245{width:106.693185pt;}
._23_c00245{width:115.222752pt;}
._15_c00245{width:129.109567pt;}
._1e_c00245{width:137.550594pt;}
._12_c00245{width:144.309142pt;}
._24_c00245{width:145.318296pt;}
._28_c00245{width:148.368156pt;}
._22_c00245{width:152.730131pt;}
._8_c00245{width:164.958568pt;}
._21_c00245{width:178.398879pt;}
._29_c00245{width:197.014647pt;}
._27_c00245{width:198.318769pt;}
._25_c00245{width:204.294897pt;}
._1c_c00245{width:234.578648pt;}
._26_c00245{width:241.677052pt;}
._18_c00245{width:250.462230pt;}
._1f_c00245{width:259.524959pt;}
._16_c00245{width:267.719886pt;}
._a_c00245{width:269.377277pt;}
._f_c00245{width:286.510122pt;}
._10_c00245{width:294.084382pt;}
._e_c00245{width:309.375005pt;}
._1d_c00245{width:344.002550pt;}
._7_c00245{width:901.752877pt;}
.fs2_c00245{font-size:44.963715pt;}
.fs1_c00245{font-size:48.711767pt;}
.fs0_c00245{font-size:71.191972pt;}
.y0_c00245{bottom:0.000000pt;}
.y1_c00245{bottom:0.107500pt;}
.y6_c00245{bottom:2.528925pt;}
.y3d_c00245{bottom:2.533096pt;}
.y7_c00245{bottom:6.068128pt;}
.y3b_c00245{bottom:56.312072pt;}
.y3c_c00245{bottom:56.998080pt;}
.y3e_c00245{bottom:59.423676pt;}
.y3a_c00245{bottom:108.720851pt;}
.y39_c00245{bottom:131.046442pt;}
.y38_c00245{bottom:131.995817pt;}
.y37_c00245{bottom:154.632649pt;}
.y36_c00245{bottom:175.216374pt;}
.y35_c00245{bottom:195.959433pt;}
.y34_c00245{bottom:216.540091pt;}
.y33_c00245{bottom:237.125016pt;}
.y32_c00245{bottom:257.706874pt;}
.y31_c00245{bottom:281.143132pt;}
.y30_c00245{bottom:295.234326pt;}
.y2f_c00245{bottom:309.167387pt;}
.y2e_c00245{bottom:323.258048pt;}
.y2d_c00245{bottom:337.349909pt;}
.y2c_c00245{bottom:352.232437pt;}
.y2b_c00245{bottom:381.363092pt;}
.y2a_c00245{bottom:395.458019pt;}
.y29_c00245{bottom:417.781077pt;}
.y28_c00245{bottom:418.731702pt;}
.y27_c00245{bottom:441.374852pt;}
.y26_c00245{bottom:461.957910pt;}
.y25_c00245{bottom:482.539769pt;}
.y24_c00245{bottom:503.124694pt;}
.y23_c00245{bottom:523.707752pt;}
.y22_c00245{bottom:544.448410pt;}
.y21_c00245{bottom:565.032136pt;}
.y20_c00245{bottom:585.613994pt;}
.y1f_c00245{bottom:606.197052pt;}
.y1e_c00245{bottom:626.780778pt;}
.y1d_c00245{bottom:650.214501pt;}
.y1c_c00245{bottom:664.305163pt;}
.y1b_c00245{bottom:678.397024pt;}
.y1a_c00245{bottom:692.330085pt;}
.y19_c00245{bottom:706.419412pt;}
.y18_c00245{bottom:720.514340pt;}
.y17_c00245{bottom:735.395534pt;}
.y16_c00245{bottom:764.529922pt;}
.y15_c00245{bottom:786.856847pt;}
.y14_c00245{bottom:787.806221pt;}
.y13_c00245{bottom:810.446212pt;}
.y12_c00245{bottom:831.029270pt;}
.y11_c00245{bottom:851.612996pt;}
.y10_c00245{bottom:872.196054pt;}
.yf_c00245{bottom:892.777912pt;}
.ye_c00245{bottom:916.211636pt;}
.yd_c00245{bottom:930.304164pt;}
.yc_c00245{bottom:944.396025pt;}
.yb_c00245{bottom:958.485353pt;}
.ya_c00245{bottom:972.419747pt;}
.y9_c00245{bottom:987.303475pt;}
.y8_c00245{bottom:1014.692797pt;}
.y5_c00245{bottom:1018.232000pt;}
.y4_c00245{bottom:1041.082217pt;}
.y3_c00245{bottom:1055.964078pt;}
.y2_c00245{bottom:1081.770734pt;}
.h8_c00245{height:12.666880pt;}
.h4_c00245{height:12.668800pt;}
.h5_c00245{height:40.332453pt;}
.h7_c00245{height:41.681364pt;}
.h3_c00245{height:45.155808pt;}
.h2_c00245{height:65.994958pt;}
.h6_c00245{height:1110.960672pt;}
.h1_c00245{height:1122.559167pt;}
.h0_c00245{height:1122.666667pt;}
.w4_c00245{width:35.627200pt;}
.w2_c00245{width:36.415040pt;}
.w3_c00245{width:785.062974pt;}
.w1_c00245{width:793.257550pt;}
.w0_c00245{width:793.333333pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:1.370626pt;}
.x4_c00245{left:94.366803pt;}
.x1_c00245{left:95.726178pt;}
.x3_c00245{left:175.749304pt;}
.x5_c00245{left:251.591380pt;}
.x7_c00245{left:417.204683pt;}
.x8_c00245{left:616.545127pt;}
.x6_c00245{left:632.537121pt;}
.x9_c00245{left:704.048000pt;}
.xa_c00245{left:758.343113pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.107000;font-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_c00246{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls0_c00246{letter-spacing:0.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-14.062402px;}
.ws3_c00246{word-spacing:0.000000px;}
.ws1_c00246{word-spacing:17.040596px;}
.ws2_c00246{word-spacing:278.214506px;}
._5_c00246{margin-left:-5.498440px;}
._9_c00246{margin-left:-4.483337px;}
._1_c00246{margin-left:-2.887239px;}
._3_c00246{margin-left:-1.750725px;}
._0_c00246{width:1.522265px;}
._4_c00246{width:3.068940px;}
._2_c00246{width:4.308527px;}
._b_c00246{width:5.351574px;}
._1c_c00246{width:6.564911px;}
._1b_c00246{width:7.907255px;}
._13_c00246{width:11.371342px;}
._1d_c00246{width:12.451899px;}
._30_c00246{width:15.707672px;}
._15_c00246{width:18.987210px;}
._1f_c00246{width:20.056783px;}
._1e_c00246{width:23.691339px;}
._20_c00246{width:24.713370px;}
._e_c00246{width:32.996543px;}
._6_c00246{width:36.224916px;}
._d_c00246{width:64.716688px;}
._14_c00246{width:92.061596px;}
._2c_c00246{width:112.129013px;}
._2a_c00246{width:113.211006px;}
._c_c00246{width:115.546402px;}
._11_c00246{width:120.030891px;}
._22_c00246{width:124.311544px;}
._24_c00246{width:129.625697px;}
._26_c00246{width:138.441412px;}
._18_c00246{width:145.248218px;}
._23_c00246{width:162.243174px;}
._25_c00246{width:166.516116px;}
._8_c00246{width:185.578389px;}
._2b_c00246{width:192.509897px;}
._2f_c00246{width:197.842523px;}
._16_c00246{width:201.868843px;}
._2d_c00246{width:205.514055px;}
._32_c00246{width:242.576927px;}
._27_c00246{width:256.225920px;}
._2e_c00246{width:262.707144px;}
._21_c00246{width:269.213324px;}
._33_c00246{width:271.929810px;}
._a_c00246{width:277.143083px;}
._29_c00246{width:280.188761px;}
._10_c00246{width:292.355457px;}
._1a_c00246{width:298.468754px;}
._19_c00246{width:301.193037px;}
._28_c00246{width:314.910375px;}
._17_c00246{width:321.999890px;}
._31_c00246{width:323.130785px;}
._12_c00246{width:330.838474px;}
._f_c00246{width:356.743224px;}
._7_c00246{width:1014.471987px;}
.fc0_c00246{color:rgb(35,31,32);}
.fs2_c00246{font-size:50.584180px;}
.fs1_c00246{font-size:54.800738px;}
.fs3_c00246{font-size:67.447173px;}
.fs0_c00246{font-size:80.090968px;}
.y0_c00246{bottom:0.000000px;}
.y1_c00246{bottom:0.120938px;}
.y6_c00246{bottom:2.845041px;}
.y3d_c00246{bottom:2.849733px;}
.y7_c00246{bottom:6.826644px;}
.y3b_c00246{bottom:63.352431px;}
.y3c_c00246{bottom:64.122840px;}
.y3e_c00246{bottom:66.851636px;}
.y3a_c00246{bottom:115.008961px;}
.y39_c00246{bottom:130.860954px;}
.y38_c00246{bottom:155.977244px;}
.y37_c00246{bottom:157.045290px;}
.y36_c00246{bottom:182.514530px;}
.y35_c00246{bottom:205.671971px;}
.y34_c00246{bottom:228.831512px;}
.y33_c00246{bottom:251.983252px;}
.y32_c00246{bottom:275.140693px;}
.y31_c00246{bottom:298.296034px;}
.y30_c00246{bottom:321.630625px;}
.y2f_c00246{bottom:344.785215px;}
.y2e_c00246{bottom:367.943256px;}
.y2d_c00246{bottom:394.302746px;}
.y2c_c00246{bottom:410.156839px;}
.y2b_c00246{bottom:425.833033px;}
.y2a_c00246{bottom:441.686377px;}
.y29_c00246{bottom:457.538370px;}
.y28_c00246{bottom:474.104664px;}
.y27_c00246{bottom:493.342156px;}
.y26_c00246{bottom:530.213295px;}
.y25_c00246{bottom:546.065288px;}
.y24_c00246{bottom:571.181578px;}
.y23_c00246{bottom:572.249624px;}
.y22_c00246{bottom:597.720618px;}
.y21_c00246{bottom:620.876558px;}
.y20_c00246{bottom:644.033249px;}
.y1f_c00246{bottom:667.189190px;}
.y1e_c00246{bottom:690.343781px;}
.y1d_c00246{bottom:713.679121px;}
.y1c_c00246{bottom:736.833712px;}
.y1b_c00246{bottom:763.196651px;}
.y1a_c00246{bottom:778.871345px;}
.y19_c00246{bottom:794.721839px;}
.y18_c00246{bottom:810.578633px;}
.y17_c00246{bottom:827.319976px;}
.y16_c00246{bottom:860.096163px;}
.y15_c00246{bottom:885.213953px;}
.y14_c00246{bottom:886.281999px;}
.y13_c00246{bottom:911.751989px;}
.y12_c00246{bottom:934.907929px;}
.y11_c00246{bottom:958.064620px;}
.y10_c00246{bottom:973.916614px;}
.yf_c00246{bottom:997.072554px;}
.ye_c00246{bottom:1020.230595px;}
.yd_c00246{bottom:1046.592185px;}
.yc_c00246{bottom:1062.445528px;}
.yb_c00246{bottom:1078.296022px;}
.ya_c00246{bottom:1093.972216px;}
.y9_c00246{bottom:1110.716409px;}
.y8_c00246{bottom:1141.529397px;}
.y5_c00246{bottom:1145.511000px;}
.y4_c00246{bottom:1171.217494px;}
.y3_c00246{bottom:1187.959587px;}
.y2_c00246{bottom:1216.992076px;}
.h9_c00246{height:14.250240px;}
.h4_c00246{height:14.252400px;}
.h5_c00246{height:45.374009px;}
.h7_c00246{height:46.891535px;}
.h3_c00246{height:50.800284px;}
.h8_c00246{height:62.523529px;}
.h2_c00246{height:74.244327px;}
.h6_c00246{height:1249.830756px;}
.h1_c00246{height:1262.879062px;}
.h0_c00246{height:1263.000000px;}
.w4_c00246{width:40.080600px;}
.w2_c00246{width:40.966920px;}
.w3_c00246{width:883.195846px;}
.w1_c00246{width:892.414744px;}
.w0_c00246{width:892.500000px;}
.x0_c00246{left:0.000000px;}
.x2_c00246{left:1.541954px;}
.x4_c00246{left:106.162653px;}
.x1_c00246{left:107.691951px;}
.x3_c00246{left:197.717966px;}
.x5_c00246{left:283.035810px;}
.x8_c00246{left:469.355747px;}
.x6_c00246{left:609.354855px;}
.x7_c00246{left:704.120764px;}
.x9_c00246{left:711.604261px;}
.xa_c00246{left:792.054000px;}
.xb_c00246{left:845.660005px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:-12.499913pt;}
.ws3_c00246{word-spacing:0.000000pt;}
.ws1_c00246{word-spacing:15.147197pt;}
.ws2_c00246{word-spacing:247.301783pt;}
._5_c00246{margin-left:-4.887502pt;}
._9_c00246{margin-left:-3.985188pt;}
._1_c00246{margin-left:-2.566435pt;}
._3_c00246{margin-left:-1.556200pt;}
._0_c00246{width:1.353124pt;}
._4_c00246{width:2.727947pt;}
._2_c00246{width:3.829802pt;}
._b_c00246{width:4.756955pt;}
._1c_c00246{width:5.835477pt;}
._1b_c00246{width:7.028671pt;}
._13_c00246{width:10.107859pt;}
._1d_c00246{width:11.068355pt;}
._30_c00246{width:13.962375pt;}
._15_c00246{width:16.877520pt;}
._1f_c00246{width:17.828252pt;}
._1e_c00246{width:21.058968pt;}
._20_c00246{width:21.967440pt;}
._e_c00246{width:29.330261pt;}
._6_c00246{width:32.199926pt;}
._d_c00246{width:57.525945pt;}
._14_c00246{width:81.832530pt;}
._2c_c00246{width:99.670234pt;}
._2a_c00246{width:100.632006pt;}
._c_c00246{width:102.707913pt;}
._11_c00246{width:106.694125pt;}
._22_c00246{width:110.499150pt;}
._24_c00246{width:115.222842pt;}
._26_c00246{width:123.059033pt;}
._18_c00246{width:129.109527pt;}
._23_c00246{width:144.216155pt;}
._25_c00246{width:148.014325pt;}
._8_c00246{width:164.958568pt;}
._2b_c00246{width:171.119909pt;}
._2f_c00246{width:175.860021pt;}
._16_c00246{width:179.438971pt;}
._2d_c00246{width:182.679160pt;}
._32_c00246{width:215.623935pt;}
._27_c00246{width:227.756374pt;}
._2e_c00246{width:233.517461pt;}
._21_c00246{width:239.300732pt;}
._33_c00246{width:241.715387pt;}
._a_c00246{width:246.349407pt;}
._29_c00246{width:249.056676pt;}
._10_c00246{width:259.871517pt;}
._1a_c00246{width:265.305559pt;}
._19_c00246{width:267.727144pt;}
._28_c00246{width:279.920334pt;}
._17_c00246{width:286.222125pt;}
._31_c00246{width:287.227365pt;}
._12_c00246{width:294.078644pt;}
._f_c00246{width:317.105088pt;}
._7_c00246{width:901.752877pt;}
.fs2_c00246{font-size:44.963715pt;}
.fs1_c00246{font-size:48.711767pt;}
.fs3_c00246{font-size:59.953043pt;}
.fs0_c00246{font-size:71.191972pt;}
.y0_c00246{bottom:0.000000pt;}
.y1_c00246{bottom:0.107500pt;}
.y6_c00246{bottom:2.528925pt;}
.y3d_c00246{bottom:2.533096pt;}
.y7_c00246{bottom:6.068128pt;}
.y3b_c00246{bottom:56.313272pt;}
.y3c_c00246{bottom:56.998080pt;}
.y3e_c00246{bottom:59.423676pt;}
.y3a_c00246{bottom:102.230187pt;}
.y39_c00246{bottom:116.320848pt;}
.y38_c00246{bottom:138.646439pt;}
.y37_c00246{bottom:139.595814pt;}
.y36_c00246{bottom:162.235138pt;}
.y35_c00246{bottom:182.819530pt;}
.y34_c00246{bottom:203.405788pt;}
.y33_c00246{bottom:223.985113pt;}
.y32_c00246{bottom:244.569505pt;}
.y31_c00246{bottom:265.152030pt;}
.y30_c00246{bottom:285.893889pt;}
.y2f_c00246{bottom:306.475747pt;}
.y2e_c00246{bottom:327.060672pt;}
.y2d_c00246{bottom:350.491329pt;}
.y2c_c00246{bottom:364.583857pt;}
.y2b_c00246{bottom:378.518251pt;}
.y2a_c00246{bottom:392.610113pt;}
.y29_c00246{bottom:406.700774pt;}
.y28_c00246{bottom:421.426368pt;}
.y27_c00246{bottom:438.526361pt;}
.y26_c00246{bottom:471.300706pt;}
.y25_c00246{bottom:485.391367pt;}
.y24_c00246{bottom:507.716958pt;}
.y23_c00246{bottom:508.666333pt;}
.y22_c00246{bottom:531.307216pt;}
.y21_c00246{bottom:551.890274pt;}
.y20_c00246{bottom:572.473999pt;}
.y1f_c00246{bottom:593.057058pt;}
.y1e_c00246{bottom:613.638916pt;}
.y1d_c00246{bottom:634.381441pt;}
.y1c_c00246{bottom:654.963300pt;}
.y1b_c00246{bottom:678.397024pt;}
.y1a_c00246{bottom:692.330085pt;}
.y19_c00246{bottom:706.419412pt;}
.y18_c00246{bottom:720.514340pt;}
.y17_c00246{bottom:735.395534pt;}
.y16_c00246{bottom:764.529922pt;}
.y15_c00246{bottom:786.856847pt;}
.y14_c00246{bottom:787.806221pt;}
.y13_c00246{bottom:810.446212pt;}
.y12_c00246{bottom:831.029270pt;}
.y11_c00246{bottom:851.612996pt;}
.y10_c00246{bottom:865.703657pt;}
.yf_c00246{bottom:886.286715pt;}
.ye_c00246{bottom:906.871640pt;}
.yd_c00246{bottom:930.304164pt;}
.yc_c00246{bottom:944.396025pt;}
.yb_c00246{bottom:958.485353pt;}
.ya_c00246{bottom:972.419747pt;}
.y9_c00246{bottom:987.303475pt;}
.y8_c00246{bottom:1014.692797pt;}
.y5_c00246{bottom:1018.232000pt;}
.y4_c00246{bottom:1041.082217pt;}
.y3_c00246{bottom:1055.964078pt;}
.y2_c00246{bottom:1081.770734pt;}
.h9_c00246{height:12.666880pt;}
.h4_c00246{height:12.668800pt;}
.h5_c00246{height:40.332453pt;}
.h7_c00246{height:41.681364pt;}
.h3_c00246{height:45.155808pt;}
.h8_c00246{height:55.576471pt;}
.h2_c00246{height:65.994958pt;}
.h6_c00246{height:1110.960672pt;}
.h1_c00246{height:1122.559167pt;}
.h0_c00246{height:1122.666667pt;}
.w4_c00246{width:35.627200pt;}
.w2_c00246{width:36.415040pt;}
.w3_c00246{width:785.062974pt;}
.w1_c00246{width:793.257550pt;}
.w0_c00246{width:793.333333pt;}
.x0_c00246{left:0.000000pt;}
.x2_c00246{left:1.370626pt;}
.x4_c00246{left:94.366803pt;}
.x1_c00246{left:95.726178pt;}
.x3_c00246{left:175.749304pt;}
.x5_c00246{left:251.587386pt;}
.x8_c00246{left:417.205109pt;}
.x6_c00246{left:541.648760pt;}
.x7_c00246{left:625.885123pt;}
.x9_c00246{left:632.537121pt;}
.xa_c00246{left:704.048000pt;}
.xb_c00246{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.107000;font-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_c00247{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-14.062402px;}
.ws2_c00247{word-spacing:0.000000px;}
.ws1_c00247{word-spacing:17.040596px;}
._5_c00247{margin-left:-5.498440px;}
._9_c00247{margin-left:-3.950492px;}
._1_c00247{margin-left:-2.887239px;}
._3_c00247{margin-left:-1.750725px;}
._0_c00247{width:1.522265px;}
._4_c00247{width:3.068940px;}
._2_c00247{width:4.308527px;}
._c_c00247{width:5.673632px;}
._b_c00247{width:16.022515px;}
._f_c00247{width:32.996720px;}
._6_c00247{width:36.224916px;}
._e_c00247{width:64.716951px;}
._17_c00247{width:82.920650px;}
._25_c00247{width:96.503945px;}
._1e_c00247{width:112.372650px;}
._d_c00247{width:115.547409px;}
._13_c00247{width:120.078067px;}
._15_c00247{width:121.484881px;}
._19_c00247{width:142.438262px;}
._22_c00247{width:145.248177px;}
._1d_c00247{width:162.523923px;}
._26_c00247{width:166.594468px;}
._14_c00247{width:171.770830px;}
._21_c00247{width:179.094305px;}
._8_c00247{width:185.578389px;}
._16_c00247{width:193.430945px;}
._1c_c00247{width:196.488152px;}
._18_c00247{width:201.660408px;}
._1f_c00247{width:206.264341px;}
._20_c00247{width:234.243700px;}
._1a_c00247{width:262.707493px;}
._a_c00247{width:265.215325px;}
._24_c00247{width:269.195839px;}
._23_c00247{width:271.929421px;}
._12_c00247{width:279.711424px;}
._11_c00247{width:292.354779px;}
._27_c00247{width:301.198470px;}
._10_c00247{width:314.908757px;}
._1b_c00247{width:322.586389px;}
._7_c00247{width:1014.471987px;}
.fc0_c00247{color:rgb(35,31,32);}
.fs2_c00247{font-size:50.584180px;}
.fs1_c00247{font-size:54.800738px;}
.fs0_c00247{font-size:80.090968px;}
.y0_c00247{bottom:0.000000px;}
.y1_c00247{bottom:0.120938px;}
.y6_c00247{bottom:2.845041px;}
.y2f_c00247{bottom:2.849733px;}
.y7_c00247{bottom:6.826644px;}
.y2d_c00247{bottom:63.353331px;}
.y2e_c00247{bottom:64.122840px;}
.y30_c00247{bottom:66.851636px;}
.y2c_c00247{bottom:391.101700px;}
.y2b_c00247{bottom:406.953694px;}
.y2a_c00247{bottom:432.068634px;}
.y29_c00247{bottom:433.136680px;}
.y28_c00247{bottom:458.607616px;}
.y27_c00247{bottom:481.765657px;}
.y26_c00247{bottom:504.918898px;}
.y25_c00247{bottom:528.074839px;}
.y24_c00247{bottom:551.229429px;}
.y23_c00247{bottom:577.593719px;}
.y22_c00247{bottom:593.447812px;}
.y21_c00247{bottom:610.192006px;}
.y20_c00247{bottom:642.965343px;}
.y1f_c00247{bottom:658.820036px;}
.y1e_c00247{bottom:683.932126px;}
.y1d_c00247{bottom:685.001579px;}
.y1c_c00247{bottom:710.472619px;}
.y1b_c00247{bottom:733.628560px;}
.y1a_c00247{bottom:756.783901px;}
.y19_c00247{bottom:779.939841px;}
.y18_c00247{bottom:803.099382px;}
.y17_c00247{bottom:826.429773px;}
.y16_c00247{bottom:849.587213px;}
.y15_c00247{bottom:872.741804px;}
.y14_c00247{bottom:895.901345px;}
.y13_c00247{bottom:919.054586px;}
.y12_c00247{bottom:942.212626px;}
.y11_c00247{bottom:965.542267px;}
.y10_c00247{bottom:988.701808px;}
.yf_c00247{bottom:1015.064747px;}
.ye_c00247{bottom:1030.738091px;}
.yd_c00247{bottom:1046.592185px;}
.yc_c00247{bottom:1062.445528px;}
.yb_c00247{bottom:1078.296022px;}
.ya_c00247{bottom:1093.972216px;}
.y9_c00247{bottom:1110.716409px;}
.y8_c00247{bottom:1141.529397px;}
.y5_c00247{bottom:1145.511000px;}
.y4_c00247{bottom:1171.217494px;}
.y3_c00247{bottom:1187.959587px;}
.y2_c00247{bottom:1216.992076px;}
.h8_c00247{height:14.250240px;}
.h4_c00247{height:14.252400px;}
.h5_c00247{height:45.374009px;}
.h7_c00247{height:46.891535px;}
.h3_c00247{height:50.800284px;}
.h2_c00247{height:74.244327px;}
.h6_c00247{height:1249.830756px;}
.h1_c00247{height:1262.879062px;}
.h0_c00247{height:1263.000000px;}
.w4_c00247{width:40.080600px;}
.w2_c00247{width:40.966920px;}
.w3_c00247{width:883.195846px;}
.w1_c00247{width:892.414744px;}
.w0_c00247{width:892.500000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:1.541954px;}
.x4_c00247{left:106.162653px;}
.x1_c00247{left:107.691951px;}
.x3_c00247{left:197.717966px;}
.x5_c00247{left:283.037307px;}
.x7_c00247{left:469.355747px;}
.x6_c00247{left:704.120764px;}
.x8_c00247{left:711.604261px;}
.x9_c00247{left:792.054000px;}
.xa_c00247{left:845.660005px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:-12.499913pt;}
.ws2_c00247{word-spacing:0.000000pt;}
.ws1_c00247{word-spacing:15.147197pt;}
._5_c00247{margin-left:-4.887502pt;}
._9_c00247{margin-left:-3.511548pt;}
._1_c00247{margin-left:-2.566435pt;}
._3_c00247{margin-left:-1.556200pt;}
._0_c00247{width:1.353124pt;}
._4_c00247{width:2.727947pt;}
._2_c00247{width:3.829802pt;}
._c_c00247{width:5.043228pt;}
._b_c00247{width:14.242236pt;}
._f_c00247{width:29.330418pt;}
._6_c00247{width:32.199926pt;}
._e_c00247{width:57.526179pt;}
._17_c00247{width:73.707245pt;}
._25_c00247{width:85.781285pt;}
._1e_c00247{width:99.886800pt;}
._d_c00247{width:102.708808pt;}
._13_c00247{width:106.736060pt;}
._15_c00247{width:107.986561pt;}
._19_c00247{width:126.611789pt;}
._22_c00247{width:129.109491pt;}
._1d_c00247{width:144.465709pt;}
._26_c00247{width:148.083972pt;}
._14_c00247{width:152.685182pt;}
._21_c00247{width:159.194938pt;}
._8_c00247{width:164.958568pt;}
._16_c00247{width:171.938617pt;}
._1c_c00247{width:174.656135pt;}
._18_c00247{width:179.253696pt;}
._1f_c00247{width:183.346081pt;}
._20_c00247{width:208.216622pt;}
._1a_c00247{width:233.517771pt;}
._a_c00247{width:235.746956pt;}
._24_c00247{width:239.285190pt;}
._23_c00247{width:241.715041pt;}
._12_c00247{width:248.632377pt;}
._11_c00247{width:259.870915pt;}
._27_c00247{width:267.731974pt;}
._10_c00247{width:279.918895pt;}
._1b_c00247{width:286.743457pt;}
._7_c00247{width:901.752877pt;}
.fs2_c00247{font-size:44.963715pt;}
.fs1_c00247{font-size:48.711767pt;}
.fs0_c00247{font-size:71.191972pt;}
.y0_c00247{bottom:0.000000pt;}
.y1_c00247{bottom:0.107500pt;}
.y6_c00247{bottom:2.528925pt;}
.y2f_c00247{bottom:2.533096pt;}
.y7_c00247{bottom:6.068128pt;}
.y2d_c00247{bottom:56.314072pt;}
.y2e_c00247{bottom:56.998080pt;}
.y30_c00247{bottom:59.423676pt;}
.y2c_c00247{bottom:347.645956pt;}
.y2b_c00247{bottom:361.736617pt;}
.y2a_c00247{bottom:384.061008pt;}
.y29_c00247{bottom:385.010382pt;}
.y28_c00247{bottom:407.651215pt;}
.y27_c00247{bottom:428.236140pt;}
.y26_c00247{bottom:448.816798pt;}
.y25_c00247{bottom:469.399856pt;}
.y24_c00247{bottom:489.981715pt;}
.y23_c00247{bottom:513.416639pt;}
.y22_c00247{bottom:527.509167pt;}
.y21_c00247{bottom:542.392894pt;}
.y20_c00247{bottom:571.524749pt;}
.y1f_c00247{bottom:585.617810pt;}
.y1e_c00247{bottom:607.939668pt;}
.y1d_c00247{bottom:608.890293pt;}
.y1c_c00247{bottom:631.531217pt;}
.y1b_c00247{bottom:652.114275pt;}
.y1a_c00247{bottom:672.696800pt;}
.y19_c00247{bottom:693.279859pt;}
.y18_c00247{bottom:713.866117pt;}
.y17_c00247{bottom:734.604242pt;}
.y16_c00247{bottom:755.188634pt;}
.y15_c00247{bottom:775.770493pt;}
.y14_c00247{bottom:796.356751pt;}
.y13_c00247{bottom:816.937409pt;}
.y12_c00247{bottom:837.522335pt;}
.y11_c00247{bottom:858.259793pt;}
.y10_c00247{bottom:878.846051pt;}
.yf_c00247{bottom:902.279775pt;}
.ye_c00247{bottom:916.211636pt;}
.yd_c00247{bottom:930.304164pt;}
.yc_c00247{bottom:944.396025pt;}
.yb_c00247{bottom:958.485353pt;}
.ya_c00247{bottom:972.419747pt;}
.y9_c00247{bottom:987.303475pt;}
.y8_c00247{bottom:1014.692797pt;}
.y5_c00247{bottom:1018.232000pt;}
.y4_c00247{bottom:1041.082217pt;}
.y3_c00247{bottom:1055.964078pt;}
.y2_c00247{bottom:1081.770734pt;}
.h8_c00247{height:12.666880pt;}
.h4_c00247{height:12.668800pt;}
.h5_c00247{height:40.332453pt;}
.h7_c00247{height:41.681364pt;}
.h3_c00247{height:45.155808pt;}
.h2_c00247{height:65.994958pt;}
.h6_c00247{height:1110.960672pt;}
.h1_c00247{height:1122.559167pt;}
.h0_c00247{height:1122.666667pt;}
.w4_c00247{width:35.627200pt;}
.w2_c00247{width:36.415040pt;}
.w3_c00247{width:785.062974pt;}
.w1_c00247{width:793.257550pt;}
.w0_c00247{width:793.333333pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:1.370626pt;}
.x4_c00247{left:94.366803pt;}
.x1_c00247{left:95.726178pt;}
.x3_c00247{left:175.749304pt;}
.x5_c00247{left:251.588718pt;}
.x7_c00247{left:417.205109pt;}
.x6_c00247{left:625.885123pt;}
.x8_c00247{left:632.537121pt;}
.x9_c00247{left:704.048000pt;}
.xa_c00247{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.107000;font-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_c00248{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:-14.062402px;}
.ws2_c00248{word-spacing:0.000000px;}
.ws1_c00248{word-spacing:17.040596px;}
._5_c00248{margin-left:-5.498440px;}
._c_c00248{margin-left:-4.012531px;}
._1_c00248{margin-left:-2.887239px;}
._3_c00248{margin-left:-1.750725px;}
._0_c00248{width:1.522265px;}
._4_c00248{width:3.068940px;}
._2_c00248{width:4.308527px;}
._b_c00248{width:5.571545px;}
._d_c00248{width:7.416814px;}
._a_c00248{width:16.022374px;}
._10_c00248{width:32.996599px;}
._6_c00248{width:36.224916px;}
._f_c00248{width:64.717275px;}
._13_c00248{width:112.982898px;}
._20_c00248{width:115.771843px;}
._e_c00248{width:121.311412px;}
._14_c00248{width:133.107263px;}
._18_c00248{width:145.248223px;}
._21_c00248{width:162.025051px;}
._8_c00248{width:185.578389px;}
._1d_c00248{width:239.019465px;}
._9_c00248{width:243.549008px;}
._1c_c00248{width:256.212106px;}
._15_c00248{width:262.707675px;}
._19_c00248{width:271.929051px;}
._1a_c00248{width:288.935982px;}
._12_c00248{width:292.353914px;}
._1e_c00248{width:301.192106px;}
._1f_c00248{width:307.145072px;}
._16_c00248{width:315.400988px;}
._17_c00248{width:321.998550px;}
._1b_c00248{width:330.843063px;}
._11_c00248{width:382.025593px;}
._7_c00248{width:1014.471987px;}
.fc0_c00248{color:rgb(35,31,32);}
.fs2_c00248{font-size:50.584180px;}
.fs1_c00248{font-size:54.800738px;}
.fs3_c00248{font-size:67.447173px;}
.fs0_c00248{font-size:80.090968px;}
.y0_c00248{bottom:0.000000px;}
.y1_c00248{bottom:0.120938px;}
.y6_c00248{bottom:2.845041px;}
.y2f_c00248{bottom:2.849733px;}
.y7_c00248{bottom:6.826644px;}
.y2d_c00248{bottom:63.352131px;}
.y2e_c00248{bottom:64.122840px;}
.y30_c00248{bottom:66.851636px;}
.y2c_c00248{bottom:410.157993px;}
.y2b_c00248{bottom:425.832686px;}
.y2a_c00248{bottom:450.947626px;}
.y29_c00248{bottom:452.015672px;}
.y28_c00248{bottom:477.492066px;}
.y27_c00248{bottom:500.648757px;}
.y26_c00248{bottom:523.980497px;}
.y25_c00248{bottom:550.169137px;}
.y24_c00248{bottom:566.018280px;}
.y23_c00248{bottom:581.871624px;}
.y22_c00248{bottom:598.617917px;}
.y21_c00248{bottom:631.389154px;}
.y20_c00248{bottom:647.243248px;}
.y1f_c00248{bottom:672.359538px;}
.y1e_c00248{bottom:673.427584px;}
.y1d_c00248{bottom:698.895981px;}
.y1c_c00248{bottom:722.047721px;}
.y1b_c00248{bottom:745.203062px;}
.y1a_c00248{bottom:768.360503px;}
.y19_c00248{bottom:794.722092px;}
.y18_c00248{bottom:810.575436px;}
.y17_c00248{bottom:826.428780px;}
.y16_c00248{bottom:842.993723px;}
.y15_c00248{bottom:875.947060px;}
.y14_c00248{bottom:891.623254px;}
.y13_c00248{bottom:916.741644px;}
.y12_c00248{bottom:917.808986px;}
.y11_c00248{bottom:943.279126px;}
.y10_c00248{bottom:966.435817px;}
.yf_c00248{bottom:989.770407px;}
.ye_c00248{bottom:1012.926348px;}
.yd_c00248{bottom:1039.289288px;}
.yc_c00248{bottom:1054.961281px;}
.yb_c00248{bottom:1070.815375px;}
.ya_c00248{bottom:1087.560918px;}
.y9_c00248{bottom:1106.619911px;}
.y8_c00248{bottom:1141.529397px;}
.y5_c00248{bottom:1145.511000px;}
.y4_c00248{bottom:1171.217494px;}
.y3_c00248{bottom:1187.959587px;}
.y2_c00248{bottom:1216.992076px;}
.h9_c00248{height:14.250240px;}
.h4_c00248{height:14.252400px;}
.h5_c00248{height:45.374009px;}
.h8_c00248{height:46.891535px;}
.h3_c00248{height:50.800284px;}
.h7_c00248{height:62.523529px;}
.h2_c00248{height:74.244327px;}
.h6_c00248{height:1249.830756px;}
.h1_c00248{height:1262.879062px;}
.h0_c00248{height:1263.000000px;}
.w4_c00248{width:40.080600px;}
.w2_c00248{width:40.966920px;}
.w3_c00248{width:883.195846px;}
.w1_c00248{width:892.414744px;}
.w0_c00248{width:892.500000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:1.541954px;}
.x4_c00248{left:106.162653px;}
.x1_c00248{left:107.691951px;}
.x3_c00248{left:197.717966px;}
.x5_c00248{left:283.041801px;}
.x7_c00248{left:469.355747px;}
.x6_c00248{left:704.120764px;}
.x8_c00248{left:711.604261px;}
.x9_c00248{left:792.054000px;}
.xa_c00248{left:845.660005px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:-12.499913pt;}
.ws2_c00248{word-spacing:0.000000pt;}
.ws1_c00248{word-spacing:15.147197pt;}
._5_c00248{margin-left:-4.887502pt;}
._c_c00248{margin-left:-3.566694pt;}
._1_c00248{margin-left:-2.566435pt;}
._3_c00248{margin-left:-1.556200pt;}
._0_c00248{width:1.353124pt;}
._4_c00248{width:2.727947pt;}
._2_c00248{width:3.829802pt;}
._b_c00248{width:4.952485pt;}
._d_c00248{width:6.592724pt;}
._a_c00248{width:14.242110pt;}
._10_c00248{width:29.330310pt;}
._6_c00248{width:32.199926pt;}
._f_c00248{width:57.526466pt;}
._13_c00248{width:100.429243pt;}
._20_c00248{width:102.908305pt;}
._e_c00248{width:107.832366pt;}
._14_c00248{width:118.317567pt;}
._18_c00248{width:129.109531pt;}
._21_c00248{width:144.022267pt;}
._8_c00248{width:164.958568pt;}
._1d_c00248{width:212.461747pt;}
._9_c00248{width:216.488007pt;}
._1c_c00248{width:227.744094pt;}
._15_c00248{width:233.517933pt;}
._19_c00248{width:241.714712pt;}
._1a_c00248{width:256.831984pt;}
._12_c00248{width:259.870146pt;}
._1e_c00248{width:267.726317pt;}
._1f_c00248{width:273.017842pt;}
._16_c00248{width:280.356434pt;}
._17_c00248{width:286.220933pt;}
._1b_c00248{width:294.082723pt;}
._11_c00248{width:339.578305pt;}
._7_c00248{width:901.752877pt;}
.fs2_c00248{font-size:44.963715pt;}
.fs1_c00248{font-size:48.711767pt;}
.fs3_c00248{font-size:59.953043pt;}
.fs0_c00248{font-size:71.191972pt;}
.y0_c00248{bottom:0.000000pt;}
.y1_c00248{bottom:0.107500pt;}
.y6_c00248{bottom:2.528925pt;}
.y2f_c00248{bottom:2.533096pt;}
.y7_c00248{bottom:6.068128pt;}
.y2d_c00248{bottom:56.313006pt;}
.y2e_c00248{bottom:56.998080pt;}
.y30_c00248{bottom:59.423676pt;}
.y2c_c00248{bottom:364.584882pt;}
.y2b_c00248{bottom:378.517943pt;}
.y2a_c00248{bottom:400.842335pt;}
.y29_c00248{bottom:401.791709pt;}
.y28_c00248{bottom:424.437392pt;}
.y27_c00248{bottom:445.021117pt;}
.y26_c00248{bottom:465.760442pt;}
.y25_c00248{bottom:489.039233pt;}
.y24_c00248{bottom:503.127360pt;}
.y23_c00248{bottom:517.219221pt;}
.y22_c00248{bottom:532.104815pt;}
.y21_c00248{bottom:561.234804pt;}
.y20_c00248{bottom:575.327331pt;}
.y1f_c00248{bottom:597.652923pt;}
.y1e_c00248{bottom:598.602297pt;}
.y1d_c00248{bottom:621.240872pt;}
.y1c_c00248{bottom:641.820197pt;}
.y1b_c00248{bottom:662.402722pt;}
.y1a_c00248{bottom:682.987114pt;}
.y19_c00248{bottom:706.419638pt;}
.y18_c00248{bottom:720.511499pt;}
.y17_c00248{bottom:734.603360pt;}
.y16_c00248{bottom:749.327754pt;}
.y15_c00248{bottom:778.619609pt;}
.y14_c00248{bottom:792.554003pt;}
.y13_c00248{bottom:814.881461pt;}
.y12_c00248{bottom:815.830210pt;}
.y11_c00248{bottom:838.470334pt;}
.y10_c00248{bottom:859.054059pt;}
.yf_c00248{bottom:879.795918pt;}
.ye_c00248{bottom:900.378976pt;}
.yd_c00248{bottom:923.812700pt;}
.yc_c00248{bottom:937.743361pt;}
.yb_c00248{bottom:951.835889pt;}
.ya_c00248{bottom:966.720816pt;}
.y9_c00248{bottom:983.662143pt;}
.y8_c00248{bottom:1014.692797pt;}
.y5_c00248{bottom:1018.232000pt;}
.y4_c00248{bottom:1041.082217pt;}
.y3_c00248{bottom:1055.964078pt;}
.y2_c00248{bottom:1081.770734pt;}
.h9_c00248{height:12.666880pt;}
.h4_c00248{height:12.668800pt;}
.h5_c00248{height:40.332453pt;}
.h8_c00248{height:41.681364pt;}
.h3_c00248{height:45.155808pt;}
.h7_c00248{height:55.576471pt;}
.h2_c00248{height:65.994958pt;}
.h6_c00248{height:1110.960672pt;}
.h1_c00248{height:1122.559167pt;}
.h0_c00248{height:1122.666667pt;}
.w4_c00248{width:35.627200pt;}
.w2_c00248{width:36.415040pt;}
.w3_c00248{width:785.062974pt;}
.w1_c00248{width:793.257550pt;}
.w0_c00248{width:793.333333pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:1.370626pt;}
.x4_c00248{left:94.366803pt;}
.x1_c00248{left:95.726178pt;}
.x3_c00248{left:175.749304pt;}
.x5_c00248{left:251.592712pt;}
.x7_c00248{left:417.205109pt;}
.x6_c00248{left:625.885123pt;}
.x8_c00248{left:632.537121pt;}
.x9_c00248{left:704.048000pt;}
.xa_c00248{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.107000;font-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_c00249{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:-14.062402px;}
.ws2_c00249{word-spacing:0.000000px;}
.ws1_c00249{word-spacing:17.040596px;}
._5_c00249{margin-left:-5.498440px;}
._9_c00249{margin-left:-4.196030px;}
._1_c00249{margin-left:-2.887239px;}
._3_c00249{margin-left:-1.750725px;}
._0_c00249{width:1.522265px;}
._4_c00249{width:3.068940px;}
._2_c00249{width:4.308527px;}
._1e_c00249{width:5.984170px;}
._22_c00249{width:7.852469px;}
._1b_c00249{width:11.188218px;}
._d_c00249{width:22.845481px;}
._19_c00249{width:31.555088px;}
._15_c00249{width:32.998238px;}
._6_c00249{width:36.224916px;}
._c_c00249{width:64.716597px;}
._17_c00249{width:115.850152px;}
._b_c00249{width:119.953741px;}
._14_c00249{width:121.494309px;}
._10_c00249{width:138.567706px;}
._1d_c00249{width:145.248142px;}
._12_c00249{width:154.364071px;}
._21_c00249{width:159.341698px;}
._18_c00249{width:162.031170px;}
._11_c00249{width:171.713656px;}
._1a_c00249{width:179.051338px;}
._8_c00249{width:185.578389px;}
._e_c00249{width:192.507436px;}
._1c_c00249{width:289.218350px;}
._24_c00249{width:292.030782px;}
._20_c00249{width:293.779379px;}
._26_c00249{width:301.181037px;}
._a_c00249{width:307.124885px;}
._f_c00249{width:321.998702px;}
._23_c00249{width:327.904568px;}
._13_c00249{width:330.834884px;}
._1f_c00249{width:356.495719px;}
._16_c00249{width:394.008939px;}
._25_c00249{width:458.293620px;}
._7_c00249{width:1014.471987px;}
.fc0_c00249{color:rgb(35,31,32);}
.fs2_c00249{font-size:50.584180px;}
.fs1_c00249{font-size:54.800738px;}
.fs4_c00249{font-size:67.447173px;}
.fs3_c00249{font-size:71.662171px;}
.fs0_c00249{font-size:80.090968px;}
.y0_c00249{bottom:0.000000px;}
.y1_c00249{bottom:0.120938px;}
.y6_c00249{bottom:2.845041px;}
.y29_c00249{bottom:2.849733px;}
.y7_c00249{bottom:6.826644px;}
.y27_c00249{bottom:63.353331px;}
.y28_c00249{bottom:64.122840px;}
.y2a_c00249{bottom:66.851636px;}
.y26_c00249{bottom:471.255668px;}
.y25_c00249{bottom:496.370608px;}
.y24_c00249{bottom:497.438654px;}
.y23_c00249{bottom:522.906526px;}
.y22_c00249{bottom:546.061867px;}
.y21_c00249{bottom:569.219308px;}
.y20_c00249{bottom:592.375998px;}
.y1f_c00249{bottom:615.531939px;}
.y1e_c00249{bottom:638.685180px;}
.y1d_c00249{bottom:662.024720px;}
.y1c_c00249{bottom:685.177961px;}
.y1b_c00249{bottom:711.540901px;}
.y1a_c00249{bottom:727.215594px;}
.y19_c00249{bottom:743.956938px;}
.y18_c00249{bottom:776.911625px;}
.y17_c00249{bottom:802.025064px;}
.y16_c00249{bottom:802.918032px;}
.y15_c00249{bottom:828.391322px;}
.y14_c00249{bottom:851.724563px;}
.y13_c00249{bottom:874.879153px;}
.y12_c00249{bottom:898.035094px;}
.y11_c00249{bottom:921.193135px;}
.y10_c00249{bottom:944.347726px;}
.yf_c00249{bottom:967.505766px;}
.ye_c00249{bottom:990.839007px;}
.yd_c00249{bottom:1013.994948px;}
.yc_c00249{bottom:1037.149538px;}
.yb_c00249{bottom:1064.405428px;}
.ya_c00249{bottom:1083.462920px;}
.y9_c00249{bottom:1105.553411px;}
.y8_c00249{bottom:1141.529397px;}
.y5_c00249{bottom:1145.511000px;}
.y4_c00249{bottom:1171.217494px;}
.y3_c00249{bottom:1187.959587px;}
.y2_c00249{bottom:1216.992076px;}
.ha_c00249{height:14.250240px;}
.h4_c00249{height:14.252400px;}
.h5_c00249{height:45.374009px;}
.h9_c00249{height:46.891535px;}
.h3_c00249{height:50.800284px;}
.h8_c00249{height:62.523529px;}
.h7_c00249{height:66.430833px;}
.h2_c00249{height:74.244327px;}
.h6_c00249{height:1249.830756px;}
.h1_c00249{height:1262.879062px;}
.h0_c00249{height:1263.000000px;}
.w4_c00249{width:40.080600px;}
.w2_c00249{width:40.966920px;}
.w3_c00249{width:883.195846px;}
.w1_c00249{width:892.414744px;}
.w0_c00249{width:892.500000px;}
.x0_c00249{left:0.000000px;}
.x2_c00249{left:1.541954px;}
.x4_c00249{left:106.162653px;}
.x1_c00249{left:107.691951px;}
.x3_c00249{left:197.717966px;}
.x7_c00249{left:283.039893px;}
.x6_c00249{left:469.357507px;}
.x8_c00249{left:711.604261px;}
.x5_c00249{left:718.907758px;}
.x9_c00249{left:792.054000px;}
.xa_c00249{left:845.660005px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:-12.499913pt;}
.ws2_c00249{word-spacing:0.000000pt;}
.ws1_c00249{word-spacing:15.147197pt;}
._5_c00249{margin-left:-4.887502pt;}
._9_c00249{margin-left:-3.729804pt;}
._1_c00249{margin-left:-2.566435pt;}
._3_c00249{margin-left:-1.556200pt;}
._0_c00249{width:1.353124pt;}
._4_c00249{width:2.727947pt;}
._2_c00249{width:3.829802pt;}
._1e_c00249{width:5.319262pt;}
._22_c00249{width:6.979973pt;}
._1b_c00249{width:9.945082pt;}
._d_c00249{width:20.307094pt;}
._19_c00249{width:28.048967pt;}
._15_c00249{width:29.331767pt;}
._6_c00249{width:32.199926pt;}
._c_c00249{width:57.525864pt;}
._17_c00249{width:102.977913pt;}
._b_c00249{width:106.625548pt;}
._14_c00249{width:107.994941pt;}
._10_c00249{width:123.171294pt;}
._1d_c00249{width:129.109459pt;}
._12_c00249{width:137.212507pt;}
._21_c00249{width:141.637065pt;}
._18_c00249{width:144.027707pt;}
._11_c00249{width:152.634361pt;}
._1a_c00249{width:159.156745pt;}
._8_c00249{width:164.958568pt;}
._e_c00249{width:171.117721pt;}
._1c_c00249{width:257.082978pt;}
._24_c00249{width:259.582917pt;}
._20_c00249{width:261.137226pt;}
._26_c00249{width:267.716477pt;}
._a_c00249{width:272.999898pt;}
._f_c00249{width:286.221068pt;}
._23_c00249{width:291.470727pt;}
._13_c00249{width:294.075453pt;}
._1f_c00249{width:316.885083pt;}
._16_c00249{width:350.230168pt;}
._25_c00249{width:407.372107pt;}
._7_c00249{width:901.752877pt;}
.fs2_c00249{font-size:44.963715pt;}
.fs1_c00249{font-size:48.711767pt;}
.fs4_c00249{font-size:59.953043pt;}
.fs3_c00249{font-size:63.699708pt;}
.fs0_c00249{font-size:71.191972pt;}
.y0_c00249{bottom:0.000000pt;}
.y1_c00249{bottom:0.107500pt;}
.y6_c00249{bottom:2.528925pt;}
.y29_c00249{bottom:2.533096pt;}
.y7_c00249{bottom:6.068128pt;}
.y27_c00249{bottom:56.314072pt;}
.y28_c00249{bottom:56.998080pt;}
.y2a_c00249{bottom:59.423676pt;}
.y26_c00249{bottom:418.893927pt;}
.y25_c00249{bottom:441.218318pt;}
.y24_c00249{bottom:442.167693pt;}
.y23_c00249{bottom:464.805801pt;}
.y22_c00249{bottom:485.388326pt;}
.y21_c00249{bottom:505.972718pt;}
.y20_c00249{bottom:526.556443pt;}
.y1f_c00249{bottom:547.139501pt;}
.y1e_c00249{bottom:567.720160pt;}
.y1d_c00249{bottom:588.466418pt;}
.y1c_c00249{bottom:609.047077pt;}
.y1b_c00249{bottom:632.480801pt;}
.y1a_c00249{bottom:646.413862pt;}
.y19_c00249{bottom:661.295056pt;}
.y18_c00249{bottom:690.588111pt;}
.y17_c00249{bottom:712.911168pt;}
.y16_c00249{bottom:713.704917pt;}
.y15_c00249{bottom:736.347842pt;}
.y14_c00249{bottom:757.088500pt;}
.y13_c00249{bottom:777.670359pt;}
.y12_c00249{bottom:798.253417pt;}
.y11_c00249{bottom:818.838342pt;}
.y10_c00249{bottom:839.420200pt;}
.yf_c00249{bottom:860.005126pt;}
.ye_c00249{bottom:880.745784pt;}
.yd_c00249{bottom:901.328842pt;}
.yc_c00249{bottom:921.910701pt;}
.yb_c00249{bottom:946.138158pt;}
.ya_c00249{bottom:963.078151pt;}
.y9_c00249{bottom:982.714143pt;}
.y8_c00249{bottom:1014.692797pt;}
.y5_c00249{bottom:1018.232000pt;}
.y4_c00249{bottom:1041.082217pt;}
.y3_c00249{bottom:1055.964078pt;}
.y2_c00249{bottom:1081.770734pt;}
.ha_c00249{height:12.666880pt;}
.h4_c00249{height:12.668800pt;}
.h5_c00249{height:40.332453pt;}
.h9_c00249{height:41.681364pt;}
.h3_c00249{height:45.155808pt;}
.h8_c00249{height:55.576471pt;}
.h7_c00249{height:59.049629pt;}
.h2_c00249{height:65.994958pt;}
.h6_c00249{height:1110.960672pt;}
.h1_c00249{height:1122.559167pt;}
.h0_c00249{height:1122.666667pt;}
.w4_c00249{width:35.627200pt;}
.w2_c00249{width:36.415040pt;}
.w3_c00249{width:785.062974pt;}
.w1_c00249{width:793.257550pt;}
.w0_c00249{width:793.333333pt;}
.x0_c00249{left:0.000000pt;}
.x2_c00249{left:1.370626pt;}
.x4_c00249{left:94.366803pt;}
.x1_c00249{left:95.726178pt;}
.x3_c00249{left:175.749304pt;}
.x7_c00249{left:251.591016pt;}
.x6_c00249{left:417.206673pt;}
.x8_c00249{left:632.537121pt;}
.x5_c00249{left:639.029118pt;}
.x9_c00249{left:704.048000pt;}
.xa_c00249{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.107000;font-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_c00250{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:-14.062402px;}
.ws2_c00250{word-spacing:0.000000px;}
.ws1_c00250{word-spacing:17.040596px;}
._5_c00250{margin-left:-5.498440px;}
._9_c00250{margin-left:-4.100777px;}
._1_c00250{margin-left:-2.887239px;}
._3_c00250{margin-left:-1.750725px;}
._0_c00250{width:1.522265px;}
._4_c00250{width:3.068940px;}
._2_c00250{width:4.308527px;}
._17_c00250{width:5.888916px;}
._1e_c00250{width:7.416829px;}
._b_c00250{width:16.022541px;}
._e_c00250{width:32.996599px;}
._6_c00250{width:36.224916px;}
._d_c00250{width:64.717275px;}
._11_c00250{width:113.211095px;}
._14_c00250{width:120.053793px;}
._c_c00250{width:121.399657px;}
._1a_c00250{width:124.260075px;}
._1f_c00250{width:133.131177px;}
._1b_c00250{width:138.579483px;}
._21_c00250{width:143.164830px;}
._15_c00250{width:145.247752px;}
._12_c00250{width:171.909831px;}
._8_c00250{width:185.578389px;}
._1d_c00250{width:241.875127px;}
._a_c00250{width:255.635557px;}
._18_c00250{width:263.302180px;}
._20_c00250{width:271.929689px;}
._13_c00250{width:292.354096px;}
._16_c00250{width:301.192744px;}
._1c_c00250{width:314.907710px;}
._10_c00250{width:322.323882px;}
._f_c00250{width:330.843235px;}
._19_c00250{width:382.026099px;}
._7_c00250{width:1014.471987px;}
.fc0_c00250{color:rgb(35,31,32);}
.fs2_c00250{font-size:50.584180px;}
.fs1_c00250{font-size:54.800738px;}
.fs3_c00250{font-size:67.447173px;}
.fs0_c00250{font-size:80.090968px;}
.y0_c00250{bottom:0.000000px;}
.y1_c00250{bottom:0.120938px;}
.y6_c00250{bottom:2.845041px;}
.y3b_c00250{bottom:2.849733px;}
.y7_c00250{bottom:6.826644px;}
.y39_c00250{bottom:63.351474px;}
.y3a_c00250{bottom:64.122840px;}
.y3c_c00250{bottom:66.851636px;}
.y38_c00250{bottom:158.293036px;}
.y37_c00250{bottom:173.966380px;}
.y36_c00250{bottom:199.081320px;}
.y35_c00250{bottom:200.150773px;}
.y34_c00250{bottom:225.622460px;}
.y33_c00250{bottom:248.778400px;}
.y32_c00250{bottom:272.111641px;}
.y31_c00250{bottom:295.265482px;}
.y30_c00250{bottom:321.631271px;}
.y2f_c00250{bottom:337.305965px;}
.y2e_c00250{bottom:353.159309px;}
.y2d_c00250{bottom:369.013402px;}
.y2c_c00250{bottom:385.577596px;}
.y2b_c00250{bottom:418.529582px;}
.y2a_c00250{bottom:434.384276px;}
.y29_c00250{bottom:459.497716px;}
.y28_c00250{bottom:460.567169px;}
.y27_c00250{bottom:486.038762px;}
.y26_c00250{bottom:509.193353px;}
.y25_c00250{bottom:532.350044px;}
.y24_c00250{bottom:555.504635px;}
.y23_c00250{bottom:581.867574px;}
.y22_c00250{bottom:597.722268px;}
.y21_c00250{bottom:613.395611px;}
.y20_c00250{bottom:630.140555px;}
.y1f_c00250{bottom:663.090442px;}
.y1e_c00250{bottom:678.767235px;}
.y1d_c00250{bottom:703.883525px;}
.y1c_c00250{bottom:704.951571px;}
.y1b_c00250{bottom:730.421261px;}
.y1a_c00250{bottom:753.580052px;}
.y19_c00250{bottom:776.911793px;}
.y18_c00250{bottom:803.098332px;}
.y17_c00250{bottom:818.950326px;}
.y16_c00250{bottom:835.694519px;}
.y15_c00250{bottom:854.753511px;}
.y14_c00250{bottom:891.624143px;}
.y13_c00250{bottom:907.482437px;}
.y12_c00250{bottom:932.594527px;}
.y11_c00250{bottom:933.663980px;}
.y10_c00250{bottom:959.131120px;}
.yf_c00250{bottom:982.287810px;}
.ye_c00250{bottom:1005.443751px;}
.yd_c00250{bottom:1028.778342px;}
.yc_c00250{bottom:1054.961281px;}
.yb_c00250{bottom:1070.815375px;}
.ya_c00250{bottom:1087.560918px;}
.y9_c00250{bottom:1106.619911px;}
.y8_c00250{bottom:1141.529397px;}
.y5_c00250{bottom:1145.511000px;}
.y4_c00250{bottom:1171.217494px;}
.y3_c00250{bottom:1187.959587px;}
.y2_c00250{bottom:1216.992076px;}
.h9_c00250{height:14.250240px;}
.h4_c00250{height:14.252400px;}
.h5_c00250{height:45.374009px;}
.h8_c00250{height:46.891535px;}
.h3_c00250{height:50.800284px;}
.h7_c00250{height:62.523529px;}
.h2_c00250{height:74.244327px;}
.h6_c00250{height:1249.830756px;}
.h1_c00250{height:1262.879062px;}
.h0_c00250{height:1263.000000px;}
.w4_c00250{width:40.080600px;}
.w2_c00250{width:40.966920px;}
.w3_c00250{width:883.195846px;}
.w1_c00250{width:892.414744px;}
.w0_c00250{width:892.500000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:1.541954px;}
.x4_c00250{left:106.162653px;}
.x1_c00250{left:107.691951px;}
.x3_c00250{left:197.717966px;}
.x5_c00250{left:283.035810px;}
.x7_c00250{left:469.355268px;}
.x8_c00250{left:704.120764px;}
.x6_c00250{left:711.604261px;}
.x9_c00250{left:792.054000px;}
.xa_c00250{left:845.660005px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:-12.499913pt;}
.ws2_c00250{word-spacing:0.000000pt;}
.ws1_c00250{word-spacing:15.147197pt;}
._5_c00250{margin-left:-4.887502pt;}
._9_c00250{margin-left:-3.645135pt;}
._1_c00250{margin-left:-2.566435pt;}
._3_c00250{margin-left:-1.556200pt;}
._0_c00250{width:1.353124pt;}
._4_c00250{width:2.727947pt;}
._2_c00250{width:3.829802pt;}
._17_c00250{width:5.234592pt;}
._1e_c00250{width:6.592737pt;}
._b_c00250{width:14.242258pt;}
._e_c00250{width:29.330310pt;}
._6_c00250{width:32.199926pt;}
._d_c00250{width:57.526466pt;}
._11_c00250{width:100.632085pt;}
._14_c00250{width:106.714482pt;}
._c_c00250{width:107.910806pt;}
._1a_c00250{width:110.453400pt;}
._1f_c00250{width:118.338824pt;}
._1b_c00250{width:123.181762pt;}
._21_c00250{width:127.257626pt;}
._15_c00250{width:129.109113pt;}
._12_c00250{width:152.808739pt;}
._8_c00250{width:164.958568pt;}
._1d_c00250{width:215.000113pt;}
._a_c00250{width:227.231606pt;}
._18_c00250{width:234.046382pt;}
._20_c00250{width:241.715279pt;}
._13_c00250{width:259.870308pt;}
._16_c00250{width:267.726883pt;}
._1c_c00250{width:279.917965pt;}
._10_c00250{width:286.510117pt;}
._f_c00250{width:294.082875pt;}
._19_c00250{width:339.578755pt;}
._7_c00250{width:901.752877pt;}
.fs2_c00250{font-size:44.963715pt;}
.fs1_c00250{font-size:48.711767pt;}
.fs3_c00250{font-size:59.953043pt;}
.fs0_c00250{font-size:71.191972pt;}
.y0_c00250{bottom:0.000000pt;}
.y1_c00250{bottom:0.107500pt;}
.y6_c00250{bottom:2.528925pt;}
.y3b_c00250{bottom:2.533096pt;}
.y7_c00250{bottom:6.068128pt;}
.y39_c00250{bottom:56.312422pt;}
.y3a_c00250{bottom:56.998080pt;}
.y3c_c00250{bottom:59.423676pt;}
.y38_c00250{bottom:140.704921pt;}
.y37_c00250{bottom:154.636782pt;}
.y36_c00250{bottom:176.961173pt;}
.y35_c00250{bottom:177.911798pt;}
.y34_c00250{bottom:200.553297pt;}
.y33_c00250{bottom:221.136356pt;}
.y32_c00250{bottom:241.877014pt;}
.y31_c00250{bottom:262.458206pt;}
.y30_c00250{bottom:285.894463pt;}
.y2f_c00250{bottom:299.827524pt;}
.y2e_c00250{bottom:313.919385pt;}
.y2d_c00250{bottom:328.011913pt;}
.y2c_c00250{bottom:342.735640pt;}
.y2b_c00250{bottom:372.026295pt;}
.y2a_c00250{bottom:386.119356pt;}
.y29_c00250{bottom:408.442414pt;}
.y28_c00250{bottom:409.393039pt;}
.y27_c00250{bottom:432.034455pt;}
.y26_c00250{bottom:452.616314pt;}
.y25_c00250{bottom:473.200039pt;}
.y24_c00250{bottom:493.781897pt;}
.y23_c00250{bottom:517.215621pt;}
.y22_c00250{bottom:531.308682pt;}
.y21_c00250{bottom:545.240543pt;}
.y20_c00250{bottom:560.124938pt;}
.y1f_c00250{bottom:589.413726pt;}
.y1e_c00250{bottom:603.348654pt;}
.y1d_c00250{bottom:625.674245pt;}
.y1c_c00250{bottom:626.623619pt;}
.y1b_c00250{bottom:649.263343pt;}
.y1a_c00250{bottom:669.848935pt;}
.y19_c00250{bottom:690.588260pt;}
.y18_c00250{bottom:713.865184pt;}
.y17_c00250{bottom:727.955845pt;}
.y16_c00250{bottom:742.839572pt;}
.y15_c00250{bottom:759.780899pt;}
.y14_c00250{bottom:792.554794pt;}
.y13_c00250{bottom:806.651055pt;}
.y12_c00250{bottom:828.972913pt;}
.y11_c00250{bottom:829.923538pt;}
.y10_c00250{bottom:852.560995pt;}
.yf_c00250{bottom:873.144720pt;}
.ye_c00250{bottom:893.727779pt;}
.yd_c00250{bottom:914.469637pt;}
.yc_c00250{bottom:937.743361pt;}
.yb_c00250{bottom:951.835889pt;}
.ya_c00250{bottom:966.720816pt;}
.y9_c00250{bottom:983.662143pt;}
.y8_c00250{bottom:1014.692797pt;}
.y5_c00250{bottom:1018.232000pt;}
.y4_c00250{bottom:1041.082217pt;}
.y3_c00250{bottom:1055.964078pt;}
.y2_c00250{bottom:1081.770734pt;}
.h9_c00250{height:12.666880pt;}
.h4_c00250{height:12.668800pt;}
.h5_c00250{height:40.332453pt;}
.h8_c00250{height:41.681364pt;}
.h3_c00250{height:45.155808pt;}
.h7_c00250{height:55.576471pt;}
.h2_c00250{height:65.994958pt;}
.h6_c00250{height:1110.960672pt;}
.h1_c00250{height:1122.559167pt;}
.h0_c00250{height:1122.666667pt;}
.w4_c00250{width:35.627200pt;}
.w2_c00250{width:36.415040pt;}
.w3_c00250{width:785.062974pt;}
.w1_c00250{width:793.257550pt;}
.w0_c00250{width:793.333333pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:1.370626pt;}
.x4_c00250{left:94.366803pt;}
.x1_c00250{left:95.726178pt;}
.x3_c00250{left:175.749304pt;}
.x5_c00250{left:251.587386pt;}
.x7_c00250{left:417.204683pt;}
.x8_c00250{left:625.885123pt;}
.x6_c00250{left:632.537121pt;}
.x9_c00250{left:704.048000pt;}
.xa_c00250{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.107000;font-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_c00251{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls0_c00251{letter-spacing:0.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00251{word-spacing:-14.062402px;}
.ws2_c00251{word-spacing:0.000000px;}
.ws1_c00251{word-spacing:17.040596px;}
._5_c00251{margin-left:-5.498440px;}
._b_c00251{margin-left:-3.902190px;}
._1_c00251{margin-left:-2.887239px;}
._3_c00251{margin-left:-1.750725px;}
._0_c00251{width:1.522265px;}
._4_c00251{width:3.068940px;}
._2_c00251{width:4.308527px;}
._c_c00251{width:5.379490px;}
._23_c00251{width:11.123038px;}
._a_c00251{width:16.022374px;}
._21_c00251{width:20.195765px;}
._1e_c00251{width:31.692086px;}
._f_c00251{width:32.996346px;}
._6_c00251{width:36.224916px;}
._e_c00251{width:64.716688px;}
._12_c00251{width:113.036744px;}
._1b_c00251{width:115.546949px;}
._d_c00251{width:120.586628px;}
._14_c00251{width:124.285212px;}
._15_c00251{width:137.588301px;}
._17_c00251{width:145.247712px;}
._1f_c00251{width:167.861230px;}
._27_c00251{width:179.072517px;}
._8_c00251{width:185.578389px;}
._20_c00251{width:222.469154px;}
._9_c00251{width:243.549008px;}
._22_c00251{width:260.642436px;}
._16_c00251{width:262.707164px;}
._13_c00251{width:268.891045px;}
._18_c00251{width:271.936149px;}
._1a_c00251{width:277.551571px;}
._19_c00251{width:291.965225px;}
._26_c00251{width:297.229518px;}
._25_c00251{width:301.187371px;}
._11_c00251{width:322.322365px;}
._1c_c00251{width:326.710999px;}
._1d_c00251{width:332.270221px;}
._10_c00251{width:382.026003px;}
._24_c00251{width:402.461724px;}
._7_c00251{width:1014.471987px;}
.fc0_c00251{color:rgb(35,31,32);}
.fs2_c00251{font-size:50.584180px;}
.fs1_c00251{font-size:54.800738px;}
.fs3_c00251{font-size:67.447173px;}
.fs0_c00251{font-size:80.090968px;}
.y0_c00251{bottom:0.000000px;}
.y1_c00251{bottom:0.120938px;}
.y6_c00251{bottom:2.845041px;}
.y34_c00251{bottom:2.849733px;}
.y7_c00251{bottom:6.826644px;}
.y32_c00251{bottom:63.353481px;}
.y33_c00251{bottom:64.122840px;}
.y35_c00251{bottom:66.851636px;}
.y31_c00251{bottom:279.414895px;}
.y30_c00251{bottom:304.532685px;}
.y2f_c00251{bottom:305.600731px;}
.y2e_c00251{bottom:331.071424px;}
.y2d_c00251{bottom:354.226015px;}
.y2c_c00251{bottom:377.383456px;}
.y2b_c00251{bottom:400.540147px;}
.y2a_c00251{bottom:423.694737px;}
.y29_c00251{bottom:447.031428px;}
.y28_c00251{bottom:470.184669px;}
.y27_c00251{bottom:496.546258px;}
.y26_c00251{bottom:512.223802px;}
.y25_c00251{bottom:528.075796px;}
.y24_c00251{bottom:544.819989px;}
.y23_c00251{bottom:577.595426px;}
.y22_c00251{bottom:593.445919px;}
.y21_c00251{bottom:618.565059px;}
.y20_c00251{bottom:619.633105px;}
.y1f_c00251{bottom:645.099645px;}
.y1e_c00251{bottom:668.257686px;}
.y1d_c00251{bottom:691.412277px;}
.y1c_c00251{bottom:714.570317px;}
.y1b_c00251{bottom:737.906258px;}
.y1a_c00251{bottom:761.059499px;}
.y19_c00251{bottom:784.212740px;}
.y18_c00251{bottom:810.580629px;}
.y17_c00251{bottom:826.433973px;}
.y16_c00251{bottom:842.105966px;}
.y15_c00251{bottom:858.851510px;}
.y14_c00251{bottom:877.907502px;}
.y13_c00251{bottom:914.955134px;}
.y12_c00251{bottom:930.630578px;}
.y11_c00251{bottom:955.745517px;}
.y10_c00251{bottom:956.814971px;}
.yf_c00251{bottom:982.288710px;}
.ye_c00251{bottom:1005.446151px;}
.yd_c00251{bottom:1028.777892px;}
.yc_c00251{bottom:1051.935932px;}
.yb_c00251{bottom:1078.296022px;}
.ya_c00251{bottom:1093.972216px;}
.y9_c00251{bottom:1110.716409px;}
.y8_c00251{bottom:1141.529397px;}
.y5_c00251{bottom:1145.511000px;}
.y4_c00251{bottom:1171.217494px;}
.y3_c00251{bottom:1187.959587px;}
.y2_c00251{bottom:1216.992076px;}
.h9_c00251{height:14.250240px;}
.h4_c00251{height:14.252400px;}
.h5_c00251{height:45.374009px;}
.h7_c00251{height:46.891535px;}
.h3_c00251{height:50.800284px;}
.h8_c00251{height:62.523529px;}
.h2_c00251{height:74.244327px;}
.h6_c00251{height:1249.830756px;}
.h1_c00251{height:1262.879062px;}
.h0_c00251{height:1263.000000px;}
.w4_c00251{width:40.080600px;}
.w2_c00251{width:40.966920px;}
.w3_c00251{width:883.195846px;}
.w1_c00251{width:892.414744px;}
.w0_c00251{width:892.500000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:1.541954px;}
.x4_c00251{left:106.162653px;}
.x1_c00251{left:107.691951px;}
.x3_c00251{left:197.717966px;}
.x5_c00251{left:283.038805px;}
.x7_c00251{left:469.355747px;}
.x6_c00251{left:704.120764px;}
.x8_c00251{left:711.604261px;}
.x9_c00251{left:792.054000px;}
.xa_c00251{left:845.660005px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws0_c00251{word-spacing:-12.499913pt;}
.ws2_c00251{word-spacing:0.000000pt;}
.ws1_c00251{word-spacing:15.147197pt;}
._5_c00251{margin-left:-4.887502pt;}
._b_c00251{margin-left:-3.468613pt;}
._1_c00251{margin-left:-2.566435pt;}
._3_c00251{margin-left:-1.556200pt;}
._0_c00251{width:1.353124pt;}
._4_c00251{width:2.727947pt;}
._2_c00251{width:3.829802pt;}
._c_c00251{width:4.781769pt;}
._23_c00251{width:9.887145pt;}
._a_c00251{width:14.242110pt;}
._21_c00251{width:17.951791pt;}
._1e_c00251{width:28.170743pt;}
._f_c00251{width:29.330085pt;}
._6_c00251{width:32.199926pt;}
._e_c00251{width:57.525945pt;}
._12_c00251{width:100.477106pt;}
._1b_c00251{width:102.708399pt;}
._d_c00251{width:107.188113pt;}
._14_c00251{width:110.475744pt;}
._15_c00251{width:122.300712pt;}
._17_c00251{width:129.109077pt;}
._1f_c00251{width:149.209982pt;}
._27_c00251{width:159.175570pt;}
._8_c00251{width:164.958568pt;}
._20_c00251{width:197.750359pt;}
._9_c00251{width:216.488007pt;}
._22_c00251{width:231.682166pt;}
._16_c00251{width:233.517479pt;}
._13_c00251{width:239.014263pt;}
._18_c00251{width:241.721021pt;}
._1a_c00251{width:246.712508pt;}
._19_c00251{width:259.524645pt;}
._26_c00251{width:264.204016pt;}
._25_c00251{width:267.722107pt;}
._11_c00251{width:286.508769pt;}
._1c_c00251{width:290.409777pt;}
._1d_c00251{width:295.351307pt;}
._10_c00251{width:339.578669pt;}
._24_c00251{width:357.743755pt;}
._7_c00251{width:901.752877pt;}
.fs2_c00251{font-size:44.963715pt;}
.fs1_c00251{font-size:48.711767pt;}
.fs3_c00251{font-size:59.953043pt;}
.fs0_c00251{font-size:71.191972pt;}
.y0_c00251{bottom:0.000000pt;}
.y1_c00251{bottom:0.107500pt;}
.y6_c00251{bottom:2.528925pt;}
.y34_c00251{bottom:2.533096pt;}
.y7_c00251{bottom:6.068128pt;}
.y32_c00251{bottom:56.314206pt;}
.y33_c00251{bottom:56.998080pt;}
.y35_c00251{bottom:59.423676pt;}
.y31_c00251{bottom:248.368796pt;}
.y30_c00251{bottom:270.695720pt;}
.y2f_c00251{bottom:271.645094pt;}
.y2e_c00251{bottom:294.285711pt;}
.y2d_c00251{bottom:314.867569pt;}
.y2c_c00251{bottom:335.451961pt;}
.y2b_c00251{bottom:356.035686pt;}
.y2a_c00251{bottom:376.617544pt;}
.y29_c00251{bottom:397.361269pt;}
.y28_c00251{bottom:417.941928pt;}
.y27_c00251{bottom:441.374452pt;}
.y26_c00251{bottom:455.310046pt;}
.y25_c00251{bottom:469.400707pt;}
.y24_c00251{bottom:484.284435pt;}
.y23_c00251{bottom:513.418156pt;}
.y22_c00251{bottom:527.507484pt;}
.y21_c00251{bottom:549.835608pt;}
.y20_c00251{bottom:550.784983pt;}
.y1f_c00251{bottom:573.421907pt;}
.y1e_c00251{bottom:594.006832pt;}
.y1d_c00251{bottom:614.588690pt;}
.y1c_c00251{bottom:635.173616pt;}
.y1b_c00251{bottom:655.916674pt;}
.y1a_c00251{bottom:676.497332pt;}
.y19_c00251{bottom:697.077991pt;}
.y18_c00251{bottom:720.516115pt;}
.y17_c00251{bottom:734.607976pt;}
.y16_c00251{bottom:748.538637pt;}
.y15_c00251{bottom:763.423564pt;}
.y14_c00251{bottom:780.362224pt;}
.y13_c00251{bottom:813.293452pt;}
.y12_c00251{bottom:827.227180pt;}
.y11_c00251{bottom:849.551571pt;}
.y10_c00251{bottom:850.502196pt;}
.yf_c00251{bottom:873.145520pt;}
.ye_c00251{bottom:893.729912pt;}
.yd_c00251{bottom:914.469237pt;}
.yc_c00251{bottom:935.054162pt;}
.yb_c00251{bottom:958.485353pt;}
.ya_c00251{bottom:972.419747pt;}
.y9_c00251{bottom:987.303475pt;}
.y8_c00251{bottom:1014.692797pt;}
.y5_c00251{bottom:1018.232000pt;}
.y4_c00251{bottom:1041.082217pt;}
.y3_c00251{bottom:1055.964078pt;}
.y2_c00251{bottom:1081.770734pt;}
.h9_c00251{height:12.666880pt;}
.h4_c00251{height:12.668800pt;}
.h5_c00251{height:40.332453pt;}
.h7_c00251{height:41.681364pt;}
.h3_c00251{height:45.155808pt;}
.h8_c00251{height:55.576471pt;}
.h2_c00251{height:65.994958pt;}
.h6_c00251{height:1110.960672pt;}
.h1_c00251{height:1122.559167pt;}
.h0_c00251{height:1122.666667pt;}
.w4_c00251{width:35.627200pt;}
.w2_c00251{width:36.415040pt;}
.w3_c00251{width:785.062974pt;}
.w1_c00251{width:793.257550pt;}
.w0_c00251{width:793.333333pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:1.370626pt;}
.x4_c00251{left:94.366803pt;}
.x1_c00251{left:95.726178pt;}
.x3_c00251{left:175.749304pt;}
.x5_c00251{left:251.590049pt;}
.x7_c00251{left:417.205109pt;}
.x6_c00251{left:625.885123pt;}
.x8_c00251{left:632.537121pt;}
.x9_c00251{left:704.048000pt;}
.xa_c00251{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.107000;font-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_c00252{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00252{word-spacing:-14.062402px;}
.ws2_c00252{word-spacing:0.000000px;}
.ws1_c00252{word-spacing:17.040596px;}
._5_c00252{margin-left:-5.498440px;}
._d_c00252{margin-left:-3.969112px;}
._1_c00252{margin-left:-2.887239px;}
._3_c00252{margin-left:-1.750725px;}
._0_c00252{width:1.522265px;}
._4_c00252{width:3.068940px;}
._2_c00252{width:4.308527px;}
._9_c00252{width:5.825625px;}
._a_c00252{width:6.842412px;}
._10_c00252{width:8.274130px;}
._1e_c00252{width:11.172356px;}
._c_c00252{width:18.753446px;}
._26_c00252{width:22.845218px;}
._17_c00252{width:32.996184px;}
._6_c00252{width:36.224916px;}
._f_c00252{width:64.717194px;}
._e_c00252{width:106.896802px;}
._16_c00252{width:115.546680px;}
._19_c00252{width:121.266976px;}
._1d_c00252{width:130.061275px;}
._20_c00252{width:137.680850px;}
._13_c00252{width:145.248218px;}
._25_c00252{width:154.364374px;}
._1b_c00252{width:159.341253px;}
._1f_c00252{width:166.282483px;}
._8_c00252{width:185.578389px;}
._23_c00252{width:192.307500px;}
._11_c00252{width:196.630034px;}
._1c_c00252{width:201.930608px;}
._24_c00252{width:268.468762px;}
._1a_c00252{width:292.032064px;}
._21_c00252{width:301.180182px;}
._15_c00252{width:314.198533px;}
._12_c00252{width:321.999865px;}
._14_c00252{width:331.161791px;}
._b_c00252{width:344.414193px;}
._18_c00252{width:356.754794px;}
._27_c00252{width:387.051144px;}
._22_c00252{width:446.845152px;}
._7_c00252{width:1014.471987px;}
.fc0_c00252{color:rgb(35,31,32);}
.fs2_c00252{font-size:50.584180px;}
.fs1_c00252{font-size:54.800738px;}
.fs0_c00252{font-size:80.090968px;}
.y0_c00252{bottom:0.000000px;}
.y1_c00252{bottom:0.120938px;}
.y6_c00252{bottom:2.845041px;}
.y32_c00252{bottom:2.849733px;}
.y7_c00252{bottom:6.826644px;}
.y30_c00252{bottom:63.353885px;}
.y31_c00252{bottom:64.122840px;}
.y33_c00252{bottom:66.851636px;}
.y2f_c00252{bottom:293.135793px;}
.y2e_c00252{bottom:318.247883px;}
.y2d_c00252{bottom:319.315226px;}
.y2c_c00252{bottom:344.782319px;}
.y2b_c00252{bottom:367.938260px;}
.y2a_c00252{bottom:391.094950px;}
.y29_c00252{bottom:414.249541px;}
.y28_c00252{bottom:437.406982px;}
.y27_c00252{bottom:460.740222px;}
.y26_c00252{bottom:483.896913px;}
.y25_c00252{bottom:507.051504px;}
.y24_c00252{bottom:533.415793px;}
.y23_c00252{bottom:549.267787px;}
.y22_c00252{bottom:564.944581px;}
.y21_c00252{bottom:580.796574px;}
.y20_c00252{bottom:597.539418px;}
.y1f_c00252{bottom:630.315605px;}
.y1e_c00252{bottom:655.430545px;}
.y1d_c00252{bottom:656.498591px;}
.y1c_c00252{bottom:681.974234px;}
.y1b_c00252{bottom:705.129575px;}
.y1a_c00252{bottom:728.285515px;}
.y19_c00252{bottom:751.620106px;}
.y18_c00252{bottom:774.776797px;}
.y17_c00252{bottom:797.931388px;}
.y16_c00252{bottom:824.294327px;}
.y15_c00252{bottom:840.146321px;}
.y14_c00252{bottom:855.824614px;}
.y13_c00252{bottom:871.675108px;}
.y12_c00252{bottom:888.420651px;}
.y11_c00252{bottom:921.192638px;}
.y10_c00252{bottom:946.310428px;}
.yf_c00252{bottom:947.378474px;}
.ye_c00252{bottom:972.844264px;}
.yd_c00252{bottom:996.001705px;}
.yc_c00252{bottom:1022.363294px;}
.yb_c00252{bottom:1038.217988px;}
.ya_c00252{bottom:1054.782931px;}
.y9_c00252{bottom:1082.748920px;}
.y8_c00252{bottom:1141.529397px;}
.y5_c00252{bottom:1145.511000px;}
.y4_c00252{bottom:1171.217494px;}
.y3_c00252{bottom:1187.959587px;}
.y2_c00252{bottom:1216.992076px;}
.h8_c00252{height:14.250240px;}
.h4_c00252{height:14.252400px;}
.h5_c00252{height:45.374009px;}
.h7_c00252{height:46.891535px;}
.h3_c00252{height:50.800284px;}
.h2_c00252{height:74.244327px;}
.h6_c00252{height:1249.830756px;}
.h1_c00252{height:1262.879062px;}
.h0_c00252{height:1263.000000px;}
.w4_c00252{width:40.080600px;}
.w2_c00252{width:40.966920px;}
.w3_c00252{width:883.195846px;}
.w1_c00252{width:892.414744px;}
.w0_c00252{width:892.500000px;}
.x0_c00252{left:0.000000px;}
.x2_c00252{left:1.541954px;}
.x4_c00252{left:106.162653px;}
.x1_c00252{left:107.691951px;}
.x3_c00252{left:197.717966px;}
.x5_c00252{left:283.041801px;}
.x7_c00252{left:469.357507px;}
.x8_c00252{left:711.604261px;}
.x6_c00252{left:718.907758px;}
.x9_c00252{left:792.054000px;}
.xa_c00252{left:845.660005px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:-12.499913pt;}
.ws2_c00252{word-spacing:0.000000pt;}
.ws1_c00252{word-spacing:15.147197pt;}
._5_c00252{margin-left:-4.887502pt;}
._d_c00252{margin-left:-3.528099pt;}
._1_c00252{margin-left:-2.566435pt;}
._3_c00252{margin-left:-1.556200pt;}
._0_c00252{width:1.353124pt;}
._4_c00252{width:2.727947pt;}
._2_c00252{width:3.829802pt;}
._9_c00252{width:5.178333pt;}
._a_c00252{width:6.082144pt;}
._10_c00252{width:7.354782pt;}
._1e_c00252{width:9.930983pt;}
._c_c00252{width:16.669730pt;}
._26_c00252{width:20.306860pt;}
._17_c00252{width:29.329942pt;}
._6_c00252{width:32.199926pt;}
._f_c00252{width:57.526394pt;}
._e_c00252{width:95.019380pt;}
._16_c00252{width:102.708160pt;}
._19_c00252{width:107.792867pt;}
._1d_c00252{width:115.610022pt;}
._20_c00252{width:122.382978pt;}
._13_c00252{width:129.109527pt;}
._25_c00252{width:137.212777pt;}
._1b_c00252{width:141.636670pt;}
._1f_c00252{width:147.806651pt;}
._8_c00252{width:164.958568pt;}
._23_c00252{width:170.940000pt;}
._11_c00252{width:174.782252pt;}
._1c_c00252{width:179.493874pt;}
._24_c00252{width:238.638900pt;}
._1a_c00252{width:259.584057pt;}
._21_c00252{width:267.715717pt;}
._15_c00252{width:279.287585pt;}
._12_c00252{width:286.222102pt;}
._14_c00252{width:294.366037pt;}
._b_c00252{width:306.145949pt;}
._18_c00252{width:317.115373pt;}
._27_c00252{width:344.045461pt;}
._22_c00252{width:397.195691pt;}
._7_c00252{width:901.752877pt;}
.fs2_c00252{font-size:44.963715pt;}
.fs1_c00252{font-size:48.711767pt;}
.fs0_c00252{font-size:71.191972pt;}
.y0_c00252{bottom:0.000000pt;}
.y1_c00252{bottom:0.107500pt;}
.y6_c00252{bottom:2.528925pt;}
.y32_c00252{bottom:2.533096pt;}
.y7_c00252{bottom:6.068128pt;}
.y30_c00252{bottom:56.314564pt;}
.y31_c00252{bottom:56.998080pt;}
.y33_c00252{bottom:59.423676pt;}
.y2f_c00252{bottom:260.565149pt;}
.y2e_c00252{bottom:282.887007pt;}
.y2d_c00252{bottom:283.835756pt;}
.y2c_c00252{bottom:306.473172pt;}
.y2b_c00252{bottom:327.056231pt;}
.y2a_c00252{bottom:347.639956pt;}
.y29_c00252{bottom:368.221814pt;}
.y28_c00252{bottom:388.806206pt;}
.y27_c00252{bottom:409.546864pt;}
.y26_c00252{bottom:430.130590pt;}
.y25_c00252{bottom:450.712448pt;}
.y24_c00252{bottom:474.147372pt;}
.y23_c00252{bottom:488.238033pt;}
.y22_c00252{bottom:502.172961pt;}
.y21_c00252{bottom:516.263622pt;}
.y20_c00252{bottom:531.146149pt;}
.y1f_c00252{bottom:560.280537pt;}
.y1e_c00252{bottom:582.604929pt;}
.y1d_c00252{bottom:583.554303pt;}
.y1c_c00252{bottom:606.199319pt;}
.y1b_c00252{bottom:626.781844pt;}
.y1a_c00252{bottom:647.364903pt;}
.y19_c00252{bottom:668.106761pt;}
.y18_c00252{bottom:688.690486pt;}
.y17_c00252{bottom:709.272345pt;}
.y16_c00252{bottom:732.706068pt;}
.y15_c00252{bottom:746.796730pt;}
.y14_c00252{bottom:760.732991pt;}
.y13_c00252{bottom:774.822318pt;}
.y12_c00252{bottom:789.707246pt;}
.y11_c00252{bottom:818.837901pt;}
.y10_c00252{bottom:841.164825pt;}
.yf_c00252{bottom:842.114199pt;}
.ye_c00252{bottom:864.750457pt;}
.yd_c00252{bottom:885.334849pt;}
.yc_c00252{bottom:908.767373pt;}
.yb_c00252{bottom:922.860434pt;}
.ya_c00252{bottom:937.584828pt;}
.y9_c00252{bottom:962.443485pt;}
.y8_c00252{bottom:1014.692797pt;}
.y5_c00252{bottom:1018.232000pt;}
.y4_c00252{bottom:1041.082217pt;}
.y3_c00252{bottom:1055.964078pt;}
.y2_c00252{bottom:1081.770734pt;}
.h8_c00252{height:12.666880pt;}
.h4_c00252{height:12.668800pt;}
.h5_c00252{height:40.332453pt;}
.h7_c00252{height:41.681364pt;}
.h3_c00252{height:45.155808pt;}
.h2_c00252{height:65.994958pt;}
.h6_c00252{height:1110.960672pt;}
.h1_c00252{height:1122.559167pt;}
.h0_c00252{height:1122.666667pt;}
.w4_c00252{width:35.627200pt;}
.w2_c00252{width:36.415040pt;}
.w3_c00252{width:785.062974pt;}
.w1_c00252{width:793.257550pt;}
.w0_c00252{width:793.333333pt;}
.x0_c00252{left:0.000000pt;}
.x2_c00252{left:1.370626pt;}
.x4_c00252{left:94.366803pt;}
.x1_c00252{left:95.726178pt;}
.x3_c00252{left:175.749304pt;}
.x5_c00252{left:251.592712pt;}
.x7_c00252{left:417.206673pt;}
.x8_c00252{left:632.537121pt;}
.x6_c00252{left:639.029118pt;}
.x9_c00252{left:704.048000pt;}
.xa_c00252{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.107000;font-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_c00253{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-14.062402px;}
.ws2_c00253{word-spacing:0.000000px;}
.ws1_c00253{word-spacing:17.040596px;}
._5_c00253{margin-left:-5.498440px;}
._a_c00253{margin-left:-4.196030px;}
._1_c00253{margin-left:-2.887239px;}
._3_c00253{margin-left:-1.750725px;}
._0_c00253{width:1.522265px;}
._4_c00253{width:3.068940px;}
._2_c00253{width:4.308527px;}
._9_c00253{width:5.825625px;}
._e_c00253{width:7.364452px;}
._16_c00253{width:23.241270px;}
._6_c00253{width:36.224916px;}
._d_c00253{width:64.716865px;}
._1c_c00253{width:126.005958px;}
._1a_c00253{width:145.248268px;}
._c_c00253{width:155.262588px;}
._14_c00253{width:159.341521px;}
._1e_c00253{width:161.995950px;}
._15_c00253{width:166.658231px;}
._11_c00253{width:171.826060px;}
._8_c00253{width:185.578389px;}
._f_c00253{width:201.660367px;}
._13_c00253{width:246.581516px;}
._12_c00253{width:263.097218px;}
._1b_c00253{width:271.929931px;}
._10_c00253{width:292.030610px;}
._20_c00253{width:301.192465px;}
._18_c00253{width:322.324211px;}
._19_c00253{width:330.834960px;}
._1d_c00253{width:352.082741px;}
._b_c00253{width:356.495476px;}
._1f_c00253{width:387.050679px;}
._17_c00253{width:394.010885px;}
._7_c00253{width:1014.471987px;}
.fc0_c00253{color:rgb(35,31,32);}
.fs2_c00253{font-size:50.584180px;}
.fs1_c00253{font-size:54.800738px;}
.fs3_c00253{font-size:71.662171px;}
.fs0_c00253{font-size:80.090968px;}
.y0_c00253{bottom:0.000000px;}
.y1_c00253{bottom:0.120938px;}
.y6_c00253{bottom:2.845041px;}
.y33_c00253{bottom:2.849733px;}
.y7_c00253{bottom:6.826644px;}
.y31_c00253{bottom:63.350978px;}
.y32_c00253{bottom:64.122840px;}
.y34_c00253{bottom:66.851636px;}
.y30_c00253{bottom:255.191901px;}
.y2f_c00253{bottom:280.303991px;}
.y2e_c00253{bottom:281.372741px;}
.y2d_c00253{bottom:306.842084px;}
.y2c_c00253{bottom:330.001625px;}
.y2b_c00253{bottom:353.153366px;}
.y2a_c00253{bottom:376.312156px;}
.y29_c00253{bottom:399.465997px;}
.y28_c00253{bottom:422.801938px;}
.y27_c00253{bottom:445.956528px;}
.y26_c00253{bottom:472.319468px;}
.y25_c00253{bottom:487.994912px;}
.y24_c00253{bottom:504.739105px;}
.y23_c00253{bottom:537.513792px;}
.y22_c00253{bottom:553.365785px;}
.y21_c00253{bottom:578.482075px;}
.y20_c00253{bottom:579.550121px;}
.y1f_c00253{bottom:605.024265px;}
.y1e_c00253{bottom:628.177505px;}
.y1d_c00253{bottom:651.337046px;}
.y1c_c00253{bottom:674.667437px;}
.y1b_c00253{bottom:701.031726px;}
.y1a_c00253{bottom:717.597270px;}
.y19_c00253{bottom:750.549257px;}
.y18_c00253{bottom:766.224700px;}
.y17_c00253{bottom:791.342490px;}
.y16_c00253{bottom:792.410536px;}
.y15_c00253{bottom:817.881576px;}
.y14_c00253{bottom:841.040367px;}
.y13_c00253{bottom:864.375708px;}
.y12_c00253{bottom:887.531648px;}
.y11_c00253{bottom:910.684889px;}
.y10_c00253{bottom:933.842930px;}
.yf_c00253{bottom:956.997520px;}
.ye_c00253{bottom:983.360460px;}
.yd_c00253{bottom:999.215154px;}
.yc_c00253{bottom:1015.068497px;}
.yb_c00253{bottom:1031.633441px;}
.ya_c00253{bottom:1049.621433px;}
.y9_c00253{bottom:1082.748920px;}
.y8_c00253{bottom:1141.529397px;}
.y5_c00253{bottom:1145.511000px;}
.y4_c00253{bottom:1171.217494px;}
.y3_c00253{bottom:1187.959587px;}
.y2_c00253{bottom:1216.992076px;}
.h9_c00253{height:14.250240px;}
.h4_c00253{height:14.252400px;}
.h5_c00253{height:45.374009px;}
.h8_c00253{height:46.891535px;}
.h3_c00253{height:50.800284px;}
.h7_c00253{height:66.430833px;}
.h2_c00253{height:74.244327px;}
.h6_c00253{height:1249.830756px;}
.h1_c00253{height:1262.879062px;}
.h0_c00253{height:1263.000000px;}
.w4_c00253{width:40.080600px;}
.w2_c00253{width:40.966920px;}
.w3_c00253{width:883.195846px;}
.w1_c00253{width:892.414744px;}
.w0_c00253{width:892.500000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:1.541954px;}
.x4_c00253{left:106.162653px;}
.x1_c00253{left:107.691951px;}
.x3_c00253{left:197.717966px;}
.x5_c00253{left:283.038805px;}
.x7_c00253{left:469.355747px;}
.x6_c00253{left:704.120764px;}
.x8_c00253{left:711.604261px;}
.x9_c00253{left:792.054000px;}
.xa_c00253{left:845.660005px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:-12.499913pt;}
.ws2_c00253{word-spacing:0.000000pt;}
.ws1_c00253{word-spacing:15.147197pt;}
._5_c00253{margin-left:-4.887502pt;}
._a_c00253{margin-left:-3.729804pt;}
._1_c00253{margin-left:-2.566435pt;}
._3_c00253{margin-left:-1.556200pt;}
._0_c00253{width:1.353124pt;}
._4_c00253{width:2.727947pt;}
._2_c00253{width:3.829802pt;}
._9_c00253{width:5.178333pt;}
._e_c00253{width:6.546180pt;}
._16_c00253{width:20.658906pt;}
._6_c00253{width:32.199926pt;}
._d_c00253{width:57.526102pt;}
._1c_c00253{width:112.005296pt;}
._1a_c00253{width:129.109572pt;}
._c_c00253{width:138.011190pt;}
._14_c00253{width:141.636908pt;}
._1e_c00253{width:143.996400pt;}
._15_c00253{width:148.140650pt;}
._11_c00253{width:152.734276pt;}
._8_c00253{width:164.958568pt;}
._f_c00253{width:179.253660pt;}
._13_c00253{width:219.183570pt;}
._12_c00253{width:233.864194pt;}
._1b_c00253{width:241.715495pt;}
._10_c00253{width:259.582765pt;}
._20_c00253{width:267.726636pt;}
._18_c00253{width:286.510410pt;}
._19_c00253{width:294.075520pt;}
._1d_c00253{width:312.962436pt;}
._b_c00253{width:316.884867pt;}
._1f_c00253{width:344.045048pt;}
._17_c00253{width:350.231898pt;}
._7_c00253{width:901.752877pt;}
.fs2_c00253{font-size:44.963715pt;}
.fs1_c00253{font-size:48.711767pt;}
.fs3_c00253{font-size:63.699708pt;}
.fs0_c00253{font-size:71.191972pt;}
.y0_c00253{bottom:0.000000pt;}
.y1_c00253{bottom:0.107500pt;}
.y6_c00253{bottom:2.528925pt;}
.y33_c00253{bottom:2.533096pt;}
.y7_c00253{bottom:6.068128pt;}
.y31_c00253{bottom:56.311980pt;}
.y32_c00253{bottom:56.998080pt;}
.y34_c00253{bottom:59.423676pt;}
.y30_c00253{bottom:226.837246pt;}
.y2f_c00253{bottom:249.159103pt;}
.y2e_c00253{bottom:250.109103pt;}
.y2d_c00253{bottom:272.748519pt;}
.y2c_c00253{bottom:293.334778pt;}
.y2b_c00253{bottom:313.914103pt;}
.y2a_c00253{bottom:334.499694pt;}
.y29_c00253{bottom:355.080886pt;}
.y28_c00253{bottom:375.823945pt;}
.y27_c00253{bottom:396.405803pt;}
.y26_c00253{bottom:419.839527pt;}
.y25_c00253{bottom:433.773255pt;}
.y24_c00253{bottom:448.656982pt;}
.y23_c00253{bottom:477.790037pt;}
.y22_c00253{bottom:491.880698pt;}
.y21_c00253{bottom:514.206289pt;}
.y20_c00253{bottom:515.155664pt;}
.y1f_c00253{bottom:537.799346pt;}
.y1e_c00253{bottom:558.380005pt;}
.y1d_c00253{bottom:578.966263pt;}
.y1c_c00253{bottom:599.704388pt;}
.y1b_c00253{bottom:623.139312pt;}
.y1a_c00253{bottom:637.864240pt;}
.y19_c00253{bottom:667.154895pt;}
.y18_c00253{bottom:681.088622pt;}
.y17_c00253{bottom:703.415547pt;}
.y16_c00253{bottom:704.364921pt;}
.y15_c00253{bottom:727.005845pt;}
.y14_c00253{bottom:747.591437pt;}
.y13_c00253{bottom:768.333962pt;}
.y12_c00253{bottom:788.917021pt;}
.y11_c00253{bottom:809.497679pt;}
.y10_c00253{bottom:830.082604pt;}
.yf_c00253{bottom:850.664463pt;}
.ye_c00253{bottom:874.098187pt;}
.yd_c00253{bottom:888.191248pt;}
.yc_c00253{bottom:902.283109pt;}
.yb_c00253{bottom:917.007503pt;}
.ya_c00253{bottom:932.996830pt;}
.y9_c00253{bottom:962.443485pt;}
.y8_c00253{bottom:1014.692797pt;}
.y5_c00253{bottom:1018.232000pt;}
.y4_c00253{bottom:1041.082217pt;}
.y3_c00253{bottom:1055.964078pt;}
.y2_c00253{bottom:1081.770734pt;}
.h9_c00253{height:12.666880pt;}
.h4_c00253{height:12.668800pt;}
.h5_c00253{height:40.332453pt;}
.h8_c00253{height:41.681364pt;}
.h3_c00253{height:45.155808pt;}
.h7_c00253{height:59.049629pt;}
.h2_c00253{height:65.994958pt;}
.h6_c00253{height:1110.960672pt;}
.h1_c00253{height:1122.559167pt;}
.h0_c00253{height:1122.666667pt;}
.w4_c00253{width:35.627200pt;}
.w2_c00253{width:36.415040pt;}
.w3_c00253{width:785.062974pt;}
.w1_c00253{width:793.257550pt;}
.w0_c00253{width:793.333333pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:1.370626pt;}
.x4_c00253{left:94.366803pt;}
.x1_c00253{left:95.726178pt;}
.x3_c00253{left:175.749304pt;}
.x5_c00253{left:251.590049pt;}
.x7_c00253{left:417.205109pt;}
.x6_c00253{left:625.885123pt;}
.x8_c00253{left:632.537121pt;}
.x9_c00253{left:704.048000pt;}
.xa_c00253{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.107000;font-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_c00254{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-14.062402px;}
.ws2_c00254{word-spacing:0.000000px;}
.ws1_c00254{word-spacing:17.040596px;}
._5_c00254{margin-left:-5.498440px;}
._a_c00254{margin-left:-4.095542px;}
._1_c00254{margin-left:-2.887239px;}
._3_c00254{margin-left:-1.750725px;}
._0_c00254{width:1.522265px;}
._4_c00254{width:3.068940px;}
._2_c00254{width:4.308527px;}
._19_c00254{width:5.883681px;}
._d_c00254{width:7.264222px;}
._1c_c00254{width:11.170788px;}
._13_c00254{width:24.445946px;}
._6_c00254{width:36.224916px;}
._c_c00254{width:64.716688px;}
._17_c00254{width:145.248268px;}
._b_c00254{width:155.036944px;}
._12_c00254{width:159.341521px;}
._10_c00254{width:163.432126px;}
._1f_c00254{width:166.796110px;}
._23_c00254{width:171.960829px;}
._8_c00254{width:185.578389px;}
._1d_c00254{width:193.391600px;}
._24_c00254{width:201.308139px;}
._e_c00254{width:202.426305px;}
._11_c00254{width:247.095405px;}
._1e_c00254{width:268.224486px;}
._20_c00254{width:277.717271px;}
._15_c00254{width:292.354577px;}
._21_c00254{width:293.478274px;}
._18_c00254{width:301.186470px;}
._f_c00254{width:321.998702px;}
._16_c00254{width:330.840318px;}
._9_c00254{width:352.083049px;}
._1a_c00254{width:357.531502px;}
._14_c00254{width:387.063366px;}
._22_c00254{width:394.605346px;}
._1b_c00254{width:446.845723px;}
._7_c00254{width:1014.471987px;}
.fc0_c00254{color:rgb(35,31,32);}
.fs2_c00254{font-size:50.584180px;}
.fs1_c00254{font-size:54.800738px;}
.fs0_c00254{font-size:80.090968px;}
.y0_c00254{bottom:0.000000px;}
.y1_c00254{bottom:0.120938px;}
.y6_c00254{bottom:2.845041px;}
.y35_c00254{bottom:2.849733px;}
.y7_c00254{bottom:6.826644px;}
.y33_c00254{bottom:63.353574px;}
.y34_c00254{bottom:64.122840px;}
.y36_c00254{bottom:66.851636px;}
.y32_c00254{bottom:234.173506px;}
.y31_c00254{bottom:259.289796px;}
.y30_c00254{bottom:260.179249px;}
.y2f_c00254{bottom:285.647693px;}
.y2e_c00254{bottom:308.980933px;}
.y2d_c00254{bottom:332.140474px;}
.y2c_c00254{bottom:355.292215px;}
.y2b_c00254{bottom:378.449655px;}
.y2a_c00254{bottom:401.604246px;}
.y29_c00254{bottom:424.763787px;}
.y28_c00254{bottom:448.095528px;}
.y27_c00254{bottom:474.279817px;}
.y26_c00254{bottom:490.135261px;}
.y25_c00254{bottom:505.985154px;}
.y24_c00254{bottom:522.730098px;}
.y23_c00254{bottom:555.504785px;}
.y22_c00254{bottom:580.621075px;}
.y21_c00254{bottom:581.689121px;}
.y20_c00254{bottom:607.162457px;}
.y1f_c00254{bottom:630.317048px;}
.y1e_c00254{bottom:653.471638px;}
.y1d_c00254{bottom:676.628329px;}
.y1c_c00254{bottom:699.964270px;}
.y1b_c00254{bottom:723.117511px;}
.y1a_c00254{bottom:746.275551px;}
.y19_c00254{bottom:769.431492px;}
.y18_c00254{bottom:795.793081px;}
.y17_c00254{bottom:811.647775px;}
.y16_c00254{bottom:827.498269px;}
.y15_c00254{bottom:843.173712px;}
.y14_c00254{bottom:859.917906px;}
.y13_c00254{bottom:892.694093px;}
.y12_c00254{bottom:917.809033px;}
.y11_c00254{bottom:918.878486px;}
.y10_c00254{bottom:944.349376px;}
.yf_c00254{bottom:967.504716px;}
.ye_c00254{bottom:990.840657px;}
.yd_c00254{bottom:1013.993898px;}
.yc_c00254{bottom:1037.153438px;}
.yb_c00254{bottom:1060.309379px;}
.ya_c00254{bottom:1083.463970px;}
.y9_c00254{bottom:1110.716409px;}
.y8_c00254{bottom:1141.529397px;}
.y5_c00254{bottom:1145.511000px;}
.y4_c00254{bottom:1171.217494px;}
.y3_c00254{bottom:1187.959587px;}
.y2_c00254{bottom:1216.992076px;}
.h8_c00254{height:14.250240px;}
.h4_c00254{height:14.252400px;}
.h5_c00254{height:45.374009px;}
.h7_c00254{height:46.891535px;}
.h3_c00254{height:50.800284px;}
.h2_c00254{height:74.244327px;}
.h6_c00254{height:1249.830756px;}
.h1_c00254{height:1262.879062px;}
.h0_c00254{height:1263.000000px;}
.w4_c00254{width:40.080600px;}
.w2_c00254{width:40.966920px;}
.w3_c00254{width:883.195846px;}
.w1_c00254{width:892.414744px;}
.w0_c00254{width:892.500000px;}
.x0_c00254{left:0.000000px;}
.x2_c00254{left:1.541954px;}
.x4_c00254{left:106.162653px;}
.x1_c00254{left:107.691951px;}
.x3_c00254{left:197.717966px;}
.x7_c00254{left:283.040649px;}
.x6_c00254{left:469.355268px;}
.x5_c00254{left:711.604261px;}
.x8_c00254{left:792.054000px;}
.x9_c00254{left:845.660005px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:-12.499913pt;}
.ws2_c00254{word-spacing:0.000000pt;}
.ws1_c00254{word-spacing:15.147197pt;}
._5_c00254{margin-left:-4.887502pt;}
._a_c00254{margin-left:-3.640481pt;}
._1_c00254{margin-left:-2.566435pt;}
._3_c00254{margin-left:-1.556200pt;}
._0_c00254{width:1.353124pt;}
._4_c00254{width:2.727947pt;}
._2_c00254{width:3.829802pt;}
._19_c00254{width:5.229939pt;}
._d_c00254{width:6.457086pt;}
._1c_c00254{width:9.929589pt;}
._13_c00254{width:21.729730pt;}
._6_c00254{width:32.199926pt;}
._c_c00254{width:57.525945pt;}
._17_c00254{width:129.109572pt;}
._b_c00254{width:137.810617pt;}
._12_c00254{width:141.636908pt;}
._10_c00254{width:145.273001pt;}
._1f_c00254{width:148.263209pt;}
._23_c00254{width:152.854070pt;}
._8_c00254{width:164.958568pt;}
._1d_c00254{width:171.903644pt;}
._24_c00254{width:178.940568pt;}
._e_c00254{width:179.934493pt;}
._11_c00254{width:219.640360pt;}
._1e_c00254{width:238.421765pt;}
._20_c00254{width:246.859796pt;}
._15_c00254{width:259.870735pt;}
._21_c00254{width:260.869577pt;}
._18_c00254{width:267.721307pt;}
._f_c00254{width:286.221068pt;}
._16_c00254{width:294.080283pt;}
._9_c00254{width:312.962711pt;}
._1a_c00254{width:317.805780pt;}
._14_c00254{width:344.056326pt;}
._22_c00254{width:350.760308pt;}
._1b_c00254{width:397.196199pt;}
._7_c00254{width:901.752877pt;}
.fs2_c00254{font-size:44.963715pt;}
.fs1_c00254{font-size:48.711767pt;}
.fs0_c00254{font-size:71.191972pt;}
.y0_c00254{bottom:0.000000pt;}
.y1_c00254{bottom:0.107500pt;}
.y6_c00254{bottom:2.528925pt;}
.y35_c00254{bottom:2.533096pt;}
.y7_c00254{bottom:6.068128pt;}
.y33_c00254{bottom:56.314288pt;}
.y34_c00254{bottom:56.998080pt;}
.y36_c00254{bottom:59.423676pt;}
.y32_c00254{bottom:208.154228pt;}
.y31_c00254{bottom:230.479819pt;}
.y30_c00254{bottom:231.270444pt;}
.y2f_c00254{bottom:253.909060pt;}
.y2e_c00254{bottom:274.649718pt;}
.y2d_c00254{bottom:295.235977pt;}
.y2c_c00254{bottom:315.815302pt;}
.y2b_c00254{bottom:336.399694pt;}
.y2a_c00254{bottom:356.981552pt;}
.y29_c00254{bottom:377.567811pt;}
.y28_c00254{bottom:398.307136pt;}
.y27_c00254{bottom:421.582060pt;}
.y26_c00254{bottom:435.675787pt;}
.y25_c00254{bottom:449.764582pt;}
.y24_c00254{bottom:464.648976pt;}
.y23_c00254{bottom:493.782031pt;}
.y22_c00254{bottom:516.107622pt;}
.y21_c00254{bottom:517.056996pt;}
.y20_c00254{bottom:539.699962pt;}
.y1f_c00254{bottom:560.281820pt;}
.y1e_c00254{bottom:580.863679pt;}
.y1d_c00254{bottom:601.447404pt;}
.y1c_c00254{bottom:622.190462pt;}
.y1b_c00254{bottom:642.771120pt;}
.y1a_c00254{bottom:663.356046pt;}
.y19_c00254{bottom:683.939104pt;}
.y18_c00254{bottom:707.371628pt;}
.y17_c00254{bottom:721.464689pt;}
.y16_c00254{bottom:735.554017pt;}
.y15_c00254{bottom:749.487744pt;}
.y14_c00254{bottom:764.371472pt;}
.y13_c00254{bottom:793.505860pt;}
.y12_c00254{bottom:815.830251pt;}
.y11_c00254{bottom:816.780876pt;}
.y10_c00254{bottom:839.421667pt;}
.yf_c00254{bottom:860.004192pt;}
.ye_c00254{bottom:880.747251pt;}
.yd_c00254{bottom:901.327909pt;}
.yc_c00254{bottom:921.914167pt;}
.yb_c00254{bottom:942.497226pt;}
.ya_c00254{bottom:963.079084pt;}
.y9_c00254{bottom:987.303475pt;}
.y8_c00254{bottom:1014.692797pt;}
.y5_c00254{bottom:1018.232000pt;}
.y4_c00254{bottom:1041.082217pt;}
.y3_c00254{bottom:1055.964078pt;}
.y2_c00254{bottom:1081.770734pt;}
.h8_c00254{height:12.666880pt;}
.h4_c00254{height:12.668800pt;}
.h5_c00254{height:40.332453pt;}
.h7_c00254{height:41.681364pt;}
.h3_c00254{height:45.155808pt;}
.h2_c00254{height:65.994958pt;}
.h6_c00254{height:1110.960672pt;}
.h1_c00254{height:1122.559167pt;}
.h0_c00254{height:1122.666667pt;}
.w4_c00254{width:35.627200pt;}
.w2_c00254{width:36.415040pt;}
.w3_c00254{width:785.062974pt;}
.w1_c00254{width:793.257550pt;}
.w0_c00254{width:793.333333pt;}
.x0_c00254{left:0.000000pt;}
.x2_c00254{left:1.370626pt;}
.x4_c00254{left:94.366803pt;}
.x1_c00254{left:95.726178pt;}
.x3_c00254{left:175.749304pt;}
.x7_c00254{left:251.591688pt;}
.x6_c00254{left:417.204683pt;}
.x5_c00254{left:632.537121pt;}
.x8_c00254{left:704.048000pt;}
.x9_c00254{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.107000;font-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_c00255{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls0_c00255{letter-spacing:0.000000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:-14.062402px;}
.ws3_c00255{word-spacing:0.000000px;}
.ws1_c00255{word-spacing:17.040596px;}
.ws2_c00255{word-spacing:248.957123px;}
._5_c00255{margin-left:-5.498440px;}
._9_c00255{margin-left:-4.196030px;}
._1_c00255{margin-left:-2.887239px;}
._3_c00255{margin-left:-1.750725px;}
._0_c00255{width:1.522265px;}
._4_c00255{width:3.068940px;}
._2_c00255{width:4.308527px;}
._c_c00255{width:5.398413px;}
._b_c00255{width:7.195340px;}
._1e_c00255{width:11.172741px;}
._21_c00255{width:15.661020px;}
._17_c00255{width:23.240703px;}
._11_c00255{width:24.471430px;}
._6_c00255{width:36.224916px;}
._e_c00255{width:64.716774px;}
._22_c00255{width:99.132884px;}
._1d_c00255{width:116.041091px;}
._20_c00255{width:119.898244px;}
._27_c00255{width:121.209929px;}
._26_c00255{width:125.107501px;}
._1a_c00255{width:145.248268px;}
._d_c00255{width:155.263094px;}
._13_c00255{width:159.341557px;}
._8_c00255{width:185.578389px;}
._29_c00255{width:199.863683px;}
._f_c00255{width:202.113104px;}
._23_c00255{width:220.749358px;}
._12_c00255{width:222.429318px;}
._14_c00255{width:250.889565px;}
._24_c00255{width:263.090864px;}
._28_c00255{width:269.429446px;}
._1f_c00255{width:271.935679px;}
._15_c00255{width:292.354597px;}
._1b_c00255{width:301.186551px;}
._10_c00255{width:321.998702px;}
._19_c00255{width:330.834100px;}
._1c_c00255{width:336.111629px;}
._a_c00255{width:352.083049px;}
._16_c00255{width:360.347017px;}
._25_c00255{width:387.051164px;}
._18_c00255{width:394.011037px;}
._7_c00255{width:1014.471987px;}
.fc0_c00255{color:rgb(35,31,32);}
.fs2_c00255{font-size:50.584180px;}
.fs1_c00255{font-size:54.800738px;}
.fs3_c00255{font-size:71.662171px;}
.fs0_c00255{font-size:80.090968px;}
.y0_c00255{bottom:0.000000px;}
.y1_c00255{bottom:0.120938px;}
.y6_c00255{bottom:2.845041px;}
.y34_c00255{bottom:2.849733px;}
.y7_c00255{bottom:6.826644px;}
.y32_c00255{bottom:63.351935px;}
.y33_c00255{bottom:64.122840px;}
.y35_c00255{bottom:66.851636px;}
.y31_c00255{bottom:301.502340px;}
.y30_c00255{bottom:317.354333px;}
.y2f_c00255{bottom:342.471373px;}
.y2e_c00255{bottom:343.538716px;}
.y2d_c00255{bottom:369.011209px;}
.y2c_c00255{bottom:392.166550px;}
.y2b_c00255{bottom:415.323991px;}
.y2a_c00255{bottom:438.478581px;}
.y29_c00255{bottom:461.635272px;}
.y28_c00255{bottom:484.968513px;}
.y27_c00255{bottom:511.331452px;}
.y26_c00255{bottom:527.006146px;}
.y25_c00255{bottom:542.856640px;}
.y24_c00255{bottom:558.713433px;}
.y23_c00255{bottom:574.565427px;}
.y22_c00255{bottom:590.240121px;}
.y21_c00255{bottom:606.093464px;}
.y20_c00255{bottom:622.836308px;}
.y1f_c00255{bottom:655.609645px;}
.y1e_c00255{bottom:680.728034px;}
.y1d_c00255{bottom:681.796081px;}
.y1c_c00255{bottom:707.265967px;}
.y1b_c00255{bottom:730.419808px;}
.y1a_c00255{bottom:746.271801px;}
.y19_c00255{bottom:773.528440px;}
.y18_c00255{bottom:806.298927px;}
.y17_c00255{bottom:822.156471px;}
.y16_c00255{bottom:847.268561px;}
.y15_c00255{bottom:848.338014px;}
.y14_c00255{bottom:873.811904px;}
.y13_c00255{bottom:896.965144px;}
.y12_c00255{bottom:920.123185px;}
.y11_c00255{bottom:943.279126px;}
.y10_c00255{bottom:966.435817px;}
.yf_c00255{bottom:989.770407px;}
.ye_c00255{bottom:1012.926348px;}
.yd_c00255{bottom:1039.289288px;}
.yc_c00255{bottom:1054.961281px;}
.yb_c00255{bottom:1070.815375px;}
.ya_c00255{bottom:1087.560918px;}
.y9_c00255{bottom:1105.553411px;}
.y8_c00255{bottom:1141.529397px;}
.y5_c00255{bottom:1145.511000px;}
.y4_c00255{bottom:1171.217494px;}
.y3_c00255{bottom:1187.959587px;}
.y2_c00255{bottom:1216.992076px;}
.h9_c00255{height:14.250240px;}
.h4_c00255{height:14.252400px;}
.h5_c00255{height:45.374009px;}
.h8_c00255{height:46.891535px;}
.h3_c00255{height:50.800284px;}
.h7_c00255{height:66.430833px;}
.h2_c00255{height:74.244327px;}
.h6_c00255{height:1249.830756px;}
.h1_c00255{height:1262.879062px;}
.h0_c00255{height:1263.000000px;}
.w4_c00255{width:40.080600px;}
.w2_c00255{width:40.966920px;}
.w3_c00255{width:883.195846px;}
.w1_c00255{width:892.414744px;}
.w0_c00255{width:892.500000px;}
.x0_c00255{left:0.000000px;}
.x2_c00255{left:1.541954px;}
.x4_c00255{left:106.162653px;}
.x1_c00255{left:107.691951px;}
.x3_c00255{left:197.717966px;}
.x5_c00255{left:283.037307px;}
.x7_c00255{left:469.355268px;}
.x8_c00255{left:602.059934px;}
.xa_c00255{left:686.308271px;}
.x9_c00255{left:704.120764px;}
.x6_c00255{left:711.604261px;}
.xb_c00255{left:792.054000px;}
.xc_c00255{left:845.660005px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:-12.499913pt;}
.ws3_c00255{word-spacing:0.000000pt;}
.ws1_c00255{word-spacing:15.147197pt;}
.ws2_c00255{word-spacing:221.295220pt;}
._5_c00255{margin-left:-4.887502pt;}
._9_c00255{margin-left:-3.729804pt;}
._1_c00255{margin-left:-2.566435pt;}
._3_c00255{margin-left:-1.556200pt;}
._0_c00255{width:1.353124pt;}
._4_c00255{width:2.727947pt;}
._2_c00255{width:3.829802pt;}
._c_c00255{width:4.798590pt;}
._b_c00255{width:6.395858pt;}
._1e_c00255{width:9.931325pt;}
._21_c00255{width:13.920907pt;}
._17_c00255{width:20.658403pt;}
._11_c00255{width:21.752383pt;}
._6_c00255{width:32.199926pt;}
._e_c00255{width:57.526021pt;}
._22_c00255{width:88.118119pt;}
._1d_c00255{width:103.147637pt;}
._20_c00255{width:106.576217pt;}
._27_c00255{width:107.742159pt;}
._26_c00255{width:111.206668pt;}
._1a_c00255{width:129.109572pt;}
._d_c00255{width:138.011639pt;}
._13_c00255{width:141.636939pt;}
._8_c00255{width:164.958568pt;}
._29_c00255{width:177.656607pt;}
._f_c00255{width:179.656092pt;}
._23_c00255{width:196.221652pt;}
._12_c00255{width:197.714950pt;}
._14_c00255{width:223.012946pt;}
._24_c00255{width:233.858546pt;}
._28_c00255{width:239.492841pt;}
._1f_c00255{width:241.720603pt;}
._15_c00255{width:259.870753pt;}
._1b_c00255{width:267.721379pt;}
._10_c00255{width:286.221068pt;}
._19_c00255{width:294.074756pt;}
._1c_c00255{width:298.765893pt;}
._a_c00255{width:312.962711pt;}
._16_c00255{width:320.308460pt;}
._25_c00255{width:344.045479pt;}
._18_c00255{width:350.232033pt;}
._7_c00255{width:901.752877pt;}
.fs2_c00255{font-size:44.963715pt;}
.fs1_c00255{font-size:48.711767pt;}
.fs3_c00255{font-size:63.699708pt;}
.fs0_c00255{font-size:71.191972pt;}
.y0_c00255{bottom:0.000000pt;}
.y1_c00255{bottom:0.107500pt;}
.y6_c00255{bottom:2.528925pt;}
.y34_c00255{bottom:2.533096pt;}
.y7_c00255{bottom:6.068128pt;}
.y32_c00255{bottom:56.312831pt;}
.y33_c00255{bottom:56.998080pt;}
.y35_c00255{bottom:59.423676pt;}
.y31_c00255{bottom:268.002080pt;}
.y30_c00255{bottom:282.092741pt;}
.y2f_c00255{bottom:304.418998pt;}
.y2e_c00255{bottom:305.367747pt;}
.y2d_c00255{bottom:328.009964pt;}
.y2c_c00255{bottom:348.592489pt;}
.y2b_c00255{bottom:369.176881pt;}
.y2a_c00255{bottom:389.758739pt;}
.y29_c00255{bottom:410.342464pt;}
.y28_c00255{bottom:431.083122pt;}
.y27_c00255{bottom:454.516846pt;}
.y26_c00255{bottom:468.449908pt;}
.y25_c00255{bottom:482.539235pt;}
.y24_c00255{bottom:496.634163pt;}
.y23_c00255{bottom:510.724824pt;}
.y22_c00255{bottom:524.657885pt;}
.y21_c00255{bottom:538.749746pt;}
.y20_c00255{bottom:553.632273pt;}
.y1f_c00255{bottom:582.764128pt;}
.y1e_c00255{bottom:605.091586pt;}
.y1d_c00255{bottom:606.040960pt;}
.y1c_c00255{bottom:628.680859pt;}
.y1b_c00255{bottom:649.262051pt;}
.y1a_c00255{bottom:663.352712pt;}
.y19_c00255{bottom:687.580836pt;}
.y18_c00255{bottom:716.710158pt;}
.y17_c00255{bottom:730.805752pt;}
.y16_c00255{bottom:753.127610pt;}
.y15_c00255{bottom:754.078235pt;}
.y14_c00255{bottom:776.721692pt;}
.y13_c00255{bottom:797.302351pt;}
.y12_c00255{bottom:817.887276pt;}
.y11_c00255{bottom:838.470334pt;}
.y10_c00255{bottom:859.054059pt;}
.yf_c00255{bottom:879.795918pt;}
.ye_c00255{bottom:900.378976pt;}
.yd_c00255{bottom:923.812700pt;}
.yc_c00255{bottom:937.743361pt;}
.yb_c00255{bottom:951.835889pt;}
.ya_c00255{bottom:966.720816pt;}
.y9_c00255{bottom:982.714143pt;}
.y8_c00255{bottom:1014.692797pt;}
.y5_c00255{bottom:1018.232000pt;}
.y4_c00255{bottom:1041.082217pt;}
.y3_c00255{bottom:1055.964078pt;}
.y2_c00255{bottom:1081.770734pt;}
.h9_c00255{height:12.666880pt;}
.h4_c00255{height:12.668800pt;}
.h5_c00255{height:40.332453pt;}
.h8_c00255{height:41.681364pt;}
.h3_c00255{height:45.155808pt;}
.h7_c00255{height:59.049629pt;}
.h2_c00255{height:65.994958pt;}
.h6_c00255{height:1110.960672pt;}
.h1_c00255{height:1122.559167pt;}
.h0_c00255{height:1122.666667pt;}
.w4_c00255{width:35.627200pt;}
.w2_c00255{width:36.415040pt;}
.w3_c00255{width:785.062974pt;}
.w1_c00255{width:793.257550pt;}
.w0_c00255{width:793.333333pt;}
.x0_c00255{left:0.000000pt;}
.x2_c00255{left:1.370626pt;}
.x4_c00255{left:94.366803pt;}
.x1_c00255{left:95.726178pt;}
.x3_c00255{left:175.749304pt;}
.x5_c00255{left:251.588718pt;}
.x7_c00255{left:417.204683pt;}
.x8_c00255{left:535.164385pt;}
.xa_c00255{left:610.051796pt;}
.x9_c00255{left:625.885123pt;}
.x6_c00255{left:632.537121pt;}
.xb_c00255{left:704.048000pt;}
.xc_c00255{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.107000;font-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_c00256{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-14.062402px;}
.ws2_c00256{word-spacing:0.000000px;}
.ws1_c00256{word-spacing:17.040596px;}
._5_c00256{margin-left:-5.498440px;}
._c_c00256{margin-left:-4.319257px;}
._1_c00256{margin-left:-2.887239px;}
._3_c00256{margin-left:-1.750725px;}
._0_c00256{width:1.522265px;}
._4_c00256{width:3.068940px;}
._2_c00256{width:4.308527px;}
._9_c00256{width:5.825625px;}
._14_c00256{width:7.486576px;}
._1f_c00256{width:11.564603px;}
._b_c00256{width:18.753840px;}
._f_c00256{width:20.060272px;}
._1c_c00256{width:24.377898px;}
._6_c00256{width:36.224916px;}
._e_c00256{width:64.718377px;}
._19_c00256{width:112.153385px;}
._d_c00256{width:115.948123px;}
._13_c00256{width:120.158568px;}
._1b_c00256{width:121.509995px;}
._1a_c00256{width:142.629042px;}
._8_c00256{width:185.578389px;}
._1d_c00256{width:193.627577px;}
._15_c00256{width:214.514251px;}
._17_c00256{width:242.319025px;}
._18_c00256{width:269.470260px;}
._16_c00256{width:291.964881px;}
._20_c00256{width:293.606207px;}
._a_c00256{width:301.279102px;}
._11_c00256{width:322.322344px;}
._10_c00256{width:348.076558px;}
._1e_c00256{width:362.237517px;}
._12_c00256{width:385.743162px;}
._7_c00256{width:1014.471987px;}
.fc0_c00256{color:rgb(35,31,32);}
.fs2_c00256{font-size:50.584180px;}
.fs1_c00256{font-size:54.800738px;}
.fs0_c00256{font-size:80.090968px;}
.y0_c00256{bottom:0.000000px;}
.y1_c00256{bottom:0.120938px;}
.y6_c00256{bottom:2.845041px;}
.y3b_c00256{bottom:2.849733px;}
.y7_c00256{bottom:6.826644px;}
.y39_c00256{bottom:63.350781px;}
.y3a_c00256{bottom:64.122840px;}
.y3c_c00256{bottom:66.851636px;}
.y38_c00256{bottom:103.430315px;}
.y37_c00256{bottom:128.545255px;}
.y36_c00256{bottom:129.613301px;}
.y35_c00256{bottom:155.082495px;}
.y34_c00256{bottom:178.241285px;}
.y33_c00256{bottom:201.395126px;}
.y32_c00256{bottom:224.552567px;}
.y31_c00256{bottom:247.707158px;}
.y30_c00256{bottom:271.043848px;}
.y2f_c00256{bottom:294.198439px;}
.y2e_c00256{bottom:320.561379px;}
.y2d_c00256{bottom:336.234722px;}
.y2c_c00256{bottom:352.981016px;}
.y2b_c00256{bottom:385.752252px;}
.y2a_c00256{bottom:401.606346px;}
.y29_c00256{bottom:426.724136px;}
.y28_c00256{bottom:427.792182px;}
.y27_c00256{bottom:453.262425px;}
.y26_c00256{bottom:476.415666px;}
.y25_c00256{bottom:499.573107px;}
.y24_c00256{bottom:522.904848px;}
.y23_c00256{bottom:549.267787px;}
.y22_c00256{bottom:564.944581px;}
.y21_c00256{bottom:580.796574px;}
.y20_c00256{bottom:597.539418px;}
.y1f_c00256{bottom:630.315605px;}
.y1e_c00256{bottom:655.430545px;}
.y1d_c00256{bottom:656.498591px;}
.y1c_c00256{bottom:681.974477px;}
.y1b_c00256{bottom:705.128318px;}
.y1a_c00256{bottom:728.285758px;}
.y19_c00256{bottom:751.618999px;}
.y18_c00256{bottom:777.805539px;}
.y17_c00256{bottom:793.660232px;}
.y16_c00256{bottom:809.510726px;}
.y15_c00256{bottom:826.254919px;}
.y14_c00256{bottom:859.028256px;}
.y13_c00256{bottom:884.144546px;}
.y12_c00256{bottom:885.213999px;}
.y11_c00256{bottom:910.679639px;}
.y10_c00256{bottom:933.838430px;}
.yf_c00256{bottom:956.991670px;}
.ye_c00256{bottom:980.149711px;}
.yd_c00256{bottom:1006.511301px;}
.yc_c00256{bottom:1022.363294px;}
.yb_c00256{bottom:1038.217988px;}
.ya_c00256{bottom:1054.782931px;}
.y9_c00256{bottom:1082.748920px;}
.y8_c00256{bottom:1141.529397px;}
.y5_c00256{bottom:1145.511000px;}
.y4_c00256{bottom:1171.217494px;}
.y3_c00256{bottom:1187.959587px;}
.y2_c00256{bottom:1216.992076px;}
.h8_c00256{height:14.250240px;}
.h4_c00256{height:14.252400px;}
.h5_c00256{height:45.374009px;}
.h7_c00256{height:46.891535px;}
.h3_c00256{height:50.800284px;}
.h2_c00256{height:74.244327px;}
.h6_c00256{height:1249.830756px;}
.h1_c00256{height:1262.879062px;}
.h0_c00256{height:1263.000000px;}
.w4_c00256{width:40.080600px;}
.w2_c00256{width:40.966920px;}
.w3_c00256{width:883.195846px;}
.w1_c00256{width:892.414744px;}
.w0_c00256{width:892.500000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:1.541954px;}
.x4_c00256{left:106.162653px;}
.x1_c00256{left:107.691951px;}
.x3_c00256{left:197.717966px;}
.x5_c00256{left:283.040303px;}
.x7_c00256{left:469.355268px;}
.x6_c00256{left:711.604261px;}
.x8_c00256{left:792.054000px;}
.x9_c00256{left:845.660005px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:-12.499913pt;}
.ws2_c00256{word-spacing:0.000000pt;}
.ws1_c00256{word-spacing:15.147197pt;}
._5_c00256{margin-left:-4.887502pt;}
._c_c00256{margin-left:-3.839339pt;}
._1_c00256{margin-left:-2.566435pt;}
._3_c00256{margin-left:-1.556200pt;}
._0_c00256{width:1.353124pt;}
._4_c00256{width:2.727947pt;}
._2_c00256{width:3.829802pt;}
._9_c00256{width:5.178333pt;}
._14_c00256{width:6.654734pt;}
._1f_c00256{width:10.279648pt;}
._b_c00256{width:16.670080pt;}
._f_c00256{width:17.831353pt;}
._1c_c00256{width:21.669243pt;}
._6_c00256{width:32.199926pt;}
._e_c00256{width:57.527447pt;}
._19_c00256{width:99.691898pt;}
._d_c00256{width:103.064998pt;}
._13_c00256{width:106.807616pt;}
._1b_c00256{width:108.008884pt;}
._1a_c00256{width:126.781370pt;}
._8_c00256{width:164.958568pt;}
._1d_c00256{width:172.113401pt;}
._15_c00256{width:190.679335pt;}
._17_c00256{width:215.394689pt;}
._18_c00256{width:239.529120pt;}
._16_c00256{width:259.524339pt;}
._20_c00256{width:260.983295pt;}
._a_c00256{width:267.803646pt;}
._11_c00256{width:286.508751pt;}
._10_c00256{width:309.401385pt;}
._1e_c00256{width:321.988904pt;}
._12_c00256{width:342.882811pt;}
._7_c00256{width:901.752877pt;}
.fs2_c00256{font-size:44.963715pt;}
.fs1_c00256{font-size:48.711767pt;}
.fs0_c00256{font-size:71.191972pt;}
.y0_c00256{bottom:0.000000pt;}
.y1_c00256{bottom:0.107500pt;}
.y6_c00256{bottom:2.528925pt;}
.y3b_c00256{bottom:2.533096pt;}
.y7_c00256{bottom:6.068128pt;}
.y39_c00256{bottom:56.311806pt;}
.y3a_c00256{bottom:56.998080pt;}
.y3c_c00256{bottom:59.423676pt;}
.y38_c00256{bottom:91.938058pt;}
.y37_c00256{bottom:114.262449pt;}
.y36_c00256{bottom:115.211823pt;}
.y35_c00256{bottom:137.851106pt;}
.y34_c00256{bottom:158.436698pt;}
.y33_c00256{bottom:179.017890pt;}
.y32_c00256{bottom:199.602282pt;}
.y31_c00256{bottom:220.184140pt;}
.y30_c00256{bottom:240.927865pt;}
.y2f_c00256{bottom:261.509724pt;}
.y2e_c00256{bottom:284.943448pt;}
.y2d_c00256{bottom:298.875309pt;}
.y2c_c00256{bottom:313.760903pt;}
.y2b_c00256{bottom:342.890891pt;}
.y2a_c00256{bottom:356.983419pt;}
.y29_c00256{bottom:379.310343pt;}
.y28_c00256{bottom:380.259717pt;}
.y27_c00256{bottom:402.899934pt;}
.y26_c00256{bottom:423.480592pt;}
.y25_c00256{bottom:444.064984pt;}
.y24_c00256{bottom:464.804309pt;}
.y23_c00256{bottom:488.238033pt;}
.y22_c00256{bottom:502.172961pt;}
.y21_c00256{bottom:516.263622pt;}
.y20_c00256{bottom:531.146149pt;}
.y1f_c00256{bottom:560.280537pt;}
.y1e_c00256{bottom:582.604929pt;}
.y1d_c00256{bottom:583.554303pt;}
.y1c_c00256{bottom:606.199535pt;}
.y1b_c00256{bottom:626.780727pt;}
.y1a_c00256{bottom:647.365119pt;}
.y19_c00256{bottom:668.105777pt;}
.y18_c00256{bottom:691.382701pt;}
.y17_c00256{bottom:705.475762pt;}
.y16_c00256{bottom:719.565090pt;}
.y15_c00256{bottom:734.448817pt;}
.y14_c00256{bottom:763.580672pt;}
.y13_c00256{bottom:785.906263pt;}
.y12_c00256{bottom:786.856888pt;}
.y11_c00256{bottom:809.493012pt;}
.y10_c00256{bottom:830.078604pt;}
.yf_c00256{bottom:850.659263pt;}
.ye_c00256{bottom:871.244188pt;}
.yd_c00256{bottom:894.676712pt;}
.yc_c00256{bottom:908.767373pt;}
.yb_c00256{bottom:922.860434pt;}
.ya_c00256{bottom:937.584828pt;}
.y9_c00256{bottom:962.443485pt;}
.y8_c00256{bottom:1014.692797pt;}
.y5_c00256{bottom:1018.232000pt;}
.y4_c00256{bottom:1041.082217pt;}
.y3_c00256{bottom:1055.964078pt;}
.y2_c00256{bottom:1081.770734pt;}
.h8_c00256{height:12.666880pt;}
.h4_c00256{height:12.668800pt;}
.h5_c00256{height:40.332453pt;}
.h7_c00256{height:41.681364pt;}
.h3_c00256{height:45.155808pt;}
.h2_c00256{height:65.994958pt;}
.h6_c00256{height:1110.960672pt;}
.h1_c00256{height:1122.559167pt;}
.h0_c00256{height:1122.666667pt;}
.w4_c00256{width:35.627200pt;}
.w2_c00256{width:36.415040pt;}
.w3_c00256{width:785.062974pt;}
.w1_c00256{width:793.257550pt;}
.w0_c00256{width:793.333333pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:1.370626pt;}
.x4_c00256{left:94.366803pt;}
.x1_c00256{left:95.726178pt;}
.x3_c00256{left:175.749304pt;}
.x5_c00256{left:251.591380pt;}
.x7_c00256{left:417.204683pt;}
.x6_c00256{left:632.537121pt;}
.x8_c00256{left:704.048000pt;}
.x9_c00256{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.107000;font-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_c00257{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls0_c00257{letter-spacing:0.000000px;}
.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.062402px;}
.ws2_c00257{word-spacing:0.000000px;}
.ws1_c00257{word-spacing:17.040596px;}
._a_c00257{margin-left:-6.720911px;}
._5_c00257{margin-left:-5.498440px;}
._b_c00257{margin-left:-3.935336px;}
._1_c00257{margin-left:-2.887239px;}
._3_c00257{margin-left:-1.750725px;}
._0_c00257{width:1.522265px;}
._4_c00257{width:3.068940px;}
._2_c00257{width:4.308527px;}
._d_c00257{width:5.651453px;}
._c_c00257{width:7.632057px;}
._2a_c00257{width:11.171942px;}
._15_c00257{width:15.574597px;}
._10_c00257{width:20.060161px;}
._1f_c00257{width:23.177488px;}
._26_c00257{width:32.996462px;}
._6_c00257{width:36.224916px;}
._f_c00257{width:64.716688px;}
._13_c00257{width:111.463935px;}
._25_c00257{width:115.546680px;}
._e_c00257{width:117.225685px;}
._18_c00257{width:120.230560px;}
._28_c00257{width:121.233199px;}
._29_c00257{width:124.377717px;}
._2b_c00257{width:129.993763px;}
._2c_c00257{width:137.598584px;}
._22_c00257{width:145.248223px;}
._1b_c00257{width:155.168907px;}
._1d_c00257{width:159.341557px;}
._1c_c00257{width:162.118700px;}
._14_c00257{width:166.903464px;}
._8_c00257{width:185.578389px;}
._16_c00257{width:197.232268px;}
._1e_c00257{width:201.803500px;}
._19_c00257{width:242.863105px;}
._23_c00257{width:271.941987px;}
._12_c00257{width:292.354607px;}
._1a_c00257{width:298.672024px;}
._2d_c00257{width:301.198516px;}
._9_c00257{width:315.516131px;}
._17_c00257{width:322.323882px;}
._24_c00257{width:324.064971px;}
._21_c00257{width:330.840465px;}
._27_c00257{width:356.773366px;}
._11_c00257{width:382.024824px;}
._20_c00257{width:386.430646px;}
._7_c00257{width:1014.471987px;}
.fc0_c00257{color:rgb(35,31,32);}
.fs2_c00257{font-size:50.584180px;}
.fs1_c00257{font-size:54.800738px;}
.fs0_c00257{font-size:80.090968px;}
.y0_c00257{bottom:0.000000px;}
.y1_c00257{bottom:0.120938px;}
.y6_c00257{bottom:2.845041px;}
.y30_c00257{bottom:2.849733px;}
.y7_c00257{bottom:6.826644px;}
.y2e_c00257{bottom:63.348981px;}
.y2f_c00257{bottom:64.122840px;}
.y31_c00257{bottom:66.851636px;}
.y2d_c00257{bottom:364.734861px;}
.y2c_c00257{bottom:389.851151px;}
.y2b_c00257{bottom:390.919197px;}
.y2a_c00257{bottom:416.391990px;}
.y29_c00257{bottom:439.545231px;}
.y28_c00257{bottom:462.703272px;}
.y27_c00257{bottom:486.039212px;}
.y26_c00257{bottom:509.193803px;}
.y25_c00257{bottom:532.350494px;}
.y24_c00257{bottom:558.714783px;}
.y23_c00257{bottom:574.568127px;}
.y22_c00257{bottom:591.132320px;}
.y21_c00257{bottom:624.085657px;}
.y20_c00257{bottom:639.757651px;}
.y1f_c00257{bottom:664.876041px;}
.y1e_c00257{bottom:665.944087px;}
.y1d_c00257{bottom:691.411011px;}
.y1c_c00257{bottom:714.565601px;}
.y1b_c00257{bottom:737.902292px;}
.y1a_c00257{bottom:761.058233px;}
.y19_c00257{bottom:784.214174px;}
.y18_c00257{bottom:807.368014px;}
.y17_c00257{bottom:833.732304px;}
.y16_c00257{bottom:849.585647px;}
.y15_c00257{bottom:865.437641px;}
.y14_c00257{bottom:882.001834px;}
.y13_c00257{bottom:914.955171px;}
.y12_c00257{bottom:940.070711px;}
.y11_c00257{bottom:940.962977px;}
.y10_c00257{bottom:966.435367px;}
.yf_c00257{bottom:989.771307px;}
.ye_c00257{bottom:1012.925898px;}
.yd_c00257{bottom:1036.082589px;}
.yc_c00257{bottom:1062.445528px;}
.yb_c00257{bottom:1078.296022px;}
.ya_c00257{bottom:1093.972216px;}
.y9_c00257{bottom:1110.716409px;}
.y8_c00257{bottom:1141.529397px;}
.y5_c00257{bottom:1145.511000px;}
.y4_c00257{bottom:1171.217494px;}
.y3_c00257{bottom:1187.959587px;}
.y2_c00257{bottom:1216.992076px;}
.h8_c00257{height:14.250240px;}
.h4_c00257{height:14.252400px;}
.h5_c00257{height:45.374009px;}
.h7_c00257{height:46.891535px;}
.h3_c00257{height:50.800284px;}
.h2_c00257{height:74.244327px;}
.h6_c00257{height:1249.830756px;}
.h1_c00257{height:1262.879062px;}
.h0_c00257{height:1263.000000px;}
.w4_c00257{width:40.080600px;}
.w2_c00257{width:40.966920px;}
.w3_c00257{width:883.195846px;}
.w1_c00257{width:892.414744px;}
.w0_c00257{width:892.500000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:1.541954px;}
.x4_c00257{left:106.162653px;}
.x1_c00257{left:107.691951px;}
.x3_c00257{left:197.717966px;}
.x5_c00257{left:283.037307px;}
.x7_c00257{left:469.355268px;}
.x8_c00257{left:704.120764px;}
.x6_c00257{left:711.604261px;}
.x9_c00257{left:792.054000px;}
.xa_c00257{left:845.660005px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:-12.499913pt;}
.ws2_c00257{word-spacing:0.000000pt;}
.ws1_c00257{word-spacing:15.147197pt;}
._a_c00257{margin-left:-5.974143pt;}
._5_c00257{margin-left:-4.887502pt;}
._b_c00257{margin-left:-3.498076pt;}
._1_c00257{margin-left:-2.566435pt;}
._3_c00257{margin-left:-1.556200pt;}
._0_c00257{width:1.353124pt;}
._4_c00257{width:2.727947pt;}
._2_c00257{width:3.829802pt;}
._d_c00257{width:5.023514pt;}
._c_c00257{width:6.784051pt;}
._2a_c00257{width:9.930615pt;}
._15_c00257{width:13.844086pt;}
._10_c00257{width:17.831254pt;}
._1f_c00257{width:20.602212pt;}
._26_c00257{width:29.330189pt;}
._6_c00257{width:32.199926pt;}
._f_c00257{width:57.525945pt;}
._13_c00257{width:99.079053pt;}
._25_c00257{width:102.708160pt;}
._e_c00257{width:104.200609pt;}
._18_c00257{width:106.871608pt;}
._28_c00257{width:107.762844pt;}
._29_c00257{width:110.557971pt;}
._2b_c00257{width:115.550011pt;}
._2c_c00257{width:122.309852pt;}
._22_c00257{width:129.109531pt;}
._1b_c00257{width:137.927917pt;}
._1d_c00257{width:141.636939pt;}
._1c_c00257{width:144.105511pt;}
._14_c00257{width:148.358635pt;}
._8_c00257{width:164.958568pt;}
._16_c00257{width:175.317572pt;}
._1e_c00257{width:179.380889pt;}
._19_c00257{width:215.878315pt;}
._23_c00257{width:241.726211pt;}
._12_c00257{width:259.870762pt;}
._1a_c00257{width:265.486243pt;}
._2d_c00257{width:267.732014pt;}
._9_c00257{width:280.458783pt;}
._17_c00257{width:286.510117pt;}
._24_c00257{width:288.057752pt;}
._21_c00257{width:294.080413pt;}
._27_c00257{width:317.131881pt;}
._11_c00257{width:339.577622pt;}
._20_c00257{width:343.493907pt;}
._7_c00257{width:901.752877pt;}
.fs2_c00257{font-size:44.963715pt;}
.fs1_c00257{font-size:48.711767pt;}
.fs0_c00257{font-size:71.191972pt;}
.y0_c00257{bottom:0.000000pt;}
.y1_c00257{bottom:0.107500pt;}
.y6_c00257{bottom:2.528925pt;}
.y30_c00257{bottom:2.533096pt;}
.y7_c00257{bottom:6.068128pt;}
.y2e_c00257{bottom:56.310206pt;}
.y2f_c00257{bottom:56.998080pt;}
.y31_c00257{bottom:59.423676pt;}
.y2d_c00257{bottom:324.208765pt;}
.y2c_c00257{bottom:346.534356pt;}
.y2b_c00257{bottom:347.483731pt;}
.y2a_c00257{bottom:370.126214pt;}
.y29_c00257{bottom:390.706872pt;}
.y28_c00257{bottom:411.291797pt;}
.y27_c00257{bottom:432.034855pt;}
.y26_c00257{bottom:452.616714pt;}
.y25_c00257{bottom:473.200439pt;}
.y24_c00257{bottom:496.635363pt;}
.y23_c00257{bottom:510.727224pt;}
.y22_c00257{bottom:525.450951pt;}
.y21_c00257{bottom:554.742806pt;}
.y20_c00257{bottom:568.673467pt;}
.y1f_c00257{bottom:591.000925pt;}
.y1e_c00257{bottom:591.950299pt;}
.y1d_c00257{bottom:614.587565pt;}
.y1c_c00257{bottom:635.169424pt;}
.y1b_c00257{bottom:655.913149pt;}
.y1a_c00257{bottom:676.496207pt;}
.y19_c00257{bottom:697.079265pt;}
.y18_c00257{bottom:717.660457pt;}
.y17_c00257{bottom:741.095381pt;}
.y16_c00257{bottom:755.187242pt;}
.y15_c00257{bottom:769.277903pt;}
.y14_c00257{bottom:784.001631pt;}
.y13_c00257{bottom:813.293486pt;}
.y12_c00257{bottom:835.618410pt;}
.y11_c00257{bottom:836.411535pt;}
.y10_c00257{bottom:859.053659pt;}
.yf_c00257{bottom:879.796718pt;}
.ye_c00257{bottom:900.378576pt;}
.yd_c00257{bottom:920.962301pt;}
.yc_c00257{bottom:944.396025pt;}
.yb_c00257{bottom:958.485353pt;}
.ya_c00257{bottom:972.419747pt;}
.y9_c00257{bottom:987.303475pt;}
.y8_c00257{bottom:1014.692797pt;}
.y5_c00257{bottom:1018.232000pt;}
.y4_c00257{bottom:1041.082217pt;}
.y3_c00257{bottom:1055.964078pt;}
.y2_c00257{bottom:1081.770734pt;}
.h8_c00257{height:12.666880pt;}
.h4_c00257{height:12.668800pt;}
.h5_c00257{height:40.332453pt;}
.h7_c00257{height:41.681364pt;}
.h3_c00257{height:45.155808pt;}
.h2_c00257{height:65.994958pt;}
.h6_c00257{height:1110.960672pt;}
.h1_c00257{height:1122.559167pt;}
.h0_c00257{height:1122.666667pt;}
.w4_c00257{width:35.627200pt;}
.w2_c00257{width:36.415040pt;}
.w3_c00257{width:785.062974pt;}
.w1_c00257{width:793.257550pt;}
.w0_c00257{width:793.333333pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:1.370626pt;}
.x4_c00257{left:94.366803pt;}
.x1_c00257{left:95.726178pt;}
.x3_c00257{left:175.749304pt;}
.x5_c00257{left:251.588718pt;}
.x7_c00257{left:417.204683pt;}
.x8_c00257{left:625.885123pt;}
.x6_c00257{left:632.537121pt;}
.x9_c00257{left:704.048000pt;}
.xa_c00257{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.107000;font-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_c00258{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls0_c00258{letter-spacing:0.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:-14.062402px;}
.ws3_c00258{word-spacing:0.000000px;}
.ws1_c00258{word-spacing:17.040596px;}
.ws2_c00258{word-spacing:248.957123px;}
._5_c00258{margin-left:-5.498440px;}
._a_c00258{margin-left:-3.971377px;}
._1_c00258{margin-left:-2.887239px;}
._3_c00258{margin-left:-1.750725px;}
._0_c00258{width:1.522265px;}
._4_c00258{width:3.068940px;}
._2_c00258{width:4.308527px;}
._9_c00258{width:5.825625px;}
._20_c00258{width:6.966582px;}
._f_c00258{width:8.276481px;}
._1b_c00258{width:11.171684px;}
._c_c00258{width:16.022364px;}
._13_c00258{width:32.997226px;}
._6_c00258{width:36.224916px;}
._e_c00258{width:64.716688px;}
._18_c00258{width:96.441047px;}
._15_c00258{width:113.164615px;}
._1a_c00258{width:116.042153px;}
._12_c00258{width:121.269241px;}
._17_c00258{width:138.322320px;}
._22_c00258{width:142.438474px;}
._1e_c00258{width:145.248182px;}
._d_c00258{width:155.203572px;}
._1c_c00258{width:166.435173px;}
._8_c00258{width:185.578389px;}
._10_c00258{width:201.765874px;}
._19_c00258{width:220.748868px;}
._1f_c00258{width:229.827621px;}
._23_c00258{width:271.935679px;}
._1d_c00258{width:292.355108px;}
._11_c00258{width:321.998702px;}
._21_c00258{width:323.905010px;}
._14_c00258{width:330.844206px;}
._b_c00258{width:364.879767px;}
._16_c00258{width:396.002145px;}
._7_c00258{width:1014.471987px;}
.fc0_c00258{color:rgb(35,31,32);}
.fs2_c00258{font-size:50.584180px;}
.fs1_c00258{font-size:54.800738px;}
.fs0_c00258{font-size:80.090968px;}
.y0_c00258{bottom:0.000000px;}
.y1_c00258{bottom:0.120938px;}
.y6_c00258{bottom:2.845041px;}
.y2d_c00258{bottom:2.849733px;}
.y7_c00258{bottom:6.826644px;}
.y2b_c00258{bottom:63.351569px;}
.y2c_c00258{bottom:64.122840px;}
.y2e_c00258{bottom:66.851636px;}
.y2a_c00258{bottom:419.596926px;}
.y29_c00258{bottom:435.452370px;}
.y28_c00258{bottom:460.567310px;}
.y27_c00258{bottom:461.458169px;}
.y26_c00258{bottom:486.927042px;}
.y25_c00258{bottom:510.261633px;}
.y24_c00258{bottom:533.417574px;}
.y23_c00258{bottom:549.266718px;}
.y22_c00258{bottom:572.426258px;}
.y21_c00258{bottom:595.582199px;}
.y20_c00258{bottom:618.736790px;}
.y1f_c00258{bottom:645.099729px;}
.y1e_c00258{bottom:660.955173px;}
.y1d_c00258{bottom:676.627167px;}
.y1c_c00258{bottom:692.483360px;}
.y1b_c00258{bottom:708.333854px;}
.y1a_c00258{bottom:724.187198px;}
.y19_c00258{bottom:740.752141px;}
.y18_c00258{bottom:773.702028px;}
.y17_c00258{bottom:789.558821px;}
.y16_c00258{bottom:814.672261px;}
.y15_c00258{bottom:815.564527px;}
.y14_c00258{bottom:841.032417px;}
.y13_c00258{bottom:864.369858px;}
.y12_c00258{bottom:887.527898px;}
.y11_c00258{bottom:910.679639px;}
.y10_c00258{bottom:933.838430px;}
.yf_c00258{bottom:956.991670px;}
.ye_c00258{bottom:980.149711px;}
.yd_c00258{bottom:1006.511301px;}
.yc_c00258{bottom:1022.363294px;}
.yb_c00258{bottom:1038.217988px;}
.ya_c00258{bottom:1054.782931px;}
.y9_c00258{bottom:1082.748920px;}
.y8_c00258{bottom:1141.529397px;}
.y5_c00258{bottom:1145.511000px;}
.y4_c00258{bottom:1171.217494px;}
.y3_c00258{bottom:1187.959587px;}
.y2_c00258{bottom:1216.992076px;}
.h8_c00258{height:14.250240px;}
.h4_c00258{height:14.252400px;}
.h5_c00258{height:45.374009px;}
.h7_c00258{height:46.891535px;}
.h3_c00258{height:50.800284px;}
.h2_c00258{height:74.244327px;}
.h6_c00258{height:1249.830756px;}
.h1_c00258{height:1262.879062px;}
.h0_c00258{height:1263.000000px;}
.w4_c00258{width:40.080600px;}
.w2_c00258{width:40.966920px;}
.w3_c00258{width:883.195846px;}
.w1_c00258{width:892.414744px;}
.w0_c00258{width:892.500000px;}
.x0_c00258{left:0.000000px;}
.x2_c00258{left:1.541954px;}
.x4_c00258{left:106.162653px;}
.x1_c00258{left:107.691951px;}
.x3_c00258{left:197.717966px;}
.x5_c00258{left:283.038805px;}
.x7_c00258{left:469.356072px;}
.x8_c00258{left:602.056245px;}
.x6_c00258{left:693.613268px;}
.x9_c00258{left:704.120764px;}
.xa_c00258{left:792.054000px;}
.xb_c00258{left:845.660005px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:-12.499913pt;}
.ws3_c00258{word-spacing:0.000000pt;}
.ws1_c00258{word-spacing:15.147197pt;}
.ws2_c00258{word-spacing:221.295220pt;}
._5_c00258{margin-left:-4.887502pt;}
._a_c00258{margin-left:-3.530113pt;}
._1_c00258{margin-left:-2.566435pt;}
._3_c00258{margin-left:-1.556200pt;}
._0_c00258{width:1.353124pt;}
._4_c00258{width:2.727947pt;}
._2_c00258{width:3.829802pt;}
._9_c00258{width:5.178333pt;}
._20_c00258{width:6.192517pt;}
._f_c00258{width:7.356872pt;}
._1b_c00258{width:9.930385pt;}
._c_c00258{width:14.242101pt;}
._13_c00258{width:29.330868pt;}
._6_c00258{width:32.199926pt;}
._e_c00258{width:57.525945pt;}
._18_c00258{width:85.725375pt;}
._15_c00258{width:100.590769pt;}
._1a_c00258{width:103.148581pt;}
._12_c00258{width:107.794880pt;}
._17_c00258{width:122.953173pt;}
._22_c00258{width:126.611976pt;}
._1e_c00258{width:129.109495pt;}
._d_c00258{width:137.958731pt;}
._1c_c00258{width:147.942376pt;}
._8_c00258{width:164.958568pt;}
._10_c00258{width:179.347443pt;}
._19_c00258{width:196.221216pt;}
._1f_c00258{width:204.291219pt;}
._23_c00258{width:241.720603pt;}
._1d_c00258{width:259.871207pt;}
._11_c00258{width:286.221068pt;}
._21_c00258{width:287.915565pt;}
._14_c00258{width:294.083739pt;}
._b_c00258{width:324.337571pt;}
._16_c00258{width:352.001907pt;}
._7_c00258{width:901.752877pt;}
.fs2_c00258{font-size:44.963715pt;}
.fs1_c00258{font-size:48.711767pt;}
.fs0_c00258{font-size:71.191972pt;}
.y0_c00258{bottom:0.000000pt;}
.y1_c00258{bottom:0.107500pt;}
.y6_c00258{bottom:2.528925pt;}
.y2d_c00258{bottom:2.533096pt;}
.y7_c00258{bottom:6.068128pt;}
.y2b_c00258{bottom:56.312506pt;}
.y2c_c00258{bottom:56.998080pt;}
.y2e_c00258{bottom:59.423676pt;}
.y2a_c00258{bottom:372.975046pt;}
.y29_c00258{bottom:387.068773pt;}
.y28_c00258{bottom:409.393164pt;}
.y27_c00258{bottom:410.185039pt;}
.y26_c00258{bottom:432.824038pt;}
.y25_c00258{bottom:453.565896pt;}
.y24_c00258{bottom:474.148955pt;}
.y23_c00258{bottom:488.237082pt;}
.y22_c00258{bottom:508.823341pt;}
.y21_c00258{bottom:529.406399pt;}
.y20_c00258{bottom:549.988258pt;}
.y1f_c00258{bottom:573.421982pt;}
.y1e_c00258{bottom:587.515709pt;}
.y1d_c00258{bottom:601.446370pt;}
.y1c_c00258{bottom:615.540765pt;}
.y1b_c00258{bottom:629.630092pt;}
.y1a_c00258{bottom:643.721953pt;}
.y19_c00258{bottom:658.446348pt;}
.y18_c00258{bottom:687.735136pt;}
.y17_c00258{bottom:701.830064pt;}
.y16_c00258{bottom:724.153121pt;}
.y15_c00258{bottom:724.946246pt;}
.y14_c00258{bottom:747.584371pt;}
.y13_c00258{bottom:768.328762pt;}
.y12_c00258{bottom:788.913687pt;}
.y11_c00258{bottom:809.493012pt;}
.y10_c00258{bottom:830.078604pt;}
.yf_c00258{bottom:850.659263pt;}
.ye_c00258{bottom:871.244188pt;}
.yd_c00258{bottom:894.676712pt;}
.yc_c00258{bottom:908.767373pt;}
.yb_c00258{bottom:922.860434pt;}
.ya_c00258{bottom:937.584828pt;}
.y9_c00258{bottom:962.443485pt;}
.y8_c00258{bottom:1014.692797pt;}
.y5_c00258{bottom:1018.232000pt;}
.y4_c00258{bottom:1041.082217pt;}
.y3_c00258{bottom:1055.964078pt;}
.y2_c00258{bottom:1081.770734pt;}
.h8_c00258{height:12.666880pt;}
.h4_c00258{height:12.668800pt;}
.h5_c00258{height:40.332453pt;}
.h7_c00258{height:41.681364pt;}
.h3_c00258{height:45.155808pt;}
.h2_c00258{height:65.994958pt;}
.h6_c00258{height:1110.960672pt;}
.h1_c00258{height:1122.559167pt;}
.h0_c00258{height:1122.666667pt;}
.w4_c00258{width:35.627200pt;}
.w2_c00258{width:36.415040pt;}
.w3_c00258{width:785.062974pt;}
.w1_c00258{width:793.257550pt;}
.w0_c00258{width:793.333333pt;}
.x0_c00258{left:0.000000pt;}
.x2_c00258{left:1.370626pt;}
.x4_c00258{left:94.366803pt;}
.x1_c00258{left:95.726178pt;}
.x3_c00258{left:175.749304pt;}
.x5_c00258{left:251.590049pt;}
.x7_c00258{left:417.205397pt;}
.x8_c00258{left:535.161106pt;}
.x6_c00258{left:616.545127pt;}
.x9_c00258{left:625.885123pt;}
.xa_c00258{left:704.048000pt;}
.xb_c00258{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.107000;font-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_c00259{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:-14.062402px;}
.ws3_c00259{word-spacing:0.000000px;}
.ws1_c00259{word-spacing:17.040596px;}
.ws2_c00259{word-spacing:248.957123px;}
._5_c00259{margin-left:-5.498440px;}
._9_c00259{margin-left:-3.971377px;}
._1_c00259{margin-left:-2.887239px;}
._3_c00259{margin-left:-1.750725px;}
._0_c00259{width:1.522265px;}
._4_c00259{width:3.068940px;}
._2_c00259{width:4.308527px;}
._d_c00259{width:5.568095px;}
._c_c00259{width:6.966582px;}
._1d_c00259{width:8.269138px;}
._17_c00259{width:11.169989px;}
._b_c00259{width:16.022364px;}
._22_c00259{width:22.843787px;}
._10_c00259{width:32.996508px;}
._6_c00259{width:36.224916px;}
._f_c00259{width:64.718205px;}
._13_c00259{width:113.164615px;}
._16_c00259{width:116.042118px;}
._15_c00259{width:117.050613px;}
._e_c00259{width:121.270116px;}
._19_c00259{width:145.248182px;}
._21_c00259{width:154.364374px;}
._1e_c00259{width:159.341344px;}
._18_c00259{width:166.435391px;}
._20_c00259{width:167.811394px;}
._8_c00259{width:185.578389px;}
._1f_c00259{width:197.787508px;}
._1a_c00259{width:271.934328px;}
._1b_c00259{width:291.965387px;}
._25_c00259{width:301.191206px;}
._11_c00259{width:322.496655px;}
._12_c00259{width:330.842532px;}
._1c_c00259{width:352.700698px;}
._a_c00259{width:364.879767px;}
._24_c00259{width:387.051564px;}
._23_c00259{width:393.952204px;}
._14_c00259{width:396.001346px;}
._7_c00259{width:1014.471987px;}
.fc0_c00259{color:rgb(35,31,32);}
.fs2_c00259{font-size:50.584180px;}
.fs1_c00259{font-size:54.800738px;}
.fs0_c00259{font-size:80.090968px;}
.y0_c00259{bottom:0.000000px;}
.y1_c00259{bottom:0.120938px;}
.y6_c00259{bottom:2.845041px;}
.y2b_c00259{bottom:2.849733px;}
.y7_c00259{bottom:6.826644px;}
.y29_c00259{bottom:63.350435px;}
.y2a_c00259{bottom:64.122840px;}
.y2c_c00259{bottom:66.851636px;}
.y28_c00259{bottom:491.202764px;}
.y27_c00259{bottom:516.319804px;}
.y26_c00259{bottom:517.387146px;}
.y25_c00259{bottom:542.857886px;}
.y24_c00259{bottom:566.014577px;}
.y23_c00259{bottom:589.170518px;}
.y22_c00259{bottom:612.505108px;}
.y21_c00259{bottom:635.658349px;}
.y20_c00259{bottom:658.817890px;}
.y1f_c00259{bottom:681.973830px;}
.y1e_c00259{bottom:708.335420px;}
.y1d_c00259{bottom:724.187414px;}
.y1c_c00259{bottom:739.865707px;}
.y1b_c00259{bottom:756.607051px;}
.y1a_c00259{bottom:789.559037px;}
.y19_c00259{bottom:805.236581px;}
.y18_c00259{bottom:830.350771px;}
.y17_c00259{bottom:831.419521px;}
.y16_c00259{bottom:856.889961px;}
.y15_c00259{bottom:880.049501px;}
.y14_c00259{bottom:903.202592px;}
.y13_c00259{bottom:919.054586px;}
.y12_c00259{bottom:942.212626px;}
.y11_c00259{bottom:965.542267px;}
.y10_c00259{bottom:988.701808px;}
.yf_c00259{bottom:1015.064747px;}
.ye_c00259{bottom:1030.738091px;}
.yd_c00259{bottom:1046.592185px;}
.yc_c00259{bottom:1062.445528px;}
.yb_c00259{bottom:1078.296022px;}
.ya_c00259{bottom:1093.972216px;}
.y9_c00259{bottom:1110.716409px;}
.y8_c00259{bottom:1141.529397px;}
.y5_c00259{bottom:1145.511000px;}
.y4_c00259{bottom:1171.217494px;}
.y3_c00259{bottom:1187.959587px;}
.y2_c00259{bottom:1216.992076px;}
.h8_c00259{height:14.250240px;}
.h4_c00259{height:14.252400px;}
.h5_c00259{height:45.374009px;}
.h7_c00259{height:46.891535px;}
.h3_c00259{height:50.800284px;}
.h2_c00259{height:74.244327px;}
.h6_c00259{height:1249.830756px;}
.h1_c00259{height:1262.879062px;}
.h0_c00259{height:1263.000000px;}
.w4_c00259{width:40.080600px;}
.w2_c00259{width:40.966920px;}
.w3_c00259{width:883.195846px;}
.w1_c00259{width:892.414744px;}
.w0_c00259{width:892.500000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:1.541954px;}
.x4_c00259{left:106.162653px;}
.x1_c00259{left:107.691951px;}
.x3_c00259{left:197.717966px;}
.x5_c00259{left:283.038805px;}
.x8_c00259{left:469.355747px;}
.x6_c00259{left:602.062583px;}
.x7_c00259{left:704.120764px;}
.x9_c00259{left:711.604261px;}
.xa_c00259{left:792.054000px;}
.xb_c00259{left:845.660005px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:-12.499913pt;}
.ws3_c00259{word-spacing:0.000000pt;}
.ws1_c00259{word-spacing:15.147197pt;}
.ws2_c00259{word-spacing:221.295220pt;}
._5_c00259{margin-left:-4.887502pt;}
._9_c00259{margin-left:-3.530113pt;}
._1_c00259{margin-left:-2.566435pt;}
._3_c00259{margin-left:-1.556200pt;}
._0_c00259{width:1.353124pt;}
._4_c00259{width:2.727947pt;}
._2_c00259{width:3.829802pt;}
._d_c00259{width:4.949418pt;}
._c_c00259{width:6.192517pt;}
._1d_c00259{width:7.350345pt;}
._17_c00259{width:9.928879pt;}
._b_c00259{width:14.242101pt;}
._22_c00259{width:20.305588pt;}
._10_c00259{width:29.330229pt;}
._6_c00259{width:32.199926pt;}
._f_c00259{width:57.527294pt;}
._13_c00259{width:100.590769pt;}
._16_c00259{width:103.148549pt;}
._15_c00259{width:104.044989pt;}
._e_c00259{width:107.795658pt;}
._19_c00259{width:129.109495pt;}
._21_c00259{width:137.212777pt;}
._1e_c00259{width:141.636751pt;}
._18_c00259{width:147.942569pt;}
._20_c00259{width:149.165683pt;}
._8_c00259{width:164.958568pt;}
._1f_c00259{width:175.811119pt;}
._1a_c00259{width:241.719403pt;}
._1b_c00259{width:259.524789pt;}
._25_c00259{width:267.725516pt;}
._11_c00259{width:286.663693pt;}
._12_c00259{width:294.082250pt;}
._1c_c00259{width:313.511731pt;}
._a_c00259{width:324.337571pt;}
._24_c00259{width:344.045834pt;}
._23_c00259{width:350.179737pt;}
._14_c00259{width:352.001196pt;}
._7_c00259{width:901.752877pt;}
.fs2_c00259{font-size:44.963715pt;}
.fs1_c00259{font-size:48.711767pt;}
.fs0_c00259{font-size:71.191972pt;}
.y0_c00259{bottom:0.000000pt;}
.y1_c00259{bottom:0.107500pt;}
.y6_c00259{bottom:2.528925pt;}
.y2b_c00259{bottom:2.533096pt;}
.y7_c00259{bottom:6.068128pt;}
.y29_c00259{bottom:56.311498pt;}
.y2a_c00259{bottom:56.998080pt;}
.y2c_c00259{bottom:59.423676pt;}
.y28_c00259{bottom:436.624679pt;}
.y27_c00259{bottom:458.950937pt;}
.y26_c00259{bottom:459.899686pt;}
.y25_c00259{bottom:482.540343pt;}
.y24_c00259{bottom:503.124068pt;}
.y23_c00259{bottom:523.707127pt;}
.y22_c00259{bottom:544.448985pt;}
.y21_c00259{bottom:565.029644pt;}
.y20_c00259{bottom:585.615902pt;}
.y1f_c00259{bottom:606.198960pt;}
.y1e_c00259{bottom:629.631484pt;}
.y1d_c00259{bottom:643.722145pt;}
.y1c_c00259{bottom:657.658407pt;}
.y1b_c00259{bottom:672.539601pt;}
.y1a_c00259{bottom:701.830256pt;}
.y19_c00259{bottom:715.765850pt;}
.y18_c00259{bottom:738.089574pt;}
.y17_c00259{bottom:739.039574pt;}
.y16_c00259{bottom:761.679965pt;}
.y15_c00259{bottom:782.266223pt;}
.y14_c00259{bottom:802.846748pt;}
.y13_c00259{bottom:816.937409pt;}
.y12_c00259{bottom:837.522335pt;}
.y11_c00259{bottom:858.259793pt;}
.y10_c00259{bottom:878.846051pt;}
.yf_c00259{bottom:902.279775pt;}
.ye_c00259{bottom:916.211636pt;}
.yd_c00259{bottom:930.304164pt;}
.yc_c00259{bottom:944.396025pt;}
.yb_c00259{bottom:958.485353pt;}
.ya_c00259{bottom:972.419747pt;}
.y9_c00259{bottom:987.303475pt;}
.y8_c00259{bottom:1014.692797pt;}
.y5_c00259{bottom:1018.232000pt;}
.y4_c00259{bottom:1041.082217pt;}
.y3_c00259{bottom:1055.964078pt;}
.y2_c00259{bottom:1081.770734pt;}
.h8_c00259{height:12.666880pt;}
.h4_c00259{height:12.668800pt;}
.h5_c00259{height:40.332453pt;}
.h7_c00259{height:41.681364pt;}
.h3_c00259{height:45.155808pt;}
.h2_c00259{height:65.994958pt;}
.h6_c00259{height:1110.960672pt;}
.h1_c00259{height:1122.559167pt;}
.h0_c00259{height:1122.666667pt;}
.w4_c00259{width:35.627200pt;}
.w2_c00259{width:36.415040pt;}
.w3_c00259{width:785.062974pt;}
.w1_c00259{width:793.257550pt;}
.w0_c00259{width:793.333333pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:1.370626pt;}
.x4_c00259{left:94.366803pt;}
.x1_c00259{left:95.726178pt;}
.x3_c00259{left:175.749304pt;}
.x5_c00259{left:251.590049pt;}
.x8_c00259{left:417.205109pt;}
.x6_c00259{left:535.166740pt;}
.x7_c00259{left:625.885123pt;}
.x9_c00259{left:632.537121pt;}
.xa_c00259{left:704.048000pt;}
.xb_c00259{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.107000;font-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_c00260{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:-14.062402px;}
.ws2_c00260{word-spacing:0.000000px;}
.ws1_c00260{word-spacing:17.040596px;}
._5_c00260{margin-left:-5.498440px;}
._b_c00260{margin-left:-4.066338px;}
._1_c00260{margin-left:-2.887239px;}
._3_c00260{margin-left:-1.750725px;}
._0_c00260{width:1.522265px;}
._4_c00260{width:3.068940px;}
._2_c00260{width:4.308527px;}
._9_c00260{width:5.825625px;}
._c_c00260{width:6.952482px;}
._d_c00260{width:8.205495px;}
._e_c00260{width:12.157455px;}
._6_c00260{width:36.224916px;}
._8_c00260{width:185.578389px;}
._a_c00260{width:381.660312px;}
._7_c00260{width:1014.471987px;}
.fc0_c00260{color:rgb(35,31,32);}
.fs2_c00260{font-size:50.584180px;}
.fs1_c00260{font-size:54.800738px;}
.fs0_c00260{font-size:80.090968px;}
.y0_c00260{bottom:0.000000px;}
.y1_c00260{bottom:0.120938px;}
.y6_c00260{bottom:2.845041px;}
.y29_c00260{bottom:2.849733px;}
.y7_c00260{bottom:6.826644px;}
.y27_c00260{bottom:63.350901px;}
.y28_c00260{bottom:64.122840px;}
.y2a_c00260{bottom:66.851636px;}
.y26_c00260{bottom:502.777226px;}
.y25_c00260{bottom:527.892166px;}
.y24_c00260{bottom:528.958806px;}
.y23_c00260{bottom:557.643445px;}
.y22_c00260{bottom:574.383438px;}
.y21_c00260{bottom:607.156775px;}
.y20_c00260{bottom:632.273065px;}
.y1f_c00260{bottom:633.339705px;}
.y1e_c00260{bottom:662.020894px;}
.y1d_c00260{bottom:677.694988px;}
.y1c_c00260{bottom:694.439181px;}
.y1b_c00260{bottom:727.213868px;}
.y1a_c00260{bottom:752.330158px;}
.y19_c00260{bottom:753.396798px;}
.y18_c00260{bottom:782.075887px;}
.y17_c00260{bottom:797.924281px;}
.y16_c00260{bottom:814.672074px;}
.y15_c00260{bottom:847.444061px;}
.y14_c00260{bottom:872.561851px;}
.y13_c00260{bottom:873.628491px;}
.y12_c00260{bottom:902.308930px;}
.y11_c00260{bottom:917.980924px;}
.y10_c00260{bottom:934.727967px;}
.yf_c00260{bottom:967.501304px;}
.ye_c00260{bottom:992.614744px;}
.yd_c00260{bottom:993.686306px;}
.yc_c00260{bottom:1022.363294px;}
.yb_c00260{bottom:1038.217988px;}
.ya_c00260{bottom:1054.782931px;}
.y9_c00260{bottom:1082.748920px;}
.y8_c00260{bottom:1141.529397px;}
.y5_c00260{bottom:1145.511000px;}
.y4_c00260{bottom:1171.217494px;}
.y3_c00260{bottom:1187.959587px;}
.y2_c00260{bottom:1216.992076px;}
.h8_c00260{height:14.250240px;}
.h4_c00260{height:14.252400px;}
.h5_c00260{height:45.374009px;}
.h7_c00260{height:46.891535px;}
.h3_c00260{height:50.800284px;}
.h2_c00260{height:74.244327px;}
.h6_c00260{height:1249.830756px;}
.h1_c00260{height:1262.879062px;}
.h0_c00260{height:1263.000000px;}
.w4_c00260{width:40.080600px;}
.w2_c00260{width:40.966920px;}
.w3_c00260{width:883.195846px;}
.w1_c00260{width:892.414744px;}
.w0_c00260{width:892.500000px;}
.x0_c00260{left:0.000000px;}
.x2_c00260{left:1.541954px;}
.x4_c00260{left:106.162653px;}
.x1_c00260{left:107.691951px;}
.x3_c00260{left:197.717966px;}
.x5_c00260{left:283.032814px;}
.x7_c00260{left:469.350429px;}
.x8_c00260{left:704.118890px;}
.x6_c00260{left:711.596426px;}
.x9_c00260{left:792.054000px;}
.xa_c00260{left:845.660005px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws0_c00260{word-spacing:-12.499913pt;}
.ws2_c00260{word-spacing:0.000000pt;}
.ws1_c00260{word-spacing:15.147197pt;}
._5_c00260{margin-left:-4.887502pt;}
._b_c00260{margin-left:-3.614522pt;}
._1_c00260{margin-left:-2.566435pt;}
._3_c00260{margin-left:-1.556200pt;}
._0_c00260{width:1.353124pt;}
._4_c00260{width:2.727947pt;}
._2_c00260{width:3.829802pt;}
._9_c00260{width:5.178333pt;}
._c_c00260{width:6.179984pt;}
._d_c00260{width:7.293773pt;}
._e_c00260{width:10.806627pt;}
._6_c00260{width:32.199926pt;}
._8_c00260{width:164.958568pt;}
._a_c00260{width:339.253611pt;}
._7_c00260{width:901.752877pt;}
.fs2_c00260{font-size:44.963715pt;}
.fs1_c00260{font-size:48.711767pt;}
.fs0_c00260{font-size:71.191972pt;}
.y0_c00260{bottom:0.000000pt;}
.y1_c00260{bottom:0.107500pt;}
.y6_c00260{bottom:2.528925pt;}
.y29_c00260{bottom:2.533096pt;}
.y7_c00260{bottom:6.068128pt;}
.y27_c00260{bottom:56.311912pt;}
.y28_c00260{bottom:56.998080pt;}
.y2a_c00260{bottom:59.423676pt;}
.y26_c00260{bottom:446.913089pt;}
.y25_c00260{bottom:469.237481pt;}
.y24_c00260{bottom:470.185605pt;}
.y23_c00260{bottom:495.683062pt;}
.y22_c00260{bottom:510.563056pt;}
.y21_c00260{bottom:539.694911pt;}
.y20_c00260{bottom:562.020502pt;}
.y1f_c00260{bottom:562.968627pt;}
.y1e_c00260{bottom:588.463017pt;}
.y1d_c00260{bottom:602.395545pt;}
.y1c_c00260{bottom:617.279272pt;}
.y1b_c00260{bottom:646.412327pt;}
.y1a_c00260{bottom:668.737918pt;}
.y19_c00260{bottom:669.686043pt;}
.y18_c00260{bottom:695.178566pt;}
.y17_c00260{bottom:709.266027pt;}
.y16_c00260{bottom:724.152955pt;}
.y15_c00260{bottom:753.283610pt;}
.y14_c00260{bottom:775.610534pt;}
.y13_c00260{bottom:776.558659pt;}
.y12_c00260{bottom:802.052382pt;}
.y11_c00260{bottom:815.983043pt;}
.y10_c00260{bottom:830.869304pt;}
.yf_c00260{bottom:860.001159pt;}
.ye_c00260{bottom:882.324217pt;}
.yd_c00260{bottom:883.276716pt;}
.yc_c00260{bottom:908.767373pt;}
.yb_c00260{bottom:922.860434pt;}
.ya_c00260{bottom:937.584828pt;}
.y9_c00260{bottom:962.443485pt;}
.y8_c00260{bottom:1014.692797pt;}
.y5_c00260{bottom:1018.232000pt;}
.y4_c00260{bottom:1041.082217pt;}
.y3_c00260{bottom:1055.964078pt;}
.y2_c00260{bottom:1081.770734pt;}
.h8_c00260{height:12.666880pt;}
.h4_c00260{height:12.668800pt;}
.h5_c00260{height:40.332453pt;}
.h7_c00260{height:41.681364pt;}
.h3_c00260{height:45.155808pt;}
.h2_c00260{height:65.994958pt;}
.h6_c00260{height:1110.960672pt;}
.h1_c00260{height:1122.559167pt;}
.h0_c00260{height:1122.666667pt;}
.w4_c00260{width:35.627200pt;}
.w2_c00260{width:36.415040pt;}
.w3_c00260{width:785.062974pt;}
.w1_c00260{width:793.257550pt;}
.w0_c00260{width:793.333333pt;}
.x0_c00260{left:0.000000pt;}
.x2_c00260{left:1.370626pt;}
.x4_c00260{left:94.366803pt;}
.x1_c00260{left:95.726178pt;}
.x3_c00260{left:175.749304pt;}
.x5_c00260{left:251.584724pt;}
.x7_c00260{left:417.200381pt;}
.x8_c00260{left:625.883458pt;}
.x6_c00260{left:632.530157pt;}
.x9_c00260{left:704.048000pt;}
.xa_c00260{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.107000;font-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_c00261{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.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:-14.062402px;}
.ws2_c00261{word-spacing:0.000000px;}
.ws1_c00261{word-spacing:17.040596px;}
._5_c00261{margin-left:-5.498440px;}
._a_c00261{margin-left:-4.196030px;}
._1_c00261{margin-left:-2.887239px;}
._3_c00261{margin-left:-1.750725px;}
._0_c00261{width:1.522265px;}
._4_c00261{width:3.068940px;}
._2_c00261{width:4.308527px;}
._9_c00261{width:5.825625px;}
._d_c00261{width:7.006889px;}
._f_c00261{width:10.742996px;}
._e_c00261{width:12.368829px;}
._c_c00261{width:16.022617px;}
._6_c00261{width:36.224916px;}
._11_c00261{width:64.717194px;}
._1a_c00261{width:113.210964px;}
._1d_c00261{width:120.078401px;}
._10_c00261{width:124.274671px;}
._14_c00261{width:145.248223px;}
._1b_c00261{width:182.675286px;}
._8_c00261{width:185.578389px;}
._16_c00261{width:206.682128px;}
._1c_c00261{width:208.564480px;}
._17_c00261{width:212.755534px;}
._19_c00261{width:216.747921px;}
._12_c00261{width:230.158390px;}
._1e_c00261{width:256.198705px;}
._b_c00261{width:298.455733px;}
._18_c00261{width:315.876621px;}
._13_c00261{width:321.999713px;}
._15_c00261{width:331.155786px;}
._7_c00261{width:1014.471987px;}
.fc0_c00261{color:rgb(35,31,32);}
.fs2_c00261{font-size:50.584180px;}
.fs1_c00261{font-size:54.800738px;}
.fs3_c00261{font-size:71.662171px;}
.fs0_c00261{font-size:80.090968px;}
.y0_c00261{bottom:0.000000px;}
.y1_c00261{bottom:0.120938px;}
.y6_c00261{bottom:2.845041px;}
.y36_c00261{bottom:2.849733px;}
.y7_c00261{bottom:6.826644px;}
.y34_c00261{bottom:63.355074px;}
.y35_c00261{bottom:64.122840px;}
.y37_c00261{bottom:66.851636px;}
.y33_c00261{bottom:216.181013px;}
.y32_c00261{bottom:241.298803px;}
.y31_c00261{bottom:242.368256px;}
.y30_c00261{bottom:267.834000px;}
.y2f_c00261{bottom:290.988590px;}
.y2e_c00261{bottom:317.352880px;}
.y2d_c00261{bottom:333.206223px;}
.y2c_c00261{bottom:348.880317px;}
.y2b_c00261{bottom:365.624511px;}
.y2a_c00261{bottom:398.394997px;}
.y29_c00261{bottom:423.514137px;}
.y28_c00261{bottom:424.582183px;}
.y27_c00261{bottom:450.059570px;}
.y26_c00261{bottom:473.389960px;}
.y25_c00261{bottom:499.577850px;}
.y24_c00261{bottom:515.426244px;}
.y23_c00261{bottom:532.171187px;}
.y22_c00261{bottom:564.948724px;}
.y21_c00261{bottom:590.062164px;}
.y20_c00261{bottom:591.131617px;}
.y1f_c00261{bottom:616.603153px;}
.y1e_c00261{bottom:639.757744px;}
.y1d_c00261{bottom:666.119333px;}
.y1c_c00261{bottom:681.974027px;}
.y1b_c00261{bottom:698.715370px;}
.y1a_c00261{bottom:731.492157px;}
.y19_c00261{bottom:756.607097px;}
.y18_c00261{bottom:757.676550px;}
.y17_c00261{bottom:783.143287px;}
.y16_c00261{bottom:806.304177px;}
.y15_c00261{bottom:832.664267px;}
.y14_c00261{bottom:848.518960px;}
.y13_c00261{bottom:865.261804px;}
.y12_c00261{bottom:898.035141px;}
.y11_c00261{bottom:923.153531px;}
.y10_c00261{bottom:924.222984px;}
.yf_c00261{bottom:949.694923px;}
.ye_c00261{bottom:972.850864px;}
.yd_c00261{bottom:999.215154px;}
.yc_c00261{bottom:1015.068497px;}
.yb_c00261{bottom:1031.633441px;}
.ya_c00261{bottom:1049.621433px;}
.y9_c00261{bottom:1082.748920px;}
.y8_c00261{bottom:1141.529397px;}
.y5_c00261{bottom:1145.511000px;}
.y4_c00261{bottom:1171.217494px;}
.y3_c00261{bottom:1187.959587px;}
.y2_c00261{bottom:1216.992076px;}
.h9_c00261{height:14.250240px;}
.h4_c00261{height:14.252400px;}
.h5_c00261{height:45.374009px;}
.h8_c00261{height:46.891535px;}
.h3_c00261{height:50.800284px;}
.h7_c00261{height:66.430833px;}
.h2_c00261{height:74.244327px;}
.h6_c00261{height:1249.830756px;}
.h1_c00261{height:1262.879062px;}
.h0_c00261{height:1263.000000px;}
.w4_c00261{width:40.080600px;}
.w2_c00261{width:40.966920px;}
.w3_c00261{width:883.195846px;}
.w1_c00261{width:892.414744px;}
.w0_c00261{width:892.500000px;}
.x0_c00261{left:0.000000px;}
.x2_c00261{left:1.541954px;}
.x4_c00261{left:106.162653px;}
.x1_c00261{left:107.691951px;}
.x3_c00261{left:197.717966px;}
.x5_c00261{left:283.041801px;}
.x7_c00261{left:469.357507px;}
.x6_c00261{left:718.907758px;}
.x8_c00261{left:792.054000px;}
.x9_c00261{left:845.660005px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:-12.499913pt;}
.ws2_c00261{word-spacing:0.000000pt;}
.ws1_c00261{word-spacing:15.147197pt;}
._5_c00261{margin-left:-4.887502pt;}
._a_c00261{margin-left:-3.729804pt;}
._1_c00261{margin-left:-2.566435pt;}
._3_c00261{margin-left:-1.556200pt;}
._0_c00261{width:1.353124pt;}
._4_c00261{width:2.727947pt;}
._2_c00261{width:3.829802pt;}
._9_c00261{width:5.178333pt;}
._d_c00261{width:6.228345pt;}
._f_c00261{width:9.549329pt;}
._e_c00261{width:10.994514pt;}
._c_c00261{width:14.242326pt;}
._6_c00261{width:32.199926pt;}
._11_c00261{width:57.526394pt;}
._1a_c00261{width:100.631968pt;}
._1d_c00261{width:106.736356pt;}
._10_c00261{width:110.466374pt;}
._14_c00261{width:129.109531pt;}
._1b_c00261{width:162.378032pt;}
._8_c00261{width:164.958568pt;}
._16_c00261{width:183.717447pt;}
._1c_c00261{width:185.390649pt;}
._17_c00261{width:189.116030pt;}
._19_c00261{width:192.664819pt;}
._12_c00261{width:204.585236pt;}
._1e_c00261{width:227.732182pt;}
._b_c00261{width:265.293985pt;}
._18_c00261{width:280.779219pt;}
._13_c00261{width:286.221967pt;}
._15_c00261{width:294.360699pt;}
._7_c00261{width:901.752877pt;}
.fs2_c00261{font-size:44.963715pt;}
.fs1_c00261{font-size:48.711767pt;}
.fs3_c00261{font-size:63.699708pt;}
.fs0_c00261{font-size:71.191972pt;}
.y0_c00261{bottom:0.000000pt;}
.y1_c00261{bottom:0.107500pt;}
.y6_c00261{bottom:2.528925pt;}
.y36_c00261{bottom:2.533096pt;}
.y7_c00261{bottom:6.068128pt;}
.y34_c00261{bottom:56.315622pt;}
.y35_c00261{bottom:56.998080pt;}
.y37_c00261{bottom:59.423676pt;}
.y33_c00261{bottom:192.160901pt;}
.y32_c00261{bottom:214.487825pt;}
.y31_c00261{bottom:215.438450pt;}
.y30_c00261{bottom:238.074666pt;}
.y2f_c00261{bottom:258.656525pt;}
.y2e_c00261{bottom:282.091449pt;}
.y2d_c00261{bottom:296.183310pt;}
.y2c_c00261{bottom:310.115838pt;}
.y2b_c00261{bottom:324.999565pt;}
.y2a_c00261{bottom:354.128887pt;}
.y29_c00261{bottom:376.457011pt;}
.y28_c00261{bottom:377.406385pt;}
.y27_c00261{bottom:400.052951pt;}
.y26_c00261{bottom:420.791076pt;}
.y25_c00261{bottom:444.069200pt;}
.y24_c00261{bottom:458.156661pt;}
.y23_c00261{bottom:473.041055pt;}
.y22_c00261{bottom:502.176643pt;}
.y21_c00261{bottom:524.499701pt;}
.y20_c00261{bottom:525.450326pt;}
.y1f_c00261{bottom:548.091692pt;}
.y1e_c00261{bottom:568.673550pt;}
.y1d_c00261{bottom:592.106074pt;}
.y1c_c00261{bottom:606.199135pt;}
.y1b_c00261{bottom:621.080329pt;}
.y1a_c00261{bottom:650.215251pt;}
.y19_c00261{bottom:672.539642pt;}
.y18_c00261{bottom:673.490267pt;}
.y17_c00261{bottom:696.127366pt;}
.y16_c00261{bottom:716.714824pt;}
.y15_c00261{bottom:740.146015pt;}
.y14_c00261{bottom:754.239076pt;}
.y13_c00261{bottom:769.121603pt;}
.y12_c00261{bottom:798.253458pt;}
.y11_c00261{bottom:820.580916pt;}
.y10_c00261{bottom:821.531541pt;}
.yf_c00261{bottom:844.173265pt;}
.ye_c00261{bottom:864.756324pt;}
.yd_c00261{bottom:888.191248pt;}
.yc_c00261{bottom:902.283109pt;}
.yb_c00261{bottom:917.007503pt;}
.ya_c00261{bottom:932.996830pt;}
.y9_c00261{bottom:962.443485pt;}
.y8_c00261{bottom:1014.692797pt;}
.y5_c00261{bottom:1018.232000pt;}
.y4_c00261{bottom:1041.082217pt;}
.y3_c00261{bottom:1055.964078pt;}
.y2_c00261{bottom:1081.770734pt;}
.h9_c00261{height:12.666880pt;}
.h4_c00261{height:12.668800pt;}
.h5_c00261{height:40.332453pt;}
.h8_c00261{height:41.681364pt;}
.h3_c00261{height:45.155808pt;}
.h7_c00261{height:59.049629pt;}
.h2_c00261{height:65.994958pt;}
.h6_c00261{height:1110.960672pt;}
.h1_c00261{height:1122.559167pt;}
.h0_c00261{height:1122.666667pt;}
.w4_c00261{width:35.627200pt;}
.w2_c00261{width:36.415040pt;}
.w3_c00261{width:785.062974pt;}
.w1_c00261{width:793.257550pt;}
.w0_c00261{width:793.333333pt;}
.x0_c00261{left:0.000000pt;}
.x2_c00261{left:1.370626pt;}
.x4_c00261{left:94.366803pt;}
.x1_c00261{left:95.726178pt;}
.x3_c00261{left:175.749304pt;}
.x5_c00261{left:251.592712pt;}
.x7_c00261{left:417.206673pt;}
.x6_c00261{left:639.029118pt;}
.x8_c00261{left:704.048000pt;}
.x9_c00261{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.107000;font-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_c00262{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls0_c00262{letter-spacing:0.000000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-14.062402px;}
.ws2_c00262{word-spacing:0.000000px;}
.ws1_c00262{word-spacing:17.040596px;}
._1b_c00262{margin-left:-6.721371px;}
._5_c00262{margin-left:-5.498440px;}
._c_c00262{margin-left:-4.029280px;}
._1_c00262{margin-left:-2.887239px;}
._3_c00262{margin-left:-1.750725px;}
._0_c00262{width:1.522265px;}
._4_c00262{width:3.068940px;}
._2_c00262{width:4.308527px;}
._b_c00262{width:5.645289px;}
._17_c00262{width:7.032163px;}
._18_c00262{width:8.091271px;}
._a_c00262{width:16.022343px;}
._6_c00262{width:36.224916px;}
._e_c00262{width:64.718028px;}
._13_c00262{width:115.772283px;}
._19_c00262{width:120.078950px;}
._d_c00262{width:125.605957px;}
._11_c00262{width:145.248309px;}
._14_c00262{width:166.793035px;}
._8_c00262{width:185.578389px;}
._1d_c00262{width:196.708969px;}
._1a_c00262{width:204.254269px;}
._1c_c00262{width:208.739006px;}
._9_c00262{width:212.756541px;}
._15_c00262{width:292.354597px;}
._16_c00262{width:301.179433px;}
._10_c00262{width:321.999708px;}
._f_c00262{width:328.004631px;}
._12_c00262{width:331.160881px;}
._7_c00262{width:1014.471987px;}
.fc0_c00262{color:rgb(35,31,32);}
.fs2_c00262{font-size:50.584180px;}
.fs1_c00262{font-size:54.800738px;}
.fs0_c00262{font-size:80.090968px;}
.y0_c00262{bottom:0.000000px;}
.y1_c00262{bottom:0.120938px;}
.y6_c00262{bottom:2.845041px;}
.y33_c00262{bottom:2.849733px;}
.y7_c00262{bottom:6.826644px;}
.y31_c00262{bottom:63.353435px;}
.y32_c00262{bottom:64.122840px;}
.y34_c00262{bottom:66.851636px;}
.y30_c00262{bottom:310.944836px;}
.y2f_c00262{bottom:336.061876px;}
.y2e_c00262{bottom:337.129218px;}
.y2d_c00262{bottom:362.597755px;}
.y2c_c00262{bottom:385.752345px;}
.y2b_c00262{bottom:412.115285px;}
.y2a_c00262{bottom:427.969379px;}
.y29_c00262{bottom:443.822722px;}
.y28_c00262{bottom:460.565566px;}
.y27_c00262{bottom:493.341752px;}
.y26_c00262{bottom:518.455192px;}
.y25_c00262{bottom:519.524645px;}
.y24_c00262{bottom:545.000382px;}
.y23_c00262{bottom:568.155723px;}
.y22_c00262{bottom:594.517312px;}
.y21_c00262{bottom:611.262855px;}
.y20_c00262{bottom:644.039042px;}
.y1f_c00262{bottom:669.151132px;}
.y1e_c00262{bottom:670.220585px;}
.y1d_c00262{bottom:695.689066px;}
.y1c_c00262{bottom:718.842307px;}
.y1b_c00262{bottom:745.205246px;}
.y1a_c00262{bottom:761.058590px;}
.y19_c00262{bottom:777.622783px;}
.y18_c00262{bottom:810.578220px;}
.y17_c00262{bottom:835.693160px;}
.y16_c00262{bottom:836.764019px;}
.y15_c00262{bottom:862.232405px;}
.y14_c00262{bottom:885.389096px;}
.y13_c00262{bottom:911.752035px;}
.y12_c00262{bottom:927.601179px;}
.y11_c00262{bottom:944.168222px;}
.y10_c00262{bottom:977.120209px;}
.yf_c00262{bottom:1002.236499px;}
.ye_c00262{bottom:1003.305952px;}
.yd_c00262{bottom:1028.777892px;}
.yc_c00262{bottom:1051.935932px;}
.yb_c00262{bottom:1078.296022px;}
.ya_c00262{bottom:1093.972216px;}
.y9_c00262{bottom:1110.716409px;}
.y8_c00262{bottom:1141.529397px;}
.y5_c00262{bottom:1145.511000px;}
.y4_c00262{bottom:1171.217494px;}
.y3_c00262{bottom:1187.959587px;}
.y2_c00262{bottom:1216.992076px;}
.h8_c00262{height:14.250240px;}
.h4_c00262{height:14.252400px;}
.h5_c00262{height:45.374009px;}
.h7_c00262{height:46.891535px;}
.h3_c00262{height:50.800284px;}
.h2_c00262{height:74.244327px;}
.h6_c00262{height:1249.830756px;}
.h1_c00262{height:1262.879062px;}
.h0_c00262{height:1263.000000px;}
.w4_c00262{width:40.080600px;}
.w2_c00262{width:40.966920px;}
.w3_c00262{width:883.195846px;}
.w1_c00262{width:892.414744px;}
.w0_c00262{width:892.500000px;}
.x0_c00262{left:0.000000px;}
.x2_c00262{left:1.541954px;}
.x4_c00262{left:106.162653px;}
.x1_c00262{left:107.691951px;}
.x3_c00262{left:197.717966px;}
.x5_c00262{left:283.038805px;}
.x7_c00262{left:469.357507px;}
.x8_c00262{left:711.604261px;}
.x6_c00262{left:718.907758px;}
.x9_c00262{left:792.054000px;}
.xa_c00262{left:845.660005px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:-12.499913pt;}
.ws2_c00262{word-spacing:0.000000pt;}
.ws1_c00262{word-spacing:15.147197pt;}
._1b_c00262{margin-left:-5.974552pt;}
._5_c00262{margin-left:-4.887502pt;}
._c_c00262{margin-left:-3.581582pt;}
._1_c00262{margin-left:-2.566435pt;}
._3_c00262{margin-left:-1.556200pt;}
._0_c00262{width:1.353124pt;}
._4_c00262{width:2.727947pt;}
._2_c00262{width:3.829802pt;}
._b_c00262{width:5.018034pt;}
._17_c00262{width:6.250812pt;}
._18_c00262{width:7.192241pt;}
._a_c00262{width:14.242083pt;}
._6_c00262{width:32.199926pt;}
._e_c00262{width:57.527136pt;}
._13_c00262{width:102.908696pt;}
._19_c00262{width:106.736845pt;}
._d_c00262{width:111.649740pt;}
._11_c00262{width:129.109608pt;}
._14_c00262{width:148.260475pt;}
._8_c00262{width:164.958568pt;}
._1d_c00262{width:174.852417pt;}
._1a_c00262{width:181.559350pt;}
._1c_c00262{width:185.545783pt;}
._9_c00262{width:189.116925pt;}
._15_c00262{width:259.870753pt;}
._16_c00262{width:267.715052pt;}
._10_c00262{width:286.221963pt;}
._f_c00262{width:291.559672pt;}
._12_c00262{width:294.365227pt;}
._7_c00262{width:901.752877pt;}
.fs2_c00262{font-size:44.963715pt;}
.fs1_c00262{font-size:48.711767pt;}
.fs0_c00262{font-size:71.191972pt;}
.y0_c00262{bottom:0.000000pt;}
.y1_c00262{bottom:0.107500pt;}
.y6_c00262{bottom:2.528925pt;}
.y33_c00262{bottom:2.533096pt;}
.y7_c00262{bottom:6.068128pt;}
.y31_c00262{bottom:56.314164pt;}
.y32_c00262{bottom:56.998080pt;}
.y34_c00262{bottom:59.423676pt;}
.y30_c00262{bottom:276.395410pt;}
.y2f_c00262{bottom:298.721667pt;}
.y2e_c00262{bottom:299.670416pt;}
.y2d_c00262{bottom:322.309115pt;}
.y2c_c00262{bottom:342.890974pt;}
.y2b_c00262{bottom:366.324698pt;}
.y2a_c00262{bottom:380.417225pt;}
.y29_c00262{bottom:394.509086pt;}
.y28_c00262{bottom:409.391614pt;}
.y27_c00262{bottom:438.526002pt;}
.y26_c00262{bottom:460.849060pt;}
.y25_c00262{bottom:461.799685pt;}
.y24_c00262{bottom:484.444784pt;}
.y23_c00262{bottom:505.027309pt;}
.y22_c00262{bottom:528.459833pt;}
.y21_c00262{bottom:543.344760pt;}
.y20_c00262{bottom:572.479149pt;}
.y1f_c00262{bottom:594.801006pt;}
.y1e_c00262{bottom:595.751631pt;}
.y1d_c00262{bottom:618.390281pt;}
.y1c_c00262{bottom:638.970939pt;}
.y1b_c00262{bottom:662.404663pt;}
.y1a_c00262{bottom:676.496524pt;}
.y19_c00262{bottom:691.220252pt;}
.y18_c00262{bottom:720.513973pt;}
.y17_c00262{bottom:742.838364pt;}
.y16_c00262{bottom:743.790239pt;}
.y15_c00262{bottom:766.428804pt;}
.y14_c00262{bottom:787.012529pt;}
.y13_c00262{bottom:810.446253pt;}
.y12_c00262{bottom:824.534381pt;}
.y11_c00262{bottom:839.260642pt;}
.y10_c00262{bottom:868.551297pt;}
.yf_c00262{bottom:890.876888pt;}
.ye_c00262{bottom:891.827513pt;}
.yd_c00262{bottom:914.469237pt;}
.yc_c00262{bottom:935.054162pt;}
.yb_c00262{bottom:958.485353pt;}
.ya_c00262{bottom:972.419747pt;}
.y9_c00262{bottom:987.303475pt;}
.y8_c00262{bottom:1014.692797pt;}
.y5_c00262{bottom:1018.232000pt;}
.y4_c00262{bottom:1041.082217pt;}
.y3_c00262{bottom:1055.964078pt;}
.y2_c00262{bottom:1081.770734pt;}
.h8_c00262{height:12.666880pt;}
.h4_c00262{height:12.668800pt;}
.h5_c00262{height:40.332453pt;}
.h7_c00262{height:41.681364pt;}
.h3_c00262{height:45.155808pt;}
.h2_c00262{height:65.994958pt;}
.h6_c00262{height:1110.960672pt;}
.h1_c00262{height:1122.559167pt;}
.h0_c00262{height:1122.666667pt;}
.w4_c00262{width:35.627200pt;}
.w2_c00262{width:36.415040pt;}
.w3_c00262{width:785.062974pt;}
.w1_c00262{width:793.257550pt;}
.w0_c00262{width:793.333333pt;}
.x0_c00262{left:0.000000pt;}
.x2_c00262{left:1.370626pt;}
.x4_c00262{left:94.366803pt;}
.x1_c00262{left:95.726178pt;}
.x3_c00262{left:175.749304pt;}
.x5_c00262{left:251.590049pt;}
.x7_c00262{left:417.206673pt;}
.x8_c00262{left:632.537121pt;}
.x6_c00262{left:639.029118pt;}
.x9_c00262{left:704.048000pt;}
.xa_c00262{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.107000;font-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_c00263{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:-14.062402px;}
.ws2_c00263{word-spacing:0.000000px;}
.ws1_c00263{word-spacing:17.040596px;}
._5_c00263{margin-left:-5.498440px;}
._9_c00263{margin-left:-4.196030px;}
._1_c00263{margin-left:-2.887239px;}
._3_c00263{margin-left:-1.750725px;}
._0_c00263{width:1.522265px;}
._4_c00263{width:3.068940px;}
._2_c00263{width:4.308527px;}
._c_c00263{width:5.392527px;}
._1a_c00263{width:11.105054px;}
._1b_c00263{width:12.416810px;}
._b_c00263{width:16.022429px;}
._15_c00263{width:32.998213px;}
._6_c00263{width:36.224916px;}
._e_c00263{width:64.716865px;}
._16_c00263{width:113.210964px;}
._d_c00263{width:116.270853px;}
._1c_c00263{width:120.053750px;}
._14_c00263{width:121.493383px;}
._11_c00263{width:145.248177px;}
._17_c00263{width:166.898441px;}
._8_c00263{width:185.578389px;}
._19_c00263{width:192.621673px;}
._1d_c00263{width:201.896685px;}
._18_c00263{width:216.849965px;}
._13_c00263{width:301.406388px;}
._a_c00263{width:302.938657px;}
._10_c00263{width:322.000067px;}
._f_c00263{width:327.695254px;}
._12_c00263{width:331.168499px;}
._7_c00263{width:1014.471987px;}
.fc0_c00263{color:rgb(35,31,32);}
.fs2_c00263{font-size:50.584180px;}
.fs1_c00263{font-size:54.800738px;}
.fs3_c00263{font-size:71.662171px;}
.fs0_c00263{font-size:80.090968px;}
.y0_c00263{bottom:0.000000px;}
.y1_c00263{bottom:0.120938px;}
.y6_c00263{bottom:2.845041px;}
.y2f_c00263{bottom:2.849733px;}
.y7_c00263{bottom:6.826644px;}
.y2d_c00263{bottom:63.349919px;}
.y2e_c00263{bottom:64.122840px;}
.y30_c00263{bottom:66.851636px;}
.y2c_c00263{bottom:384.862790px;}
.y2b_c00263{bottom:409.978330px;}
.y2a_c00263{bottom:410.869189px;}
.y29_c00263{bottom:436.340332px;}
.y28_c00263{bottom:459.674923px;}
.y27_c00263{bottom:482.829514px;}
.y26_c00263{bottom:509.193803px;}
.y25_c00263{bottom:524.869247px;}
.y24_c00263{bottom:540.719140px;}
.y23_c00263{bottom:557.465434px;}
.y22_c00263{bottom:590.238771px;}
.y21_c00263{bottom:615.355061px;}
.y20_c00263{bottom:616.423107px;}
.y1f_c00263{bottom:641.894531px;}
.y1e_c00263{bottom:665.050471px;}
.y1d_c00263{bottom:688.383712px;}
.y1c_c00263{bottom:714.568001px;}
.y1b_c00263{bottom:730.420595px;}
.y1a_c00263{bottom:747.166138px;}
.y19_c00263{bottom:779.940825px;}
.y18_c00263{bottom:805.054265px;}
.y17_c00263{bottom:806.126531px;}
.y16_c00263{bottom:831.598274px;}
.y15_c00263{bottom:854.757815px;}
.y14_c00263{bottom:877.911056px;}
.y13_c00263{bottom:904.272645px;}
.y12_c00263{bottom:920.128839px;}
.y11_c00263{bottom:936.870182px;}
.y10_c00263{bottom:969.643519px;}
.yf_c00263{bottom:994.761909px;}
.ye_c00263{bottom:995.829955px;}
.yd_c00263{bottom:1021.295745px;}
.yc_c00263{bottom:1044.453785px;}
.yb_c00263{bottom:1070.815375px;}
.ya_c00263{bottom:1087.560918px;}
.y9_c00263{bottom:1105.553411px;}
.y8_c00263{bottom:1141.529397px;}
.y5_c00263{bottom:1145.511000px;}
.y4_c00263{bottom:1171.217494px;}
.y3_c00263{bottom:1187.959587px;}
.y2_c00263{bottom:1216.992076px;}
.h9_c00263{height:14.250240px;}
.h4_c00263{height:14.252400px;}
.h5_c00263{height:45.374009px;}
.h8_c00263{height:46.891535px;}
.h3_c00263{height:50.800284px;}
.h7_c00263{height:66.430833px;}
.h2_c00263{height:74.244327px;}
.h6_c00263{height:1249.830756px;}
.h1_c00263{height:1262.879062px;}
.h0_c00263{height:1263.000000px;}
.w4_c00263{width:40.080600px;}
.w2_c00263{width:40.966920px;}
.w3_c00263{width:883.195846px;}
.w1_c00263{width:892.414744px;}
.w0_c00263{width:892.500000px;}
.x0_c00263{left:0.000000px;}
.x2_c00263{left:1.541954px;}
.x4_c00263{left:106.162653px;}
.x1_c00263{left:107.691951px;}
.x3_c00263{left:197.717966px;}
.x5_c00263{left:283.038805px;}
.x7_c00263{left:469.357507px;}
.x6_c00263{left:718.907758px;}
.x8_c00263{left:792.054000px;}
.x9_c00263{left:845.660005px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws0_c00263{word-spacing:-12.499913pt;}
.ws2_c00263{word-spacing:0.000000pt;}
.ws1_c00263{word-spacing:15.147197pt;}
._5_c00263{margin-left:-4.887502pt;}
._9_c00263{margin-left:-3.729804pt;}
._1_c00263{margin-left:-2.566435pt;}
._3_c00263{margin-left:-1.556200pt;}
._0_c00263{width:1.353124pt;}
._4_c00263{width:2.727947pt;}
._2_c00263{width:3.829802pt;}
._c_c00263{width:4.793358pt;}
._1a_c00263{width:9.871159pt;}
._1b_c00263{width:11.037165pt;}
._b_c00263{width:14.242159pt;}
._15_c00263{width:29.331745pt;}
._6_c00263{width:32.199926pt;}
._e_c00263{width:57.526102pt;}
._16_c00263{width:100.631968pt;}
._d_c00263{width:103.351870pt;}
._1c_c00263{width:106.714445pt;}
._14_c00263{width:107.994118pt;}
._11_c00263{width:129.109491pt;}
._17_c00263{width:148.354170pt;}
._8_c00263{width:164.958568pt;}
._19_c00263{width:171.219264pt;}
._1d_c00263{width:179.463720pt;}
._18_c00263{width:192.755525pt;}
._13_c00263{width:267.916789pt;}
._a_c00263{width:269.278807pt;}
._10_c00263{width:286.222282pt;}
._f_c00263{width:291.284670pt;}
._12_c00263{width:294.371999pt;}
._7_c00263{width:901.752877pt;}
.fs2_c00263{font-size:44.963715pt;}
.fs1_c00263{font-size:48.711767pt;}
.fs3_c00263{font-size:63.699708pt;}
.fs0_c00263{font-size:71.191972pt;}
.y0_c00263{bottom:0.000000pt;}
.y1_c00263{bottom:0.107500pt;}
.y6_c00263{bottom:2.528925pt;}
.y2f_c00263{bottom:2.533096pt;}
.y7_c00263{bottom:6.068128pt;}
.y2d_c00263{bottom:56.311039pt;}
.y2e_c00263{bottom:56.998080pt;}
.y30_c00263{bottom:59.423676pt;}
.y2c_c00263{bottom:342.100258pt;}
.y2b_c00263{bottom:364.425182pt;}
.y2a_c00263{bottom:365.217057pt;}
.y29_c00263{bottom:387.858073pt;}
.y28_c00263{bottom:408.599931pt;}
.y27_c00263{bottom:429.181790pt;}
.y26_c00263{bottom:452.616714pt;}
.y25_c00263{bottom:466.550442pt;}
.y24_c00263{bottom:480.639236pt;}
.y23_c00263{bottom:495.524830pt;}
.y22_c00263{bottom:524.656685pt;}
.y21_c00263{bottom:546.982276pt;}
.y20_c00263{bottom:547.931650pt;}
.y1f_c00263{bottom:570.572916pt;}
.y1e_c00263{bottom:591.155974pt;}
.y1d_c00263{bottom:611.896633pt;}
.y1c_c00263{bottom:635.171557pt;}
.y1b_c00263{bottom:649.262751pt;}
.y1a_c00263{bottom:664.147679pt;}
.y19_c00263{bottom:693.280734pt;}
.y18_c00263{bottom:715.603791pt;}
.y17_c00263{bottom:716.556916pt;}
.y16_c00263{bottom:739.198466pt;}
.y15_c00263{bottom:759.784724pt;}
.y14_c00263{bottom:780.365383pt;}
.y13_c00263{bottom:803.797907pt;}
.y12_c00263{bottom:817.892301pt;}
.y11_c00263{bottom:832.773495pt;}
.y10_c00263{bottom:861.905350pt;}
.yf_c00263{bottom:884.232808pt;}
.ye_c00263{bottom:885.182182pt;}
.yd_c00263{bottom:907.818440pt;}
.yc_c00263{bottom:928.403365pt;}
.yb_c00263{bottom:951.835889pt;}
.ya_c00263{bottom:966.720816pt;}
.y9_c00263{bottom:982.714143pt;}
.y8_c00263{bottom:1014.692797pt;}
.y5_c00263{bottom:1018.232000pt;}
.y4_c00263{bottom:1041.082217pt;}
.y3_c00263{bottom:1055.964078pt;}
.y2_c00263{bottom:1081.770734pt;}
.h9_c00263{height:12.666880pt;}
.h4_c00263{height:12.668800pt;}
.h5_c00263{height:40.332453pt;}
.h8_c00263{height:41.681364pt;}
.h3_c00263{height:45.155808pt;}
.h7_c00263{height:59.049629pt;}
.h2_c00263{height:65.994958pt;}
.h6_c00263{height:1110.960672pt;}
.h1_c00263{height:1122.559167pt;}
.h0_c00263{height:1122.666667pt;}
.w4_c00263{width:35.627200pt;}
.w2_c00263{width:36.415040pt;}
.w3_c00263{width:785.062974pt;}
.w1_c00263{width:793.257550pt;}
.w0_c00263{width:793.333333pt;}
.x0_c00263{left:0.000000pt;}
.x2_c00263{left:1.370626pt;}
.x4_c00263{left:94.366803pt;}
.x1_c00263{left:95.726178pt;}
.x3_c00263{left:175.749304pt;}
.x5_c00263{left:251.590049pt;}
.x7_c00263{left:417.206673pt;}
.x6_c00263{left:639.029118pt;}
.x8_c00263{left:704.048000pt;}
.x9_c00263{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3abda76e2585d9868fac95f7.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.137000;font-style:normal;font-weight:normal;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_98bb09970289ca160802b915.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.107000;font-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_c00264{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls0_c00264{letter-spacing:0.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:-14.062402px;}
.ws2_c00264{word-spacing:0.000000px;}
.ws1_c00264{word-spacing:17.040596px;}
._5_c00264{margin-left:-5.498440px;}
._9_c00264{margin-left:-4.196030px;}
._1_c00264{margin-left:-2.887239px;}
._3_c00264{margin-left:-1.750725px;}
._0_c00264{width:1.522265px;}
._4_c00264{width:3.068940px;}
._2_c00264{width:4.308527px;}
._c_c00264{width:5.327777px;}
._b_c00264{width:16.022723px;}
._1a_c00264{width:33.005455px;}
._6_c00264{width:36.224916px;}
._e_c00264{width:64.716860px;}
._d_c00264{width:120.127338px;}
._15_c00264{width:121.485301px;}
._f_c00264{width:132.792082px;}
._11_c00264{width:145.249275px;}
._1c_c00264{width:172.153006px;}
._8_c00264{width:185.578389px;}
._16_c00264{width:213.048031px;}
._19_c00264{width:238.268813px;}
._10_c00264{width:262.707169px;}
._12_c00264{width:271.928581px;}
._14_c00264{width:288.906004px;}
._17_c00264{width:292.355280px;}
._18_c00264{width:301.191459px;}
._a_c00264{width:302.195223px;}
._13_c00264{width:321.934490px;}
._1b_c00264{width:330.846083px;}
._7_c00264{width:1014.471987px;}
.fc0_c00264{color:rgb(35,31,32);}
.fs2_c00264{font-size:50.584180px;}
.fs1_c00264{font-size:54.800738px;}
.fs3_c00264{font-size:71.662171px;}
.fs0_c00264{font-size:80.090968px;}
.y0_c00264{bottom:0.000000px;}
.y1_c00264{bottom:0.120938px;}
.y6_c00264{bottom:2.845041px;}
.y32_c00264{bottom:2.849733px;}
.y7_c00264{bottom:6.826644px;}
.y30_c00264{bottom:63.350669px;}
.y31_c00264{bottom:64.122840px;}
.y33_c00264{bottom:66.851636px;}
.y2f_c00264{bottom:344.783556px;}
.y2e_c00264{bottom:369.899846px;}
.y2d_c00264{bottom:370.970705px;}
.y2c_c00264{bottom:396.442091px;}
.y2b_c00264{bottom:419.596682px;}
.y2a_c00264{bottom:442.754723px;}
.y29_c00264{bottom:465.910663px;}
.y28_c00264{bottom:492.272253px;}
.y27_c00264{bottom:508.125597px;}
.y26_c00264{bottom:523.979690px;}
.y25_c00264{bottom:539.654384px;}
.y24_c00264{bottom:555.506378px;}
.y23_c00264{bottom:571.358371px;}
.y22_c00264{bottom:587.213065px;}
.y21_c00264{bottom:603.779358px;}
.y20_c00264{bottom:636.729245px;}
.y1f_c00264{bottom:652.408889px;}
.y1e_c00264{bottom:677.519629px;}
.y1d_c00264{bottom:678.589082px;}
.y1c_c00264{bottom:704.060618px;}
.y1b_c00264{bottom:727.216559px;}
.y1a_c00264{bottom:753.578148px;}
.y19_c00264{bottom:770.322342px;}
.y18_c00264{bottom:803.099129px;}
.y17_c00264{bottom:828.212568px;}
.y16_c00264{bottom:829.282022px;}
.y15_c00264{bottom:854.754102px;}
.y14_c00264{bottom:877.908693px;}
.y13_c00264{bottom:904.271633px;}
.y12_c00264{bottom:921.012976px;}
.y11_c00264{bottom:953.792013px;}
.y10_c00264{bottom:978.904103px;}
.yf_c00264{bottom:979.974961px;}
.ye_c00264{bottom:1005.443751px;}
.yd_c00264{bottom:1028.778342px;}
.yc_c00264{bottom:1054.961281px;}
.yb_c00264{bottom:1070.815375px;}
.ya_c00264{bottom:1087.560918px;}
.y9_c00264{bottom:1105.553411px;}
.y8_c00264{bottom:1141.529397px;}
.y5_c00264{bottom:1145.511000px;}
.y4_c00264{bottom:1171.217494px;}
.y3_c00264{bottom:1187.959587px;}
.y2_c00264{bottom:1216.992076px;}
.h9_c00264{height:14.250240px;}
.h4_c00264{height:14.252400px;}
.h5_c00264{height:45.374009px;}
.h8_c00264{height:46.891535px;}
.h3_c00264{height:50.800284px;}
.h7_c00264{height:66.430833px;}
.h2_c00264{height:74.244327px;}
.h6_c00264{height:1249.830756px;}
.h1_c00264{height:1262.879062px;}
.h0_c00264{height:1263.000000px;}
.w4_c00264{width:40.080600px;}
.w2_c00264{width:40.966920px;}
.w3_c00264{width:883.195846px;}
.w1_c00264{width:892.414744px;}
.w0_c00264{width:892.500000px;}
.x0_c00264{left:0.000000px;}
.x2_c00264{left:1.541954px;}
.x4_c00264{left:106.162653px;}
.x1_c00264{left:107.691951px;}
.x3_c00264{left:197.717966px;}
.x5_c00264{left:283.035810px;}
.x7_c00264{left:469.355747px;}
.x6_c00264{left:704.120764px;}
.x8_c00264{left:711.604261px;}
.x9_c00264{left:792.054000px;}
.xa_c00264{left:845.660005px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws0_c00264{word-spacing:-12.499913pt;}
.ws2_c00264{word-spacing:0.000000pt;}
.ws1_c00264{word-spacing:15.147197pt;}
._5_c00264{margin-left:-4.887502pt;}
._9_c00264{margin-left:-3.729804pt;}
._1_c00264{margin-left:-2.566435pt;}
._3_c00264{margin-left:-1.556200pt;}
._0_c00264{width:1.353124pt;}
._4_c00264{width:2.727947pt;}
._2_c00264{width:3.829802pt;}
._c_c00264{width:4.735802pt;}
._b_c00264{width:14.242420pt;}
._1a_c00264{width:29.338182pt;}
._6_c00264{width:32.199926pt;}
._e_c00264{width:57.526098pt;}
._d_c00264{width:106.779856pt;}
._15_c00264{width:107.986934pt;}
._f_c00264{width:118.037406pt;}
._11_c00264{width:129.110466pt;}
._1c_c00264{width:153.024895pt;}
._8_c00264{width:164.958568pt;}
._16_c00264{width:189.376027pt;}
._19_c00264{width:211.794500pt;}
._10_c00264{width:233.517483pt;}
._12_c00264{width:241.714294pt;}
._14_c00264{width:256.805337pt;}
._17_c00264{width:259.871360pt;}
._18_c00264{width:267.725741pt;}
._a_c00264{width:268.617976pt;}
._13_c00264{width:286.163991pt;}
._1b_c00264{width:294.085407pt;}
._7_c00264{width:901.752877pt;}
.fs2_c00264{font-size:44.963715pt;}
.fs1_c00264{font-size:48.711767pt;}
.fs3_c00264{font-size:63.699708pt;}
.fs0_c00264{font-size:71.191972pt;}
.y0_c00264{bottom:0.000000pt;}
.y1_c00264{bottom:0.107500pt;}
.y6_c00264{bottom:2.528925pt;}
.y32_c00264{bottom:2.533096pt;}
.y7_c00264{bottom:6.068128pt;}
.y30_c00264{bottom:56.311706pt;}
.y31_c00264{bottom:56.998080pt;}
.y33_c00264{bottom:59.423676pt;}
.y2f_c00264{bottom:306.474272pt;}
.y2e_c00264{bottom:328.799863pt;}
.y2d_c00264{bottom:329.751738pt;}
.y2c_c00264{bottom:352.392970pt;}
.y2b_c00264{bottom:372.974828pt;}
.y2a_c00264{bottom:393.559753pt;}
.y29_c00264{bottom:414.142812pt;}
.y28_c00264{bottom:437.575336pt;}
.y27_c00264{bottom:451.667197pt;}
.y26_c00264{bottom:465.759725pt;}
.y25_c00264{bottom:479.692786pt;}
.y24_c00264{bottom:493.783447pt;}
.y23_c00264{bottom:507.874108pt;}
.y22_c00264{bottom:521.967169pt;}
.y21_c00264{bottom:536.692763pt;}
.y20_c00264{bottom:565.981551pt;}
.y1f_c00264{bottom:579.919012pt;}
.y1e_c00264{bottom:602.239670pt;}
.y1d_c00264{bottom:603.190295pt;}
.y1c_c00264{bottom:625.831661pt;}
.y1b_c00264{bottom:646.414719pt;}
.y1a_c00264{bottom:669.847243pt;}
.y19_c00264{bottom:684.730970pt;}
.y18_c00264{bottom:713.865892pt;}
.y17_c00264{bottom:736.188950pt;}
.y16_c00264{bottom:737.139575pt;}
.y15_c00264{bottom:759.781424pt;}
.y14_c00264{bottom:780.363283pt;}
.y13_c00264{bottom:803.797007pt;}
.y12_c00264{bottom:818.678201pt;}
.y11_c00264{bottom:847.815122pt;}
.y10_c00264{bottom:870.136980pt;}
.yf_c00264{bottom:871.088854pt;}
.ye_c00264{bottom:893.727779pt;}
.yd_c00264{bottom:914.469637pt;}
.yc_c00264{bottom:937.743361pt;}
.yb_c00264{bottom:951.835889pt;}
.ya_c00264{bottom:966.720816pt;}
.y9_c00264{bottom:982.714143pt;}
.y8_c00264{bottom:1014.692797pt;}
.y5_c00264{bottom:1018.232000pt;}
.y4_c00264{bottom:1041.082217pt;}
.y3_c00264{bottom:1055.964078pt;}
.y2_c00264{bottom:1081.770734pt;}
.h9_c00264{height:12.666880pt;}
.h4_c00264{height:12.668800pt;}
.h5_c00264{height:40.332453pt;}
.h8_c00264{height:41.681364pt;}
.h3_c00264{height:45.155808pt;}
.h7_c00264{height:59.049629pt;}
.h2_c00264{height:65.994958pt;}
.h6_c00264{height:1110.960672pt;}
.h1_c00264{height:1122.559167pt;}
.h0_c00264{height:1122.666667pt;}
.w4_c00264{width:35.627200pt;}
.w2_c00264{width:36.415040pt;}
.w3_c00264{width:785.062974pt;}
.w1_c00264{width:793.257550pt;}
.w0_c00264{width:793.333333pt;}
.x0_c00264{left:0.000000pt;}
.x2_c00264{left:1.370626pt;}
.x4_c00264{left:94.366803pt;}
.x1_c00264{left:95.726178pt;}
.x3_c00264{left:175.749304pt;}
.x5_c00264{left:251.587386pt;}
.x7_c00264{left:417.205109pt;}
.x6_c00264{left:625.885123pt;}
.x8_c00264{left:632.537121pt;}
.x9_c00264{left:704.048000pt;}
.xa_c00264{left:751.697783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:0.000000px;}
._0_c00265{width:1.050725px;}
.fc0_c00265{color:rgb(35,31,32);}
.fs0_c00265{font-size:106.873757px;}
.y0_c00265{bottom:0.000000px;}
.y1_c00265{bottom:0.120938px;}
.y2_c00265{bottom:407.959899px;}
.h2_c00265{height:95.865760px;}
.h1_c00265{height:1262.879062px;}
.h0_c00265{height:1263.000000px;}
.w1_c00265{width:892.414744px;}
.w0_c00265{width:892.500000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:108.404900px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.000000pt;}
._0_c00265{width:0.933978pt;}
.fs0_c00265{font-size:94.998895pt;}
.y0_c00265{bottom:0.000000pt;}
.y1_c00265{bottom:0.107500pt;}
.y2_c00265{bottom:362.631022pt;}
.h2_c00265{height:85.214009pt;}
.h1_c00265{height:1122.559167pt;}
.h0_c00265{height:1122.666667pt;}
.w1_c00265{width:793.257550pt;}
.w0_c00265{width:793.333333pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.113000;font-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_c00266{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:-20.840692px;}
.ws1_c00266{word-spacing:-16.387643px;}
.ws2_c00266{word-spacing:0.000000px;}
._5_c00266{margin-left:-15.797924px;}
._8_c00266{margin-left:-13.973152px;}
._3_c00266{margin-left:-12.024056px;}
._4_c00266{margin-left:-8.479838px;}
._6_c00266{margin-left:-6.804940px;}
._7_c00266{margin-left:-4.790426px;}
._2_c00266{margin-left:-3.317103px;}
._0_c00266{margin-left:-1.339562px;}
._1_c00266{width:1.056287px;}
.fc2_c00266{color:rgb(38,69,127);}
.fc1_c00266{color:rgb(105,148,45);}
.fc0_c00266{color:rgb(35,31,32);}
.fs4_c00266{font-size:41.324503px;}
.fs2_c00266{font-size:59.136936px;}
.fs0_c00266{font-size:65.550574px;}
.fs1_c00266{font-size:71.249972px;}
.fs3_c00266{font-size:83.362767px;}
.y0_c00266{bottom:0.000000px;}
.y1_c00266{bottom:0.120938px;}
.y8_c00266{bottom:6.826644px;}
.ya_c00266{bottom:65.133277px;}
.y3_c00266{bottom:83.414442px;}
.y2_c00266{bottom:84.131629px;}
.y18_c00266{bottom:734.698059px;}
.y17_c00266{bottom:750.373053px;}
.y16_c00266{bottom:777.983542px;}
.y15_c00266{bottom:805.591031px;}
.y14_c00266{bottom:833.377020px;}
.y13_c00266{bottom:860.987509px;}
.y12_c00266{bottom:888.774998px;}
.y11_c00266{bottom:916.384437px;}
.y10_c00266{bottom:935.088979px;}
.yf_c00266{bottom:973.380964px;}
.ye_c00266{bottom:1012.928448px;}
.yd_c00266{bottom:1040.537437px;}
.yc_c00266{bottom:1053.360932px;}
.yb_c00266{bottom:1077.586372px;}
.y9_c00266{bottom:1094.153416px;}
.y7_c00266{bottom:1125.258112px;}
.y6_c00266{bottom:1146.098804px;}
.y5_c00266{bottom:1166.584296px;}
.y4_c00266{bottom:1187.067088px;}
.h9_c00266{height:26.117086px;}
.h7_c00266{height:37.374544px;}
.h6_c00266{height:41.427963px;}
.h2_c00266{height:58.667764px;}
.ha_c00266{height:58.929966px;}
.h3_c00266{height:63.768724px;}
.h4_c00266{height:64.053724px;}
.h8_c00266{height:74.943127px;}
.h5_c00266{height:1249.830756px;}
.h1_c00266{height:1262.879062px;}
.h0_c00266{height:1263.000000px;}
.w2_c00266{width:883.195846px;}
.w1_c00266{width:892.414744px;}
.w0_c00266{width:892.500000px;}
.x0_c00266{left:0.000000px;}
.x7_c00266{left:1.541954px;}
.x8_c00266{left:112.753050px;}
.x2_c00266{left:126.216356px;}
.xa_c00266{left:127.537645px;}
.x4_c00266{left:252.504495px;}
.x3_c00266{left:270.140236px;}
.x6_c00266{left:308.967587px;}
.x9_c00266{left:405.407883px;}
.x5_c00266{left:420.296029px;}
.x1_c00266{left:497.784645px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws0_c00266{word-spacing:-18.525059pt;}
.ws1_c00266{word-spacing:-14.566794pt;}
.ws2_c00266{word-spacing:0.000000pt;}
._5_c00266{margin-left:-14.042599pt;}
._8_c00266{margin-left:-12.420580pt;}
._3_c00266{margin-left:-10.688050pt;}
._4_c00266{margin-left:-7.537634pt;}
._6_c00266{margin-left:-6.048836pt;}
._7_c00266{margin-left:-4.258157pt;}
._2_c00266{margin-left:-2.948536pt;}
._0_c00266{margin-left:-1.190722pt;}
._1_c00266{width:0.938922pt;}
.fs4_c00266{font-size:36.732892pt;}
.fs2_c00266{font-size:52.566166pt;}
.fs0_c00266{font-size:58.267177pt;}
.fs1_c00266{font-size:63.333308pt;}
.fs3_c00266{font-size:74.100237pt;}
.y0_c00266{bottom:0.000000pt;}
.y1_c00266{bottom:0.107500pt;}
.y8_c00266{bottom:6.068128pt;}
.ya_c00266{bottom:57.896246pt;}
.y3_c00266{bottom:74.146170pt;}
.y2_c00266{bottom:74.783670pt;}
.y18_c00266{bottom:653.064942pt;}
.y17_c00266{bottom:666.998269pt;}
.y16_c00266{bottom:691.540926pt;}
.y15_c00266{bottom:716.080916pt;}
.y14_c00266{bottom:740.779573pt;}
.y13_c00266{bottom:765.322230pt;}
.y12_c00266{bottom:790.022220pt;}
.y11_c00266{bottom:814.563944pt;}
.y10_c00266{bottom:831.190204pt;}
.yf_c00266{bottom:865.227523pt;}
.ye_c00266{bottom:900.380843pt;}
.yd_c00266{bottom:924.922166pt;}
.yc_c00266{bottom:936.320828pt;}
.yb_c00266{bottom:957.854553pt;}
.y9_c00266{bottom:972.580814pt;}
.y7_c00266{bottom:1000.229433pt;}
.y6_c00266{bottom:1018.754492pt;}
.y5_c00266{bottom:1036.963819pt;}
.y4_c00266{bottom:1055.170745pt;}
.h9_c00266{height:23.215188pt;}
.h7_c00266{height:33.221817pt;}
.h6_c00266{height:36.824856pt;}
.h2_c00266{height:52.149123pt;}
.ha_c00266{height:52.382192pt;}
.h3_c00266{height:56.683311pt;}
.h4_c00266{height:56.936644pt;}
.h8_c00266{height:66.616113pt;}
.h5_c00266{height:1110.960672pt;}
.h1_c00266{height:1122.559167pt;}
.h0_c00266{height:1122.666667pt;}
.w2_c00266{width:785.062974pt;}
.w1_c00266{width:793.257550pt;}
.w0_c00266{width:793.333333pt;}
.x0_c00266{left:0.000000pt;}
.x7_c00266{left:1.370626pt;}
.x8_c00266{left:100.224934pt;}
.x2_c00266{left:112.192317pt;}
.xa_c00266{left:113.366795pt;}
.x4_c00266{left:224.448440pt;}
.x3_c00266{left:240.124654pt;}
.x6_c00266{left:274.637856pt;}
.x9_c00266{left:360.362563pt;}
.x5_c00266{left:373.596470pt;}
.x1_c00266{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:0.632000;font-style:normal;font-weight:normal;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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.113000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:1.112000;font-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_c00267{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:0.000000px;}
._b_c00267{margin-left:-3.257159px;}
._0_c00267{margin-left:-1.339562px;}
._1_c00267{width:1.056287px;}
._5_c00267{width:2.071016px;}
._8_c00267{width:3.365495px;}
._7_c00267{width:4.432389px;}
._6_c00267{width:6.662297px;}
._e_c00267{width:8.448207px;}
._d_c00267{width:10.434952px;}
._c_c00267{width:11.454300px;}
._f_c00267{width:12.579783px;}
._10_c00267{width:13.710554px;}
._9_c00267{width:15.444376px;}
._a_c00267{width:16.590453px;}
._4_c00267{width:19.199662px;}
._3_c00267{width:20.247891px;}
._2_c00267{width:21.502889px;}
._11_c00267{width:42.132495px;}
.fc2_c00267{color:rgb(38,69,127);}
.fc3_c00267{color:transparent;}
.fc1_c00267{color:rgb(105,148,45);}
.fc0_c00267{color:rgb(35,31,32);}
.fs5_c00267{font-size:41.324503px;}
.fs3_c00267{font-size:47.737061px;}
.fs4_c00267{font-size:50.586940px;}
.fs6_c00267{font-size:53.436999px;}
.fs2_c00267{font-size:59.136936px;}
.fs0_c00267{font-size:65.550574px;}
.fs1_c00267{font-size:71.249972px;}
.y2f_c00267{bottom:-3.567127px;}
.y30_c00267{bottom:-0.360128px;}
.y0_c00267{bottom:0.000000px;}
.y1_c00267{bottom:0.120938px;}
.y8_c00267{bottom:6.826644px;}
.ya_c00267{bottom:65.133277px;}
.y3_c00267{bottom:83.414442px;}
.y2_c00267{bottom:84.131629px;}
.y2d_c00267{bottom:196.591275px;}
.y2c_c00267{bottom:227.225762px;}
.y2b_c00267{bottom:277.809042px;}
.y2a_c00267{bottom:296.512235px;}
.y29_c00267{bottom:315.215127px;}
.y2e_c00267{bottom:321.156000px;}
.y28_c00267{bottom:333.921770px;}
.y27_c00267{bottom:352.623462px;}
.y26_c00267{bottom:371.328005px;}
.y25_c00267{bottom:390.029697px;}
.y24_c00267{bottom:408.732890px;}
.y23_c00267{bottom:427.434582px;}
.y22_c00267{bottom:446.139875px;}
.y21_c00267{bottom:464.843067px;}
.y20_c00267{bottom:483.544760px;}
.y1f_c00267{bottom:502.246452px;}
.y1e_c00267{bottom:520.949645px;}
.y1d_c00267{bottom:538.942138px;}
.y1c_c00267{bottom:570.470625px;}
.y1b_c00267{bottom:588.281918px;}
.y1a_c00267{bottom:607.163610px;}
.y19_c00267{bottom:654.542441px;}
.y18_c00267{bottom:685.359629px;}
.y17_c00267{bottom:715.995467px;}
.y16_c00267{bottom:746.812055px;}
.y15_c00267{bottom:765.691047px;}
.y14_c00267{bottom:784.217540px;}
.y13_c00267{bottom:821.800025px;}
.y12_c00267{bottom:850.294013px;}
.y11_c00267{bottom:881.108501px;}
.y10_c00267{bottom:911.749289px;}
.yf_c00267{bottom:942.565126px;}
.ye_c00267{bottom:973.200964px;}
.yd_c00267{bottom:992.262956px;}
.yc_c00267{bottom:1006.691451px;}
.yb_c00267{bottom:1024.683943px;}
.y9_c00267{bottom:1094.153416px;}
.y7_c00267{bottom:1125.258112px;}
.y6_c00267{bottom:1146.098804px;}
.y5_c00267{bottom:1166.584296px;}
.y4_c00267{bottom:1187.067088px;}
.h10_c00267{height:12.114000px;}
.h11_c00267{height:15.323400px;}
.hd_c00267{height:26.117086px;}
.h9_c00267{height:30.169822px;}
.hb_c00267{height:31.970946px;}
.h7_c00267{height:37.374544px;}
.h6_c00267{height:41.427963px;}
.he_c00267{height:45.029982px;}
.hf_c00267{height:47.826114px;}
.h2_c00267{height:58.667764px;}
.hc_c00267{height:58.929966px;}
.h3_c00267{height:63.768724px;}
.ha_c00267{height:63.839974px;}
.h8_c00267{height:63.911224px;}
.h4_c00267{height:64.053724px;}
.h5_c00267{height:1249.830756px;}
.h1_c00267{height:1262.879062px;}
.h0_c00267{height:1263.000000px;}
.w3_c00267{width:2.318400px;}
.w4_c00267{width:9.619200px;}
.w2_c00267{width:883.195846px;}
.w1_c00267{width:892.414744px;}
.w0_c00267{width:892.500000px;}
.x0_c00267{left:0.000000px;}
.x7_c00267{left:1.541954px;}
.x8_c00267{left:112.753050px;}
.x2_c00267{left:126.216356px;}
.x9_c00267{left:166.192479px;}
.xa_c00267{left:178.837474px;}
.x4_c00267{left:252.504495px;}
.x3_c00267{left:270.140236px;}
.x6_c00267{left:308.967587px;}
.x5_c00267{left:420.296029px;}
.xb_c00267{left:439.014600px;}
.x1_c00267{left:497.784645px;}
.xc_c00267{left:772.462800px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
._b_c00267{margin-left:-2.895252pt;}
._0_c00267{margin-left:-1.190722pt;}
._1_c00267{width:0.938922pt;}
._5_c00267{width:1.840903pt;}
._8_c00267{width:2.991551pt;}
._7_c00267{width:3.939901pt;}
._6_c00267{width:5.922042pt;}
._e_c00267{width:7.509518pt;}
._d_c00267{width:9.275513pt;}
._c_c00267{width:10.181600pt;}
._f_c00267{width:11.182030pt;}
._10_c00267{width:12.187159pt;}
._9_c00267{width:13.728335pt;}
._a_c00267{width:14.747069pt;}
._4_c00267{width:17.066366pt;}
._3_c00267{width:17.998125pt;}
._2_c00267{width:19.113679pt;}
._11_c00267{width:37.451107pt;}
.fs5_c00267{font-size:36.732892pt;}
.fs3_c00267{font-size:42.432943pt;}
.fs4_c00267{font-size:44.966169pt;}
.fs6_c00267{font-size:47.499554pt;}
.fs2_c00267{font-size:52.566166pt;}
.fs0_c00267{font-size:58.267177pt;}
.fs1_c00267{font-size:63.333308pt;}
.y2f_c00267{bottom:-3.170780pt;}
.y30_c00267{bottom:-0.320114pt;}
.y0_c00267{bottom:0.000000pt;}
.y1_c00267{bottom:0.107500pt;}
.y8_c00267{bottom:6.068128pt;}
.ya_c00267{bottom:57.896246pt;}
.y3_c00267{bottom:74.146170pt;}
.y2_c00267{bottom:74.783670pt;}
.y2d_c00267{bottom:174.747800pt;}
.y2c_c00267{bottom:201.978455pt;}
.y2b_c00267{bottom:246.941371pt;}
.y2a_c00267{bottom:263.566431pt;}
.y29_c00267{bottom:280.191224pt;}
.y2e_c00267{bottom:285.472000pt;}
.y28_c00267{bottom:296.819351pt;}
.y27_c00267{bottom:313.443078pt;}
.y26_c00267{bottom:330.069338pt;}
.y25_c00267{bottom:346.693064pt;}
.y24_c00267{bottom:363.318124pt;}
.y23_c00267{bottom:379.941851pt;}
.y22_c00267{bottom:396.568778pt;}
.y21_c00267{bottom:413.193838pt;}
.y20_c00267{bottom:429.817564pt;}
.y1f_c00267{bottom:446.441291pt;}
.y1e_c00267{bottom:463.066351pt;}
.y1d_c00267{bottom:479.059678pt;}
.y1c_c00267{bottom:507.085000pt;}
.y1b_c00267{bottom:522.917260pt;}
.y1a_c00267{bottom:539.700987pt;}
.y19_c00267{bottom:581.815504pt;}
.y18_c00267{bottom:609.208559pt;}
.y17_c00267{bottom:636.440415pt;}
.y16_c00267{bottom:663.832937pt;}
.y15_c00267{bottom:680.614264pt;}
.y14_c00267{bottom:697.082257pt;}
.y13_c00267{bottom:730.488911pt;}
.y12_c00267{bottom:755.816901pt;}
.y11_c00267{bottom:783.207556pt;}
.y10_c00267{bottom:810.443812pt;}
.yf_c00267{bottom:837.835668pt;}
.ye_c00267{bottom:865.067524pt;}
.yd_c00267{bottom:882.011517pt;}
.yc_c00267{bottom:894.836845pt;}
.yb_c00267{bottom:910.830172pt;}
.y9_c00267{bottom:972.580814pt;}
.y7_c00267{bottom:1000.229433pt;}
.y6_c00267{bottom:1018.754492pt;}
.y5_c00267{bottom:1036.963819pt;}
.y4_c00267{bottom:1055.170745pt;}
.h10_c00267{height:10.768000pt;}
.h11_c00267{height:13.620800pt;}
.hd_c00267{height:23.215188pt;}
.h9_c00267{height:26.817620pt;}
.hb_c00267{height:28.418619pt;}
.h7_c00267{height:33.221817pt;}
.h6_c00267{height:36.824856pt;}
.he_c00267{height:40.026651pt;}
.hf_c00267{height:42.512101pt;}
.h2_c00267{height:52.149123pt;}
.hc_c00267{height:52.382192pt;}
.h3_c00267{height:56.683311pt;}
.ha_c00267{height:56.746644pt;}
.h8_c00267{height:56.809977pt;}
.h4_c00267{height:56.936644pt;}
.h5_c00267{height:1110.960672pt;}
.h1_c00267{height:1122.559167pt;}
.h0_c00267{height:1122.666667pt;}
.w3_c00267{width:2.060800pt;}
.w4_c00267{width:8.550400pt;}
.w2_c00267{width:785.062974pt;}
.w1_c00267{width:793.257550pt;}
.w0_c00267{width:793.333333pt;}
.x0_c00267{left:0.000000pt;}
.x7_c00267{left:1.370626pt;}
.x8_c00267{left:100.224934pt;}
.x2_c00267{left:112.192317pt;}
.x9_c00267{left:147.726648pt;}
.xa_c00267{left:158.966644pt;}
.x4_c00267{left:224.448440pt;}
.x3_c00267{left:240.124654pt;}
.x6_c00267{left:274.637856pt;}
.x5_c00267{left:373.596470pt;}
.xb_c00267{left:390.235200pt;}
.x1_c00267{left:442.475240pt;}
.xc_c00267{left:686.633600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:0.632000;font-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_c00268{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls0_c00268{letter-spacing:0.000000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:0.000000px;}
._0_c00268{margin-left:-1.339562px;}
._1_c00268{width:1.056287px;}
._2_c00268{width:200.511650px;}
.fc2_c00268{color:rgb(38,69,127);}
.fc3_c00268{color:transparent;}
.fc1_c00268{color:rgb(105,148,45);}
.fc0_c00268{color:rgb(35,31,32);}
.fs3_c00268{font-size:41.324503px;}
.fs4_c00268{font-size:53.436999px;}
.fs2_c00268{font-size:59.136936px;}
.fs0_c00268{font-size:65.550574px;}
.fs1_c00268{font-size:71.249972px;}
.y39_c00268{bottom:-2.845222px;}
.y3c_c00268{bottom:-2.314693px;}
.y3f_c00268{bottom:-1.069273px;}
.y3a_c00268{bottom:-0.356723px;}
.y3d_c00268{bottom:-0.355694px;}
.y40_c00268{bottom:-0.355273px;}
.y0_c00268{bottom:0.000000px;}
.y1_c00268{bottom:0.120938px;}
.y8_c00268{bottom:6.826644px;}
.ya_c00268{bottom:65.133277px;}
.y3_c00268{bottom:83.414442px;}
.y2_c00268{bottom:84.131629px;}
.y37_c00268{bottom:126.586603px;}
.y36_c00268{bottom:145.288295px;}
.y35_c00268{bottom:182.698730px;}
.y3e_c00268{bottom:183.463200px;}
.y34_c00268{bottom:201.401923px;}
.y33_c00268{bottom:220.105115px;}
.y32_c00268{bottom:238.806808px;}
.y31_c00268{bottom:257.510000px;}
.y30_c00268{bottom:276.210343px;}
.y2f_c00268{bottom:294.913535px;}
.y2e_c00268{bottom:313.615228px;}
.y2d_c00268{bottom:332.320520px;}
.y2c_c00268{bottom:351.023713px;}
.y2b_c00268{bottom:369.725405px;}
.y2a_c00268{bottom:388.425748px;}
.y29_c00268{bottom:425.476183px;}
.y28_c00268{bottom:445.960175px;}
.y3b_c00268{bottom:484.137000px;}
.y27_c00268{bottom:502.071702px;}
.y26_c00268{bottom:520.774895px;}
.y25_c00268{bottom:539.478087px;}
.y24_c00268{bottom:558.182630px;}
.y23_c00268{bottom:576.884323px;}
.y22_c00268{bottom:595.586015px;}
.y21_c00268{bottom:614.287708px;}
.y20_c00268{bottom:632.990900px;}
.y1f_c00268{bottom:651.694093px;}
.y1e_c00268{bottom:670.395785px;}
.y1d_c00268{bottom:689.098978px;}
.y1c_c00268{bottom:726.328063px;}
.y1b_c00268{bottom:764.621547px;}
.y1a_c00268{bottom:782.432540px;}
.y19_c00268{bottom:801.140833px;}
.y38_c00268{bottom:807.251400px;}
.y18_c00268{bottom:820.022525px;}
.y17_c00268{bottom:838.722868px;}
.y16_c00268{bottom:857.427410px;}
.y15_c00268{bottom:876.129103px;}
.y14_c00268{bottom:894.830795px;}
.y13_c00268{bottom:913.533988px;}
.y12_c00268{bottom:932.237180px;}
.y11_c00268{bottom:950.940373px;}
.y10_c00268{bottom:969.642065px;}
.yf_c00268{bottom:988.343758px;}
.ye_c00268{bottom:1007.046950px;}
.yd_c00268{bottom:1025.039443px;}
.yc_c00268{bottom:1056.566431px;}
.yb_c00268{bottom:1074.378924px;}
.y9_c00268{bottom:1094.153416px;}
.y7_c00268{bottom:1125.258112px;}
.y6_c00268{bottom:1146.098804px;}
.y5_c00268{bottom:1166.584296px;}
.y4_c00268{bottom:1187.067088px;}
.hc_c00268{height:12.826800px;}
.he_c00268{height:13.359600px;}
.hf_c00268{height:14.610600px;}
.hd_c00268{height:15.321600px;}
.h10_c00268{height:15.323400px;}
.h9_c00268{height:26.117086px;}
.h7_c00268{height:37.374544px;}
.h6_c00268{height:41.427963px;}
.ha_c00268{height:45.029982px;}
.hb_c00268{height:47.826114px;}
.h2_c00268{height:58.667764px;}
.h8_c00268{height:58.929966px;}
.h3_c00268{height:63.768724px;}
.h4_c00268{height:64.053724px;}
.h5_c00268{height:1249.830756px;}
.h1_c00268{height:1262.879062px;}
.h0_c00268{height:1263.000000px;}
.w3_c00268{width:3.029400px;}
.w5_c00268{width:3.920400px;}
.w6_c00268{width:5.522400px;}
.w4_c00268{width:9.619200px;}
.w2_c00268{width:883.195846px;}
.w1_c00268{width:892.414744px;}
.w0_c00268{width:892.500000px;}
.x0_c00268{left:0.000000px;}
.x7_c00268{left:1.541954px;}
.x8_c00268{left:112.753050px;}
.x2_c00268{left:126.216356px;}
.x4_c00268{left:252.504495px;}
.x3_c00268{left:270.140236px;}
.x6_c00268{left:308.967587px;}
.x5_c00268{left:420.296029px;}
.xb_c00268{left:435.810600px;}
.x9_c00268{left:438.303600px;}
.x1_c00268{left:497.784645px;}
.xa_c00268{left:772.462800px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:0.000000pt;}
._0_c00268{margin-left:-1.190722pt;}
._1_c00268{width:0.938922pt;}
._2_c00268{width:178.232578pt;}
.fs3_c00268{font-size:36.732892pt;}
.fs4_c00268{font-size:47.499554pt;}
.fs2_c00268{font-size:52.566166pt;}
.fs0_c00268{font-size:58.267177pt;}
.fs1_c00268{font-size:63.333308pt;}
.y39_c00268{bottom:-2.529086pt;}
.y3c_c00268{bottom:-2.057505pt;}
.y3f_c00268{bottom:-0.950465pt;}
.y3a_c00268{bottom:-0.317087pt;}
.y3d_c00268{bottom:-0.316172pt;}
.y40_c00268{bottom:-0.315798pt;}
.y0_c00268{bottom:0.000000pt;}
.y1_c00268{bottom:0.107500pt;}
.y8_c00268{bottom:6.068128pt;}
.ya_c00268{bottom:57.896246pt;}
.y3_c00268{bottom:74.146170pt;}
.y2_c00268{bottom:74.783670pt;}
.y37_c00268{bottom:112.521425pt;}
.y36_c00268{bottom:129.145151pt;}
.y35_c00268{bottom:162.398871pt;}
.y3e_c00268{bottom:163.078400pt;}
.y34_c00268{bottom:179.023931pt;}
.y33_c00268{bottom:195.648991pt;}
.y32_c00268{bottom:212.272718pt;}
.y31_c00268{bottom:228.897778pt;}
.y30_c00268{bottom:245.520305pt;}
.y2f_c00268{bottom:262.145365pt;}
.y2e_c00268{bottom:278.769091pt;}
.y2d_c00268{bottom:295.396018pt;}
.y2c_c00268{bottom:312.021078pt;}
.y2b_c00268{bottom:328.644805pt;}
.y2a_c00268{bottom:345.267331pt;}
.y29_c00268{bottom:378.201052pt;}
.y28_c00268{bottom:396.409044pt;}
.y3b_c00268{bottom:430.344000pt;}
.y27_c00268{bottom:446.285958pt;}
.y26_c00268{bottom:462.911018pt;}
.y25_c00268{bottom:479.536078pt;}
.y24_c00268{bottom:496.162338pt;}
.y23_c00268{bottom:512.786064pt;}
.y22_c00268{bottom:529.409791pt;}
.y21_c00268{bottom:546.033518pt;}
.y20_c00268{bottom:562.658578pt;}
.y1f_c00268{bottom:579.283638pt;}
.y1e_c00268{bottom:595.907365pt;}
.y1d_c00268{bottom:612.532425pt;}
.y1c_c00268{bottom:645.624945pt;}
.y1b_c00268{bottom:679.663598pt;}
.y1a_c00268{bottom:695.495591pt;}
.y19_c00268{bottom:712.125185pt;}
.y38_c00268{bottom:717.556800pt;}
.y18_c00268{bottom:728.908911pt;}
.y17_c00268{bottom:745.531438pt;}
.y16_c00268{bottom:762.157698pt;}
.y15_c00268{bottom:778.781425pt;}
.y14_c00268{bottom:795.405151pt;}
.y13_c00268{bottom:812.030211pt;}
.y12_c00268{bottom:828.655271pt;}
.y11_c00268{bottom:845.280331pt;}
.y10_c00268{bottom:861.904058pt;}
.yf_c00268{bottom:878.527785pt;}
.ye_c00268{bottom:895.152845pt;}
.yd_c00268{bottom:911.146172pt;}
.yc_c00268{bottom:939.170161pt;}
.yb_c00268{bottom:955.003488pt;}
.y9_c00268{bottom:972.580814pt;}
.y7_c00268{bottom:1000.229433pt;}
.y6_c00268{bottom:1018.754492pt;}
.y5_c00268{bottom:1036.963819pt;}
.y4_c00268{bottom:1055.170745pt;}
.hc_c00268{height:11.401600pt;}
.he_c00268{height:11.875200pt;}
.hf_c00268{height:12.987200pt;}
.hd_c00268{height:13.619200pt;}
.h10_c00268{height:13.620800pt;}
.h9_c00268{height:23.215188pt;}
.h7_c00268{height:33.221817pt;}
.h6_c00268{height:36.824856pt;}
.ha_c00268{height:40.026651pt;}
.hb_c00268{height:42.512101pt;}
.h2_c00268{height:52.149123pt;}
.h8_c00268{height:52.382192pt;}
.h3_c00268{height:56.683311pt;}
.h4_c00268{height:56.936644pt;}
.h5_c00268{height:1110.960672pt;}
.h1_c00268{height:1122.559167pt;}
.h0_c00268{height:1122.666667pt;}
.w3_c00268{width:2.692800pt;}
.w5_c00268{width:3.484800pt;}
.w6_c00268{width:4.908800pt;}
.w4_c00268{width:8.550400pt;}
.w2_c00268{width:785.062974pt;}
.w1_c00268{width:793.257550pt;}
.w0_c00268{width:793.333333pt;}
.x0_c00268{left:0.000000pt;}
.x7_c00268{left:1.370626pt;}
.x8_c00268{left:100.224934pt;}
.x2_c00268{left:112.192317pt;}
.x4_c00268{left:224.448440pt;}
.x3_c00268{left:240.124654pt;}
.x6_c00268{left:274.637856pt;}
.x5_c00268{left:373.596470pt;}
.xb_c00268{left:387.387200pt;}
.x9_c00268{left:389.603200pt;}
.x1_c00268{left:442.475240pt;}
.xa_c00268{left:686.633600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:0.632000;font-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_c00269{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:0.000000px;}
._0_c00269{margin-left:-1.339562px;}
._1_c00269{width:1.056287px;}
._2_c00269{width:200.511650px;}
.fc2_c00269{color:transparent;}
.fc1_c00269{color:rgb(105,148,45);}
.fc0_c00269{color:rgb(35,31,32);}
.fs3_c00269{font-size:53.436999px;}
.fs2_c00269{font-size:59.136936px;}
.fs0_c00269{font-size:65.550574px;}
.fs1_c00269{font-size:71.249972px;}
.y3b_c00269{bottom:-2.317088px;}
.y3d_c00269{bottom:-1.603170px;}
.y39_c00269{bottom:-0.359116px;}
.y0_c00269{bottom:0.000000px;}
.y1_c00269{bottom:0.120938px;}
.y8_c00269{bottom:6.826644px;}
.ya_c00269{bottom:65.133277px;}
.y3_c00269{bottom:83.414442px;}
.y2_c00269{bottom:84.131629px;}
.y37_c00269{bottom:113.582808px;}
.y36_c00269{bottom:150.986193px;}
.y3c_c00269{bottom:151.581060px;}
.y35_c00269{bottom:169.687885px;}
.y34_c00269{bottom:188.391078px;}
.y33_c00269{bottom:207.097720px;}
.y32_c00269{bottom:225.795963px;}
.y31_c00269{bottom:244.500505px;}
.y30_c00269{bottom:263.205048px;}
.y2f_c00269{bottom:281.906741px;}
.y2e_c00269{bottom:300.609933px;}
.y2d_c00269{bottom:319.311626px;}
.y2c_c00269{bottom:338.014818px;}
.y2b_c00269{bottom:356.718011px;}
.y2a_c00269{bottom:393.767696px;}
.y29_c00269{bottom:414.255888px;}
.y28_c00269{bottom:432.959680px;}
.y27_c00269{bottom:470.364415px;}
.y3a_c00269{bottom:471.137400px;}
.y26_c00269{bottom:489.066108px;}
.y25_c00269{bottom:507.769300px;}
.y24_c00269{bottom:526.472493px;}
.y23_c00269{bottom:545.177035px;}
.y22_c00269{bottom:563.880228px;}
.y21_c00269{bottom:582.583420px;}
.y20_c00269{bottom:601.288713px;}
.y1f_c00269{bottom:619.990405px;}
.y1e_c00269{bottom:638.692098px;}
.y1d_c00269{bottom:657.391690px;}
.y1c_c00269{bottom:676.096983px;}
.y1b_c00269{bottom:713.326068px;}
.y1a_c00269{bottom:733.806010px;}
.y19_c00269{bottom:752.510552px;}
.y18_c00269{bottom:789.917537px;}
.y38_c00269{bottom:790.687800px;}
.y17_c00269{bottom:808.622080px;}
.y16_c00269{bottom:827.323772px;}
.y15_c00269{bottom:846.026965px;}
.y14_c00269{bottom:864.731507px;}
.y13_c00269{bottom:883.431850px;}
.y12_c00269{bottom:902.133542px;}
.y11_c00269{bottom:920.833885px;}
.y10_c00269{bottom:939.537677px;}
.yf_c00269{bottom:958.241470px;}
.ye_c00269{bottom:976.945262px;}
.yd_c00269{bottom:995.646955px;}
.yc_c00269{bottom:1032.871840px;}
.yb_c00269{bottom:1072.596924px;}
.y9_c00269{bottom:1094.153416px;}
.y7_c00269{bottom:1125.258112px;}
.y6_c00269{bottom:1146.098804px;}
.y5_c00269{bottom:1166.584296px;}
.y4_c00269{bottom:1187.067088px;}
.hb_c00269{height:13.356000px;}
.hc_c00269{height:14.071680px;}
.ha_c00269{height:15.323400px;}
.h7_c00269{height:37.374544px;}
.h6_c00269{height:41.427963px;}
.h8_c00269{height:45.029982px;}
.h9_c00269{height:47.826114px;}
.h2_c00269{height:58.667764px;}
.h3_c00269{height:63.768724px;}
.h4_c00269{height:64.053724px;}
.h5_c00269{height:1249.830756px;}
.h1_c00269{height:1262.879062px;}
.h0_c00269{height:1263.000000px;}
.w4_c00269{width:9.617400px;}
.w3_c00269{width:9.619200px;}
.w2_c00269{width:883.195846px;}
.w1_c00269{width:892.414744px;}
.w0_c00269{width:892.500000px;}
.x0_c00269{left:0.000000px;}
.x7_c00269{left:1.541954px;}
.x8_c00269{left:112.753050px;}
.x2_c00269{left:126.216356px;}
.x4_c00269{left:252.504495px;}
.x3_c00269{left:270.140236px;}
.x6_c00269{left:308.967587px;}
.x5_c00269{left:420.296029px;}
.x1_c00269{left:497.784645px;}
.x9_c00269{left:772.462800px;}
.xa_c00269{left:774.957600px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:0.000000pt;}
._0_c00269{margin-left:-1.190722pt;}
._1_c00269{width:0.938922pt;}
._2_c00269{width:178.232578pt;}
.fs3_c00269{font-size:47.499554pt;}
.fs2_c00269{font-size:52.566166pt;}
.fs0_c00269{font-size:58.267177pt;}
.fs1_c00269{font-size:63.333308pt;}
.y3b_c00269{bottom:-2.059633pt;}
.y3d_c00269{bottom:-1.425040pt;}
.y39_c00269{bottom:-0.319214pt;}
.y0_c00269{bottom:0.000000pt;}
.y1_c00269{bottom:0.107500pt;}
.y8_c00269{bottom:6.068128pt;}
.ya_c00269{bottom:57.896246pt;}
.y3_c00269{bottom:74.146170pt;}
.y2_c00269{bottom:74.783670pt;}
.y37_c00269{bottom:100.962496pt;}
.y36_c00269{bottom:134.209949pt;}
.y3c_c00269{bottom:134.738720pt;}
.y35_c00269{bottom:150.833676pt;}
.y34_c00269{bottom:167.458736pt;}
.y33_c00269{bottom:184.086863pt;}
.y32_c00269{bottom:200.707523pt;}
.y31_c00269{bottom:217.333783pt;}
.y30_c00269{bottom:233.960043pt;}
.y2f_c00269{bottom:250.583769pt;}
.y2e_c00269{bottom:267.208829pt;}
.y2d_c00269{bottom:283.832556pt;}
.y2c_c00269{bottom:300.457616pt;}
.y2b_c00269{bottom:317.082676pt;}
.y2a_c00269{bottom:350.015730pt;}
.y29_c00269{bottom:368.227456pt;}
.y28_c00269{bottom:384.853049pt;}
.y27_c00269{bottom:418.101702pt;}
.y3a_c00269{bottom:418.788800pt;}
.y26_c00269{bottom:434.725429pt;}
.y25_c00269{bottom:451.350489pt;}
.y24_c00269{bottom:467.975549pt;}
.y23_c00269{bottom:484.601809pt;}
.y22_c00269{bottom:501.226869pt;}
.y21_c00269{bottom:517.851929pt;}
.y20_c00269{bottom:534.478856pt;}
.y1f_c00269{bottom:551.102582pt;}
.y1e_c00269{bottom:567.726309pt;}
.y1d_c00269{bottom:584.348169pt;}
.y1c_c00269{bottom:600.975096pt;}
.y1b_c00269{bottom:634.067616pt;}
.y1a_c00269{bottom:652.272009pt;}
.y19_c00269{bottom:668.898269pt;}
.y18_c00269{bottom:702.148922pt;}
.y38_c00269{bottom:702.833600pt;}
.y17_c00269{bottom:718.775182pt;}
.y16_c00269{bottom:735.398909pt;}
.y15_c00269{bottom:752.023969pt;}
.y14_c00269{bottom:768.650229pt;}
.y13_c00269{bottom:785.272755pt;}
.y12_c00269{bottom:801.896482pt;}
.y11_c00269{bottom:818.519009pt;}
.y10_c00269{bottom:835.144602pt;}
.yf_c00269{bottom:851.770196pt;}
.ye_c00269{bottom:868.395789pt;}
.yd_c00269{bottom:885.019516pt;}
.yc_c00269{bottom:918.108302pt;}
.yb_c00269{bottom:953.419488pt;}
.y9_c00269{bottom:972.580814pt;}
.y7_c00269{bottom:1000.229433pt;}
.y6_c00269{bottom:1018.754492pt;}
.y5_c00269{bottom:1036.963819pt;}
.y4_c00269{bottom:1055.170745pt;}
.hb_c00269{height:11.872000pt;}
.hc_c00269{height:12.508160pt;}
.ha_c00269{height:13.620800pt;}
.h7_c00269{height:33.221817pt;}
.h6_c00269{height:36.824856pt;}
.h8_c00269{height:40.026651pt;}
.h9_c00269{height:42.512101pt;}
.h2_c00269{height:52.149123pt;}
.h3_c00269{height:56.683311pt;}
.h4_c00269{height:56.936644pt;}
.h5_c00269{height:1110.960672pt;}
.h1_c00269{height:1122.559167pt;}
.h0_c00269{height:1122.666667pt;}
.w4_c00269{width:8.548800pt;}
.w3_c00269{width:8.550400pt;}
.w2_c00269{width:785.062974pt;}
.w1_c00269{width:793.257550pt;}
.w0_c00269{width:793.333333pt;}
.x0_c00269{left:0.000000pt;}
.x7_c00269{left:1.370626pt;}
.x8_c00269{left:100.224934pt;}
.x2_c00269{left:112.192317pt;}
.x4_c00269{left:224.448440pt;}
.x3_c00269{left:240.124654pt;}
.x6_c00269{left:274.637856pt;}
.x5_c00269{left:373.596470pt;}
.x1_c00269{left:442.475240pt;}
.x9_c00269{left:686.633600pt;}
.xa_c00269{left:688.851200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:0.632000;font-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_c00270{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:0.000000px;}
._0_c00270{margin-left:-1.339562px;}
._1_c00270{width:1.056287px;}
.fc2_c00270{color:rgb(38,69,127);}
.fc3_c00270{color:transparent;}
.fc1_c00270{color:rgb(105,148,45);}
.fc0_c00270{color:rgb(35,31,32);}
.fs3_c00270{font-size:47.737061px;}
.fs4_c00270{font-size:53.436999px;}
.fs2_c00270{font-size:59.136936px;}
.fs0_c00270{font-size:65.550574px;}
.fs1_c00270{font-size:71.249972px;}
.y39_c00270{bottom:-0.359725px;}
.y3b_c00270{bottom:-0.356607px;}
.y3d_c00270{bottom:-0.355875px;}
.y0_c00270{bottom:0.000000px;}
.y1_c00270{bottom:0.120938px;}
.y8_c00270{bottom:6.826644px;}
.ya_c00270{bottom:65.133277px;}
.y3_c00270{bottom:83.414442px;}
.y2_c00270{bottom:84.131629px;}
.y37_c00270{bottom:126.940752px;}
.y36_c00270{bottom:145.645295px;}
.y35_c00270{bottom:164.350588px;}
.y34_c00270{bottom:183.050930px;}
.y3c_c00270{bottom:187.741800px;}
.y33_c00270{bottom:201.756223px;}
.y32_c00270{bottom:220.455815px;}
.y31_c00270{bottom:239.161108px;}
.y30_c00270{bottom:257.861450px;}
.y2f_c00270{bottom:276.564643px;}
.y2e_c00270{bottom:295.267835px;}
.y2d_c00270{bottom:313.969528px;}
.y2c_c00270{bottom:332.672720px;}
.y2b_c00270{bottom:369.900305px;}
.y2a_c00270{bottom:409.801189px;}
.y29_c00270{bottom:434.735679px;}
.y28_c00270{bottom:471.253165px;}
.y27_c00270{bottom:508.660450px;}
.y3a_c00270{bottom:519.053400px;}
.y26_c00270{bottom:527.363642px;}
.y25_c00270{bottom:546.062485px;}
.y24_c00270{bottom:564.767027px;}
.y23_c00270{bottom:583.467370px;}
.y22_c00270{bottom:602.174012px;}
.y21_c00270{bottom:620.880655px;}
.y20_c00270{bottom:639.580997px;}
.y1f_c00270{bottom:658.284190px;}
.y1e_c00270{bottom:676.987382px;}
.y1d_c00270{bottom:695.687725px;}
.y1c_c00270{bottom:732.918160px;}
.y1a_c00270{bottom:753.399752px;}
.y1b_c00270{bottom:753.401552px;}
.y19_c00270{bottom:772.103544px;}
.y18_c00270{bottom:790.807037px;}
.y17_c00270{bottom:809.509929px;}
.y38_c00270{bottom:812.957400px;}
.y16_c00270{bottom:828.214472px;}
.y15_c00270{bottom:846.919015px;}
.y14_c00270{bottom:865.622207px;}
.y13_c00270{bottom:884.323900px;}
.y12_c00270{bottom:903.025592px;}
.y11_c00270{bottom:921.729385px;}
.y10_c00270{bottom:940.431077px;}
.yf_c00270{bottom:959.132770px;}
.ye_c00270{bottom:996.362455px;}
.yd_c00270{bottom:1036.084839px;}
.yc_c00270{bottom:1056.568231px;}
.yb_c00270{bottom:1075.271423px;}
.y9_c00270{bottom:1094.153416px;}
.y7_c00270{bottom:1125.258112px;}
.y6_c00270{bottom:1146.098804px;}
.y5_c00270{bottom:1166.584296px;}
.y4_c00270{bottom:1187.067088px;}
.hc_c00270{height:15.316200px;}
.h9_c00270{height:30.169822px;}
.h7_c00270{height:37.374544px;}
.h6_c00270{height:41.427963px;}
.h8_c00270{height:45.029982px;}
.ha_c00270{height:47.826114px;}
.h2_c00270{height:58.667764px;}
.hb_c00270{height:58.929966px;}
.h3_c00270{height:63.768724px;}
.h4_c00270{height:64.053724px;}
.h5_c00270{height:1249.830756px;}
.h1_c00270{height:1262.879062px;}
.h0_c00270{height:1263.000000px;}
.w3_c00270{width:9.621000px;}
.w4_c00270{width:9.622800px;}
.w2_c00270{width:883.195846px;}
.w1_c00270{width:892.414744px;}
.w0_c00270{width:892.500000px;}
.x0_c00270{left:0.000000px;}
.x7_c00270{left:1.541954px;}
.x8_c00270{left:112.753050px;}
.x2_c00270{left:126.216356px;}
.x4_c00270{left:252.504495px;}
.x3_c00270{left:270.140236px;}
.x6_c00270{left:308.967587px;}
.x5_c00270{left:420.296029px;}
.x9_c00270{left:486.811319px;}
.x1_c00270{left:497.784645px;}
.xa_c00270{left:620.405797px;}
.xb_c00270{left:729.239754px;}
.xc_c00270{left:770.680800px;}
.xd_c00270{left:778.870800px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:0.000000pt;}
._0_c00270{margin-left:-1.190722pt;}
._1_c00270{width:0.938922pt;}
.fs3_c00270{font-size:42.432943pt;}
.fs4_c00270{font-size:47.499554pt;}
.fs2_c00270{font-size:52.566166pt;}
.fs0_c00270{font-size:58.267177pt;}
.fs1_c00270{font-size:63.333308pt;}
.y39_c00270{bottom:-0.319756pt;}
.y3b_c00270{bottom:-0.316984pt;}
.y3d_c00270{bottom:-0.316333pt;}
.y0_c00270{bottom:0.000000pt;}
.y1_c00270{bottom:0.107500pt;}
.y8_c00270{bottom:6.068128pt;}
.ya_c00270{bottom:57.896246pt;}
.y3_c00270{bottom:74.146170pt;}
.y2_c00270{bottom:74.783670pt;}
.y37_c00270{bottom:112.836224pt;}
.y36_c00270{bottom:129.462484pt;}
.y35_c00270{bottom:146.089411pt;}
.y34_c00270{bottom:162.711938pt;}
.y3c_c00270{bottom:166.881600pt;}
.y33_c00270{bottom:179.338865pt;}
.y32_c00270{bottom:195.960725pt;}
.y31_c00270{bottom:212.587651pt;}
.y30_c00270{bottom:229.210178pt;}
.y2f_c00270{bottom:245.835238pt;}
.y2e_c00270{bottom:262.460298pt;}
.y2d_c00270{bottom:279.084025pt;}
.y2c_c00270{bottom:295.709085pt;}
.y2b_c00270{bottom:328.800271pt;}
.y2a_c00270{bottom:364.267724pt;}
.y29_c00270{bottom:386.431715pt;}
.y28_c00270{bottom:418.891702pt;}
.y27_c00270{bottom:452.142622pt;}
.y3a_c00270{bottom:461.380800pt;}
.y26_c00270{bottom:468.767682pt;}
.y25_c00270{bottom:485.388875pt;}
.y24_c00270{bottom:502.015135pt;}
.y23_c00270{bottom:518.637662pt;}
.y22_c00270{bottom:535.265789pt;}
.y21_c00270{bottom:551.893915pt;}
.y20_c00270{bottom:568.516442pt;}
.y1f_c00270{bottom:585.141502pt;}
.y1e_c00270{bottom:601.766562pt;}
.y1d_c00270{bottom:618.389089pt;}
.y1c_c00270{bottom:651.482809pt;}
.y1a_c00270{bottom:669.688668pt;}
.y1b_c00270{bottom:669.690268pt;}
.y19_c00270{bottom:686.314262pt;}
.y18_c00270{bottom:702.939588pt;}
.y17_c00270{bottom:719.564382pt;}
.y38_c00270{bottom:722.628800pt;}
.y16_c00270{bottom:736.190642pt;}
.y15_c00270{bottom:752.816902pt;}
.y14_c00270{bottom:769.441962pt;}
.y13_c00270{bottom:786.065688pt;}
.y12_c00270{bottom:802.689415pt;}
.y11_c00270{bottom:819.315009pt;}
.y10_c00270{bottom:835.938735pt;}
.yf_c00270{bottom:852.562462pt;}
.ye_c00270{bottom:885.655515pt;}
.yd_c00270{bottom:920.964301pt;}
.yc_c00270{bottom:939.171761pt;}
.yb_c00270{bottom:955.796821pt;}
.y9_c00270{bottom:972.580814pt;}
.y7_c00270{bottom:1000.229433pt;}
.y6_c00270{bottom:1018.754492pt;}
.y5_c00270{bottom:1036.963819pt;}
.y4_c00270{bottom:1055.170745pt;}
.hc_c00270{height:13.614400pt;}
.h9_c00270{height:26.817620pt;}
.h7_c00270{height:33.221817pt;}
.h6_c00270{height:36.824856pt;}
.h8_c00270{height:40.026651pt;}
.ha_c00270{height:42.512101pt;}
.h2_c00270{height:52.149123pt;}
.hb_c00270{height:52.382192pt;}
.h3_c00270{height:56.683311pt;}
.h4_c00270{height:56.936644pt;}
.h5_c00270{height:1110.960672pt;}
.h1_c00270{height:1122.559167pt;}
.h0_c00270{height:1122.666667pt;}
.w3_c00270{width:8.552000pt;}
.w4_c00270{width:8.553600pt;}
.w2_c00270{width:785.062974pt;}
.w1_c00270{width:793.257550pt;}
.w0_c00270{width:793.333333pt;}
.x0_c00270{left:0.000000pt;}
.x7_c00270{left:1.370626pt;}
.x8_c00270{left:100.224934pt;}
.x2_c00270{left:112.192317pt;}
.x4_c00270{left:224.448440pt;}
.x3_c00270{left:240.124654pt;}
.x6_c00270{left:274.637856pt;}
.x5_c00270{left:373.596470pt;}
.x9_c00270{left:432.721172pt;}
.x1_c00270{left:442.475240pt;}
.xa_c00270{left:551.471820pt;}
.xb_c00270{left:648.213115pt;}
.xc_c00270{left:685.049600pt;}
.xd_c00270{left:692.329600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:0.632000;font-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_c00271{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls0_c00271{letter-spacing:0.000000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:0.000000px;}
._0_c00271{margin-left:-1.339562px;}
._1_c00271{width:1.056287px;}
.fc2_c00271{color:transparent;}
.fc1_c00271{color:rgb(105,148,45);}
.fc0_c00271{color:rgb(35,31,32);}
.fs3_c00271{font-size:53.436999px;}
.fs2_c00271{font-size:59.136936px;}
.fs0_c00271{font-size:65.550574px;}
.fs1_c00271{font-size:71.249972px;}
.y3b_c00271{bottom:-0.358518px;}
.y3d_c00271{bottom:-0.356595px;}
.y40_c00271{bottom:-0.356475px;}
.y0_c00271{bottom:0.000000px;}
.y1_c00271{bottom:0.120938px;}
.y8_c00271{bottom:6.826644px;}
.ya_c00271{bottom:65.133277px;}
.y3_c00271{bottom:83.414442px;}
.y2_c00271{bottom:84.131629px;}
.y39_c00271{bottom:113.581308px;}
.y38_c00271{bottom:132.285850px;}
.y37_c00271{bottom:150.991293px;}
.y36_c00271{bottom:169.692535px;}
.y3f_c00271{bottom:188.096400px;}
.y35_c00271{bottom:188.397078px;}
.y3e_c00271{bottom:190.113486px;}
.y34_c00271{bottom:207.100270px;}
.y33_c00271{bottom:225.800613px;}
.y32_c00271{bottom:244.505155px;}
.y31_c00271{bottom:263.206848px;}
.y30_c00271{bottom:281.910041px;}
.y2f_c00271{bottom:300.614583px;}
.y2e_c00271{bottom:319.313426px;}
.y2d_c00271{bottom:338.017968px;}
.y2c_c00271{bottom:356.721161px;}
.y2b_c00271{bottom:375.426453px;}
.y2a_c00271{bottom:412.475538px;}
.y29_c00271{bottom:432.959680px;}
.y28_c00271{bottom:451.663173px;}
.y27_c00271{bottom:470.366215px;}
.y3c_c00271{bottom:488.948400px;}
.y26_c00271{bottom:489.069408px;}
.y25_c00271{bottom:507.771100px;}
.y24_c00271{bottom:526.472793px;}
.y23_c00271{bottom:545.175985px;}
.y22_c00271{bottom:563.876328px;}
.y21_c00271{bottom:582.580870px;}
.y20_c00271{bottom:601.282563px;}
.y1f_c00271{bottom:619.985755px;}
.y1e_c00271{bottom:638.691048px;}
.y1d_c00271{bottom:657.390640px;}
.y1c_c00271{bottom:676.095933px;}
.y1b_c00271{bottom:713.322168px;}
.y1a_c00271{bottom:733.807060px;}
.y19_c00271{bottom:752.510552px;}
.y18_c00271{bottom:789.917537px;}
.y3a_c00271{bottom:796.210200px;}
.y17_c00271{bottom:808.622080px;}
.y16_c00271{bottom:827.323772px;}
.y15_c00271{bottom:846.026965px;}
.y14_c00271{bottom:864.731507px;}
.y13_c00271{bottom:883.431850px;}
.y12_c00271{bottom:902.133542px;}
.y11_c00271{bottom:920.833885px;}
.y10_c00271{bottom:939.537677px;}
.yf_c00271{bottom:958.241470px;}
.ye_c00271{bottom:976.945262px;}
.yd_c00271{bottom:995.646955px;}
.yc_c00271{bottom:1032.871840px;}
.yb_c00271{bottom:1072.596924px;}
.y9_c00271{bottom:1094.153416px;}
.y7_c00271{bottom:1125.258112px;}
.y6_c00271{bottom:1146.098804px;}
.y5_c00271{bottom:1166.584296px;}
.y4_c00271{bottom:1187.067088px;}
.hb_c00271{height:15.314400px;}
.hc_c00271{height:15.318000px;}
.ha_c00271{height:15.327000px;}
.h7_c00271{height:37.374544px;}
.h6_c00271{height:41.427963px;}
.h8_c00271{height:45.029982px;}
.h9_c00271{height:47.826114px;}
.h2_c00271{height:58.667764px;}
.h3_c00271{height:63.768724px;}
.h4_c00271{height:64.053724px;}
.h5_c00271{height:1249.830756px;}
.h1_c00271{height:1262.879062px;}
.h0_c00271{height:1263.000000px;}
.w3_c00271{width:9.622800px;}
.w2_c00271{width:883.195846px;}
.w1_c00271{width:892.414744px;}
.w0_c00271{width:892.500000px;}
.x0_c00271{left:0.000000px;}
.x7_c00271{left:1.541954px;}
.x8_c00271{left:112.753050px;}
.x2_c00271{left:126.216356px;}
.x4_c00271{left:252.504495px;}
.x3_c00271{left:270.140236px;}
.x6_c00271{left:308.967587px;}
.x5_c00271{left:420.296029px;}
.xa_c00271{left:433.661170px;}
.x1_c00271{left:497.784645px;}
.x9_c00271{left:778.870800px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:0.000000pt;}
._0_c00271{margin-left:-1.190722pt;}
._1_c00271{width:0.938922pt;}
.fs3_c00271{font-size:47.499554pt;}
.fs2_c00271{font-size:52.566166pt;}
.fs0_c00271{font-size:58.267177pt;}
.fs1_c00271{font-size:63.333308pt;}
.y3b_c00271{bottom:-0.318683pt;}
.y3d_c00271{bottom:-0.316974pt;}
.y40_c00271{bottom:-0.316867pt;}
.y0_c00271{bottom:0.000000pt;}
.y1_c00271{bottom:0.107500pt;}
.y8_c00271{bottom:6.068128pt;}
.ya_c00271{bottom:57.896246pt;}
.y3_c00271{bottom:74.146170pt;}
.y2_c00271{bottom:74.783670pt;}
.y39_c00271{bottom:100.961163pt;}
.y38_c00271{bottom:117.587423pt;}
.y37_c00271{bottom:134.214483pt;}
.y36_c00271{bottom:150.837809pt;}
.y3f_c00271{bottom:167.196800pt;}
.y35_c00271{bottom:167.464069pt;}
.y3e_c00271{bottom:168.989766pt;}
.y34_c00271{bottom:184.089129pt;}
.y33_c00271{bottom:200.711656pt;}
.y32_c00271{bottom:217.337916pt;}
.y31_c00271{bottom:233.961643pt;}
.y30_c00271{bottom:250.586703pt;}
.y2f_c00271{bottom:267.212963pt;}
.y2e_c00271{bottom:283.834156pt;}
.y2d_c00271{bottom:300.460416pt;}
.y2c_c00271{bottom:317.085476pt;}
.y2b_c00271{bottom:333.712403pt;}
.y2a_c00271{bottom:366.644923pt;}
.y29_c00271{bottom:384.853049pt;}
.y28_c00271{bottom:401.478376pt;}
.y27_c00271{bottom:418.103302pt;}
.y3c_c00271{bottom:434.620800pt;}
.y26_c00271{bottom:434.728362pt;}
.y25_c00271{bottom:451.352089pt;}
.y24_c00271{bottom:467.975816pt;}
.y23_c00271{bottom:484.600876pt;}
.y22_c00271{bottom:501.223402pt;}
.y21_c00271{bottom:517.849662pt;}
.y20_c00271{bottom:534.473389pt;}
.y1f_c00271{bottom:551.098449pt;}
.y1e_c00271{bottom:567.725376pt;}
.y1d_c00271{bottom:584.347236pt;}
.y1c_c00271{bottom:600.974163pt;}
.y1b_c00271{bottom:634.064149pt;}
.y1a_c00271{bottom:652.272942pt;}
.y19_c00271{bottom:668.898269pt;}
.y18_c00271{bottom:702.148922pt;}
.y3a_c00271{bottom:707.742400pt;}
.y17_c00271{bottom:718.775182pt;}
.y16_c00271{bottom:735.398909pt;}
.y15_c00271{bottom:752.023969pt;}
.y14_c00271{bottom:768.650229pt;}
.y13_c00271{bottom:785.272755pt;}
.y12_c00271{bottom:801.896482pt;}
.y11_c00271{bottom:818.519009pt;}
.y10_c00271{bottom:835.144602pt;}
.yf_c00271{bottom:851.770196pt;}
.ye_c00271{bottom:868.395789pt;}
.yd_c00271{bottom:885.019516pt;}
.yc_c00271{bottom:918.108302pt;}
.yb_c00271{bottom:953.419488pt;}
.y9_c00271{bottom:972.580814pt;}
.y7_c00271{bottom:1000.229433pt;}
.y6_c00271{bottom:1018.754492pt;}
.y5_c00271{bottom:1036.963819pt;}
.y4_c00271{bottom:1055.170745pt;}
.hb_c00271{height:13.612800pt;}
.hc_c00271{height:13.616000pt;}
.ha_c00271{height:13.624000pt;}
.h7_c00271{height:33.221817pt;}
.h6_c00271{height:36.824856pt;}
.h8_c00271{height:40.026651pt;}
.h9_c00271{height:42.512101pt;}
.h2_c00271{height:52.149123pt;}
.h3_c00271{height:56.683311pt;}
.h4_c00271{height:56.936644pt;}
.h5_c00271{height:1110.960672pt;}
.h1_c00271{height:1122.559167pt;}
.h0_c00271{height:1122.666667pt;}
.w3_c00271{width:8.553600pt;}
.w2_c00271{width:785.062974pt;}
.w1_c00271{width:793.257550pt;}
.w0_c00271{width:793.333333pt;}
.x0_c00271{left:0.000000pt;}
.x7_c00271{left:1.370626pt;}
.x8_c00271{left:100.224934pt;}
.x2_c00271{left:112.192317pt;}
.x4_c00271{left:224.448440pt;}
.x3_c00271{left:240.124654pt;}
.x6_c00271{left:274.637856pt;}
.x5_c00271{left:373.596470pt;}
.xa_c00271{left:385.476596pt;}
.x1_c00271{left:442.475240pt;}
.x9_c00271{left:692.329600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:0.632000;font-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_c00272{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls0_c00272{letter-spacing:0.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:0.000000px;}
._0_c00272{margin-left:-1.339562px;}
._1_c00272{width:1.056287px;}
._2_c00272{width:200.510581px;}
.fc2_c00272{color:transparent;}
.fc1_c00272{color:rgb(105,148,45);}
.fc0_c00272{color:rgb(35,31,32);}
.fs3_c00272{font-size:53.436999px;}
.fs2_c00272{font-size:59.136936px;}
.fs0_c00272{font-size:65.550574px;}
.fs1_c00272{font-size:71.249972px;}
.y3f_c00272{bottom:-0.356595px;}
.y43_c00272{bottom:-0.353476px;}
.y3d_c00272{bottom:-0.178225px;}
.y0_c00272{bottom:0.000000px;}
.y1_c00272{bottom:0.120938px;}
.y41_c00272{bottom:0.710204px;}
.y8_c00272{bottom:6.826644px;}
.ya_c00272{bottom:65.133277px;}
.y3_c00272{bottom:83.414442px;}
.y2_c00272{bottom:84.131629px;}
.y3b_c00272{bottom:116.789657px;}
.y3a_c00272{bottom:135.491349px;}
.y39_c00272{bottom:154.192292px;}
.y38_c00272{bottom:172.904634px;}
.y42_c00272{bottom:191.480400px;}
.y37_c00272{bottom:191.606327px;}
.y36_c00272{bottom:210.309519px;}
.y35_c00272{bottom:229.011212px;}
.y34_c00272{bottom:247.712904px;}
.y33_c00272{bottom:266.416097px;}
.y32_c00272{bottom:285.121989px;}
.y31_c00272{bottom:303.823682px;}
.y30_c00272{bottom:322.522524px;}
.y2f_c00272{bottom:341.227067px;}
.y2e_c00272{bottom:359.928759px;}
.y2d_c00272{bottom:378.630452px;}
.y2c_c00272{bottom:415.858787px;}
.y2b_c00272{bottom:436.343679px;}
.y2a_c00272{bottom:455.042671px;}
.y29_c00272{bottom:473.733864px;}
.y3e_c00272{bottom:486.986400px;}
.y40_c00272{bottom:490.017600px;}
.y28_c00272{bottom:492.440506px;}
.y27_c00272{bottom:511.147149px;}
.y26_c00272{bottom:529.846741px;}
.y25_c00272{bottom:548.552034px;}
.y24_c00272{bottom:567.255826px;}
.y23_c00272{bottom:585.959619px;}
.y22_c00272{bottom:604.663411px;}
.y21_c00272{bottom:623.367204px;}
.y20_c00272{bottom:642.070996px;}
.y1f_c00272{bottom:660.776889px;}
.y1e_c00272{bottom:679.478581px;}
.y1d_c00272{bottom:716.706167px;}
.y1c_c00272{bottom:737.189558px;}
.y1b_c00272{bottom:755.896351px;}
.y1a_c00272{bottom:774.598043px;}
.y19_c00272{bottom:793.301986px;}
.y3c_c00272{bottom:811.706400px;}
.y18_c00272{bottom:812.007278px;}
.y17_c00272{bottom:830.712571px;}
.y16_c00272{bottom:849.412164px;}
.y15_c00272{bottom:868.117456px;}
.y14_c00272{bottom:886.820649px;}
.y13_c00272{bottom:905.522341px;}
.y12_c00272{bottom:924.222684px;}
.y11_c00272{bottom:942.927226px;}
.y10_c00272{bottom:961.628919px;}
.yf_c00272{bottom:980.330611px;}
.ye_c00272{bottom:999.035154px;}
.yd_c00272{bottom:1036.084839px;}
.yc_c00272{bottom:1056.568231px;}
.yb_c00272{bottom:1075.271423px;}
.y9_c00272{bottom:1094.153416px;}
.y7_c00272{bottom:1125.258112px;}
.y6_c00272{bottom:1146.098804px;}
.y5_c00272{bottom:1166.584296px;}
.y4_c00272{bottom:1187.067088px;}
.hb_c00272{height:15.316200px;}
.hd_c00272{height:15.318000px;}
.ha_c00272{height:15.498000px;}
.hc_c00272{height:16.387200px;}
.h7_c00272{height:37.374544px;}
.h6_c00272{height:41.427963px;}
.h8_c00272{height:45.029982px;}
.h9_c00272{height:47.826114px;}
.h2_c00272{height:58.667764px;}
.h3_c00272{height:63.768724px;}
.h4_c00272{height:64.053724px;}
.h5_c00272{height:1249.830756px;}
.h1_c00272{height:1262.879062px;}
.h0_c00272{height:1263.000000px;}
.w5_c00272{width:9.613800px;}
.w4_c00272{width:9.621000px;}
.w3_c00272{width:9.622800px;}
.w2_c00272{width:883.195846px;}
.w1_c00272{width:892.414744px;}
.w0_c00272{width:892.500000px;}
.x0_c00272{left:0.000000px;}
.x7_c00272{left:1.541954px;}
.x8_c00272{left:112.753050px;}
.x2_c00272{left:126.216356px;}
.x4_c00272{left:252.504495px;}
.x3_c00272{left:270.140236px;}
.x6_c00272{left:308.967587px;}
.x5_c00272{left:420.296029px;}
.xa_c00272{left:435.987000px;}
.x1_c00272{left:497.784645px;}
.xb_c00272{left:770.860800px;}
.x9_c00272{left:778.870800px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:0.000000pt;}
._0_c00272{margin-left:-1.190722pt;}
._1_c00272{width:0.938922pt;}
._2_c00272{width:178.231628pt;}
.fs3_c00272{font-size:47.499554pt;}
.fs2_c00272{font-size:52.566166pt;}
.fs0_c00272{font-size:58.267177pt;}
.fs1_c00272{font-size:63.333308pt;}
.y3f_c00272{bottom:-0.316973pt;}
.y43_c00272{bottom:-0.314201pt;}
.y3d_c00272{bottom:-0.158422pt;}
.y0_c00272{bottom:0.000000pt;}
.y1_c00272{bottom:0.107500pt;}
.y41_c00272{bottom:0.631292pt;}
.y8_c00272{bottom:6.068128pt;}
.ya_c00272{bottom:57.896246pt;}
.y3_c00272{bottom:74.146170pt;}
.y2_c00272{bottom:74.783670pt;}
.y3b_c00272{bottom:103.813028pt;}
.y3a_c00272{bottom:120.436755pt;}
.y39_c00272{bottom:137.059815pt;}
.y38_c00272{bottom:153.693008pt;}
.y42_c00272{bottom:170.204800pt;}
.y37_c00272{bottom:170.316735pt;}
.y36_c00272{bottom:186.941795pt;}
.y35_c00272{bottom:203.565521pt;}
.y34_c00272{bottom:220.189248pt;}
.y33_c00272{bottom:236.814308pt;}
.y32_c00272{bottom:253.441768pt;}
.y31_c00272{bottom:270.065495pt;}
.y30_c00272{bottom:286.686688pt;}
.y2f_c00272{bottom:303.312948pt;}
.y2e_c00272{bottom:319.936675pt;}
.y2d_c00272{bottom:336.560402pt;}
.y2c_c00272{bottom:369.652255pt;}
.y2b_c00272{bottom:387.861048pt;}
.y2a_c00272{bottom:404.482374pt;}
.y29_c00272{bottom:421.096768pt;}
.y3e_c00272{bottom:432.876800pt;}
.y40_c00272{bottom:435.571200pt;}
.y28_c00272{bottom:437.724894pt;}
.y27_c00272{bottom:454.353021pt;}
.y26_c00272{bottom:470.974881pt;}
.y25_c00272{bottom:487.601808pt;}
.y24_c00272{bottom:504.227401pt;}
.y23_c00272{bottom:520.852995pt;}
.y22_c00272{bottom:537.478588pt;}
.y21_c00272{bottom:554.104181pt;}
.y20_c00272{bottom:570.729775pt;}
.y1f_c00272{bottom:587.357235pt;}
.y1e_c00272{bottom:603.980961pt;}
.y1d_c00272{bottom:637.072148pt;}
.y1c_c00272{bottom:655.279607pt;}
.y1b_c00272{bottom:671.907867pt;}
.y1a_c00272{bottom:688.531594pt;}
.y19_c00272{bottom:705.157321pt;}
.y3c_c00272{bottom:721.516800pt;}
.y18_c00272{bottom:721.784248pt;}
.y17_c00272{bottom:738.411174pt;}
.y16_c00272{bottom:755.033034pt;}
.y15_c00272{bottom:771.659961pt;}
.y14_c00272{bottom:788.285021pt;}
.y13_c00272{bottom:804.908748pt;}
.y12_c00272{bottom:821.531274pt;}
.y11_c00272{bottom:838.157534pt;}
.y10_c00272{bottom:854.781261pt;}
.yf_c00272{bottom:871.404988pt;}
.ye_c00272{bottom:888.031248pt;}
.yd_c00272{bottom:920.964301pt;}
.yc_c00272{bottom:939.171761pt;}
.yb_c00272{bottom:955.796821pt;}
.y9_c00272{bottom:972.580814pt;}
.y7_c00272{bottom:1000.229433pt;}
.y6_c00272{bottom:1018.754492pt;}
.y5_c00272{bottom:1036.963819pt;}
.y4_c00272{bottom:1055.170745pt;}
.hb_c00272{height:13.614400pt;}
.hd_c00272{height:13.616000pt;}
.ha_c00272{height:13.776000pt;}
.hc_c00272{height:14.566400pt;}
.h7_c00272{height:33.221817pt;}
.h6_c00272{height:36.824856pt;}
.h8_c00272{height:40.026651pt;}
.h9_c00272{height:42.512101pt;}
.h2_c00272{height:52.149123pt;}
.h3_c00272{height:56.683311pt;}
.h4_c00272{height:56.936644pt;}
.h5_c00272{height:1110.960672pt;}
.h1_c00272{height:1122.559167pt;}
.h0_c00272{height:1122.666667pt;}
.w5_c00272{width:8.545600pt;}
.w4_c00272{width:8.552000pt;}
.w3_c00272{width:8.553600pt;}
.w2_c00272{width:785.062974pt;}
.w1_c00272{width:793.257550pt;}
.w0_c00272{width:793.333333pt;}
.x0_c00272{left:0.000000pt;}
.x7_c00272{left:1.370626pt;}
.x8_c00272{left:100.224934pt;}
.x2_c00272{left:112.192317pt;}
.x4_c00272{left:224.448440pt;}
.x3_c00272{left:240.124654pt;}
.x6_c00272{left:274.637856pt;}
.x5_c00272{left:373.596470pt;}
.xa_c00272{left:387.544000pt;}
.x1_c00272{left:442.475240pt;}
.xb_c00272{left:685.209600pt;}
.x9_c00272{left:692.329600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:0.632000;font-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_c00273{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:0.000000px;}
._0_c00273{margin-left:-1.339562px;}
._1_c00273{width:1.056287px;}
.fc2_c00273{color:transparent;}
.fc1_c00273{color:rgb(105,148,45);}
.fc0_c00273{color:rgb(35,31,32);}
.fs3_c00273{font-size:53.436999px;}
.fs2_c00273{font-size:59.136936px;}
.fs0_c00273{font-size:65.550574px;}
.fs1_c00273{font-size:71.249972px;}
.y3d_c00273{bottom:-0.363614px;}
.y41_c00273{bottom:-0.360673px;}
.y3f_c00273{bottom:-0.358097px;}
.y0_c00273{bottom:0.000000px;}
.y1_c00273{bottom:0.120938px;}
.y8_c00273{bottom:6.826644px;}
.ya_c00273{bottom:65.133277px;}
.y3_c00273{bottom:83.414442px;}
.y2_c00273{bottom:84.131629px;}
.y3b_c00273{bottom:116.786807px;}
.y3a_c00273{bottom:135.488499px;}
.y39_c00273{bottom:154.192292px;}
.y38_c00273{bottom:172.904634px;}
.y40_c00273{bottom:181.686600px;}
.y37_c00273{bottom:191.606327px;}
.y36_c00273{bottom:210.309519px;}
.y35_c00273{bottom:229.011212px;}
.y34_c00273{bottom:247.712904px;}
.y33_c00273{bottom:266.416097px;}
.y32_c00273{bottom:285.121989px;}
.y31_c00273{bottom:303.823682px;}
.y30_c00273{bottom:322.522524px;}
.y2f_c00273{bottom:341.227067px;}
.y2e_c00273{bottom:359.928759px;}
.y2d_c00273{bottom:378.630452px;}
.y2c_c00273{bottom:415.858787px;}
.y2b_c00273{bottom:436.343679px;}
.y2a_c00273{bottom:455.042671px;}
.y29_c00273{bottom:473.733864px;}
.y3e_c00273{bottom:492.332400px;}
.y28_c00273{bottom:492.440506px;}
.y27_c00273{bottom:511.147149px;}
.y26_c00273{bottom:529.846741px;}
.y25_c00273{bottom:548.552034px;}
.y24_c00273{bottom:567.255826px;}
.y23_c00273{bottom:585.959619px;}
.y22_c00273{bottom:604.663411px;}
.y21_c00273{bottom:623.367204px;}
.y20_c00273{bottom:642.070996px;}
.y1f_c00273{bottom:660.776889px;}
.y1e_c00273{bottom:679.478581px;}
.y1d_c00273{bottom:716.706167px;}
.y1c_c00273{bottom:737.189558px;}
.y1b_c00273{bottom:755.894551px;}
.y1a_c00273{bottom:774.605843px;}
.y3c_c00273{bottom:786.592800px;}
.y19_c00273{bottom:793.309036px;}
.y18_c00273{bottom:812.010728px;}
.y17_c00273{bottom:830.715271px;}
.y16_c00273{bottom:849.415614px;}
.y15_c00273{bottom:868.120156px;}
.y14_c00273{bottom:886.823349px;}
.y13_c00273{bottom:905.525041px;}
.y12_c00273{bottom:924.226734px;}
.y11_c00273{bottom:942.928426px;}
.y10_c00273{bottom:961.630119px;}
.yf_c00273{bottom:980.330461px;}
.ye_c00273{bottom:1017.384496px;}
.yd_c00273{bottom:1037.866538px;}
.yc_c00273{bottom:1056.568231px;}
.yb_c00273{bottom:1075.271423px;}
.y9_c00273{bottom:1094.153416px;}
.y7_c00273{bottom:1125.258112px;}
.y6_c00273{bottom:1146.098804px;}
.y5_c00273{bottom:1166.584296px;}
.y4_c00273{bottom:1187.067088px;}
.ha_c00273{height:15.316200px;}
.hb_c00273{height:15.318000px;}
.h7_c00273{height:37.374544px;}
.h6_c00273{height:41.427963px;}
.h8_c00273{height:45.029982px;}
.h9_c00273{height:47.826114px;}
.h2_c00273{height:58.667764px;}
.h3_c00273{height:63.768724px;}
.h4_c00273{height:64.053724px;}
.h5_c00273{height:1249.830756px;}
.h1_c00273{height:1262.879062px;}
.h0_c00273{height:1263.000000px;}
.w5_c00273{width:9.617400px;}
.w3_c00273{width:9.621000px;}
.w4_c00273{width:9.622800px;}
.w2_c00273{width:883.195846px;}
.w1_c00273{width:892.414744px;}
.w0_c00273{width:892.500000px;}
.x0_c00273{left:0.000000px;}
.x7_c00273{left:1.541954px;}
.x8_c00273{left:112.753050px;}
.x2_c00273{left:126.216356px;}
.x4_c00273{left:252.504495px;}
.x3_c00273{left:270.140236px;}
.x6_c00273{left:308.967587px;}
.x5_c00273{left:420.296029px;}
.xc_c00273{left:429.397200px;}
.xa_c00273{left:435.987000px;}
.x1_c00273{left:497.784645px;}
.x9_c00273{left:756.311743px;}
.xb_c00273{left:778.870800px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
._0_c00273{margin-left:-1.190722pt;}
._1_c00273{width:0.938922pt;}
.fs3_c00273{font-size:47.499554pt;}
.fs2_c00273{font-size:52.566166pt;}
.fs0_c00273{font-size:58.267177pt;}
.fs1_c00273{font-size:63.333308pt;}
.y3d_c00273{bottom:-0.323213pt;}
.y41_c00273{bottom:-0.320598pt;}
.y3f_c00273{bottom:-0.318308pt;}
.y0_c00273{bottom:0.000000pt;}
.y1_c00273{bottom:0.107500pt;}
.y8_c00273{bottom:6.068128pt;}
.ya_c00273{bottom:57.896246pt;}
.y3_c00273{bottom:74.146170pt;}
.y2_c00273{bottom:74.783670pt;}
.y3b_c00273{bottom:103.810495pt;}
.y3a_c00273{bottom:120.434221pt;}
.y39_c00273{bottom:137.059815pt;}
.y38_c00273{bottom:153.693008pt;}
.y40_c00273{bottom:161.499200pt;}
.y37_c00273{bottom:170.316735pt;}
.y36_c00273{bottom:186.941795pt;}
.y35_c00273{bottom:203.565521pt;}
.y34_c00273{bottom:220.189248pt;}
.y33_c00273{bottom:236.814308pt;}
.y32_c00273{bottom:253.441768pt;}
.y31_c00273{bottom:270.065495pt;}
.y30_c00273{bottom:286.686688pt;}
.y2f_c00273{bottom:303.312948pt;}
.y2e_c00273{bottom:319.936675pt;}
.y2d_c00273{bottom:336.560402pt;}
.y2c_c00273{bottom:369.652255pt;}
.y2b_c00273{bottom:387.861048pt;}
.y2a_c00273{bottom:404.482374pt;}
.y29_c00273{bottom:421.096768pt;}
.y3e_c00273{bottom:437.628800pt;}
.y28_c00273{bottom:437.724894pt;}
.y27_c00273{bottom:454.353021pt;}
.y26_c00273{bottom:470.974881pt;}
.y25_c00273{bottom:487.601808pt;}
.y24_c00273{bottom:504.227401pt;}
.y23_c00273{bottom:520.852995pt;}
.y22_c00273{bottom:537.478588pt;}
.y21_c00273{bottom:554.104181pt;}
.y20_c00273{bottom:570.729775pt;}
.y1f_c00273{bottom:587.357235pt;}
.y1e_c00273{bottom:603.980961pt;}
.y1d_c00273{bottom:637.072148pt;}
.y1c_c00273{bottom:655.279607pt;}
.y1b_c00273{bottom:671.906267pt;}
.y1a_c00273{bottom:688.538527pt;}
.y3c_c00273{bottom:699.193600pt;}
.y19_c00273{bottom:705.163588pt;}
.y18_c00273{bottom:721.787314pt;}
.y17_c00273{bottom:738.413574pt;}
.y16_c00273{bottom:755.036101pt;}
.y15_c00273{bottom:771.662361pt;}
.y14_c00273{bottom:788.287421pt;}
.y13_c00273{bottom:804.911148pt;}
.y12_c00273{bottom:821.534874pt;}
.y11_c00273{bottom:838.158601pt;}
.y10_c00273{bottom:854.782328pt;}
.yf_c00273{bottom:871.404854pt;}
.ye_c00273{bottom:904.341775pt;}
.yd_c00273{bottom:922.548034pt;}
.yc_c00273{bottom:939.171761pt;}
.yb_c00273{bottom:955.796821pt;}
.y9_c00273{bottom:972.580814pt;}
.y7_c00273{bottom:1000.229433pt;}
.y6_c00273{bottom:1018.754492pt;}
.y5_c00273{bottom:1036.963819pt;}
.y4_c00273{bottom:1055.170745pt;}
.ha_c00273{height:13.614400pt;}
.hb_c00273{height:13.616000pt;}
.h7_c00273{height:33.221817pt;}
.h6_c00273{height:36.824856pt;}
.h8_c00273{height:40.026651pt;}
.h9_c00273{height:42.512101pt;}
.h2_c00273{height:52.149123pt;}
.h3_c00273{height:56.683311pt;}
.h4_c00273{height:56.936644pt;}
.h5_c00273{height:1110.960672pt;}
.h1_c00273{height:1122.559167pt;}
.h0_c00273{height:1122.666667pt;}
.w5_c00273{width:8.548800pt;}
.w3_c00273{width:8.552000pt;}
.w4_c00273{width:8.553600pt;}
.w2_c00273{width:785.062974pt;}
.w1_c00273{width:793.257550pt;}
.w0_c00273{width:793.333333pt;}
.x0_c00273{left:0.000000pt;}
.x7_c00273{left:1.370626pt;}
.x8_c00273{left:100.224934pt;}
.x2_c00273{left:112.192317pt;}
.x4_c00273{left:224.448440pt;}
.x3_c00273{left:240.124654pt;}
.x6_c00273{left:274.637856pt;}
.x5_c00273{left:373.596470pt;}
.xc_c00273{left:381.686400pt;}
.xa_c00273{left:387.544000pt;}
.x1_c00273{left:442.475240pt;}
.x9_c00273{left:672.277105pt;}
.xb_c00273{left:692.329600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:0.632000;font-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_c00274{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls0_c00274{letter-spacing:0.000000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:0.000000px;}
._0_c00274{margin-left:-1.339562px;}
._1_c00274{width:1.056287px;}
.fc2_c00274{color:rgb(38,69,127);}
.fc3_c00274{color:transparent;}
.fc1_c00274{color:rgb(105,148,45);}
.fc0_c00274{color:rgb(35,31,32);}
.fs3_c00274{font-size:53.436999px;}
.fs2_c00274{font-size:59.136936px;}
.fs0_c00274{font-size:65.550574px;}
.fs1_c00274{font-size:71.249972px;}
.y3f_c00274{bottom:-0.355560px;}
.y3b_c00274{bottom:-0.178225px;}
.y3d_c00274{bottom:-0.001081px;}
.y0_c00274{bottom:0.000000px;}
.y1_c00274{bottom:0.120938px;}
.y8_c00274{bottom:6.826644px;}
.ya_c00274{bottom:65.133277px;}
.y3_c00274{bottom:83.414442px;}
.y2_c00274{bottom:84.131629px;}
.y39_c00274{bottom:114.117108px;}
.y38_c00274{bottom:132.820900px;}
.y3e_c00274{bottom:151.402500px;}
.y37_c00274{bottom:151.524093px;}
.y36_c00274{bottom:170.225785px;}
.y35_c00274{bottom:188.928978px;}
.y34_c00274{bottom:207.630670px;}
.y33_c00274{bottom:226.332363px;}
.y32_c00274{bottom:245.035555px;}
.y31_c00274{bottom:263.740098px;}
.y30_c00274{bottom:282.440440px;}
.y2f_c00274{bottom:301.144233px;}
.y2e_c00274{bottom:319.848025px;}
.y2d_c00274{bottom:338.549718px;}
.y2c_c00274{bottom:375.778803px;}
.y2b_c00274{bottom:396.262195px;}
.y2a_c00274{bottom:414.968687px;}
.y29_c00274{bottom:433.662580px;}
.y3c_c00274{bottom:452.075400px;}
.y28_c00274{bottom:452.365772px;}
.y27_c00274{bottom:471.068965px;}
.y26_c00274{bottom:489.774857px;}
.y25_c00274{bottom:508.478050px;}
.y24_c00274{bottom:527.181242px;}
.y23_c00274{bottom:545.884435px;}
.y22_c00274{bottom:564.587627px;}
.y21_c00274{bottom:583.289320px;}
.y20_c00274{bottom:601.994612px;}
.y1f_c00274{bottom:620.699905px;}
.y1e_c00274{bottom:639.401598px;}
.y1d_c00274{bottom:676.450683px;}
.y1c_c00274{bottom:696.935574px;}
.y1b_c00274{bottom:719.380066px;}
.y1a_c00274{bottom:774.598043px;}
.y19_c00274{bottom:793.301986px;}
.y3a_c00274{bottom:811.706400px;}
.y18_c00274{bottom:812.007278px;}
.y17_c00274{bottom:830.712571px;}
.y16_c00274{bottom:849.412164px;}
.y15_c00274{bottom:868.117456px;}
.y14_c00274{bottom:886.820649px;}
.y13_c00274{bottom:905.522341px;}
.y12_c00274{bottom:924.222684px;}
.y11_c00274{bottom:942.927226px;}
.y10_c00274{bottom:961.628919px;}
.yf_c00274{bottom:980.330611px;}
.ye_c00274{bottom:999.035154px;}
.yd_c00274{bottom:1036.084839px;}
.yc_c00274{bottom:1056.568231px;}
.yb_c00274{bottom:1075.271423px;}
.y9_c00274{bottom:1094.153416px;}
.y7_c00274{bottom:1125.258112px;}
.y6_c00274{bottom:1146.098804px;}
.y5_c00274{bottom:1166.584296px;}
.y4_c00274{bottom:1187.067088px;}
.hd_c00274{height:15.318360px;}
.hb_c00274{height:15.498000px;}
.hc_c00274{height:15.674400px;}
.h7_c00274{height:37.374544px;}
.h6_c00274{height:41.427963px;}
.h8_c00274{height:45.029982px;}
.h9_c00274{height:47.826114px;}
.h2_c00274{height:58.667764px;}
.ha_c00274{height:58.929966px;}
.h3_c00274{height:63.768724px;}
.h4_c00274{height:64.053724px;}
.h5_c00274{height:1249.830756px;}
.h1_c00274{height:1262.879062px;}
.h0_c00274{height:1263.000000px;}
.w4_c00274{width:9.619200px;}
.w3_c00274{width:9.622800px;}
.w2_c00274{width:883.195846px;}
.w1_c00274{width:892.414744px;}
.w0_c00274{width:892.500000px;}
.x0_c00274{left:0.000000px;}
.x7_c00274{left:1.541954px;}
.x8_c00274{left:112.753050px;}
.x2_c00274{left:126.216356px;}
.x4_c00274{left:252.504495px;}
.x3_c00274{left:270.140236px;}
.x6_c00274{left:308.967587px;}
.x5_c00274{left:420.296029px;}
.x1_c00274{left:497.784645px;}
.x9_c00274{left:778.870800px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws0_c00274{word-spacing:0.000000pt;}
._0_c00274{margin-left:-1.190722pt;}
._1_c00274{width:0.938922pt;}
.fs3_c00274{font-size:47.499554pt;}
.fs2_c00274{font-size:52.566166pt;}
.fs0_c00274{font-size:58.267177pt;}
.fs1_c00274{font-size:63.333308pt;}
.y3f_c00274{bottom:-0.316054pt;}
.y3b_c00274{bottom:-0.158422pt;}
.y3d_c00274{bottom:-0.000961pt;}
.y0_c00274{bottom:0.000000pt;}
.y1_c00274{bottom:0.107500pt;}
.y8_c00274{bottom:6.068128pt;}
.ya_c00274{bottom:57.896246pt;}
.y3_c00274{bottom:74.146170pt;}
.y2_c00274{bottom:74.783670pt;}
.y39_c00274{bottom:101.437429pt;}
.y38_c00274{bottom:118.063022pt;}
.y3e_c00274{bottom:134.580000pt;}
.y37_c00274{bottom:134.688082pt;}
.y36_c00274{bottom:151.311809pt;}
.y35_c00274{bottom:167.936869pt;}
.y34_c00274{bottom:184.560596pt;}
.y33_c00274{bottom:201.184322pt;}
.y32_c00274{bottom:217.809382pt;}
.y31_c00274{bottom:234.435642pt;}
.y30_c00274{bottom:251.058169pt;}
.y2f_c00274{bottom:267.683762pt;}
.y2e_c00274{bottom:284.309356pt;}
.y2d_c00274{bottom:300.933083pt;}
.y2c_c00274{bottom:334.025603pt;}
.y2b_c00274{bottom:352.233062pt;}
.y2a_c00274{bottom:368.861055pt;}
.y29_c00274{bottom:385.477849pt;}
.y3c_c00274{bottom:401.844800pt;}
.y28_c00274{bottom:402.102909pt;}
.y27_c00274{bottom:418.727969pt;}
.y26_c00274{bottom:435.355429pt;}
.y25_c00274{bottom:451.980489pt;}
.y24_c00274{bottom:468.605549pt;}
.y23_c00274{bottom:485.230609pt;}
.y22_c00274{bottom:501.855669pt;}
.y21_c00274{bottom:518.479396pt;}
.y20_c00274{bottom:535.106322pt;}
.y1f_c00274{bottom:551.733249pt;}
.y1e_c00274{bottom:568.356976pt;}
.y1d_c00274{bottom:601.289496pt;}
.y1c_c00274{bottom:619.498288pt;}
.y1b_c00274{bottom:639.448947pt;}
.y1a_c00274{bottom:688.531594pt;}
.y19_c00274{bottom:705.157321pt;}
.y3a_c00274{bottom:721.516800pt;}
.y18_c00274{bottom:721.784248pt;}
.y17_c00274{bottom:738.411174pt;}
.y16_c00274{bottom:755.033034pt;}
.y15_c00274{bottom:771.659961pt;}
.y14_c00274{bottom:788.285021pt;}
.y13_c00274{bottom:804.908748pt;}
.y12_c00274{bottom:821.531274pt;}
.y11_c00274{bottom:838.157534pt;}
.y10_c00274{bottom:854.781261pt;}
.yf_c00274{bottom:871.404988pt;}
.ye_c00274{bottom:888.031248pt;}
.yd_c00274{bottom:920.964301pt;}
.yc_c00274{bottom:939.171761pt;}
.yb_c00274{bottom:955.796821pt;}
.y9_c00274{bottom:972.580814pt;}
.y7_c00274{bottom:1000.229433pt;}
.y6_c00274{bottom:1018.754492pt;}
.y5_c00274{bottom:1036.963819pt;}
.y4_c00274{bottom:1055.170745pt;}
.hd_c00274{height:13.616320pt;}
.hb_c00274{height:13.776000pt;}
.hc_c00274{height:13.932800pt;}
.h7_c00274{height:33.221817pt;}
.h6_c00274{height:36.824856pt;}
.h8_c00274{height:40.026651pt;}
.h9_c00274{height:42.512101pt;}
.h2_c00274{height:52.149123pt;}
.ha_c00274{height:52.382192pt;}
.h3_c00274{height:56.683311pt;}
.h4_c00274{height:56.936644pt;}
.h5_c00274{height:1110.960672pt;}
.h1_c00274{height:1122.559167pt;}
.h0_c00274{height:1122.666667pt;}
.w4_c00274{width:8.550400pt;}
.w3_c00274{width:8.553600pt;}
.w2_c00274{width:785.062974pt;}
.w1_c00274{width:793.257550pt;}
.w0_c00274{width:793.333333pt;}
.x0_c00274{left:0.000000pt;}
.x7_c00274{left:1.370626pt;}
.x8_c00274{left:100.224934pt;}
.x2_c00274{left:112.192317pt;}
.x4_c00274{left:224.448440pt;}
.x3_c00274{left:240.124654pt;}
.x6_c00274{left:274.637856pt;}
.x5_c00274{left:373.596470pt;}
.x1_c00274{left:442.475240pt;}
.x9_c00274{left:692.329600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:0.632000;font-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_c00275{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:-16.387643px;}
.ws1_c00275{word-spacing:0.000000px;}
._0_c00275{margin-left:-1.339562px;}
._1_c00275{width:1.056287px;}
.fc2_c00275{color:transparent;}
.fc1_c00275{color:rgb(105,148,45);}
.fc0_c00275{color:rgb(35,31,32);}
.fs3_c00275{font-size:53.436999px;}
.fs2_c00275{font-size:59.136936px;}
.fs0_c00275{font-size:65.550574px;}
.fs1_c00275{font-size:71.249972px;}
.y3e_c00275{bottom:-0.178225px;}
.y40_c00275{bottom:-0.004404px;}
.y42_c00275{bottom:-0.003686px;}
.y0_c00275{bottom:0.000000px;}
.y1_c00275{bottom:0.120938px;}
.y8_c00275{bottom:6.826644px;}
.ya_c00275{bottom:65.133277px;}
.y3_c00275{bottom:83.414442px;}
.y2_c00275{bottom:84.131629px;}
.y3c_c00275{bottom:116.789897px;}
.y3b_c00275{bottom:131.573801px;}
.y3a_c00275{bottom:146.534885px;}
.y39_c00275{bottom:161.318789px;}
.y38_c00275{bottom:176.816783px;}
.y37_c00275{bottom:195.524025px;}
.y41_c00275{bottom:214.104600px;}
.y36_c00275{bottom:214.230668px;}
.y35_c00275{bottom:232.930260px;}
.y34_c00275{bottom:251.633453px;}
.y33_c00275{bottom:270.336645px;}
.y32_c00275{bottom:289.036988px;}
.y31_c00275{bottom:307.742880px;}
.y30_c00275{bottom:326.443223px;}
.y2f_c00275{bottom:345.144915px;}
.y2e_c00275{bottom:363.848108px;}
.y2d_c00275{bottom:382.551300px;}
.y2c_c00275{bottom:401.252993px;}
.y2b_c00275{bottom:438.482678px;}
.y2a_c00275{bottom:458.251170px;}
.y29_c00275{bottom:473.747664px;}
.y28_c00275{bottom:492.451156px;}
.y3f_c00275{bottom:511.036200px;}
.y27_c00275{bottom:511.154349px;}
.y26_c00275{bottom:529.856041px;}
.y25_c00275{bottom:548.559234px;}
.y24_c00275{bottom:567.263776px;}
.y23_c00275{bottom:585.968319px;}
.y22_c00275{bottom:604.670011px;}
.y21_c00275{bottom:623.374554px;}
.y20_c00275{bottom:642.073396px;}
.y1f_c00275{bottom:660.777939px;}
.y1e_c00275{bottom:679.481131px;}
.y1d_c00275{bottom:698.182824px;}
.y1c_c00275{bottom:735.411159px;}
.y1b_c00275{bottom:755.894551px;}
.y1a_c00275{bottom:774.598043px;}
.y19_c00275{bottom:793.301986px;}
.y3d_c00275{bottom:811.706400px;}
.y18_c00275{bottom:812.007278px;}
.y17_c00275{bottom:830.712571px;}
.y16_c00275{bottom:849.412164px;}
.y15_c00275{bottom:868.117456px;}
.y14_c00275{bottom:886.820649px;}
.y13_c00275{bottom:905.522341px;}
.y12_c00275{bottom:924.222684px;}
.y11_c00275{bottom:942.927226px;}
.y10_c00275{bottom:961.628919px;}
.yf_c00275{bottom:980.330611px;}
.ye_c00275{bottom:999.035154px;}
.yd_c00275{bottom:1036.084839px;}
.yc_c00275{bottom:1056.568231px;}
.yb_c00275{bottom:1075.271423px;}
.y9_c00275{bottom:1094.153416px;}
.y7_c00275{bottom:1125.258112px;}
.y6_c00275{bottom:1146.098804px;}
.y5_c00275{bottom:1166.584296px;}
.y4_c00275{bottom:1187.067088px;}
.ha_c00275{height:15.498000px;}
.hc_c00275{height:15.674400px;}
.hb_c00275{height:15.676200px;}
.h7_c00275{height:37.374544px;}
.h6_c00275{height:41.427963px;}
.h8_c00275{height:45.029982px;}
.h9_c00275{height:47.826114px;}
.h2_c00275{height:58.667764px;}
.h3_c00275{height:63.768724px;}
.h4_c00275{height:64.053724px;}
.h5_c00275{height:1249.830756px;}
.h1_c00275{height:1262.879062px;}
.h0_c00275{height:1263.000000px;}
.w4_c00275{width:9.619200px;}
.w3_c00275{width:9.622800px;}
.w2_c00275{width:883.195846px;}
.w1_c00275{width:892.414744px;}
.w0_c00275{width:892.500000px;}
.x0_c00275{left:0.000000px;}
.x7_c00275{left:1.541954px;}
.x8_c00275{left:112.753050px;}
.x2_c00275{left:126.216356px;}
.x4_c00275{left:252.504495px;}
.x3_c00275{left:270.140236px;}
.x6_c00275{left:308.967587px;}
.x5_c00275{left:420.296029px;}
.x1_c00275{left:497.784645px;}
.x9_c00275{left:778.870800px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:-14.566794pt;}
.ws1_c00275{word-spacing:0.000000pt;}
._0_c00275{margin-left:-1.190722pt;}
._1_c00275{width:0.938922pt;}
.fs3_c00275{font-size:47.499554pt;}
.fs2_c00275{font-size:52.566166pt;}
.fs0_c00275{font-size:58.267177pt;}
.fs1_c00275{font-size:63.333308pt;}
.y3e_c00275{bottom:-0.158422pt;}
.y40_c00275{bottom:-0.003915pt;}
.y42_c00275{bottom:-0.003276pt;}
.y0_c00275{bottom:0.000000pt;}
.y1_c00275{bottom:0.107500pt;}
.y8_c00275{bottom:6.068128pt;}
.ya_c00275{bottom:57.896246pt;}
.y3_c00275{bottom:74.146170pt;}
.y2_c00275{bottom:74.783670pt;}
.y3c_c00275{bottom:103.813241pt;}
.y3b_c00275{bottom:116.954489pt;}
.y3a_c00275{bottom:130.253231pt;}
.y39_c00275{bottom:143.394479pt;}
.y38_c00275{bottom:157.170473pt;}
.y37_c00275{bottom:173.799133pt;}
.y41_c00275{bottom:190.315200pt;}
.y36_c00275{bottom:190.427260pt;}
.y35_c00275{bottom:207.049120pt;}
.y34_c00275{bottom:223.674180pt;}
.y33_c00275{bottom:240.299240pt;}
.y32_c00275{bottom:256.921767pt;}
.y31_c00275{bottom:273.549227pt;}
.y30_c00275{bottom:290.171754pt;}
.y2f_c00275{bottom:306.795480pt;}
.y2e_c00275{bottom:323.420540pt;}
.y2d_c00275{bottom:340.045600pt;}
.y2c_c00275{bottom:356.669327pt;}
.y2b_c00275{bottom:389.762380pt;}
.y2a_c00275{bottom:407.334373pt;}
.y29_c00275{bottom:421.109034pt;}
.y28_c00275{bottom:437.734361pt;}
.y3f_c00275{bottom:454.254400pt;}
.y27_c00275{bottom:454.359421pt;}
.y26_c00275{bottom:470.983148pt;}
.y25_c00275{bottom:487.608208pt;}
.y24_c00275{bottom:504.234468pt;}
.y23_c00275{bottom:520.860728pt;}
.y22_c00275{bottom:537.484455pt;}
.y21_c00275{bottom:554.110715pt;}
.y20_c00275{bottom:570.731908pt;}
.y1f_c00275{bottom:587.358168pt;}
.y1e_c00275{bottom:603.983228pt;}
.y1d_c00275{bottom:620.606955pt;}
.y1c_c00275{bottom:653.698808pt;}
.y1b_c00275{bottom:671.906267pt;}
.y1a_c00275{bottom:688.531594pt;}
.y19_c00275{bottom:705.157321pt;}
.y3d_c00275{bottom:721.516800pt;}
.y18_c00275{bottom:721.784248pt;}
.y17_c00275{bottom:738.411174pt;}
.y16_c00275{bottom:755.033034pt;}
.y15_c00275{bottom:771.659961pt;}
.y14_c00275{bottom:788.285021pt;}
.y13_c00275{bottom:804.908748pt;}
.y12_c00275{bottom:821.531274pt;}
.y11_c00275{bottom:838.157534pt;}
.y10_c00275{bottom:854.781261pt;}
.yf_c00275{bottom:871.404988pt;}
.ye_c00275{bottom:888.031248pt;}
.yd_c00275{bottom:920.964301pt;}
.yc_c00275{bottom:939.171761pt;}
.yb_c00275{bottom:955.796821pt;}
.y9_c00275{bottom:972.580814pt;}
.y7_c00275{bottom:1000.229433pt;}
.y6_c00275{bottom:1018.754492pt;}
.y5_c00275{bottom:1036.963819pt;}
.y4_c00275{bottom:1055.170745pt;}
.ha_c00275{height:13.776000pt;}
.hc_c00275{height:13.932800pt;}
.hb_c00275{height:13.934400pt;}
.h7_c00275{height:33.221817pt;}
.h6_c00275{height:36.824856pt;}
.h8_c00275{height:40.026651pt;}
.h9_c00275{height:42.512101pt;}
.h2_c00275{height:52.149123pt;}
.h3_c00275{height:56.683311pt;}
.h4_c00275{height:56.936644pt;}
.h5_c00275{height:1110.960672pt;}
.h1_c00275{height:1122.559167pt;}
.h0_c00275{height:1122.666667pt;}
.w4_c00275{width:8.550400pt;}
.w3_c00275{width:8.553600pt;}
.w2_c00275{width:785.062974pt;}
.w1_c00275{width:793.257550pt;}
.w0_c00275{width:793.333333pt;}
.x0_c00275{left:0.000000pt;}
.x7_c00275{left:1.370626pt;}
.x8_c00275{left:100.224934pt;}
.x2_c00275{left:112.192317pt;}
.x4_c00275{left:224.448440pt;}
.x3_c00275{left:240.124654pt;}
.x6_c00275{left:274.637856pt;}
.x5_c00275{left:373.596470pt;}
.x1_c00275{left:442.475240pt;}
.x9_c00275{left:692.329600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:0.632000;font-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_c00276{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00276{vertical-align:-2.849999px;}
.v0_c00276{vertical-align:0.000000px;}
.ls1_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:1358.994802px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:-16.387643px;}
.ws1_c00276{word-spacing:0.000000px;}
._0_c00276{margin-left:-1.339562px;}
._1_c00276{width:1.056287px;}
.fc2_c00276{color:transparent;}
.fc1_c00276{color:rgb(105,148,45);}
.fc0_c00276{color:rgb(35,31,32);}
.fs4_c00276{font-size:12.112495px;}
.fs3_c00276{font-size:53.436999px;}
.fs2_c00276{font-size:59.136936px;}
.fs0_c00276{font-size:65.550574px;}
.fs1_c00276{font-size:71.249972px;}
.y40_c00276{bottom:-0.360425px;}
.y0_c00276{bottom:0.000000px;}
.y3d_c00276{bottom:0.000884px;}
.y1_c00276{bottom:0.120938px;}
.y8_c00276{bottom:6.826644px;}
.ya_c00276{bottom:65.133277px;}
.y3_c00276{bottom:83.414442px;}
.y2_c00276{bottom:84.131629px;}
.y3b_c00276{bottom:121.774905px;}
.y3a_c00276{bottom:140.480797px;}
.y39_c00276{bottom:159.180390px;}
.y3f_c00276{bottom:163.872360px;}
.y38_c00276{bottom:177.884932px;}
.y37_c00276{bottom:196.589475px;}
.y36_c00276{bottom:215.292667px;}
.y35_c00276{bottom:233.997210px;}
.y34_c00276{bottom:252.697552px;}
.y33_c00276{bottom:271.402095px;}
.y32_c00276{bottom:290.104537px;}
.y31_c00276{bottom:308.809080px;}
.y30_c00276{bottom:346.036665px;}
.y2f_c00276{bottom:385.936199px;}
.y2e_c00276{bottom:405.701781px;}
.y2d_c00276{bottom:420.485685px;}
.y2c_c00276{bottom:435.983679px;}
.y2b_c00276{bottom:454.690171px;}
.y2a_c00276{bottom:473.389614px;}
.y3e_c00276{bottom:490.251366px;}
.y29_c00276{bottom:492.091306px;}
.y28_c00276{bottom:510.795849px;}
.y27_c00276{bottom:529.497541px;}
.y26_c00276{bottom:548.204184px;}
.y25_c00276{bottom:566.907377px;}
.y24_c00276{bottom:585.610569px;}
.y23_c00276{bottom:604.313762px;}
.y22_c00276{bottom:623.020404px;}
.y21_c00276{bottom:641.722097px;}
.y20_c00276{bottom:660.421689px;}
.y1f_c00276{bottom:679.123382px;}
.y1e_c00276{bottom:716.353067px;}
.y1d_c00276{bottom:736.123059px;}
.y1c_c00276{bottom:751.619553px;}
.y1b_c00276{bottom:770.319595px;}
.y3c_c00276{bottom:788.905800px;}
.y1a_c00276{bottom:789.024138px;}
.y19_c00276{bottom:807.725830px;}
.y18_c00276{bottom:826.427523px;}
.y17_c00276{bottom:845.132065px;}
.y16_c00276{bottom:863.836608px;}
.y15_c00276{bottom:882.538300px;}
.y14_c00276{bottom:901.241493px;}
.y13_c00276{bottom:919.944685px;}
.y12_c00276{bottom:938.649228px;}
.y11_c00276{bottom:957.349570px;}
.y10_c00276{bottom:976.052763px;}
.yf_c00276{bottom:1013.283948px;}
.ye_c00276{bottom:1033.054660px;}
.yd_c00276{bottom:1048.017154px;}
.yc_c00276{bottom:1062.801763px;}
.yb_c00276{bottom:1077.586372px;}
.y9_c00276{bottom:1094.153416px;}
.y7_c00276{bottom:1125.258112px;}
.y6_c00276{bottom:1146.098804px;}
.y5_c00276{bottom:1166.584296px;}
.y4_c00276{bottom:1187.067088px;}
.ha_c00276{height:10.840683px;}
.hc_c00276{height:15.316920px;}
.hb_c00276{height:15.674400px;}
.h7_c00276{height:37.374544px;}
.h6_c00276{height:41.427963px;}
.h8_c00276{height:45.029982px;}
.h9_c00276{height:47.826114px;}
.h2_c00276{height:58.667764px;}
.h3_c00276{height:63.768724px;}
.h4_c00276{height:64.053724px;}
.h5_c00276{height:1249.830756px;}
.h1_c00276{height:1262.879062px;}
.h0_c00276{height:1263.000000px;}
.w5_c00276{width:9.617400px;}
.w3_c00276{width:9.619200px;}
.w4_c00276{width:9.621000px;}
.w2_c00276{width:883.195846px;}
.w1_c00276{width:892.414744px;}
.w0_c00276{width:892.500000px;}
.x0_c00276{left:0.000000px;}
.x7_c00276{left:1.541954px;}
.x8_c00276{left:112.753050px;}
.x2_c00276{left:126.216356px;}
.x4_c00276{left:252.504495px;}
.x3_c00276{left:270.140236px;}
.x6_c00276{left:308.967587px;}
.x5_c00276{left:420.296029px;}
.xb_c00276{left:435.987000px;}
.xa_c00276{left:438.287168px;}
.x1_c00276{left:497.784645px;}
.x9_c00276{left:778.339800px;}
.xc_c00276{left:792.234000px;}
@media print{
.v1_c00276{vertical-align:-2.533332pt;}
.v0_c00276{vertical-align:0.000000pt;}
.ls1_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:1207.995379pt;}
.ws0_c00276{word-spacing:-14.566794pt;}
.ws1_c00276{word-spacing:0.000000pt;}
._0_c00276{margin-left:-1.190722pt;}
._1_c00276{width:0.938922pt;}
.fs4_c00276{font-size:10.766662pt;}
.fs3_c00276{font-size:47.499554pt;}
.fs2_c00276{font-size:52.566166pt;}
.fs0_c00276{font-size:58.267177pt;}
.fs1_c00276{font-size:63.333308pt;}
.y40_c00276{bottom:-0.320378pt;}
.y0_c00276{bottom:0.000000pt;}
.y3d_c00276{bottom:0.000786pt;}
.y1_c00276{bottom:0.107500pt;}
.y8_c00276{bottom:6.068128pt;}
.ya_c00276{bottom:57.896246pt;}
.y3_c00276{bottom:74.146170pt;}
.y2_c00276{bottom:74.783670pt;}
.y3b_c00276{bottom:108.244360pt;}
.y3a_c00276{bottom:124.871820pt;}
.y39_c00276{bottom:141.493680pt;}
.y3f_c00276{bottom:145.664320pt;}
.y38_c00276{bottom:158.119940pt;}
.y37_c00276{bottom:174.746200pt;}
.y36_c00276{bottom:191.371260pt;}
.y35_c00276{bottom:207.997520pt;}
.y34_c00276{bottom:224.620046pt;}
.y33_c00276{bottom:241.246306pt;}
.y32_c00276{bottom:257.870700pt;}
.y31_c00276{bottom:274.496960pt;}
.y30_c00276{bottom:307.588147pt;}
.y2f_c00276{bottom:343.054399pt;}
.y2e_c00276{bottom:360.623805pt;}
.y2d_c00276{bottom:373.765053pt;}
.y2c_c00276{bottom:387.541048pt;}
.y2b_c00276{bottom:404.169041pt;}
.y2a_c00276{bottom:420.790768pt;}
.y3e_c00276{bottom:435.778992pt;}
.y29_c00276{bottom:437.414495pt;}
.y28_c00276{bottom:454.040755pt;}
.y27_c00276{bottom:470.664481pt;}
.y26_c00276{bottom:487.292608pt;}
.y25_c00276{bottom:503.917668pt;}
.y24_c00276{bottom:520.542728pt;}
.y23_c00276{bottom:537.167788pt;}
.y22_c00276{bottom:553.795915pt;}
.y21_c00276{bottom:570.419641pt;}
.y20_c00276{bottom:587.041501pt;}
.y1f_c00276{bottom:603.665228pt;}
.y1e_c00276{bottom:636.758282pt;}
.y1d_c00276{bottom:654.331608pt;}
.y1c_c00276{bottom:668.106269pt;}
.y1b_c00276{bottom:684.728529pt;}
.y3c_c00276{bottom:701.249600pt;}
.y1a_c00276{bottom:701.354789pt;}
.y19_c00276{bottom:717.978516pt;}
.y18_c00276{bottom:734.602242pt;}
.y17_c00276{bottom:751.228502pt;}
.y16_c00276{bottom:767.854762pt;}
.y15_c00276{bottom:784.478489pt;}
.y14_c00276{bottom:801.103549pt;}
.y13_c00276{bottom:817.728609pt;}
.y12_c00276{bottom:834.354869pt;}
.y11_c00276{bottom:850.977396pt;}
.y10_c00276{bottom:867.602456pt;}
.yf_c00276{bottom:900.696843pt;}
.ye_c00276{bottom:918.270809pt;}
.yd_c00276{bottom:931.570804pt;}
.yc_c00276{bottom:944.712678pt;}
.yb_c00276{bottom:957.854553pt;}
.y9_c00276{bottom:972.580814pt;}
.y7_c00276{bottom:1000.229433pt;}
.y6_c00276{bottom:1018.754492pt;}
.y5_c00276{bottom:1036.963819pt;}
.y4_c00276{bottom:1055.170745pt;}
.ha_c00276{height:9.636163pt;}
.hc_c00276{height:13.615040pt;}
.hb_c00276{height:13.932800pt;}
.h7_c00276{height:33.221817pt;}
.h6_c00276{height:36.824856pt;}
.h8_c00276{height:40.026651pt;}
.h9_c00276{height:42.512101pt;}
.h2_c00276{height:52.149123pt;}
.h3_c00276{height:56.683311pt;}
.h4_c00276{height:56.936644pt;}
.h5_c00276{height:1110.960672pt;}
.h1_c00276{height:1122.559167pt;}
.h0_c00276{height:1122.666667pt;}
.w5_c00276{width:8.548800pt;}
.w3_c00276{width:8.550400pt;}
.w4_c00276{width:8.552000pt;}
.w2_c00276{width:785.062974pt;}
.w1_c00276{width:793.257550pt;}
.w0_c00276{width:793.333333pt;}
.x0_c00276{left:0.000000pt;}
.x7_c00276{left:1.370626pt;}
.x8_c00276{left:100.224934pt;}
.x2_c00276{left:112.192317pt;}
.x4_c00276{left:224.448440pt;}
.x3_c00276{left:240.124654pt;}
.x6_c00276{left:274.637856pt;}
.x5_c00276{left:373.596470pt;}
.xb_c00276{left:387.544000pt;}
.xa_c00276{left:389.588594pt;}
.x1_c00276{left:442.475240pt;}
.x9_c00276{left:691.857600pt;}
.xc_c00276{left:704.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:0.632000;font-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_c00277{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:-16.387643px;}
.ws1_c00277{word-spacing:0.000000px;}
._0_c00277{margin-left:-1.339562px;}
._1_c00277{width:1.056287px;}
._2_c00277{width:200.511650px;}
.fc2_c00277{color:rgb(38,69,127);}
.fc3_c00277{color:transparent;}
.fc1_c00277{color:rgb(105,148,45);}
.fc0_c00277{color:rgb(35,31,32);}
.fs3_c00277{font-size:53.436999px;}
.fs2_c00277{font-size:59.136936px;}
.fs0_c00277{font-size:65.550574px;}
.fs1_c00277{font-size:71.249972px;}
.y3d_c00277{bottom:-2.138482px;}
.y3b_c00277{bottom:-2.138026px;}
.y0_c00277{bottom:0.000000px;}
.y1_c00277{bottom:0.120938px;}
.y39_c00277{bottom:0.533360px;}
.y8_c00277{bottom:6.826644px;}
.ya_c00277{bottom:65.133277px;}
.y3_c00277{bottom:83.414442px;}
.y2_c00277{bottom:84.131629px;}
.y37_c00277{bottom:116.789747px;}
.y36_c00277{bottom:131.573651px;}
.y35_c00277{bottom:147.069094px;}
.y34_c00277{bottom:164.881287px;}
.y33_c00277{bottom:183.580580px;}
.y32_c00277{bottom:202.283772px;}
.y3c_c00277{bottom:206.978400px;}
.y31_c00277{bottom:220.989065px;}
.y30_c00277{bottom:239.692257px;}
.y2f_c00277{bottom:258.395450px;}
.y2e_c00277{bottom:277.098642px;}
.y2d_c00277{bottom:295.800335px;}
.y2c_c00277{bottom:314.504127px;}
.y2b_c00277{bottom:333.207920px;}
.y2a_c00277{bottom:351.911713px;}
.y29_c00277{bottom:389.139298px;}
.y28_c00277{bottom:429.040182px;}
.y27_c00277{bottom:448.813174px;}
.y26_c00277{bottom:468.937166px;}
.y25_c00277{bottom:505.453151px;}
.y24_c00277{bottom:524.156644px;}
.y23_c00277{bottom:542.851736px;}
.y22_c00277{bottom:561.554929px;}
.y3a_c00277{bottom:566.074800px;}
.y21_c00277{bottom:580.259471px;}
.y20_c00277{bottom:598.964014px;}
.y1f_c00277{bottom:617.665706px;}
.y1e_c00277{bottom:636.369499px;}
.y1d_c00277{bottom:655.075391px;}
.y1c_c00277{bottom:673.775734px;}
.y1b_c00277{bottom:692.481626px;}
.y1a_c00277{bottom:711.186169px;}
.y19_c00277{bottom:748.233154px;}
.y18_c00277{bottom:788.135538px;}
.y17_c00277{bottom:808.621030px;}
.y16_c00277{bottom:827.323772px;}
.y15_c00277{bottom:846.026965px;}
.y38_c00277{bottom:850.537800px;}
.y14_c00277{bottom:864.731507px;}
.y13_c00277{bottom:883.431850px;}
.y12_c00277{bottom:902.133542px;}
.y11_c00277{bottom:920.833885px;}
.y10_c00277{bottom:939.537677px;}
.yf_c00277{bottom:958.241470px;}
.ye_c00277{bottom:976.945262px;}
.yd_c00277{bottom:995.646955px;}
.yc_c00277{bottom:1032.871840px;}
.yb_c00277{bottom:1072.596924px;}
.y9_c00277{bottom:1094.153416px;}
.y7_c00277{bottom:1125.258112px;}
.y6_c00277{bottom:1146.098804px;}
.y5_c00277{bottom:1166.584296px;}
.y4_c00277{bottom:1187.067088px;}
.hd_c00277{height:13.534200px;}
.hc_c00277{height:13.537800px;}
.hb_c00277{height:16.209000px;}
.h7_c00277{height:37.374544px;}
.h6_c00277{height:41.427963px;}
.h8_c00277{height:45.029982px;}
.h9_c00277{height:47.826114px;}
.h2_c00277{height:58.667764px;}
.ha_c00277{height:58.929966px;}
.h3_c00277{height:63.768724px;}
.h4_c00277{height:64.053724px;}
.h5_c00277{height:1249.830756px;}
.h1_c00277{height:1262.879062px;}
.h0_c00277{height:1263.000000px;}
.w4_c00277{width:9.612000px;}
.w3_c00277{width:9.613800px;}
.w6_c00277{width:9.615600px;}
.w5_c00277{width:9.619200px;}
.w2_c00277{width:883.195846px;}
.w1_c00277{width:892.414744px;}
.w0_c00277{width:892.500000px;}
.x0_c00277{left:0.000000px;}
.x7_c00277{left:1.541954px;}
.x8_c00277{left:112.753050px;}
.x2_c00277{left:126.216356px;}
.x4_c00277{left:252.504495px;}
.x3_c00277{left:270.140236px;}
.x6_c00277{left:308.967587px;}
.x5_c00277{left:420.296029px;}
.x9_c00277{left:435.099600px;}
.xb_c00277{left:438.303600px;}
.x1_c00277{left:497.784645px;}
.xa_c00277{left:769.791600px;}
.xc_c00277{left:772.997400px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws0_c00277{word-spacing:-14.566794pt;}
.ws1_c00277{word-spacing:0.000000pt;}
._0_c00277{margin-left:-1.190722pt;}
._1_c00277{width:0.938922pt;}
._2_c00277{width:178.232578pt;}
.fs3_c00277{font-size:47.499554pt;}
.fs2_c00277{font-size:52.566166pt;}
.fs0_c00277{font-size:58.267177pt;}
.fs1_c00277{font-size:63.333308pt;}
.y3d_c00277{bottom:-1.900873pt;}
.y3b_c00277{bottom:-1.900467pt;}
.y0_c00277{bottom:0.000000pt;}
.y1_c00277{bottom:0.107500pt;}
.y39_c00277{bottom:0.474097pt;}
.y8_c00277{bottom:6.068128pt;}
.ya_c00277{bottom:57.896246pt;}
.y3_c00277{bottom:74.146170pt;}
.y2_c00277{bottom:74.783670pt;}
.y37_c00277{bottom:103.813108pt;}
.y36_c00277{bottom:116.954356pt;}
.y35_c00277{bottom:130.728084pt;}
.y34_c00277{bottom:146.561144pt;}
.y33_c00277{bottom:163.182738pt;}
.y32_c00277{bottom:179.807798pt;}
.y3c_c00277{bottom:183.980800pt;}
.y31_c00277{bottom:196.434724pt;}
.y30_c00277{bottom:213.059784pt;}
.y2f_c00277{bottom:229.684844pt;}
.y2e_c00277{bottom:246.309904pt;}
.y2d_c00277{bottom:262.933631pt;}
.y2c_c00277{bottom:279.559224pt;}
.y2b_c00277{bottom:296.184818pt;}
.y2a_c00277{bottom:312.810411pt;}
.y29_c00277{bottom:345.901598pt;}
.y28_c00277{bottom:381.369050pt;}
.y27_c00277{bottom:398.945043pt;}
.y26_c00277{bottom:416.833036pt;}
.y25_c00277{bottom:449.291690pt;}
.y24_c00277{bottom:465.917017pt;}
.y23_c00277{bottom:482.534877pt;}
.y22_c00277{bottom:499.159937pt;}
.y3a_c00277{bottom:503.177600pt;}
.y21_c00277{bottom:515.786197pt;}
.y20_c00277{bottom:532.412457pt;}
.y1f_c00277{bottom:549.036183pt;}
.y1e_c00277{bottom:565.661777pt;}
.y1d_c00277{bottom:582.289237pt;}
.y1c_c00277{bottom:598.911763pt;}
.y1b_c00277{bottom:615.539223pt;}
.y1a_c00277{bottom:632.165483pt;}
.y19_c00277{bottom:665.096137pt;}
.y18_c00277{bottom:700.564923pt;}
.y17_c00277{bottom:718.774249pt;}
.y16_c00277{bottom:735.398909pt;}
.y15_c00277{bottom:752.023969pt;}
.y38_c00277{bottom:756.033600pt;}
.y14_c00277{bottom:768.650229pt;}
.y13_c00277{bottom:785.272755pt;}
.y12_c00277{bottom:801.896482pt;}
.y11_c00277{bottom:818.519009pt;}
.y10_c00277{bottom:835.144602pt;}
.yf_c00277{bottom:851.770196pt;}
.ye_c00277{bottom:868.395789pt;}
.yd_c00277{bottom:885.019516pt;}
.yc_c00277{bottom:918.108302pt;}
.yb_c00277{bottom:953.419488pt;}
.y9_c00277{bottom:972.580814pt;}
.y7_c00277{bottom:1000.229433pt;}
.y6_c00277{bottom:1018.754492pt;}
.y5_c00277{bottom:1036.963819pt;}
.y4_c00277{bottom:1055.170745pt;}
.hd_c00277{height:12.030400pt;}
.hc_c00277{height:12.033600pt;}
.hb_c00277{height:14.408000pt;}
.h7_c00277{height:33.221817pt;}
.h6_c00277{height:36.824856pt;}
.h8_c00277{height:40.026651pt;}
.h9_c00277{height:42.512101pt;}
.h2_c00277{height:52.149123pt;}
.ha_c00277{height:52.382192pt;}
.h3_c00277{height:56.683311pt;}
.h4_c00277{height:56.936644pt;}
.h5_c00277{height:1110.960672pt;}
.h1_c00277{height:1122.559167pt;}
.h0_c00277{height:1122.666667pt;}
.w4_c00277{width:8.544000pt;}
.w3_c00277{width:8.545600pt;}
.w6_c00277{width:8.547200pt;}
.w5_c00277{width:8.550400pt;}
.w2_c00277{width:785.062974pt;}
.w1_c00277{width:793.257550pt;}
.w0_c00277{width:793.333333pt;}
.x0_c00277{left:0.000000pt;}
.x7_c00277{left:1.370626pt;}
.x8_c00277{left:100.224934pt;}
.x2_c00277{left:112.192317pt;}
.x4_c00277{left:224.448440pt;}
.x3_c00277{left:240.124654pt;}
.x6_c00277{left:274.637856pt;}
.x5_c00277{left:373.596470pt;}
.x9_c00277{left:386.755200pt;}
.xb_c00277{left:389.603200pt;}
.x1_c00277{left:442.475240pt;}
.xa_c00277{left:684.259200pt;}
.xc_c00277{left:687.108800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00278{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:-16.387643px;}
.ws1_c00278{word-spacing:0.000000px;}
._0_c00278{margin-left:-1.339562px;}
._1_c00278{width:1.056287px;}
._2_c00278{width:200.510581px;}
.fc2_c00278{color:transparent;}
.fc1_c00278{color:rgb(105,148,45);}
.fc0_c00278{color:rgb(35,31,32);}
.fs6_c00278{font-size:29.924628px;}
.fs5_c00278{font-size:47.737061px;}
.fs3_c00278{font-size:53.436999px;}
.fs2_c00278{font-size:59.136936px;}
.fs0_c00278{font-size:65.550574px;}
.fs1_c00278{font-size:71.249972px;}
.fs4_c00278{font-size:83.362767px;}
.y43_c00278{bottom:-0.002437px;}
.y0_c00278{bottom:0.000000px;}
.y1_c00278{bottom:0.120938px;}
.y41_c00278{bottom:3.022164px;}
.y8_c00278{bottom:6.826644px;}
.ya_c00278{bottom:65.133277px;}
.y3_c00278{bottom:83.414442px;}
.y2_c00278{bottom:84.131629px;}
.y3f_c00278{bottom:111.973068px;}
.y3e_c00278{bottom:126.939072px;}
.y3d_c00278{bottom:141.723682px;}
.y3c_c00278{bottom:156.508291px;}
.y3b_c00278{bottom:170.050285px;}
.y3a_c00278{bottom:179.670081px;}
.y39_c00278{bottom:198.371774px;}
.y38_c00278{bottom:215.111767px;}
.y37_c00278{bottom:224.196649px;}
.y36_c00278{bottom:238.981258px;}
.y45_c00278{bottom:248.002963px;}
.y35_c00278{bottom:253.229752px;}
.y47_c00278{bottom:253.525961px;}
.y34_c00278{bottom:266.767247px;}
.y33_c00278{bottom:286.010139px;}
.y32_c00278{bottom:308.275230px;}
.y31_c00278{bottom:329.472786px;}
.y30_c00278{bottom:345.323280px;}
.y2f_c00278{bottom:360.107184px;}
.y2e_c00278{bottom:375.071088px;}
.y2d_c00278{bottom:389.854287px;}
.y2c_c00278{bottom:404.637486px;}
.y2b_c00278{bottom:419.601390px;}
.y2a_c00278{bottom:434.385295px;}
.y29_c00278{bottom:449.164984px;}
.y28_c00278{bottom:464.128888px;}
.y27_c00278{bottom:478.913497px;}
.y26_c00278{bottom:493.698106px;}
.y25_c00278{bottom:509.195650px;}
.y24_c00278{bottom:527.898242px;}
.y23_c00278{bottom:546.598585px;}
.y46_c00278{bottom:553.840841px;}
.y44_c00278{bottom:555.619840px;}
.y22_c00278{bottom:565.305227px;}
.y21_c00278{bottom:584.006920px;}
.y20_c00278{bottom:602.710112px;}
.y1f_c00278{bottom:621.411805px;}
.y1e_c00278{bottom:640.112147px;}
.y1d_c00278{bottom:658.816690px;}
.y1c_c00278{bottom:677.518382px;}
.y1b_c00278{bottom:696.222925px;}
.y1a_c00278{bottom:733.449160px;}
.y19_c00278{bottom:773.350044px;}
.y18_c00278{bottom:793.124536px;}
.y17_c00278{bottom:808.621030px;}
.y16_c00278{bottom:827.323772px;}
.y40_c00278{bottom:836.469000px;}
.y42_c00278{bottom:841.989600px;}
.y15_c00278{bottom:846.026965px;}
.y14_c00278{bottom:864.731507px;}
.y13_c00278{bottom:883.431850px;}
.y12_c00278{bottom:902.133542px;}
.y11_c00278{bottom:920.833885px;}
.y10_c00278{bottom:939.537677px;}
.yf_c00278{bottom:958.241470px;}
.ye_c00278{bottom:976.945262px;}
.yd_c00278{bottom:995.646955px;}
.yc_c00278{bottom:1032.871840px;}
.yb_c00278{bottom:1072.596924px;}
.y9_c00278{bottom:1094.153416px;}
.y7_c00278{bottom:1125.258112px;}
.y6_c00278{bottom:1146.098804px;}
.y5_c00278{bottom:1166.584296px;}
.y4_c00278{bottom:1187.067088px;}
.he_c00278{height:15.676200px;}
.hd_c00278{height:18.702000px;}
.hc_c00278{height:18.912365px;}
.hb_c00278{height:30.169822px;}
.h7_c00278{height:37.374544px;}
.h6_c00278{height:41.427963px;}
.h8_c00278{height:45.029982px;}
.h9_c00278{height:47.826114px;}
.ha_c00278{height:52.685269px;}
.h2_c00278{height:58.667764px;}
.h3_c00278{height:63.768724px;}
.h4_c00278{height:64.053724px;}
.h5_c00278{height:1249.830756px;}
.h1_c00278{height:1262.879062px;}
.h0_c00278{height:1263.000000px;}
.w3_c00278{width:9.613800px;}
.w4_c00278{width:9.622800px;}
.w2_c00278{width:883.195846px;}
.w1_c00278{width:892.414744px;}
.w0_c00278{width:892.500000px;}
.x0_c00278{left:0.000000px;}
.x7_c00278{left:1.541954px;}
.x8_c00278{left:112.753050px;}
.x2_c00278{left:126.216356px;}
.x4_c00278{left:252.504495px;}
.x3_c00278{left:270.140236px;}
.x6_c00278{left:308.967587px;}
.x5_c00278{left:420.296029px;}
.xc_c00278{left:427.778173px;}
.xd_c00278{left:433.302670px;}
.xa_c00278{left:438.663600px;}
.x1_c00278{left:497.784645px;}
.x9_c00278{left:750.077746px;}
.xe_c00278{left:770.664535px;}
.xb_c00278{left:786.531600px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws0_c00278{word-spacing:-14.566794pt;}
.ws1_c00278{word-spacing:0.000000pt;}
._0_c00278{margin-left:-1.190722pt;}
._1_c00278{width:0.938922pt;}
._2_c00278{width:178.231628pt;}
.fs6_c00278{font-size:26.599669pt;}
.fs5_c00278{font-size:42.432943pt;}
.fs3_c00278{font-size:47.499554pt;}
.fs2_c00278{font-size:52.566166pt;}
.fs0_c00278{font-size:58.267177pt;}
.fs1_c00278{font-size:63.333308pt;}
.fs4_c00278{font-size:74.100237pt;}
.y43_c00278{bottom:-0.002166pt;}
.y0_c00278{bottom:0.000000pt;}
.y1_c00278{bottom:0.107500pt;}
.y41_c00278{bottom:2.686368pt;}
.y8_c00278{bottom:6.068128pt;}
.ya_c00278{bottom:57.896246pt;}
.y3_c00278{bottom:74.146170pt;}
.y2_c00278{bottom:74.783670pt;}
.y3f_c00278{bottom:99.531616pt;}
.y3e_c00278{bottom:112.834731pt;}
.y3d_c00278{bottom:125.976606pt;}
.y3c_c00278{bottom:139.118481pt;}
.y3b_c00278{bottom:151.155809pt;}
.y3a_c00278{bottom:159.706739pt;}
.y39_c00278{bottom:176.330466pt;}
.y38_c00278{bottom:191.210460pt;}
.y37_c00278{bottom:199.285910pt;}
.y36_c00278{bottom:212.427785pt;}
.y45_c00278{bottom:220.447078pt;}
.y35_c00278{bottom:225.093113pt;}
.y47_c00278{bottom:225.356410pt;}
.y34_c00278{bottom:237.126441pt;}
.y33_c00278{bottom:254.231235pt;}
.y32_c00278{bottom:274.022427pt;}
.y31_c00278{bottom:292.864699pt;}
.y30_c00278{bottom:306.954027pt;}
.y2f_c00278{bottom:320.095275pt;}
.y2e_c00278{bottom:333.396523pt;}
.y2d_c00278{bottom:346.537144pt;}
.y2c_c00278{bottom:359.677766pt;}
.y2b_c00278{bottom:372.979014pt;}
.y2a_c00278{bottom:386.120262pt;}
.y29_c00278{bottom:399.257763pt;}
.y28_c00278{bottom:412.559011pt;}
.y27_c00278{bottom:425.700886pt;}
.y26_c00278{bottom:438.842761pt;}
.y25_c00278{bottom:452.618355pt;}
.y24_c00278{bottom:469.242882pt;}
.y23_c00278{bottom:485.865409pt;}
.y46_c00278{bottom:492.302970pt;}
.y44_c00278{bottom:493.884302pt;}
.y22_c00278{bottom:502.493535pt;}
.y21_c00278{bottom:519.117262pt;}
.y20_c00278{bottom:535.742322pt;}
.y1f_c00278{bottom:552.366049pt;}
.y1e_c00278{bottom:568.988575pt;}
.y1d_c00278{bottom:585.614835pt;}
.y1c_c00278{bottom:602.238562pt;}
.y1b_c00278{bottom:618.864822pt;}
.y1a_c00278{bottom:651.954809pt;}
.y19_c00278{bottom:687.422261pt;}
.y18_c00278{bottom:704.999588pt;}
.y17_c00278{bottom:718.774249pt;}
.y16_c00278{bottom:735.398909pt;}
.y40_c00278{bottom:743.528000pt;}
.y42_c00278{bottom:748.435200pt;}
.y15_c00278{bottom:752.023969pt;}
.y14_c00278{bottom:768.650229pt;}
.y13_c00278{bottom:785.272755pt;}
.y12_c00278{bottom:801.896482pt;}
.y11_c00278{bottom:818.519009pt;}
.y10_c00278{bottom:835.144602pt;}
.yf_c00278{bottom:851.770196pt;}
.ye_c00278{bottom:868.395789pt;}
.yd_c00278{bottom:885.019516pt;}
.yc_c00278{bottom:918.108302pt;}
.yb_c00278{bottom:953.419488pt;}
.y9_c00278{bottom:972.580814pt;}
.y7_c00278{bottom:1000.229433pt;}
.y6_c00278{bottom:1018.754492pt;}
.y5_c00278{bottom:1036.963819pt;}
.y4_c00278{bottom:1055.170745pt;}
.he_c00278{height:13.934400pt;}
.hd_c00278{height:16.624000pt;}
.hc_c00278{height:16.810991pt;}
.hb_c00278{height:26.817620pt;}
.h7_c00278{height:33.221817pt;}
.h6_c00278{height:36.824856pt;}
.h8_c00278{height:40.026651pt;}
.h9_c00278{height:42.512101pt;}
.ha_c00278{height:46.831350pt;}
.h2_c00278{height:52.149123pt;}
.h3_c00278{height:56.683311pt;}
.h4_c00278{height:56.936644pt;}
.h5_c00278{height:1110.960672pt;}
.h1_c00278{height:1122.559167pt;}
.h0_c00278{height:1122.666667pt;}
.w3_c00278{width:8.545600pt;}
.w4_c00278{width:8.553600pt;}
.w2_c00278{width:785.062974pt;}
.w1_c00278{width:793.257550pt;}
.w0_c00278{width:793.333333pt;}
.x0_c00278{left:0.000000pt;}
.x7_c00278{left:1.370626pt;}
.x8_c00278{left:100.224934pt;}
.x2_c00278{left:112.192317pt;}
.x4_c00278{left:224.448440pt;}
.x3_c00278{left:240.124654pt;}
.x6_c00278{left:274.637856pt;}
.x5_c00278{left:373.596470pt;}
.xc_c00278{left:380.247265pt;}
.xd_c00278{left:385.157929pt;}
.xa_c00278{left:389.923200pt;}
.x1_c00278{left:442.475240pt;}
.x9_c00278{left:666.735774pt;}
.xe_c00278{left:685.035143pt;}
.xb_c00278{left:699.139200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:0.632000;font-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_c00279{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v2_c00279{vertical-align:-27.767989px;}
.v3_c00279{vertical-align:-19.247992px;}
.v0_c00279{vertical-align:0.000000px;}
.v1_c00279{vertical-align:14.951994px;}
.ls3_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:1304.806094px;}
.ls1_c00279{letter-spacing:1368.264397px;}
.ls2_c00279{letter-spacing:1383.225428px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00279{word-spacing:-29.982427px;}
.ws0_c00279{word-spacing:-16.387643px;}
.ws2_c00279{word-spacing:0.000000px;}
._0_c00279{margin-left:-1.339562px;}
._1_c00279{width:1.056287px;}
._2_c00279{width:20.341770px;}
.fc2_c00279{color:transparent;}
.fc1_c00279{color:rgb(105,148,45);}
.fc0_c00279{color:rgb(35,31,32);}
.fs3_c00279{font-size:53.436999px;}
.fs2_c00279{font-size:59.136936px;}
.fs0_c00279{font-size:65.550574px;}
.fs1_c00279{font-size:71.249972px;}
.y0_c00279{bottom:0.000000px;}
.y1_c00279{bottom:0.120938px;}
.y8_c00279{bottom:6.826644px;}
.ya_c00279{bottom:65.133277px;}
.y3_c00279{bottom:83.414442px;}
.y2_c00279{bottom:84.131629px;}
.y3c_c00279{bottom:159.536789px;}
.y3b_c00279{bottom:175.033283px;}
.y3a_c00279{bottom:193.026196px;}
.y39_c00279{bottom:207.811510px;}
.y38_c00279{bottom:222.771199px;}
.y3f_c00279{bottom:235.002468px;}
.y37_c00279{bottom:237.557908px;}
.y36_c00279{bottom:252.340402px;}
.y35_c00279{bottom:267.305011px;}
.y34_c00279{bottom:282.088915px;}
.y33_c00279{bottom:296.872820px;}
.y32_c00279{bottom:311.837429px;}
.y31_c00279{bottom:326.619923px;}
.y30_c00279{bottom:341.403827px;}
.y2f_c00279{bottom:356.364911px;}
.y2e_c00279{bottom:371.150225px;}
.y2d_c00279{bottom:385.932719px;}
.y2c_c00279{bottom:400.895213px;}
.y2b_c00279{bottom:415.681217px;}
.y2a_c00279{bottom:430.465121px;}
.y29_c00279{bottom:445.429025px;}
.y28_c00279{bottom:460.211519px;}
.y27_c00279{bottom:475.708463px;}
.y26_c00279{bottom:494.411656px;}
.y25_c00279{bottom:513.113048px;}
.y24_c00279{bottom:531.816241px;}
.y3e_c00279{bottom:540.655846px;}
.y23_c00279{bottom:550.516583px;}
.y22_c00279{bottom:569.222476px;}
.y21_c00279{bottom:587.924168px;}
.y20_c00279{bottom:606.625861px;}
.y1f_c00279{bottom:625.331153px;}
.y1e_c00279{bottom:644.031496px;}
.y1d_c00279{bottom:662.736038px;}
.y1c_c00279{bottom:681.437731px;}
.y1b_c00279{bottom:718.665316px;}
.y1a_c00279{bottom:758.389050px;}
.y19_c00279{bottom:778.340632px;}
.y18_c00279{bottom:793.124536px;}
.y17_c00279{bottom:808.621030px;}
.y16_c00279{bottom:827.323772px;}
.y15_c00279{bottom:846.026965px;}
.y3d_c00279{bottom:851.305722px;}
.y14_c00279{bottom:864.731507px;}
.y13_c00279{bottom:883.431850px;}
.y12_c00279{bottom:902.133542px;}
.y11_c00279{bottom:920.833885px;}
.y10_c00279{bottom:939.537677px;}
.yf_c00279{bottom:958.241470px;}
.ye_c00279{bottom:976.945262px;}
.yd_c00279{bottom:995.646955px;}
.yc_c00279{bottom:1032.871840px;}
.yb_c00279{bottom:1072.596924px;}
.y9_c00279{bottom:1094.153416px;}
.y7_c00279{bottom:1125.258112px;}
.y6_c00279{bottom:1146.098804px;}
.y5_c00279{bottom:1166.584296px;}
.y4_c00279{bottom:1187.067088px;}
.h7_c00279{height:37.374544px;}
.h6_c00279{height:41.427963px;}
.h8_c00279{height:45.029982px;}
.h9_c00279{height:47.826114px;}
.ha_c00279{height:56.379957px;}
.h2_c00279{height:58.667764px;}
.h3_c00279{height:63.768724px;}
.h4_c00279{height:64.053724px;}
.h5_c00279{height:1249.830756px;}
.h1_c00279{height:1262.879062px;}
.h0_c00279{height:1263.000000px;}
.w2_c00279{width:883.195846px;}
.w1_c00279{width:892.414744px;}
.w0_c00279{width:892.500000px;}
.x0_c00279{left:0.000000px;}
.x7_c00279{left:1.541954px;}
.x8_c00279{left:112.753050px;}
.x2_c00279{left:126.216356px;}
.x4_c00279{left:252.504495px;}
.x3_c00279{left:270.140236px;}
.x6_c00279{left:308.967587px;}
.x5_c00279{left:420.296029px;}
.xb_c00279{left:427.778173px;}
.xa_c00279{left:432.768671px;}
.xc_c00279{left:436.863669px;}
.x1_c00279{left:497.784645px;}
.x9_c00279{left:696.821767px;}
@media print{
.v2_c00279{vertical-align:-24.682657pt;}
.v3_c00279{vertical-align:-17.109326pt;}
.v0_c00279{vertical-align:0.000000pt;}
.v1_c00279{vertical-align:13.290661pt;}
.ls3_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:1159.827639pt;}
.ls1_c00279{letter-spacing:1216.235020pt;}
.ls2_c00279{letter-spacing:1229.533713pt;}
.ws1_c00279{word-spacing:-26.651046pt;}
.ws0_c00279{word-spacing:-14.566794pt;}
.ws2_c00279{word-spacing:0.000000pt;}
._0_c00279{margin-left:-1.190722pt;}
._1_c00279{width:0.938922pt;}
._2_c00279{width:18.081573pt;}
.fs3_c00279{font-size:47.499554pt;}
.fs2_c00279{font-size:52.566166pt;}
.fs0_c00279{font-size:58.267177pt;}
.fs1_c00279{font-size:63.333308pt;}
.y0_c00279{bottom:0.000000pt;}
.y1_c00279{bottom:0.107500pt;}
.y8_c00279{bottom:6.068128pt;}
.ya_c00279{bottom:57.896246pt;}
.y3_c00279{bottom:74.146170pt;}
.y2_c00279{bottom:74.783670pt;}
.y3c_c00279{bottom:141.810480pt;}
.y3b_c00279{bottom:155.585141pt;}
.y3a_c00279{bottom:171.578841pt;}
.y39_c00279{bottom:184.721342pt;}
.y38_c00279{bottom:198.018844pt;}
.y3f_c00279{bottom:208.891083pt;}
.y37_c00279{bottom:211.162585pt;}
.y36_c00279{bottom:224.302580pt;}
.y35_c00279{bottom:237.604455pt;}
.y34_c00279{bottom:250.745703pt;}
.y33_c00279{bottom:263.886951pt;}
.y32_c00279{bottom:277.188825pt;}
.y31_c00279{bottom:290.328820pt;}
.y30_c00279{bottom:303.470068pt;}
.y2f_c00279{bottom:316.768810pt;}
.y2e_c00279{bottom:329.911311pt;}
.y2d_c00279{bottom:343.051306pt;}
.y2c_c00279{bottom:356.351300pt;}
.y2b_c00279{bottom:369.494415pt;}
.y2a_c00279{bottom:382.635663pt;}
.y29_c00279{bottom:395.936911pt;}
.y28_c00279{bottom:409.076906pt;}
.y27_c00279{bottom:422.851967pt;}
.y26_c00279{bottom:439.477027pt;}
.y25_c00279{bottom:456.100487pt;}
.y24_c00279{bottom:472.725547pt;}
.y3e_c00279{bottom:480.582974pt;}
.y23_c00279{bottom:489.348074pt;}
.y22_c00279{bottom:505.975534pt;}
.y21_c00279{bottom:522.599261pt;}
.y20_c00279{bottom:539.222987pt;}
.y1f_c00279{bottom:555.849914pt;}
.y1e_c00279{bottom:572.472441pt;}
.y1d_c00279{bottom:589.098701pt;}
.y1c_c00279{bottom:605.722427pt;}
.y1b_c00279{bottom:638.813614pt;}
.y1a_c00279{bottom:674.123600pt;}
.y19_c00279{bottom:691.858339pt;}
.y18_c00279{bottom:704.999588pt;}
.y17_c00279{bottom:718.774249pt;}
.y16_c00279{bottom:735.398909pt;}
.y15_c00279{bottom:752.023969pt;}
.y3d_c00279{bottom:756.716197pt;}
.y14_c00279{bottom:768.650229pt;}
.y13_c00279{bottom:785.272755pt;}
.y12_c00279{bottom:801.896482pt;}
.y11_c00279{bottom:818.519009pt;}
.y10_c00279{bottom:835.144602pt;}
.yf_c00279{bottom:851.770196pt;}
.ye_c00279{bottom:868.395789pt;}
.yd_c00279{bottom:885.019516pt;}
.yc_c00279{bottom:918.108302pt;}
.yb_c00279{bottom:953.419488pt;}
.y9_c00279{bottom:972.580814pt;}
.y7_c00279{bottom:1000.229433pt;}
.y6_c00279{bottom:1018.754492pt;}
.y5_c00279{bottom:1036.963819pt;}
.y4_c00279{bottom:1055.170745pt;}
.h7_c00279{height:33.221817pt;}
.h6_c00279{height:36.824856pt;}
.h8_c00279{height:40.026651pt;}
.h9_c00279{height:42.512101pt;}
.ha_c00279{height:50.115517pt;}
.h2_c00279{height:52.149123pt;}
.h3_c00279{height:56.683311pt;}
.h4_c00279{height:56.936644pt;}
.h5_c00279{height:1110.960672pt;}
.h1_c00279{height:1122.559167pt;}
.h0_c00279{height:1122.666667pt;}
.w2_c00279{width:785.062974pt;}
.w1_c00279{width:793.257550pt;}
.w0_c00279{width:793.333333pt;}
.x0_c00279{left:0.000000pt;}
.x7_c00279{left:1.370626pt;}
.x8_c00279{left:100.224934pt;}
.x2_c00279{left:112.192317pt;}
.x4_c00279{left:224.448440pt;}
.x3_c00279{left:240.124654pt;}
.x6_c00279{left:274.637856pt;}
.x5_c00279{left:373.596470pt;}
.xb_c00279{left:380.247265pt;}
.xa_c00279{left:384.683263pt;}
.xc_c00279{left:388.323261pt;}
.x1_c00279{left:442.475240pt;}
.x9_c00279{left:619.397126pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:0.632000;font-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_c00280{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00280{vertical-align:-15.683994px;}
.v2_c00280{vertical-align:-14.243994px;}
.v0_c00280{vertical-align:0.000000px;}
.ls2_c00280{letter-spacing:0.000000px;}
.ls1_c00280{letter-spacing:1375.396702px;}
.ls0_c00280{letter-spacing:1377.527989px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00280{word-spacing:-16.387643px;}
.ws2_c00280{word-spacing:0.000000px;}
.ws1_c00280{word-spacing:1324.325795px;}
._0_c00280{margin-left:-1.339562px;}
._1_c00280{width:1.056287px;}
._2_c00280{width:200.510581px;}
.fc2_c00280{color:rgb(38,69,127);}
.fc1_c00280{color:rgb(105,148,45);}
.fc0_c00280{color:rgb(35,31,32);}
.fs3_c00280{font-size:53.436999px;}
.fs2_c00280{font-size:59.136936px;}
.fs0_c00280{font-size:65.550574px;}
.fs1_c00280{font-size:71.249972px;}
.y0_c00280{bottom:0.000000px;}
.y1_c00280{bottom:0.120938px;}
.y8_c00280{bottom:6.826644px;}
.ya_c00280{bottom:65.133277px;}
.y3_c00280{bottom:83.414442px;}
.y2_c00280{bottom:84.131629px;}
.y4a_c00280{bottom:118.750096px;}
.y49_c00280{bottom:133.534000px;}
.y48_c00280{bottom:149.026594px;}
.y47_c00280{bottom:167.729786px;}
.y46_c00280{bottom:185.725504px;}
.y45_c00280{bottom:200.686588px;}
.y4d_c00280{bottom:213.624477px;}
.y44_c00280{bottom:215.470492px;}
.y43_c00280{bottom:230.254396px;}
.y42_c00280{bottom:245.215480px;}
.y41_c00280{bottom:260.001484px;}
.y40_c00280{bottom:274.785388px;}
.y3f_c00280{bottom:289.747882px;}
.y3e_c00280{bottom:304.531786px;}
.y3d_c00280{bottom:319.314281px;}
.y3c_c00280{bottom:334.276775px;}
.y3b_c00280{bottom:349.062779px;}
.y3a_c00280{bottom:363.846683px;}
.y39_c00280{bottom:378.807767px;}
.y38_c00280{bottom:393.591671px;}
.y37_c00280{bottom:408.374165px;}
.y36_c00280{bottom:423.337364px;}
.y35_c00280{bottom:438.121268px;}
.y34_c00280{bottom:452.905172px;}
.y33_c00280{bottom:468.401666px;}
.y32_c00280{bottom:486.573649px;}
.y31_c00280{bottom:501.352633px;}
.y4c_c00280{bottom:512.871357px;}
.y30_c00280{bottom:516.138637px;}
.y2f_c00280{bottom:531.101131px;}
.y2e_c00280{bottom:545.883625px;}
.y2d_c00280{bottom:560.667529px;}
.y2c_c00280{bottom:575.633533px;}
.y2b_c00280{bottom:590.416027px;}
.y2a_c00280{bottom:605.198521px;}
.y29_c00280{bottom:620.162425px;}
.y28_c00280{bottom:634.946329px;}
.y27_c00280{bottom:649.728823px;}
.y26_c00280{bottom:664.689907px;}
.y25_c00280{bottom:679.475221px;}
.y24_c00280{bottom:694.260536px;}
.y23_c00280{bottom:709.220225px;}
.y22_c00280{bottom:724.009049px;}
.y21_c00280{bottom:738.794363px;}
.y20_c00280{bottom:753.754052px;}
.y1f_c00280{bottom:769.252046px;}
.y1e_c00280{bottom:787.245738px;}
.y1d_c00280{bottom:802.026822px;}
.y1c_c00280{bottom:816.990726px;}
.y4b_c00280{bottom:829.933730px;}
.y1b_c00280{bottom:831.773221px;}
.y1a_c00280{bottom:846.557125px;}
.y19_c00280{bottom:861.519619px;}
.y18_c00280{bottom:876.302818px;}
.y17_c00280{bottom:891.086017px;}
.y16_c00280{bottom:906.049921px;}
.y15_c00280{bottom:920.832415px;}
.y14_c00280{bottom:935.619124px;}
.y13_c00280{bottom:950.582323px;}
.y12_c00280{bottom:965.366227px;}
.y11_c00280{bottom:980.151541px;}
.y10_c00280{bottom:995.112625px;}
.yf_c00280{bottom:1009.895119px;}
.ye_c00280{bottom:1024.683943px;}
.yd_c00280{bottom:1039.645027px;}
.yc_c00280{bottom:1054.428931px;}
.yb_c00280{bottom:1074.378924px;}
.y9_c00280{bottom:1094.153416px;}
.y7_c00280{bottom:1125.258112px;}
.y6_c00280{bottom:1146.098804px;}
.y5_c00280{bottom:1166.584296px;}
.y4_c00280{bottom:1187.067088px;}
.h7_c00280{height:37.374544px;}
.h6_c00280{height:41.427963px;}
.h9_c00280{height:47.826114px;}
.h2_c00280{height:58.667764px;}
.h8_c00280{height:58.929966px;}
.h3_c00280{height:63.768724px;}
.h4_c00280{height:64.053724px;}
.h5_c00280{height:1249.830756px;}
.h1_c00280{height:1262.879062px;}
.h0_c00280{height:1263.000000px;}
.w2_c00280{width:883.195846px;}
.w1_c00280{width:892.414744px;}
.w0_c00280{width:892.500000px;}
.x0_c00280{left:0.000000px;}
.x7_c00280{left:1.541954px;}
.x8_c00280{left:112.753050px;}
.x2_c00280{left:126.216356px;}
.x4_c00280{left:252.504495px;}
.x3_c00280{left:270.140236px;}
.x6_c00280{left:308.967587px;}
.x5_c00280{left:420.296029px;}
.x9_c00280{left:435.971169px;}
.x1_c00280{left:497.784645px;}
@media print{
.v1_c00280{vertical-align:-13.941328pt;}
.v2_c00280{vertical-align:-12.661328pt;}
.v0_c00280{vertical-align:0.000000pt;}
.ls2_c00280{letter-spacing:0.000000pt;}
.ls1_c00280{letter-spacing:1222.574846pt;}
.ls0_c00280{letter-spacing:1224.469323pt;}
.ws0_c00280{word-spacing:-14.566794pt;}
.ws2_c00280{word-spacing:0.000000pt;}
.ws1_c00280{word-spacing:1177.178484pt;}
._0_c00280{margin-left:-1.190722pt;}
._1_c00280{width:0.938922pt;}
._2_c00280{width:178.231628pt;}
.fs3_c00280{font-size:47.499554pt;}
.fs2_c00280{font-size:52.566166pt;}
.fs0_c00280{font-size:58.267177pt;}
.fs1_c00280{font-size:63.333308pt;}
.y0_c00280{bottom:0.000000pt;}
.y1_c00280{bottom:0.107500pt;}
.y8_c00280{bottom:6.068128pt;}
.ya_c00280{bottom:57.896246pt;}
.y3_c00280{bottom:74.146170pt;}
.y2_c00280{bottom:74.783670pt;}
.y4a_c00280{bottom:105.555641pt;}
.y49_c00280{bottom:118.696889pt;}
.y48_c00280{bottom:132.468083pt;}
.y47_c00280{bottom:149.093143pt;}
.y46_c00280{bottom:165.089337pt;}
.y45_c00280{bottom:178.388078pt;}
.y4d_c00280{bottom:189.888424pt;}
.y44_c00280{bottom:191.529326pt;}
.y43_c00280{bottom:204.670574pt;}
.y42_c00280{bottom:217.969316pt;}
.y41_c00280{bottom:231.112430pt;}
.y40_c00280{bottom:244.253679pt;}
.y3f_c00280{bottom:257.553673pt;}
.y3e_c00280{bottom:270.694921pt;}
.y3d_c00280{bottom:283.834916pt;}
.y3c_c00280{bottom:297.134911pt;}
.y3b_c00280{bottom:310.278025pt;}
.y3a_c00280{bottom:323.419274pt;}
.y39_c00280{bottom:336.718015pt;}
.y38_c00280{bottom:349.859263pt;}
.y37_c00280{bottom:362.999258pt;}
.y36_c00280{bottom:376.299879pt;}
.y35_c00280{bottom:389.441127pt;}
.y34_c00280{bottom:402.582375pt;}
.y33_c00280{bottom:416.357036pt;}
.y32_c00280{bottom:432.509910pt;}
.y31_c00280{bottom:445.646785pt;}
.y4c_c00280{bottom:455.885651pt;}
.y30_c00280{bottom:458.789899pt;}
.y2f_c00280{bottom:472.089894pt;}
.y2e_c00280{bottom:485.229889pt;}
.y2d_c00280{bottom:498.371137pt;}
.y2c_c00280{bottom:511.674252pt;}
.y2b_c00280{bottom:524.814246pt;}
.y2a_c00280{bottom:537.954241pt;}
.y29_c00280{bottom:551.255489pt;}
.y28_c00280{bottom:564.396737pt;}
.y27_c00280{bottom:577.536732pt;}
.y26_c00280{bottom:590.835473pt;}
.y25_c00280{bottom:603.977975pt;}
.y24_c00280{bottom:617.120476pt;}
.y23_c00280{bottom:630.417977pt;}
.y22_c00280{bottom:643.563599pt;}
.y21_c00280{bottom:656.706100pt;}
.y20_c00280{bottom:670.003602pt;}
.y1f_c00280{bottom:683.779596pt;}
.y1e_c00280{bottom:699.773990pt;}
.y1d_c00280{bottom:712.912731pt;}
.y1c_c00280{bottom:726.213979pt;}
.y4b_c00280{bottom:737.718872pt;}
.y1b_c00280{bottom:739.353974pt;}
.y1a_c00280{bottom:752.495222pt;}
.y19_c00280{bottom:765.795217pt;}
.y18_c00280{bottom:778.935838pt;}
.y17_c00280{bottom:792.076459pt;}
.y16_c00280{bottom:805.377707pt;}
.y15_c00280{bottom:818.517702pt;}
.y14_c00280{bottom:831.661444pt;}
.y13_c00280{bottom:844.962065pt;}
.y12_c00280{bottom:858.103313pt;}
.y11_c00280{bottom:871.245814pt;}
.y10_c00280{bottom:884.544556pt;}
.yf_c00280{bottom:897.684550pt;}
.ye_c00280{bottom:910.830172pt;}
.yd_c00280{bottom:924.128913pt;}
.yc_c00280{bottom:937.270161pt;}
.yb_c00280{bottom:955.003488pt;}
.y9_c00280{bottom:972.580814pt;}
.y7_c00280{bottom:1000.229433pt;}
.y6_c00280{bottom:1018.754492pt;}
.y5_c00280{bottom:1036.963819pt;}
.y4_c00280{bottom:1055.170745pt;}
.h7_c00280{height:33.221817pt;}
.h6_c00280{height:36.824856pt;}
.h9_c00280{height:42.512101pt;}
.h2_c00280{height:52.149123pt;}
.h8_c00280{height:52.382192pt;}
.h3_c00280{height:56.683311pt;}
.h4_c00280{height:56.936644pt;}
.h5_c00280{height:1110.960672pt;}
.h1_c00280{height:1122.559167pt;}
.h0_c00280{height:1122.666667pt;}
.w2_c00280{width:785.062974pt;}
.w1_c00280{width:793.257550pt;}
.w0_c00280{width:793.333333pt;}
.x0_c00280{left:0.000000pt;}
.x7_c00280{left:1.370626pt;}
.x8_c00280{left:100.224934pt;}
.x2_c00280{left:112.192317pt;}
.x4_c00280{left:224.448440pt;}
.x3_c00280{left:240.124654pt;}
.x6_c00280{left:274.637856pt;}
.x5_c00280{left:373.596470pt;}
.x9_c00280{left:387.529928pt;}
.x1_c00280{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:0.632000;font-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_c00281{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00281{vertical-align:-12.815995px;}
.v0_c00281{vertical-align:0.000000px;}
.ls1_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:1374.676267px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:-16.387643px;}
.ws1_c00281{word-spacing:0.000000px;}
._0_c00281{margin-left:-1.339562px;}
._1_c00281{width:1.056287px;}
.fc2_c00281{color:rgb(38,69,127);}
.fc3_c00281{color:transparent;}
.fc1_c00281{color:rgb(105,148,45);}
.fc0_c00281{color:rgb(35,31,32);}
.fs5_c00281{font-size:41.324503px;}
.fs3_c00281{font-size:47.737061px;}
.fs4_c00281{font-size:53.436999px;}
.fs2_c00281{font-size:59.136936px;}
.fs0_c00281{font-size:65.550574px;}
.fs1_c00281{font-size:71.249972px;}
.y46_c00281{bottom:-0.714360px;}
.y43_c00281{bottom:-0.712409px;}
.y0_c00281{bottom:0.000000px;}
.y1_c00281{bottom:0.120938px;}
.y44_c00281{bottom:1.066590px;}
.y47_c00281{bottom:1.069139px;}
.y8_c00281{bottom:6.826644px;}
.ya_c00281{bottom:65.133277px;}
.y3_c00281{bottom:83.414442px;}
.y2_c00281{bottom:84.131629px;}
.y40_c00281{bottom:117.503356px;}
.y3f_c00281{bottom:136.202799px;}
.y45_c00281{bottom:150.868800px;}
.y3e_c00281{bottom:154.904491px;}
.y3d_c00281{bottom:173.606184px;}
.y3c_c00281{bottom:192.309376px;}
.y3b_c00281{bottom:211.013919px;}
.y3a_c00281{bottom:229.717111px;}
.y39_c00281{bottom:248.423754px;}
.y38_c00281{bottom:267.124096px;}
.y37_c00281{bottom:285.827289px;}
.y36_c00281{bottom:304.531831px;}
.y35_c00281{bottom:323.235024px;}
.y34_c00281{bottom:341.938216px;}
.y33_c00281{bottom:359.927799px;}
.y32_c00281{bottom:374.711703px;}
.y31_c00281{bottom:406.414191px;}
.y30_c00281{bottom:424.228184px;}
.y2f_c00281{bottom:460.031669px;}
.y2e_c00281{bottom:475.531163px;}
.y2d_c00281{bottom:494.238256px;}
.y2c_c00281{bottom:512.939948px;}
.y42_c00281{bottom:523.501200px;}
.y2b_c00281{bottom:531.639541px;}
.y2a_c00281{bottom:550.346183px;}
.y29_c00281{bottom:569.046526px;}
.y28_c00281{bottom:587.748218px;}
.y27_c00281{bottom:606.451411px;}
.y26_c00281{bottom:625.155953px;}
.y25_c00281{bottom:643.854796px;}
.y24_c00281{bottom:662.559338px;}
.y23_c00281{bottom:681.263881px;}
.y22_c00281{bottom:699.965573px;}
.y21_c00281{bottom:718.132066px;}
.y20_c00281{bottom:749.665203px;}
.y1f_c00281{bottom:779.053042px;}
.y1e_c00281{bottom:792.410536px;}
.y1d_c00281{bottom:810.403029px;}
.y1c_c00281{bottom:825.366348px;}
.y41_c00281{bottom:838.302227px;}
.y1b_c00281{bottom:840.150957px;}
.y1a_c00281{bottom:854.935566px;}
.y19_c00281{bottom:869.896650px;}
.y18_c00281{bottom:884.679144px;}
.y17_c00281{bottom:899.464458px;}
.y16_c00281{bottom:914.426952px;}
.y15_c00281{bottom:929.210857px;}
.y14_c00281{bottom:943.994761px;}
.y13_c00281{bottom:958.958665px;}
.y12_c00281{bottom:973.742569px;}
.y11_c00281{bottom:988.528573px;}
.y10_c00281{bottom:1003.488262px;}
.yf_c00281{bottom:1018.270756px;}
.ye_c00281{bottom:1033.054660px;}
.yd_c00281{bottom:1048.017154px;}
.yc_c00281{bottom:1062.801763px;}
.yb_c00281{bottom:1077.586372px;}
.y9_c00281{bottom:1094.153416px;}
.y7_c00281{bottom:1125.258112px;}
.y6_c00281{bottom:1146.098804px;}
.y5_c00281{bottom:1166.584296px;}
.y4_c00281{bottom:1187.067088px;}
.hf_c00281{height:14.961060px;}
.hd_c00281{height:14.967000px;}
.h10_c00281{height:16.742880px;}
.he_c00281{height:16.745400px;}
.ha_c00281{height:26.117086px;}
.h8_c00281{height:30.169822px;}
.h7_c00281{height:37.374544px;}
.h6_c00281{height:41.427963px;}
.hb_c00281{height:45.029982px;}
.h9_c00281{height:47.826114px;}
.h2_c00281{height:58.667764px;}
.hc_c00281{height:58.929966px;}
.h3_c00281{height:63.768724px;}
.h4_c00281{height:64.053724px;}
.h5_c00281{height:1249.830756px;}
.h1_c00281{height:1262.879062px;}
.h0_c00281{height:1263.000000px;}
.w5_c00281{width:9.619200px;}
.w4_c00281{width:9.621000px;}
.w3_c00281{width:9.622800px;}
.w2_c00281{width:883.195846px;}
.w1_c00281{width:892.414744px;}
.w0_c00281{width:892.500000px;}
.x0_c00281{left:0.000000px;}
.x7_c00281{left:1.541954px;}
.x8_c00281{left:112.753050px;}
.x2_c00281{left:126.216356px;}
.x4_c00281{left:252.504495px;}
.x3_c00281{left:270.140236px;}
.x6_c00281{left:308.967587px;}
.x5_c00281{left:420.296029px;}
.x9_c00281{left:435.971169px;}
.xa_c00281{left:447.382800px;}
.xd_c00281{left:457.005600px;}
.x1_c00281{left:497.784645px;}
.xb_c00281{left:804.344400px;}
.xc_c00281{left:815.211000px;}
@media print{
.v1_c00281{vertical-align:-11.391995pt;}
.v0_c00281{vertical-align:0.000000pt;}
.ls1_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:1221.934460pt;}
.ws0_c00281{word-spacing:-14.566794pt;}
.ws1_c00281{word-spacing:0.000000pt;}
._0_c00281{margin-left:-1.190722pt;}
._1_c00281{width:0.938922pt;}
.fs5_c00281{font-size:36.732892pt;}
.fs3_c00281{font-size:42.432943pt;}
.fs4_c00281{font-size:47.499554pt;}
.fs2_c00281{font-size:52.566166pt;}
.fs0_c00281{font-size:58.267177pt;}
.fs1_c00281{font-size:63.333308pt;}
.y46_c00281{bottom:-0.634987pt;}
.y43_c00281{bottom:-0.633253pt;}
.y0_c00281{bottom:0.000000pt;}
.y1_c00281{bottom:0.107500pt;}
.y44_c00281{bottom:0.948080pt;}
.y47_c00281{bottom:0.950346pt;}
.y8_c00281{bottom:6.068128pt;}
.ya_c00281{bottom:57.896246pt;}
.y3_c00281{bottom:74.146170pt;}
.y2_c00281{bottom:74.783670pt;}
.y40_c00281{bottom:104.447428pt;}
.y3f_c00281{bottom:121.069154pt;}
.y45_c00281{bottom:134.105600pt;}
.y3e_c00281{bottom:137.692881pt;}
.y3d_c00281{bottom:154.316608pt;}
.y3c_c00281{bottom:170.941668pt;}
.y3b_c00281{bottom:187.567928pt;}
.y3a_c00281{bottom:204.192988pt;}
.y39_c00281{bottom:220.821115pt;}
.y38_c00281{bottom:237.443641pt;}
.y37_c00281{bottom:254.068701pt;}
.y36_c00281{bottom:270.694961pt;}
.y35_c00281{bottom:287.320021pt;}
.y34_c00281{bottom:303.945081pt;}
.y33_c00281{bottom:319.935822pt;}
.y32_c00281{bottom:333.077070pt;}
.y31_c00281{bottom:361.257058pt;}
.y30_c00281{bottom:377.091719pt;}
.y2f_c00281{bottom:408.917039pt;}
.y2e_c00281{bottom:422.694367pt;}
.y2d_c00281{bottom:439.322894pt;}
.y2c_c00281{bottom:455.946621pt;}
.y42_c00281{bottom:465.334400pt;}
.y2b_c00281{bottom:472.568481pt;}
.y2a_c00281{bottom:489.196607pt;}
.y29_c00281{bottom:505.819134pt;}
.y28_c00281{bottom:522.442861pt;}
.y27_c00281{bottom:539.067921pt;}
.y26_c00281{bottom:555.694181pt;}
.y25_c00281{bottom:572.315374pt;}
.y24_c00281{bottom:588.941634pt;}
.y23_c00281{bottom:605.567894pt;}
.y22_c00281{bottom:622.191621pt;}
.y21_c00281{bottom:638.339614pt;}
.y20_c00281{bottom:666.369070pt;}
.y1f_c00281{bottom:692.491593pt;}
.y1e_c00281{bottom:704.364921pt;}
.y1d_c00281{bottom:720.358248pt;}
.y1c_c00281{bottom:733.658976pt;}
.y41_c00281{bottom:745.157535pt;}
.y1b_c00281{bottom:746.800851pt;}
.y1a_c00281{bottom:759.942726pt;}
.y19_c00281{bottom:773.241467pt;}
.y18_c00281{bottom:786.381462pt;}
.y17_c00281{bottom:799.523963pt;}
.y16_c00281{bottom:812.823958pt;}
.y15_c00281{bottom:825.965206pt;}
.y14_c00281{bottom:839.106454pt;}
.y13_c00281{bottom:852.407702pt;}
.y12_c00281{bottom:865.548950pt;}
.y11_c00281{bottom:878.692065pt;}
.y10_c00281{bottom:891.989566pt;}
.yf_c00281{bottom:905.129561pt;}
.ye_c00281{bottom:918.270809pt;}
.yd_c00281{bottom:931.570804pt;}
.yc_c00281{bottom:944.712678pt;}
.yb_c00281{bottom:957.854553pt;}
.y9_c00281{bottom:972.580814pt;}
.y7_c00281{bottom:1000.229433pt;}
.y6_c00281{bottom:1018.754492pt;}
.y5_c00281{bottom:1036.963819pt;}
.y4_c00281{bottom:1055.170745pt;}
.hf_c00281{height:13.298720pt;}
.hd_c00281{height:13.304000pt;}
.h10_c00281{height:14.882560pt;}
.he_c00281{height:14.884800pt;}
.ha_c00281{height:23.215188pt;}
.h8_c00281{height:26.817620pt;}
.h7_c00281{height:33.221817pt;}
.h6_c00281{height:36.824856pt;}
.hb_c00281{height:40.026651pt;}
.h9_c00281{height:42.512101pt;}
.h2_c00281{height:52.149123pt;}
.hc_c00281{height:52.382192pt;}
.h3_c00281{height:56.683311pt;}
.h4_c00281{height:56.936644pt;}
.h5_c00281{height:1110.960672pt;}
.h1_c00281{height:1122.559167pt;}
.h0_c00281{height:1122.666667pt;}
.w5_c00281{width:8.550400pt;}
.w4_c00281{width:8.552000pt;}
.w3_c00281{width:8.553600pt;}
.w2_c00281{width:785.062974pt;}
.w1_c00281{width:793.257550pt;}
.w0_c00281{width:793.333333pt;}
.x0_c00281{left:0.000000pt;}
.x7_c00281{left:1.370626pt;}
.x8_c00281{left:100.224934pt;}
.x2_c00281{left:112.192317pt;}
.x4_c00281{left:224.448440pt;}
.x3_c00281{left:240.124654pt;}
.x6_c00281{left:274.637856pt;}
.x5_c00281{left:373.596470pt;}
.x9_c00281{left:387.529928pt;}
.xa_c00281{left:397.673600pt;}
.xd_c00281{left:406.227200pt;}
.x1_c00281{left:442.475240pt;}
.xb_c00281{left:714.972800pt;}
.xc_c00281{left:724.632000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:0.632000;font-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_c00282{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls0_c00282{letter-spacing:0.000000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:-16.387643px;}
.ws1_c00282{word-spacing:0.000000px;}
._0_c00282{margin-left:-1.339562px;}
._1_c00282{width:1.056287px;}
.fc1_c00282{color:rgb(105,148,45);}
.fc0_c00282{color:rgb(35,31,32);}
.fs3_c00282{font-size:41.324503px;}
.fs4_c00282{font-size:53.436999px;}
.fs2_c00282{font-size:59.136936px;}
.fs0_c00282{font-size:65.550574px;}
.fs1_c00282{font-size:71.249972px;}
.y3d_c00282{bottom:-0.537929px;}
.y43_c00282{bottom:-0.180964px;}
.y40_c00282{bottom:-0.180203px;}
.y0_c00282{bottom:0.000000px;}
.y1_c00282{bottom:0.120938px;}
.y3e_c00282{bottom:1.421070px;}
.y41_c00282{bottom:1.597296px;}
.y44_c00282{bottom:1.602535px;}
.y8_c00282{bottom:6.826644px;}
.ya_c00282{bottom:65.133277px;}
.y3_c00282{bottom:83.414442px;}
.y2_c00282{bottom:84.131629px;}
.y3b_c00282{bottom:113.225508px;}
.y3a_c00282{bottom:131.935900px;}
.y39_c00282{bottom:150.637593px;}
.y42_c00282{bottom:161.199900px;}
.y38_c00282{bottom:169.339286px;}
.y37_c00282{bottom:188.042478px;}
.y36_c00282{bottom:206.744171px;}
.y35_c00282{bottom:225.447963px;}
.y34_c00282{bottom:244.151756px;}
.y33_c00282{bottom:262.853448px;}
.y32_c00282{bottom:281.555141px;}
.y31_c00282{bottom:300.258333px;}
.y30_c00282{bottom:318.960026px;}
.y2f_c00282{bottom:337.663218px;}
.y2e_c00282{bottom:355.652711px;}
.y2d_c00282{bottom:387.179548px;}
.y2c_c00282{bottom:416.749487px;}
.y2b_c00282{bottom:446.138675px;}
.y2a_c00282{bottom:459.499169px;}
.y29_c00282{bottom:478.206112px;}
.y28_c00282{bottom:496.909305px;}
.y3f_c00282{bottom:507.474000px;}
.y27_c00282{bottom:515.610997px;}
.y26_c00282{bottom:534.312690px;}
.y25_c00282{bottom:553.017232px;}
.y24_c00282{bottom:571.718925px;}
.y23_c00282{bottom:590.422117px;}
.y22_c00282{bottom:609.123810px;}
.y21_c00282{bottom:627.827002px;}
.y20_c00282{bottom:646.528695px;}
.y1f_c00282{bottom:665.230387px;}
.y1e_c00282{bottom:683.933580px;}
.y1d_c00282{bottom:701.924572px;}
.y1c_c00282{bottom:733.451710px;}
.y1b_c00282{bottom:763.019548px;}
.y1a_c00282{bottom:776.380043px;}
.y19_c00282{bottom:795.081435px;}
.y18_c00282{bottom:813.784628px;}
.y3c_c00282{bottom:824.178600px;}
.y17_c00282{bottom:832.486320px;}
.y16_c00282{bottom:851.186663px;}
.y15_c00282{bottom:869.891205px;}
.y14_c00282{bottom:888.592898px;}
.y13_c00282{bottom:907.297440px;}
.y12_c00282{bottom:926.001983px;}
.y11_c00282{bottom:944.707875px;}
.y10_c00282{bottom:963.409568px;}
.yf_c00282{bottom:982.111260px;}
.ye_c00282{bottom:1000.814453px;}
.yd_c00282{bottom:1018.802446px;}
.yc_c00282{bottom:1050.327783px;}
.yb_c00282{bottom:1079.721921px;}
.y9_c00282{bottom:1094.153416px;}
.y7_c00282{bottom:1125.258112px;}
.y6_c00282{bottom:1146.098804px;}
.y5_c00282{bottom:1166.584296px;}
.y4_c00282{bottom:1187.067088px;}
.hb_c00282{height:15.138000px;}
.hd_c00282{height:15.496200px;}
.hf_c00282{height:15.497460px;}
.hc_c00282{height:17.100000px;}
.he_c00282{height:17.276400px;}
.h10_c00282{height:17.277840px;}
.h8_c00282{height:26.117086px;}
.h7_c00282{height:37.374544px;}
.h6_c00282{height:41.427963px;}
.h9_c00282{height:45.029982px;}
.ha_c00282{height:47.826114px;}
.h2_c00282{height:58.667764px;}
.h3_c00282{height:63.768724px;}
.h4_c00282{height:64.053724px;}
.h5_c00282{height:1249.830756px;}
.h1_c00282{height:1262.879062px;}
.h0_c00282{height:1263.000000px;}
.w4_c00282{width:9.617400px;}
.w5_c00282{width:9.619200px;}
.w3_c00282{width:9.621000px;}
.w2_c00282{width:883.195846px;}
.w1_c00282{width:892.414744px;}
.w0_c00282{width:892.500000px;}
.x0_c00282{left:0.000000px;}
.x7_c00282{left:1.541954px;}
.x8_c00282{left:112.753050px;}
.x9_c00282{left:117.206699px;}
.x2_c00282{left:126.216356px;}
.x4_c00282{left:252.504495px;}
.x3_c00282{left:270.140236px;}
.x6_c00282{left:308.967587px;}
.x5_c00282{left:420.296029px;}
.xb_c00282{left:456.649200px;}
.x1_c00282{left:497.784645px;}
.xa_c00282{left:815.211000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws0_c00282{word-spacing:-14.566794pt;}
.ws1_c00282{word-spacing:0.000000pt;}
._0_c00282{margin-left:-1.190722pt;}
._1_c00282{width:0.938922pt;}
.fs3_c00282{font-size:36.732892pt;}
.fs4_c00282{font-size:47.499554pt;}
.fs2_c00282{font-size:52.566166pt;}
.fs0_c00282{font-size:58.267177pt;}
.fs1_c00282{font-size:63.333308pt;}
.y3d_c00282{bottom:-0.478160pt;}
.y43_c00282{bottom:-0.160857pt;}
.y40_c00282{bottom:-0.160180pt;}
.y0_c00282{bottom:0.000000pt;}
.y1_c00282{bottom:0.107500pt;}
.y3e_c00282{bottom:1.263173pt;}
.y41_c00282{bottom:1.419819pt;}
.y44_c00282{bottom:1.424475pt;}
.y8_c00282{bottom:6.068128pt;}
.ya_c00282{bottom:57.896246pt;}
.y3_c00282{bottom:74.146170pt;}
.y2_c00282{bottom:74.783670pt;}
.y3b_c00282{bottom:100.644896pt;}
.y3a_c00282{bottom:117.276356pt;}
.y39_c00282{bottom:133.900083pt;}
.y42_c00282{bottom:143.288800pt;}
.y38_c00282{bottom:150.523809pt;}
.y37_c00282{bottom:167.148869pt;}
.y36_c00282{bottom:183.772596pt;}
.y35_c00282{bottom:200.398189pt;}
.y34_c00282{bottom:217.023783pt;}
.y33_c00282{bottom:233.647509pt;}
.y32_c00282{bottom:250.271236pt;}
.y31_c00282{bottom:266.896296pt;}
.y30_c00282{bottom:283.520023pt;}
.y2f_c00282{bottom:300.145083pt;}
.y2e_c00282{bottom:316.135743pt;}
.y2d_c00282{bottom:344.159599pt;}
.y2c_c00282{bottom:370.443988pt;}
.y2b_c00282{bottom:396.567711pt;}
.y2a_c00282{bottom:408.443706pt;}
.y29_c00282{bottom:425.072100pt;}
.y28_c00282{bottom:441.697160pt;}
.y3f_c00282{bottom:451.088000pt;}
.y27_c00282{bottom:458.320886pt;}
.y26_c00282{bottom:474.944613pt;}
.y25_c00282{bottom:491.570873pt;}
.y24_c00282{bottom:508.194600pt;}
.y23_c00282{bottom:524.819660pt;}
.y22_c00282{bottom:541.443386pt;}
.y21_c00282{bottom:558.068446pt;}
.y20_c00282{bottom:574.692173pt;}
.y1f_c00282{bottom:591.315900pt;}
.y1e_c00282{bottom:607.940960pt;}
.y1d_c00282{bottom:623.932953pt;}
.y1c_c00282{bottom:651.957075pt;}
.y1b_c00282{bottom:678.239598pt;}
.y1a_c00282{bottom:690.115594pt;}
.y19_c00282{bottom:706.739054pt;}
.y18_c00282{bottom:723.364114pt;}
.y3c_c00282{bottom:732.603200pt;}
.y17_c00282{bottom:739.987840pt;}
.y16_c00282{bottom:756.610367pt;}
.y15_c00282{bottom:773.236627pt;}
.y14_c00282{bottom:789.860354pt;}
.y13_c00282{bottom:806.486614pt;}
.y12_c00282{bottom:823.112874pt;}
.y11_c00282{bottom:839.740334pt;}
.y10_c00282{bottom:856.364060pt;}
.yf_c00282{bottom:872.987787pt;}
.ye_c00282{bottom:889.612847pt;}
.yd_c00282{bottom:905.602174pt;}
.yc_c00282{bottom:933.624696pt;}
.yb_c00282{bottom:959.752819pt;}
.y9_c00282{bottom:972.580814pt;}
.y7_c00282{bottom:1000.229433pt;}
.y6_c00282{bottom:1018.754492pt;}
.y5_c00282{bottom:1036.963819pt;}
.y4_c00282{bottom:1055.170745pt;}
.hb_c00282{height:13.456000pt;}
.hd_c00282{height:13.774400pt;}
.hf_c00282{height:13.775520pt;}
.hc_c00282{height:15.200000pt;}
.he_c00282{height:15.356800pt;}
.h10_c00282{height:15.358080pt;}
.h8_c00282{height:23.215188pt;}
.h7_c00282{height:33.221817pt;}
.h6_c00282{height:36.824856pt;}
.h9_c00282{height:40.026651pt;}
.ha_c00282{height:42.512101pt;}
.h2_c00282{height:52.149123pt;}
.h3_c00282{height:56.683311pt;}
.h4_c00282{height:56.936644pt;}
.h5_c00282{height:1110.960672pt;}
.h1_c00282{height:1122.559167pt;}
.h0_c00282{height:1122.666667pt;}
.w4_c00282{width:8.548800pt;}
.w5_c00282{width:8.550400pt;}
.w3_c00282{width:8.552000pt;}
.w2_c00282{width:785.062974pt;}
.w1_c00282{width:793.257550pt;}
.w0_c00282{width:793.333333pt;}
.x0_c00282{left:0.000000pt;}
.x7_c00282{left:1.370626pt;}
.x8_c00282{left:100.224934pt;}
.x9_c00282{left:104.183732pt;}
.x2_c00282{left:112.192317pt;}
.x4_c00282{left:224.448440pt;}
.x3_c00282{left:240.124654pt;}
.x6_c00282{left:274.637856pt;}
.x5_c00282{left:373.596470pt;}
.xb_c00282{left:405.910400pt;}
.x1_c00282{left:442.475240pt;}
.xa_c00282{left:724.632000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:0.632000;font-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_c00283{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:-16.387643px;}
.ws1_c00283{word-spacing:0.000000px;}
._0_c00283{margin-left:-1.339562px;}
._1_c00283{width:1.056287px;}
.fc1_c00283{color:rgb(105,148,45);}
.fc0_c00283{color:rgb(35,31,32);}
.fs3_c00283{font-size:41.324503px;}
.fs4_c00283{font-size:53.436999px;}
.fs2_c00283{font-size:59.136936px;}
.fs0_c00283{font-size:65.550574px;}
.fs1_c00283{font-size:71.249972px;}
.y11_c00283{bottom:-0.005430px;}
.y17_c00283{bottom:-0.001696px;}
.y0_c00283{bottom:0.000000px;}
.y14_c00283{bottom:0.001560px;}
.y1_c00283{bottom:0.120938px;}
.y12_c00283{bottom:1.775070px;}
.y18_c00283{bottom:1.780303px;}
.y15_c00283{bottom:1.782059px;}
.y8_c00283{bottom:6.826644px;}
.ya_c00283{bottom:65.133277px;}
.y3_c00283{bottom:83.414442px;}
.y2_c00283{bottom:84.131629px;}
.yf_c00283{bottom:110.555509px;}
.y13_c00283{bottom:151.045380px;}
.ye_c00283{bottom:449.700873px;}
.y16_c00283{bottom:490.194000px;}
.yd_c00283{bottom:759.101250px;}
.yc_c00283{bottom:777.805042px;}
.y10_c00283{bottom:824.178600px;}
.yb_c00283{bottom:1079.721921px;}
.y9_c00283{bottom:1094.153416px;}
.y7_c00283{bottom:1125.258112px;}
.y6_c00283{bottom:1146.098804px;}
.y5_c00283{bottom:1166.584296px;}
.y4_c00283{bottom:1187.067088px;}
.ha_c00283{height:15.672600px;}
.hc_c00283{height:15.675480px;}
.hb_c00283{height:17.454600px;}
.hd_c00283{height:17.457120px;}
.h8_c00283{height:26.117086px;}
.h7_c00283{height:37.374544px;}
.h6_c00283{height:41.427963px;}
.h9_c00283{height:47.826114px;}
.h2_c00283{height:58.667764px;}
.h3_c00283{height:63.768724px;}
.h4_c00283{height:64.053724px;}
.h5_c00283{height:1249.830756px;}
.h1_c00283{height:1262.879062px;}
.h0_c00283{height:1263.000000px;}
.w3_c00283{width:9.617400px;}
.w4_c00283{width:9.619200px;}
.w2_c00283{width:883.195846px;}
.w1_c00283{width:892.414744px;}
.w0_c00283{width:892.500000px;}
.x0_c00283{left:0.000000px;}
.x7_c00283{left:1.541954px;}
.x8_c00283{left:112.753050px;}
.x2_c00283{left:126.216356px;}
.x4_c00283{left:252.504495px;}
.x3_c00283{left:270.140236px;}
.x6_c00283{left:308.967587px;}
.x5_c00283{left:420.296029px;}
.xb_c00283{left:456.114600px;}
.x1_c00283{left:497.784645px;}
.x9_c00283{left:540.249200px;}
.xa_c00283{left:814.500000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:-14.566794pt;}
.ws1_c00283{word-spacing:0.000000pt;}
._0_c00283{margin-left:-1.190722pt;}
._1_c00283{width:0.938922pt;}
.fs3_c00283{font-size:36.732892pt;}
.fs4_c00283{font-size:47.499554pt;}
.fs2_c00283{font-size:52.566166pt;}
.fs0_c00283{font-size:58.267177pt;}
.fs1_c00283{font-size:63.333308pt;}
.y11_c00283{bottom:-0.004826pt;}
.y17_c00283{bottom:-0.001508pt;}
.y0_c00283{bottom:0.000000pt;}
.y14_c00283{bottom:0.001386pt;}
.y1_c00283{bottom:0.107500pt;}
.y12_c00283{bottom:1.577840pt;}
.y18_c00283{bottom:1.582492pt;}
.y15_c00283{bottom:1.584052pt;}
.y8_c00283{bottom:6.068128pt;}
.ya_c00283{bottom:57.896246pt;}
.y3_c00283{bottom:74.146170pt;}
.y2_c00283{bottom:74.783670pt;}
.yf_c00283{bottom:98.271564pt;}
.y13_c00283{bottom:134.262560pt;}
.ye_c00283{bottom:399.734110pt;}
.y16_c00283{bottom:435.728000pt;}
.yd_c00283{bottom:674.756666pt;}
.yc_c00283{bottom:691.382260pt;}
.y10_c00283{bottom:732.603200pt;}
.yb_c00283{bottom:959.752819pt;}
.y9_c00283{bottom:972.580814pt;}
.y7_c00283{bottom:1000.229433pt;}
.y6_c00283{bottom:1018.754492pt;}
.y5_c00283{bottom:1036.963819pt;}
.y4_c00283{bottom:1055.170745pt;}
.ha_c00283{height:13.931200pt;}
.hc_c00283{height:13.933760pt;}
.hb_c00283{height:15.515200pt;}
.hd_c00283{height:15.517440pt;}
.h8_c00283{height:23.215188pt;}
.h7_c00283{height:33.221817pt;}
.h6_c00283{height:36.824856pt;}
.h9_c00283{height:42.512101pt;}
.h2_c00283{height:52.149123pt;}
.h3_c00283{height:56.683311pt;}
.h4_c00283{height:56.936644pt;}
.h5_c00283{height:1110.960672pt;}
.h1_c00283{height:1122.559167pt;}
.h0_c00283{height:1122.666667pt;}
.w3_c00283{width:8.548800pt;}
.w4_c00283{width:8.550400pt;}
.w2_c00283{width:785.062974pt;}
.w1_c00283{width:793.257550pt;}
.w0_c00283{width:793.333333pt;}
.x0_c00283{left:0.000000pt;}
.x7_c00283{left:1.370626pt;}
.x8_c00283{left:100.224934pt;}
.x2_c00283{left:112.192317pt;}
.x4_c00283{left:224.448440pt;}
.x3_c00283{left:240.124654pt;}
.x6_c00283{left:274.637856pt;}
.x5_c00283{left:373.596470pt;}
.xb_c00283{left:405.435200pt;}
.x1_c00283{left:442.475240pt;}
.x9_c00283{left:480.221511pt;}
.xa_c00283{left:724.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_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:0.632000;font-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_c00284{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls0_c00284{letter-spacing:0.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:-16.387643px;}
.ws1_c00284{word-spacing:0.000000px;}
._0_c00284{margin-left:-1.339562px;}
._1_c00284{width:1.056287px;}
.fc1_c00284{color:rgb(105,148,45);}
.fc0_c00284{color:rgb(35,31,32);}
.fs3_c00284{font-size:53.436999px;}
.fs2_c00284{font-size:59.136936px;}
.fs0_c00284{font-size:65.550574px;}
.fs1_c00284{font-size:71.249972px;}
.y12_c00284{bottom:-0.177800px;}
.yf_c00284{bottom:-0.005724px;}
.y0_c00284{bottom:0.000000px;}
.y15_c00284{bottom:0.002450px;}
.y1_c00284{bottom:0.120938px;}
.y13_c00284{bottom:1.604199px;}
.y10_c00284{bottom:1.776276px;}
.y16_c00284{bottom:1.779949px;}
.y8_c00284{bottom:6.826644px;}
.ya_c00284{bottom:65.133277px;}
.y3_c00284{bottom:83.414442px;}
.y2_c00284{bottom:84.131629px;}
.yd_c00284{bottom:135.136299px;}
.y14_c00284{bottom:175.627980px;}
.yc_c00284{bottom:459.496169px;}
.y11_c00284{bottom:499.989600px;}
.yb_c00284{bottom:768.896546px;}
.ye_c00284{bottom:809.393400px;}
.y9_c00284{bottom:1094.153416px;}
.y7_c00284{bottom:1125.258112px;}
.y6_c00284{bottom:1146.098804px;}
.y5_c00284{bottom:1166.584296px;}
.y4_c00284{bottom:1187.067088px;}
.hb_c00284{height:15.499800px;}
.h9_c00284{height:15.672600px;}
.hd_c00284{height:15.676020px;}
.hc_c00284{height:17.281800px;}
.ha_c00284{height:17.454600px;}
.he_c00284{height:17.456220px;}
.h7_c00284{height:37.374544px;}
.h6_c00284{height:41.427963px;}
.h8_c00284{height:47.826114px;}
.h2_c00284{height:58.667764px;}
.h3_c00284{height:63.768724px;}
.h4_c00284{height:64.053724px;}
.h5_c00284{height:1249.830756px;}
.h1_c00284{height:1262.879062px;}
.h0_c00284{height:1263.000000px;}
.w4_c00284{width:4.987800px;}
.w3_c00284{width:9.617400px;}
.w2_c00284{width:883.195846px;}
.w1_c00284{width:892.414744px;}
.w0_c00284{width:892.500000px;}
.x0_c00284{left:0.000000px;}
.x7_c00284{left:1.541954px;}
.x8_c00284{left:112.753050px;}
.x2_c00284{left:126.216356px;}
.x4_c00284{left:252.504495px;}
.x3_c00284{left:270.140236px;}
.x6_c00284{left:308.967587px;}
.x5_c00284{left:420.296029px;}
.xa_c00284{left:456.114600px;}
.x1_c00284{left:497.784645px;}
.x9_c00284{left:814.500000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:-14.566794pt;}
.ws1_c00284{word-spacing:0.000000pt;}
._0_c00284{margin-left:-1.190722pt;}
._1_c00284{width:0.938922pt;}
.fs3_c00284{font-size:47.499554pt;}
.fs2_c00284{font-size:52.566166pt;}
.fs0_c00284{font-size:58.267177pt;}
.fs1_c00284{font-size:63.333308pt;}
.y12_c00284{bottom:-0.158044pt;}
.yf_c00284{bottom:-0.005088pt;}
.y0_c00284{bottom:0.000000pt;}
.y15_c00284{bottom:0.002178pt;}
.y1_c00284{bottom:0.107500pt;}
.y13_c00284{bottom:1.425955pt;}
.y10_c00284{bottom:1.578912pt;}
.y16_c00284{bottom:1.582177pt;}
.y8_c00284{bottom:6.068128pt;}
.ya_c00284{bottom:57.896246pt;}
.y3_c00284{bottom:74.146170pt;}
.y2_c00284{bottom:74.783670pt;}
.yd_c00284{bottom:120.121155pt;}
.y14_c00284{bottom:156.113760pt;}
.yc_c00284{bottom:408.441040pt;}
.y11_c00284{bottom:444.435200pt;}
.yb_c00284{bottom:683.463596pt;}
.ye_c00284{bottom:719.460800pt;}
.y9_c00284{bottom:972.580814pt;}
.y7_c00284{bottom:1000.229433pt;}
.y6_c00284{bottom:1018.754492pt;}
.y5_c00284{bottom:1036.963819pt;}
.y4_c00284{bottom:1055.170745pt;}
.hb_c00284{height:13.777600pt;}
.h9_c00284{height:13.931200pt;}
.hd_c00284{height:13.934240pt;}
.hc_c00284{height:15.361600pt;}
.ha_c00284{height:15.515200pt;}
.he_c00284{height:15.516640pt;}
.h7_c00284{height:33.221817pt;}
.h6_c00284{height:36.824856pt;}
.h8_c00284{height:42.512101pt;}
.h2_c00284{height:52.149123pt;}
.h3_c00284{height:56.683311pt;}
.h4_c00284{height:56.936644pt;}
.h5_c00284{height:1110.960672pt;}
.h1_c00284{height:1122.559167pt;}
.h0_c00284{height:1122.666667pt;}
.w4_c00284{width:4.433600pt;}
.w3_c00284{width:8.548800pt;}
.w2_c00284{width:785.062974pt;}
.w1_c00284{width:793.257550pt;}
.w0_c00284{width:793.333333pt;}
.x0_c00284{left:0.000000pt;}
.x7_c00284{left:1.370626pt;}
.x8_c00284{left:100.224934pt;}
.x2_c00284{left:112.192317pt;}
.x4_c00284{left:224.448440pt;}
.x3_c00284{left:240.124654pt;}
.x6_c00284{left:274.637856pt;}
.x5_c00284{left:373.596470pt;}
.xa_c00284{left:405.435200pt;}
.x1_c00284{left:442.475240pt;}
.x9_c00284{left:724.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_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:0.632000;font-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_c00285{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:-16.387643px;}
.ws1_c00285{word-spacing:0.000000px;}
._0_c00285{margin-left:-1.339562px;}
._1_c00285{width:1.056287px;}
.fc1_c00285{color:rgb(105,148,45);}
.fc0_c00285{color:rgb(35,31,32);}
.fs3_c00285{font-size:53.436999px;}
.fs2_c00285{font-size:59.136936px;}
.fs0_c00285{font-size:65.550574px;}
.fs1_c00285{font-size:71.249972px;}
.y12_c00285{bottom:-0.177800px;}
.y15_c00285{bottom:-0.174976px;}
.yf_c00285{bottom:-0.005724px;}
.y0_c00285{bottom:0.000000px;}
.y1_c00285{bottom:0.120938px;}
.y16_c00285{bottom:1.604023px;}
.y13_c00285{bottom:1.604199px;}
.y10_c00285{bottom:1.776276px;}
.y8_c00285{bottom:6.826644px;}
.ya_c00285{bottom:65.133277px;}
.y3_c00285{bottom:83.414442px;}
.y2_c00285{bottom:84.131629px;}
.yd_c00285{bottom:149.918793px;}
.y14_c00285{bottom:190.589400px;}
.yc_c00285{bottom:459.496169px;}
.y11_c00285{bottom:499.989600px;}
.yb_c00285{bottom:768.896546px;}
.ye_c00285{bottom:809.393400px;}
.y9_c00285{bottom:1094.153416px;}
.y7_c00285{bottom:1125.258112px;}
.y6_c00285{bottom:1146.098804px;}
.y5_c00285{bottom:1166.584296px;}
.y4_c00285{bottom:1187.067088px;}
.hd_c00285{height:15.498000px;}
.hb_c00285{height:15.499800px;}
.h9_c00285{height:15.672600px;}
.he_c00285{height:17.278200px;}
.hc_c00285{height:17.281800px;}
.ha_c00285{height:17.454600px;}
.h7_c00285{height:37.374544px;}
.h6_c00285{height:41.427963px;}
.h8_c00285{height:47.826114px;}
.h2_c00285{height:58.667764px;}
.h3_c00285{height:63.768724px;}
.h4_c00285{height:64.053724px;}
.h5_c00285{height:1249.830756px;}
.h1_c00285{height:1262.879062px;}
.h0_c00285{height:1263.000000px;}
.w4_c00285{width:4.987800px;}
.w3_c00285{width:9.617400px;}
.w2_c00285{width:883.195846px;}
.w1_c00285{width:892.414744px;}
.w0_c00285{width:892.500000px;}
.x0_c00285{left:0.000000px;}
.x7_c00285{left:1.541954px;}
.x8_c00285{left:112.753050px;}
.x2_c00285{left:126.216356px;}
.x4_c00285{left:252.504495px;}
.x3_c00285{left:270.140236px;}
.x6_c00285{left:308.967587px;}
.x5_c00285{left:420.296029px;}
.xa_c00285{left:456.114600px;}
.x1_c00285{left:497.784645px;}
.x9_c00285{left:814.500000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:-14.566794pt;}
.ws1_c00285{word-spacing:0.000000pt;}
._0_c00285{margin-left:-1.190722pt;}
._1_c00285{width:0.938922pt;}
.fs3_c00285{font-size:47.499554pt;}
.fs2_c00285{font-size:52.566166pt;}
.fs0_c00285{font-size:58.267177pt;}
.fs1_c00285{font-size:63.333308pt;}
.y12_c00285{bottom:-0.158044pt;}
.y15_c00285{bottom:-0.155534pt;}
.yf_c00285{bottom:-0.005088pt;}
.y0_c00285{bottom:0.000000pt;}
.y1_c00285{bottom:0.107500pt;}
.y16_c00285{bottom:1.425798pt;}
.y13_c00285{bottom:1.425955pt;}
.y10_c00285{bottom:1.578912pt;}
.y8_c00285{bottom:6.068128pt;}
.ya_c00285{bottom:57.896246pt;}
.y3_c00285{bottom:74.146170pt;}
.y2_c00285{bottom:74.783670pt;}
.yd_c00285{bottom:133.261150pt;}
.y14_c00285{bottom:169.412800pt;}
.yc_c00285{bottom:408.441040pt;}
.y11_c00285{bottom:444.435200pt;}
.yb_c00285{bottom:683.463596pt;}
.ye_c00285{bottom:719.460800pt;}
.y9_c00285{bottom:972.580814pt;}
.y7_c00285{bottom:1000.229433pt;}
.y6_c00285{bottom:1018.754492pt;}
.y5_c00285{bottom:1036.963819pt;}
.y4_c00285{bottom:1055.170745pt;}
.hd_c00285{height:13.776000pt;}
.hb_c00285{height:13.777600pt;}
.h9_c00285{height:13.931200pt;}
.he_c00285{height:15.358400pt;}
.hc_c00285{height:15.361600pt;}
.ha_c00285{height:15.515200pt;}
.h7_c00285{height:33.221817pt;}
.h6_c00285{height:36.824856pt;}
.h8_c00285{height:42.512101pt;}
.h2_c00285{height:52.149123pt;}
.h3_c00285{height:56.683311pt;}
.h4_c00285{height:56.936644pt;}
.h5_c00285{height:1110.960672pt;}
.h1_c00285{height:1122.559167pt;}
.h0_c00285{height:1122.666667pt;}
.w4_c00285{width:4.433600pt;}
.w3_c00285{width:8.548800pt;}
.w2_c00285{width:785.062974pt;}
.w1_c00285{width:793.257550pt;}
.w0_c00285{width:793.333333pt;}
.x0_c00285{left:0.000000pt;}
.x7_c00285{left:1.370626pt;}
.x8_c00285{left:100.224934pt;}
.x2_c00285{left:112.192317pt;}
.x4_c00285{left:224.448440pt;}
.x3_c00285{left:240.124654pt;}
.x6_c00285{left:274.637856pt;}
.x5_c00285{left:373.596470pt;}
.xa_c00285{left:405.435200pt;}
.x1_c00285{left:442.475240pt;}
.x9_c00285{left:724.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_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:0.632000;font-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_c00286{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls0_c00286{letter-spacing:0.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:-16.387643px;}
.ws1_c00286{word-spacing:0.000000px;}
._0_c00286{margin-left:-1.339562px;}
._1_c00286{width:1.056287px;}
.fc1_c00286{color:rgb(105,148,45);}
.fc0_c00286{color:rgb(35,31,32);}
.fs3_c00286{font-size:53.436999px;}
.fs2_c00286{font-size:59.136936px;}
.fs0_c00286{font-size:65.550574px;}
.fs1_c00286{font-size:71.249972px;}
.y12_c00286{bottom:-0.177800px;}
.yf_c00286{bottom:-0.005724px;}
.y0_c00286{bottom:0.000000px;}
.y15_c00286{bottom:0.002450px;}
.y1_c00286{bottom:0.120938px;}
.y13_c00286{bottom:1.604199px;}
.y10_c00286{bottom:1.776276px;}
.y16_c00286{bottom:1.779949px;}
.y8_c00286{bottom:6.826644px;}
.ya_c00286{bottom:65.133277px;}
.y3_c00286{bottom:83.414442px;}
.y2_c00286{bottom:84.131629px;}
.yd_c00286{bottom:135.136299px;}
.y14_c00286{bottom:175.627980px;}
.yc_c00286{bottom:459.496169px;}
.y11_c00286{bottom:499.989600px;}
.yb_c00286{bottom:768.896546px;}
.ye_c00286{bottom:809.393400px;}
.y9_c00286{bottom:1094.153416px;}
.y7_c00286{bottom:1125.258112px;}
.y6_c00286{bottom:1146.098804px;}
.y5_c00286{bottom:1166.584296px;}
.y4_c00286{bottom:1187.067088px;}
.hb_c00286{height:15.499800px;}
.h9_c00286{height:15.672600px;}
.hd_c00286{height:15.676020px;}
.hc_c00286{height:17.281800px;}
.ha_c00286{height:17.454600px;}
.he_c00286{height:17.456220px;}
.h7_c00286{height:37.374544px;}
.h6_c00286{height:41.427963px;}
.h8_c00286{height:47.826114px;}
.h2_c00286{height:58.667764px;}
.h3_c00286{height:63.768724px;}
.h4_c00286{height:64.053724px;}
.h5_c00286{height:1249.830756px;}
.h1_c00286{height:1262.879062px;}
.h0_c00286{height:1263.000000px;}
.w4_c00286{width:4.987800px;}
.w3_c00286{width:9.617400px;}
.w2_c00286{width:883.195846px;}
.w1_c00286{width:892.414744px;}
.w0_c00286{width:892.500000px;}
.x0_c00286{left:0.000000px;}
.x7_c00286{left:1.541954px;}
.x8_c00286{left:112.753050px;}
.x2_c00286{left:126.216356px;}
.x4_c00286{left:252.504495px;}
.x3_c00286{left:270.140236px;}
.x6_c00286{left:308.967587px;}
.x5_c00286{left:420.296029px;}
.xa_c00286{left:456.114600px;}
.x1_c00286{left:497.784645px;}
.x9_c00286{left:814.500000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:-14.566794pt;}
.ws1_c00286{word-spacing:0.000000pt;}
._0_c00286{margin-left:-1.190722pt;}
._1_c00286{width:0.938922pt;}
.fs3_c00286{font-size:47.499554pt;}
.fs2_c00286{font-size:52.566166pt;}
.fs0_c00286{font-size:58.267177pt;}
.fs1_c00286{font-size:63.333308pt;}
.y12_c00286{bottom:-0.158044pt;}
.yf_c00286{bottom:-0.005088pt;}
.y0_c00286{bottom:0.000000pt;}
.y15_c00286{bottom:0.002178pt;}
.y1_c00286{bottom:0.107500pt;}
.y13_c00286{bottom:1.425955pt;}
.y10_c00286{bottom:1.578912pt;}
.y16_c00286{bottom:1.582177pt;}
.y8_c00286{bottom:6.068128pt;}
.ya_c00286{bottom:57.896246pt;}
.y3_c00286{bottom:74.146170pt;}
.y2_c00286{bottom:74.783670pt;}
.yd_c00286{bottom:120.121155pt;}
.y14_c00286{bottom:156.113760pt;}
.yc_c00286{bottom:408.441040pt;}
.y11_c00286{bottom:444.435200pt;}
.yb_c00286{bottom:683.463596pt;}
.ye_c00286{bottom:719.460800pt;}
.y9_c00286{bottom:972.580814pt;}
.y7_c00286{bottom:1000.229433pt;}
.y6_c00286{bottom:1018.754492pt;}
.y5_c00286{bottom:1036.963819pt;}
.y4_c00286{bottom:1055.170745pt;}
.hb_c00286{height:13.777600pt;}
.h9_c00286{height:13.931200pt;}
.hd_c00286{height:13.934240pt;}
.hc_c00286{height:15.361600pt;}
.ha_c00286{height:15.515200pt;}
.he_c00286{height:15.516640pt;}
.h7_c00286{height:33.221817pt;}
.h6_c00286{height:36.824856pt;}
.h8_c00286{height:42.512101pt;}
.h2_c00286{height:52.149123pt;}
.h3_c00286{height:56.683311pt;}
.h4_c00286{height:56.936644pt;}
.h5_c00286{height:1110.960672pt;}
.h1_c00286{height:1122.559167pt;}
.h0_c00286{height:1122.666667pt;}
.w4_c00286{width:4.433600pt;}
.w3_c00286{width:8.548800pt;}
.w2_c00286{width:785.062974pt;}
.w1_c00286{width:793.257550pt;}
.w0_c00286{width:793.333333pt;}
.x0_c00286{left:0.000000pt;}
.x7_c00286{left:1.370626pt;}
.x8_c00286{left:100.224934pt;}
.x2_c00286{left:112.192317pt;}
.x4_c00286{left:224.448440pt;}
.x3_c00286{left:240.124654pt;}
.x6_c00286{left:274.637856pt;}
.x5_c00286{left:373.596470pt;}
.xa_c00286{left:405.435200pt;}
.x1_c00286{left:442.475240pt;}
.x9_c00286{left:724.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_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:0.632000;font-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_c00287{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00287{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00287{word-spacing:-16.387643px;}
.ws1_c00287{word-spacing:0.000000px;}
._0_c00287{margin-left:-1.339562px;}
._1_c00287{width:1.056287px;}
.fc1_c00287{color:rgb(105,148,45);}
.fc0_c00287{color:rgb(35,31,32);}
.fs3_c00287{font-size:53.436999px;}
.fs2_c00287{font-size:59.136936px;}
.fs0_c00287{font-size:65.550574px;}
.fs1_c00287{font-size:71.249972px;}
.y15_c00287{bottom:-0.180604px;}
.y12_c00287{bottom:-0.178694px;}
.yf_c00287{bottom:-0.005724px;}
.y0_c00287{bottom:0.000000px;}
.y1_c00287{bottom:0.120938px;}
.y16_c00287{bottom:1.601395px;}
.y13_c00287{bottom:1.601805px;}
.y10_c00287{bottom:1.776276px;}
.y8_c00287{bottom:6.826644px;}
.ya_c00287{bottom:65.133277px;}
.y3_c00287{bottom:83.414442px;}
.y2_c00287{bottom:84.131629px;}
.yd_c00287{bottom:120.353805px;}
.y14_c00287{bottom:160.844040px;}
.yc_c00287{bottom:444.535175px;}
.y11_c00287{bottom:485.208000px;}
.yb_c00287{bottom:768.896546px;}
.ye_c00287{bottom:809.393400px;}
.y9_c00287{bottom:1094.153416px;}
.y7_c00287{bottom:1125.258112px;}
.y6_c00287{bottom:1146.098804px;}
.y5_c00287{bottom:1166.584296px;}
.y4_c00287{bottom:1187.067088px;}
.hb_c00287{height:15.492600px;}
.hd_c00287{height:15.496920px;}
.h9_c00287{height:15.672600px;}
.hc_c00287{height:17.274600px;}
.he_c00287{height:17.275860px;}
.ha_c00287{height:17.454600px;}
.h7_c00287{height:37.374544px;}
.h6_c00287{height:41.427963px;}
.h8_c00287{height:47.826114px;}
.h2_c00287{height:58.667764px;}
.h3_c00287{height:63.768724px;}
.h4_c00287{height:64.053724px;}
.h5_c00287{height:1249.830756px;}
.h1_c00287{height:1262.879062px;}
.h0_c00287{height:1263.000000px;}
.w4_c00287{width:4.987800px;}
.w3_c00287{width:9.617400px;}
.w2_c00287{width:883.195846px;}
.w1_c00287{width:892.414744px;}
.w0_c00287{width:892.500000px;}
.x0_c00287{left:0.000000px;}
.x7_c00287{left:1.541954px;}
.x8_c00287{left:112.753050px;}
.x2_c00287{left:126.216356px;}
.x4_c00287{left:252.504495px;}
.x3_c00287{left:270.140236px;}
.x6_c00287{left:308.967587px;}
.x5_c00287{left:420.296029px;}
.xa_c00287{left:456.114600px;}
.x1_c00287{left:497.784645px;}
.x9_c00287{left:814.500000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:-14.566794pt;}
.ws1_c00287{word-spacing:0.000000pt;}
._0_c00287{margin-left:-1.190722pt;}
._1_c00287{width:0.938922pt;}
.fs3_c00287{font-size:47.499554pt;}
.fs2_c00287{font-size:52.566166pt;}
.fs0_c00287{font-size:58.267177pt;}
.fs1_c00287{font-size:63.333308pt;}
.y15_c00287{bottom:-0.160537pt;}
.y12_c00287{bottom:-0.158839pt;}
.yf_c00287{bottom:-0.005088pt;}
.y0_c00287{bottom:0.000000pt;}
.y1_c00287{bottom:0.107500pt;}
.y16_c00287{bottom:1.423462pt;}
.y13_c00287{bottom:1.423827pt;}
.y10_c00287{bottom:1.578912pt;}
.y8_c00287{bottom:6.068128pt;}
.ya_c00287{bottom:57.896246pt;}
.y3_c00287{bottom:74.146170pt;}
.y2_c00287{bottom:74.783670pt;}
.yd_c00287{bottom:106.981160pt;}
.y14_c00287{bottom:142.972480pt;}
.yc_c00287{bottom:395.142378pt;}
.y11_c00287{bottom:431.296000pt;}
.yb_c00287{bottom:683.463596pt;}
.ye_c00287{bottom:719.460800pt;}
.y9_c00287{bottom:972.580814pt;}
.y7_c00287{bottom:1000.229433pt;}
.y6_c00287{bottom:1018.754492pt;}
.y5_c00287{bottom:1036.963819pt;}
.y4_c00287{bottom:1055.170745pt;}
.hb_c00287{height:13.771200pt;}
.hd_c00287{height:13.775040pt;}
.h9_c00287{height:13.931200pt;}
.hc_c00287{height:15.355200pt;}
.he_c00287{height:15.356320pt;}
.ha_c00287{height:15.515200pt;}
.h7_c00287{height:33.221817pt;}
.h6_c00287{height:36.824856pt;}
.h8_c00287{height:42.512101pt;}
.h2_c00287{height:52.149123pt;}
.h3_c00287{height:56.683311pt;}
.h4_c00287{height:56.936644pt;}
.h5_c00287{height:1110.960672pt;}
.h1_c00287{height:1122.559167pt;}
.h0_c00287{height:1122.666667pt;}
.w4_c00287{width:4.433600pt;}
.w3_c00287{width:8.548800pt;}
.w2_c00287{width:785.062974pt;}
.w1_c00287{width:793.257550pt;}
.w0_c00287{width:793.333333pt;}
.x0_c00287{left:0.000000pt;}
.x7_c00287{left:1.370626pt;}
.x8_c00287{left:100.224934pt;}
.x2_c00287{left:112.192317pt;}
.x4_c00287{left:224.448440pt;}
.x3_c00287{left:240.124654pt;}
.x6_c00287{left:274.637856pt;}
.x5_c00287{left:373.596470pt;}
.xa_c00287{left:405.435200pt;}
.x1_c00287{left:442.475240pt;}
.x9_c00287{left:724.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_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:0.632000;font-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_c00288{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:-16.387643px;}
.ws1_c00288{word-spacing:0.000000px;}
._0_c00288{margin-left:-1.339562px;}
._1_c00288{width:1.056287px;}
.fc1_c00288{color:rgb(105,148,45);}
.fc0_c00288{color:rgb(35,31,32);}
.fs3_c00288{font-size:53.436999px;}
.fs2_c00288{font-size:59.136936px;}
.fs0_c00288{font-size:65.550574px;}
.fs1_c00288{font-size:71.249972px;}
.yf_c00288{bottom:-0.005724px;}
.y0_c00288{bottom:0.000000px;}
.y1_c00288{bottom:0.120938px;}
.y12_c00288{bottom:1.604199px;}
.y10_c00288{bottom:1.776276px;}
.y8_c00288{bottom:6.826644px;}
.ya_c00288{bottom:65.133277px;}
.y3_c00288{bottom:83.414442px;}
.y2_c00288{bottom:84.131629px;}
.yd_c00288{bottom:440.791627px;}
.yc_c00288{bottom:459.496169px;}
.y11_c00288{bottom:499.989600px;}
.yb_c00288{bottom:768.896546px;}
.ye_c00288{bottom:809.393400px;}
.y9_c00288{bottom:1094.153416px;}
.y7_c00288{bottom:1125.258112px;}
.y6_c00288{bottom:1146.098804px;}
.y5_c00288{bottom:1166.584296px;}
.y4_c00288{bottom:1187.067088px;}
.h9_c00288{height:15.672600px;}
.hb_c00288{height:17.281800px;}
.ha_c00288{height:17.454600px;}
.h7_c00288{height:37.374544px;}
.h6_c00288{height:41.427963px;}
.h8_c00288{height:47.826114px;}
.h2_c00288{height:58.667764px;}
.h3_c00288{height:63.768724px;}
.h4_c00288{height:64.053724px;}
.h5_c00288{height:1249.830756px;}
.h1_c00288{height:1262.879062px;}
.h0_c00288{height:1263.000000px;}
.w4_c00288{width:4.987800px;}
.w3_c00288{width:9.617400px;}
.w2_c00288{width:883.195846px;}
.w1_c00288{width:892.414744px;}
.w0_c00288{width:892.500000px;}
.x0_c00288{left:0.000000px;}
.x7_c00288{left:1.541954px;}
.x8_c00288{left:112.753050px;}
.x2_c00288{left:126.216356px;}
.x4_c00288{left:252.504495px;}
.x3_c00288{left:270.140236px;}
.x6_c00288{left:308.967587px;}
.x5_c00288{left:420.296029px;}
.xa_c00288{left:456.114600px;}
.x1_c00288{left:497.784645px;}
.x9_c00288{left:814.500000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:-14.566794pt;}
.ws1_c00288{word-spacing:0.000000pt;}
._0_c00288{margin-left:-1.190722pt;}
._1_c00288{width:0.938922pt;}
.fs3_c00288{font-size:47.499554pt;}
.fs2_c00288{font-size:52.566166pt;}
.fs0_c00288{font-size:58.267177pt;}
.fs1_c00288{font-size:63.333308pt;}
.yf_c00288{bottom:-0.005088pt;}
.y0_c00288{bottom:0.000000pt;}
.y1_c00288{bottom:0.107500pt;}
.y12_c00288{bottom:1.425955pt;}
.y10_c00288{bottom:1.578912pt;}
.y8_c00288{bottom:6.068128pt;}
.ya_c00288{bottom:57.896246pt;}
.y3_c00288{bottom:74.146170pt;}
.y2_c00288{bottom:74.783670pt;}
.yd_c00288{bottom:391.814780pt;}
.yc_c00288{bottom:408.441040pt;}
.y11_c00288{bottom:444.435200pt;}
.yb_c00288{bottom:683.463596pt;}
.ye_c00288{bottom:719.460800pt;}
.y9_c00288{bottom:972.580814pt;}
.y7_c00288{bottom:1000.229433pt;}
.y6_c00288{bottom:1018.754492pt;}
.y5_c00288{bottom:1036.963819pt;}
.y4_c00288{bottom:1055.170745pt;}
.h9_c00288{height:13.931200pt;}
.hb_c00288{height:15.361600pt;}
.ha_c00288{height:15.515200pt;}
.h7_c00288{height:33.221817pt;}
.h6_c00288{height:36.824856pt;}
.h8_c00288{height:42.512101pt;}
.h2_c00288{height:52.149123pt;}
.h3_c00288{height:56.683311pt;}
.h4_c00288{height:56.936644pt;}
.h5_c00288{height:1110.960672pt;}
.h1_c00288{height:1122.559167pt;}
.h0_c00288{height:1122.666667pt;}
.w4_c00288{width:4.433600pt;}
.w3_c00288{width:8.548800pt;}
.w2_c00288{width:785.062974pt;}
.w1_c00288{width:793.257550pt;}
.w0_c00288{width:793.333333pt;}
.x0_c00288{left:0.000000pt;}
.x7_c00288{left:1.370626pt;}
.x8_c00288{left:100.224934pt;}
.x2_c00288{left:112.192317pt;}
.x4_c00288{left:224.448440pt;}
.x3_c00288{left:240.124654pt;}
.x6_c00288{left:274.637856pt;}
.x5_c00288{left:373.596470pt;}
.xa_c00288{left:405.435200pt;}
.x1_c00288{left:442.475240pt;}
.x9_c00288{left:724.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_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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:0.000000px;}
.fc0_c00289{color:rgb(35,31,32);}
.fs0_c00289{font-size:106.873757px;}
.y0_c00289{bottom:0.000000px;}
.y1_c00289{bottom:0.120938px;}
.y2_c00289{bottom:407.959899px;}
.h2_c00289{height:95.865760px;}
.h1_c00289{height:1262.879062px;}
.h0_c00289{height:1263.000000px;}
.w1_c00289{width:892.414744px;}
.w0_c00289{width:892.500000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:108.404900px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
.fs0_c00289{font-size:94.998895pt;}
.y0_c00289{bottom:0.000000pt;}
.y1_c00289{bottom:0.107500pt;}
.y2_c00289{bottom:362.631022pt;}
.h2_c00289{height:85.214009pt;}
.h1_c00289{height:1122.559167pt;}
.h0_c00289{height:1122.666667pt;}
.w1_c00289{width:793.257550pt;}
.w0_c00289{width:793.333333pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.112000;font-style:normal;font-weight:normal;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_91c94d9680606deb988c60ae.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00290;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff6_c00290{font-family:ff6_c00290;line-height:1.113000;font-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_c00290{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls1_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:74.158170px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:0.000000px;}
._0_c00290{margin-left:-1.339562px;}
._1_c00290{width:1.057171px;}
._a_c00290{width:2.534869px;}
._7_c00290{width:3.676119px;}
._8_c00290{width:4.766445px;}
._9_c00290{width:6.435613px;}
._4_c00290{width:7.558429px;}
._6_c00290{width:8.723421px;}
._5_c00290{width:9.809257px;}
._d_c00290{width:11.642946px;}
._3_c00290{width:15.008897px;}
._2_c00290{width:16.057397px;}
._b_c00290{width:23.365824px;}
._c_c00290{width:24.819573px;}
.fc2_c00290{color:rgb(38,69,127);}
.fc3_c00290{color:transparent;}
.fc1_c00290{color:rgb(105,148,45);}
.fc0_c00290{color:rgb(35,31,32);}
.fs4_c00290{font-size:41.324503px;}
.fs3_c00290{font-size:53.436999px;}
.fs2_c00290{font-size:59.136936px;}
.fs0_c00290{font-size:65.550574px;}
.fs1_c00290{font-size:71.249972px;}
.y37_c00290{bottom:-3.384776px;}
.y3a_c00290{bottom:-1.425234px;}
.y0_c00290{bottom:0.000000px;}
.y1_c00290{bottom:0.120938px;}
.y38_c00290{bottom:0.176222px;}
.y3b_c00290{bottom:0.355865px;}
.y8_c00290{bottom:6.826644px;}
.ya_c00290{bottom:65.133277px;}
.y3_c00290{bottom:83.414442px;}
.y2_c00290{bottom:84.131629px;}
.y35_c00290{bottom:112.870458px;}
.y34_c00290{bottom:131.583101px;}
.y39_c00290{bottom:137.509380px;}
.y33_c00290{bottom:150.284793px;}
.y32_c00290{bottom:168.986486px;}
.y31_c00290{bottom:187.688178px;}
.y30_c00290{bottom:206.389871px;}
.y2f_c00290{bottom:225.091563px;}
.y2e_c00290{bottom:243.796106px;}
.y2d_c00290{bottom:262.499298px;}
.y2c_c00290{bottom:281.202491px;}
.y2b_c00290{bottom:299.902833px;}
.y2a_c00290{bottom:318.604526px;}
.y29_c00290{bottom:337.307718px;}
.y28_c00290{bottom:355.298711px;}
.y27_c00290{bottom:387.002698px;}
.y26_c00290{bottom:400.361993px;}
.y25_c00290{bottom:419.065186px;}
.y24_c00290{bottom:437.765228px;}
.y36_c00290{bottom:443.703600px;}
.y23_c00290{bottom:456.466921px;}
.y22_c00290{bottom:475.170113px;}
.y21_c00290{bottom:493.875406px;}
.y20_c00290{bottom:512.578598px;}
.y1f_c00290{bottom:531.280291px;}
.y1e_c00290{bottom:549.983483px;}
.y1d_c00290{bottom:568.686676px;}
.y1c_c00290{bottom:587.389868px;}
.y1b_c00290{bottom:606.093061px;}
.y1a_c00290{bottom:624.793403px;}
.y19_c00290{bottom:661.843089px;}
.y18_c00290{bottom:699.427673px;}
.y17_c00290{bottom:719.023066px;}
.y16_c00290{bottom:736.301559px;}
.y15_c00290{bottom:764.802447px;}
.y14_c00290{bottom:795.620385px;}
.y13_c00290{bottom:826.254873px;}
.y12_c00290{bottom:857.067860px;}
.y11_c00290{bottom:887.707298px;}
.y10_c00290{bottom:918.523136px;}
.yf_c00290{bottom:950.582773px;}
.ye_c00290{bottom:981.219961px;}
.yd_c00290{bottom:1012.035798px;}
.yc_c00290{bottom:1042.673736px;}
.yb_c00290{bottom:1073.310924px;}
.y9_c00290{bottom:1094.153416px;}
.y7_c00290{bottom:1125.258112px;}
.y6_c00290{bottom:1146.098804px;}
.y5_c00290{bottom:1166.584296px;}
.y4_c00290{bottom:1187.067088px;}
.he_c00290{height:12.292200px;}
.h10_c00290{height:14.250240px;}
.hf_c00290{height:15.852600px;}
.h11_c00290{height:16.032060px;}
.hd_c00290{height:26.117086px;}
.h7_c00290{height:37.374544px;}
.h6_c00290{height:41.427963px;}
.hb_c00290{height:45.029982px;}
.hc_c00290{height:47.826114px;}
.ha_c00290{height:53.045832px;}
.h2_c00290{height:58.667764px;}
.h3_c00290{height:63.768724px;}
.h8_c00290{height:63.839974px;}
.h9_c00290{height:63.911224px;}
.h4_c00290{height:64.053724px;}
.h5_c00290{height:1249.830756px;}
.h1_c00290{height:1262.879062px;}
.h0_c00290{height:1263.000000px;}
.w3_c00290{width:2.318400px;}
.w5_c00290{width:4.809600px;}
.w4_c00290{width:9.615600px;}
.w2_c00290{width:883.195846px;}
.w1_c00290{width:892.414744px;}
.w0_c00290{width:892.500000px;}
.x0_c00290{left:0.000000px;}
.x7_c00290{left:1.541954px;}
.x8_c00290{left:112.753050px;}
.x2_c00290{left:126.216356px;}
.xa_c00290{left:166.188198px;}
.x9_c00290{left:178.837474px;}
.xb_c00290{left:192.908199px;}
.xc_c00290{left:219.630299px;}
.x4_c00290{left:252.504495px;}
.x3_c00290{left:270.140236px;}
.x6_c00290{left:312.353010px;}
.x5_c00290{left:420.296029px;}
.xf_c00290{left:436.523400px;}
.xd_c00290{left:439.014600px;}
.x1_c00290{left:497.784645px;}
.xe_c00290{left:771.750000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls1_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:65.918374pt;}
.ws0_c00290{word-spacing:0.000000pt;}
._0_c00290{margin-left:-1.190722pt;}
._1_c00290{width:0.939707pt;}
._a_c00290{width:2.253216pt;}
._7_c00290{width:3.267662pt;}
._8_c00290{width:4.236840pt;}
._9_c00290{width:5.720545pt;}
._4_c00290{width:6.718603pt;}
._6_c00290{width:7.754152pt;}
._5_c00290{width:8.719339pt;}
._d_c00290{width:10.349285pt;}
._3_c00290{width:13.341242pt;}
._2_c00290{width:14.273241pt;}
._b_c00290{width:20.769621pt;}
._c_c00290{width:22.061842pt;}
.fs4_c00290{font-size:36.732892pt;}
.fs3_c00290{font-size:47.499554pt;}
.fs2_c00290{font-size:52.566166pt;}
.fs0_c00290{font-size:58.267177pt;}
.fs1_c00290{font-size:63.333308pt;}
.y37_c00290{bottom:-3.008690pt;}
.y3a_c00290{bottom:-1.266875pt;}
.y0_c00290{bottom:0.000000pt;}
.y1_c00290{bottom:0.107500pt;}
.y38_c00290{bottom:0.156642pt;}
.y3b_c00290{bottom:0.316324pt;}
.y8_c00290{bottom:6.068128pt;}
.ya_c00290{bottom:57.896246pt;}
.y3_c00290{bottom:74.146170pt;}
.y2_c00290{bottom:74.783670pt;}
.y35_c00290{bottom:100.329296pt;}
.y34_c00290{bottom:116.962756pt;}
.y39_c00290{bottom:122.230560pt;}
.y33_c00290{bottom:133.586483pt;}
.y32_c00290{bottom:150.210209pt;}
.y31_c00290{bottom:166.833936pt;}
.y30_c00290{bottom:183.457663pt;}
.y2f_c00290{bottom:200.081390pt;}
.y2e_c00290{bottom:216.707650pt;}
.y2d_c00290{bottom:233.332710pt;}
.y2c_c00290{bottom:249.957770pt;}
.y2b_c00290{bottom:266.580296pt;}
.y2a_c00290{bottom:283.204023pt;}
.y29_c00290{bottom:299.829083pt;}
.y28_c00290{bottom:315.821077pt;}
.y27_c00290{bottom:344.002399pt;}
.y26_c00290{bottom:355.877327pt;}
.y25_c00290{bottom:372.502387pt;}
.y24_c00290{bottom:389.124647pt;}
.y36_c00290{bottom:394.403200pt;}
.y23_c00290{bottom:405.748374pt;}
.y22_c00290{bottom:422.373434pt;}
.y21_c00290{bottom:439.000361pt;}
.y20_c00290{bottom:455.625421pt;}
.y1f_c00290{bottom:472.249147pt;}
.y1e_c00290{bottom:488.874207pt;}
.y1d_c00290{bottom:505.499267pt;}
.y1c_c00290{bottom:522.124327pt;}
.y1b_c00290{bottom:538.749387pt;}
.y1a_c00290{bottom:555.371914pt;}
.y19_c00290{bottom:588.304968pt;}
.y18_c00290{bottom:621.713488pt;}
.y17_c00290{bottom:639.131614pt;}
.y16_c00290{bottom:654.490274pt;}
.y15_c00290{bottom:679.824398pt;}
.y14_c00290{bottom:707.218120pt;}
.y13_c00290{bottom:734.448776pt;}
.y12_c00290{bottom:761.838098pt;}
.y11_c00290{bottom:789.073154pt;}
.y10_c00290{bottom:816.465010pt;}
.yf_c00290{bottom:844.962465pt;}
.ye_c00290{bottom:872.195521pt;}
.yd_c00290{bottom:899.587376pt;}
.yc_c00290{bottom:926.821099pt;}
.yb_c00290{bottom:954.054155pt;}
.y9_c00290{bottom:972.580814pt;}
.y7_c00290{bottom:1000.229433pt;}
.y6_c00290{bottom:1018.754492pt;}
.y5_c00290{bottom:1036.963819pt;}
.y4_c00290{bottom:1055.170745pt;}
.he_c00290{height:10.926400pt;}
.h10_c00290{height:12.666880pt;}
.hf_c00290{height:14.091200pt;}
.h11_c00290{height:14.250720pt;}
.hd_c00290{height:23.215188pt;}
.h7_c00290{height:33.221817pt;}
.h6_c00290{height:36.824856pt;}
.hb_c00290{height:40.026651pt;}
.hc_c00290{height:42.512101pt;}
.ha_c00290{height:47.151851pt;}
.h2_c00290{height:52.149123pt;}
.h3_c00290{height:56.683311pt;}
.h8_c00290{height:56.746644pt;}
.h9_c00290{height:56.809977pt;}
.h4_c00290{height:56.936644pt;}
.h5_c00290{height:1110.960672pt;}
.h1_c00290{height:1122.559167pt;}
.h0_c00290{height:1122.666667pt;}
.w3_c00290{width:2.060800pt;}
.w5_c00290{width:4.275200pt;}
.w4_c00290{width:8.547200pt;}
.w2_c00290{width:785.062974pt;}
.w1_c00290{width:793.257550pt;}
.w0_c00290{width:793.333333pt;}
.x0_c00290{left:0.000000pt;}
.x7_c00290{left:1.370626pt;}
.x8_c00290{left:100.224934pt;}
.x2_c00290{left:112.192317pt;}
.xa_c00290{left:147.722843pt;}
.x9_c00290{left:158.966644pt;}
.xb_c00290{left:171.473955pt;}
.xc_c00290{left:195.226932pt;}
.x4_c00290{left:224.448440pt;}
.x3_c00290{left:240.124654pt;}
.x6_c00290{left:277.647120pt;}
.x5_c00290{left:373.596470pt;}
.xf_c00290{left:388.020800pt;}
.xd_c00290{left:390.235200pt;}
.x1_c00290{left:442.475240pt;}
.xe_c00290{left:686.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_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:0.632000;font-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_c00291{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:0.000000px;}
._0_c00291{margin-left:-1.339562px;}
._1_c00291{width:1.057171px;}
.fc2_c00291{color:transparent;}
.fc1_c00291{color:rgb(105,148,45);}
.fc0_c00291{color:rgb(35,31,32);}
.fs3_c00291{font-size:53.436999px;}
.fs2_c00291{font-size:59.136936px;}
.fs0_c00291{font-size:65.550574px;}
.fs1_c00291{font-size:71.249972px;}
.y39_c00291{bottom:-1.423232px;}
.y0_c00291{bottom:0.000000px;}
.y1_c00291{bottom:0.120938px;}
.y3e_c00291{bottom:0.172416px;}
.y3c_c00291{bottom:0.177388px;}
.y3a_c00291{bottom:0.358768px;}
.y8_c00291{bottom:6.826644px;}
.ya_c00291{bottom:65.133277px;}
.y3_c00291{bottom:83.414442px;}
.y2_c00291{bottom:84.131629px;}
.y37_c00291{bottom:111.802909px;}
.y36_c00291{bottom:151.525293px;}
.y35_c00291{bottom:172.003284px;}
.y34_c00291{bottom:209.411920px;}
.y3d_c00291{bottom:210.186000px;}
.y33_c00291{bottom:228.115712px;}
.y32_c00291{bottom:246.819505px;}
.y31_c00291{bottom:265.519097px;}
.y30_c00291{bottom:284.224390px;}
.y2f_c00291{bottom:302.923982px;}
.y2e_c00291{bottom:321.630625px;}
.y2d_c00291{bottom:340.335167px;}
.y2c_c00291{bottom:359.036860px;}
.y2b_c00291{bottom:377.741402px;}
.y2a_c00291{bottom:396.441745px;}
.y29_c00291{bottom:415.143437px;}
.y28_c00291{bottom:452.371772px;}
.y27_c00291{bottom:472.855164px;}
.y26_c00291{bottom:472.855764px;}
.y25_c00291{bottom:491.561657px;}
.y24_c00291{bottom:528.958742px;}
.y3b_c00291{bottom:529.736400px;}
.y23_c00291{bottom:547.664634px;}
.y22_c00291{bottom:566.367827px;}
.y21_c00291{bottom:585.068169px;}
.y20_c00291{bottom:603.772712px;}
.y1f_c00291{bottom:622.475904px;}
.y1e_c00291{bottom:641.181197px;}
.y1d_c00291{bottom:659.884389px;}
.y1c_c00291{bottom:678.586082px;}
.y1b_c00291{bottom:697.290624px;}
.y1a_c00291{bottom:715.992317px;}
.y19_c00291{bottom:734.696859px;}
.y18_c00291{bottom:771.926544px;}
.y17_c00291{bottom:792.410536px;}
.y38_c00291{bottom:830.408400px;}
.y16_c00291{bottom:848.524014px;}
.y15_c00291{bottom:867.224356px;}
.y14_c00291{bottom:885.926049px;}
.y13_c00291{bottom:904.629241px;}
.y12_c00291{bottom:923.332434px;}
.y11_c00291{bottom:942.032776px;}
.y10_c00291{bottom:960.734469px;}
.yf_c00291{bottom:979.434811px;}
.ye_c00291{bottom:998.139354px;}
.yd_c00291{bottom:1016.842547px;}
.yc_c00291{bottom:1035.545739px;}
.yb_c00291{bottom:1072.596924px;}
.y9_c00291{bottom:1094.153416px;}
.y7_c00291{bottom:1125.258112px;}
.y6_c00291{bottom:1146.098804px;}
.y5_c00291{bottom:1166.584296px;}
.y4_c00291{bottom:1187.067088px;}
.ha_c00291{height:14.254200px;}
.hd_c00291{height:15.849000px;}
.hc_c00291{height:15.856200px;}
.hb_c00291{height:16.034400px;}
.h7_c00291{height:37.374544px;}
.h6_c00291{height:41.427963px;}
.h8_c00291{height:45.029982px;}
.h9_c00291{height:47.826114px;}
.h2_c00291{height:58.667764px;}
.h3_c00291{height:63.768724px;}
.h4_c00291{height:64.053724px;}
.h5_c00291{height:1249.830756px;}
.h1_c00291{height:1262.879062px;}
.h0_c00291{height:1263.000000px;}
.w3_c00291{width:4.809600px;}
.w5_c00291{width:7.128000px;}
.w4_c00291{width:9.615600px;}
.w2_c00291{width:883.195846px;}
.w1_c00291{width:892.414744px;}
.w0_c00291{width:892.500000px;}
.x0_c00291{left:0.000000px;}
.x7_c00291{left:1.541954px;}
.x8_c00291{left:112.753050px;}
.x2_c00291{left:126.216356px;}
.x4_c00291{left:252.504495px;}
.x3_c00291{left:270.140236px;}
.x6_c00291{left:312.353010px;}
.x5_c00291{left:420.296029px;}
.xb_c00291{left:434.205000px;}
.x9_c00291{left:436.523400px;}
.x1_c00291{left:497.784645px;}
.xa_c00291{left:771.750000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws0_c00291{word-spacing:0.000000pt;}
._0_c00291{margin-left:-1.190722pt;}
._1_c00291{width:0.939707pt;}
.fs3_c00291{font-size:47.499554pt;}
.fs2_c00291{font-size:52.566166pt;}
.fs0_c00291{font-size:58.267177pt;}
.fs1_c00291{font-size:63.333308pt;}
.y39_c00291{bottom:-1.265095pt;}
.y0_c00291{bottom:0.000000pt;}
.y1_c00291{bottom:0.107500pt;}
.y3e_c00291{bottom:0.153259pt;}
.y3c_c00291{bottom:0.157678pt;}
.y3a_c00291{bottom:0.318905pt;}
.y8_c00291{bottom:6.068128pt;}
.ya_c00291{bottom:57.896246pt;}
.y3_c00291{bottom:74.146170pt;}
.y2_c00291{bottom:74.783670pt;}
.y37_c00291{bottom:99.380363pt;}
.y36_c00291{bottom:134.689149pt;}
.y35_c00291{bottom:152.891808pt;}
.y34_c00291{bottom:186.143928pt;}
.y3d_c00291{bottom:186.832000pt;}
.y33_c00291{bottom:202.769522pt;}
.y32_c00291{bottom:219.395115pt;}
.y31_c00291{bottom:236.016975pt;}
.y30_c00291{bottom:252.643902pt;}
.y2f_c00291{bottom:269.265762pt;}
.y2e_c00291{bottom:285.893889pt;}
.y2d_c00291{bottom:302.520149pt;}
.y2c_c00291{bottom:319.143875pt;}
.y2b_c00291{bottom:335.770135pt;}
.y2a_c00291{bottom:352.392662pt;}
.y29_c00291{bottom:369.016389pt;}
.y28_c00291{bottom:402.108242pt;}
.y27_c00291{bottom:420.315701pt;}
.y26_c00291{bottom:420.316235pt;}
.y25_c00291{bottom:436.943695pt;}
.y24_c00291{bottom:470.185548pt;}
.y3b_c00291{bottom:470.876800pt;}
.y23_c00291{bottom:486.813008pt;}
.y22_c00291{bottom:503.438068pt;}
.y21_c00291{bottom:520.060595pt;}
.y20_c00291{bottom:536.686855pt;}
.y1f_c00291{bottom:553.311915pt;}
.y1e_c00291{bottom:569.938842pt;}
.y1d_c00291{bottom:586.563902pt;}
.y1c_c00291{bottom:603.187628pt;}
.y1b_c00291{bottom:619.813888pt;}
.y1a_c00291{bottom:636.437615pt;}
.y19_c00291{bottom:653.063875pt;}
.y18_c00291{bottom:686.156928pt;}
.y17_c00291{bottom:704.364921pt;}
.y38_c00291{bottom:738.140800pt;}
.y16_c00291{bottom:754.243568pt;}
.y15_c00291{bottom:770.866095pt;}
.y14_c00291{bottom:787.489821pt;}
.y13_c00291{bottom:804.114881pt;}
.y12_c00291{bottom:820.739941pt;}
.y11_c00291{bottom:837.362468pt;}
.y10_c00291{bottom:853.986195pt;}
.yf_c00291{bottom:870.608721pt;}
.ye_c00291{bottom:887.234981pt;}
.yd_c00291{bottom:903.860041pt;}
.yc_c00291{bottom:920.485101pt;}
.yb_c00291{bottom:953.419488pt;}
.y9_c00291{bottom:972.580814pt;}
.y7_c00291{bottom:1000.229433pt;}
.y6_c00291{bottom:1018.754492pt;}
.y5_c00291{bottom:1036.963819pt;}
.y4_c00291{bottom:1055.170745pt;}
.ha_c00291{height:12.670400pt;}
.hd_c00291{height:14.088000pt;}
.hc_c00291{height:14.094400pt;}
.hb_c00291{height:14.252800pt;}
.h7_c00291{height:33.221817pt;}
.h6_c00291{height:36.824856pt;}
.h8_c00291{height:40.026651pt;}
.h9_c00291{height:42.512101pt;}
.h2_c00291{height:52.149123pt;}
.h3_c00291{height:56.683311pt;}
.h4_c00291{height:56.936644pt;}
.h5_c00291{height:1110.960672pt;}
.h1_c00291{height:1122.559167pt;}
.h0_c00291{height:1122.666667pt;}
.w3_c00291{width:4.275200pt;}
.w5_c00291{width:6.336000pt;}
.w4_c00291{width:8.547200pt;}
.w2_c00291{width:785.062974pt;}
.w1_c00291{width:793.257550pt;}
.w0_c00291{width:793.333333pt;}
.x0_c00291{left:0.000000pt;}
.x7_c00291{left:1.370626pt;}
.x8_c00291{left:100.224934pt;}
.x2_c00291{left:112.192317pt;}
.x4_c00291{left:224.448440pt;}
.x3_c00291{left:240.124654pt;}
.x6_c00291{left:277.647120pt;}
.x5_c00291{left:373.596470pt;}
.xb_c00291{left:385.960000pt;}
.x9_c00291{left:388.020800pt;}
.x1_c00291{left:442.475240pt;}
.xa_c00291{left:686.000000pt;}
}





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

.ir_c00292:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00292;src:url('chunks/assets/font_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:0.632000;font-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_c00292{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls0_c00292{letter-spacing:0.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:0.000000px;}
._0_c00292{margin-left:-1.339562px;}
._1_c00292{width:1.057171px;}
._2_c00292{width:200.511650px;}
.fc2_c00292{color:transparent;}
.fc1_c00292{color:rgb(105,148,45);}
.fc0_c00292{color:rgb(35,31,32);}
.fs4_c00292{font-size:47.737061px;}
.fs3_c00292{font-size:53.436999px;}
.fs2_c00292{font-size:59.136936px;}
.fs0_c00292{font-size:65.550574px;}
.fs1_c00292{font-size:71.249972px;}
.y3c_c00292{bottom:-1.604904px;}
.y3a_c00292{bottom:-1.423232px;}
.y0_c00292{bottom:0.000000px;}
.y1_c00292{bottom:0.120938px;}
.y3e_c00292{bottom:0.177823px;}
.y8_c00292{bottom:6.826644px;}
.ya_c00292{bottom:65.133277px;}
.y3_c00292{bottom:83.414442px;}
.y2_c00292{bottom:84.131629px;}
.y38_c00292{bottom:113.582658px;}
.y37_c00292{bottom:132.285850px;}
.y36_c00292{bottom:150.991293px;}
.y35_c00292{bottom:169.690285px;}
.y34_c00292{bottom:188.393178px;}
.y3d_c00292{bottom:191.658600px;}
.y33_c00292{bottom:207.098470px;}
.y32_c00292{bottom:225.800163px;}
.y31_c00292{bottom:244.501855px;}
.y30_c00292{bottom:263.206398px;}
.y2f_c00292{bottom:281.908091px;}
.y2e_c00292{bottom:300.611283px;}
.y2d_c00292{bottom:319.312976px;}
.y2c_c00292{bottom:338.017518px;}
.y2b_c00292{bottom:375.067203px;}
.y2a_c00292{bottom:414.965987px;}
.y29_c00292{bottom:435.449379px;}
.y28_c00292{bottom:454.153172px;}
.y27_c00292{bottom:472.855164px;}
.y26_c00292{bottom:510.264549px;}
.y3b_c00292{bottom:511.036200px;}
.y25_c00292{bottom:528.966242px;}
.y24_c00292{bottom:547.667934px;}
.y23_c00292{bottom:566.373227px;}
.y22_c00292{bottom:585.078519px;}
.y21_c00292{bottom:603.780212px;}
.y20_c00292{bottom:622.481904px;}
.y1f_c00292{bottom:641.183597px;}
.y1e_c00292{bottom:659.888139px;}
.y1d_c00292{bottom:678.589832px;}
.y1c_c00292{bottom:697.290174px;}
.y1b_c00292{bottom:715.993367px;}
.y1a_c00292{bottom:753.223052px;}
.y19_c00292{bottom:773.705994px;}
.y18_c00292{bottom:792.410536px;}
.y17_c00292{bottom:829.820821px;}
.y39_c00292{bottom:830.408400px;}
.y16_c00292{bottom:848.524014px;}
.y15_c00292{bottom:867.224356px;}
.y14_c00292{bottom:885.926049px;}
.y13_c00292{bottom:904.629241px;}
.y12_c00292{bottom:923.332434px;}
.y11_c00292{bottom:942.032776px;}
.y10_c00292{bottom:960.734469px;}
.yf_c00292{bottom:979.434811px;}
.ye_c00292{bottom:998.139354px;}
.yd_c00292{bottom:1016.842547px;}
.yc_c00292{bottom:1035.545739px;}
.yb_c00292{bottom:1072.596924px;}
.y9_c00292{bottom:1094.153416px;}
.y7_c00292{bottom:1125.258112px;}
.y6_c00292{bottom:1146.098804px;}
.y5_c00292{bottom:1166.584296px;}
.y4_c00292{bottom:1187.067088px;}
.hc_c00292{height:14.074200px;}
.hb_c00292{height:14.254200px;}
.hd_c00292{height:15.852600px;}
.ha_c00292{height:30.169822px;}
.h7_c00292{height:37.374544px;}
.h6_c00292{height:41.427963px;}
.h8_c00292{height:45.029982px;}
.h9_c00292{height:47.826114px;}
.h2_c00292{height:58.667764px;}
.h3_c00292{height:63.768724px;}
.h4_c00292{height:64.053724px;}
.h5_c00292{height:1249.830756px;}
.h1_c00292{height:1262.879062px;}
.h0_c00292{height:1263.000000px;}
.w4_c00292{width:9.615600px;}
.w3_c00292{width:9.617400px;}
.w2_c00292{width:883.195846px;}
.w1_c00292{width:892.414744px;}
.w0_c00292{width:892.500000px;}
.x0_c00292{left:0.000000px;}
.x7_c00292{left:1.541954px;}
.x8_c00292{left:112.753050px;}
.x2_c00292{left:126.216356px;}
.x4_c00292{left:252.504495px;}
.x3_c00292{left:270.140236px;}
.x6_c00292{left:312.353010px;}
.x5_c00292{left:420.296029px;}
.x9_c00292{left:486.809851px;}
.x1_c00292{left:497.784645px;}
.xb_c00292{left:769.968000px;}
.xa_c00292{left:774.066600px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
._0_c00292{margin-left:-1.190722pt;}
._1_c00292{width:0.939707pt;}
._2_c00292{width:178.232578pt;}
.fs4_c00292{font-size:42.432943pt;}
.fs3_c00292{font-size:47.499554pt;}
.fs2_c00292{font-size:52.566166pt;}
.fs0_c00292{font-size:58.267177pt;}
.fs1_c00292{font-size:63.333308pt;}
.y3c_c00292{bottom:-1.426581pt;}
.y3a_c00292{bottom:-1.265095pt;}
.y0_c00292{bottom:0.000000pt;}
.y1_c00292{bottom:0.107500pt;}
.y3e_c00292{bottom:0.158065pt;}
.y8_c00292{bottom:6.068128pt;}
.ya_c00292{bottom:57.896246pt;}
.y3_c00292{bottom:74.146170pt;}
.y2_c00292{bottom:74.783670pt;}
.y38_c00292{bottom:100.962363pt;}
.y37_c00292{bottom:117.587423pt;}
.y36_c00292{bottom:134.214483pt;}
.y35_c00292{bottom:150.835809pt;}
.y34_c00292{bottom:167.460603pt;}
.y3d_c00292{bottom:170.363200pt;}
.y33_c00292{bottom:184.087529pt;}
.y32_c00292{bottom:200.711256pt;}
.y31_c00292{bottom:217.334983pt;}
.y30_c00292{bottom:233.961243pt;}
.y2f_c00292{bottom:250.584969pt;}
.y2e_c00292{bottom:267.210029pt;}
.y2d_c00292{bottom:283.833756pt;}
.y2c_c00292{bottom:300.460016pt;}
.y2b_c00292{bottom:333.393070pt;}
.y2a_c00292{bottom:368.858655pt;}
.y29_c00292{bottom:387.066115pt;}
.y28_c00292{bottom:403.691708pt;}
.y27_c00292{bottom:420.315701pt;}
.y26_c00292{bottom:453.568488pt;}
.y3b_c00292{bottom:454.254400pt;}
.y25_c00292{bottom:470.192215pt;}
.y24_c00292{bottom:486.815942pt;}
.y23_c00292{bottom:503.442868pt;}
.y22_c00292{bottom:520.069795pt;}
.y21_c00292{bottom:536.693522pt;}
.y20_c00292{bottom:553.317248pt;}
.y1f_c00292{bottom:569.940975pt;}
.y1e_c00292{bottom:586.567235pt;}
.y1d_c00292{bottom:603.190962pt;}
.y1c_c00292{bottom:619.813488pt;}
.y1b_c00292{bottom:636.438548pt;}
.y1a_c00292{bottom:669.531602pt;}
.y19_c00292{bottom:687.738661pt;}
.y18_c00292{bottom:704.364921pt;}
.y17_c00292{bottom:737.618508pt;}
.y39_c00292{bottom:738.140800pt;}
.y16_c00292{bottom:754.243568pt;}
.y15_c00292{bottom:770.866095pt;}
.y14_c00292{bottom:787.489821pt;}
.y13_c00292{bottom:804.114881pt;}
.y12_c00292{bottom:820.739941pt;}
.y11_c00292{bottom:837.362468pt;}
.y10_c00292{bottom:853.986195pt;}
.yf_c00292{bottom:870.608721pt;}
.ye_c00292{bottom:887.234981pt;}
.yd_c00292{bottom:903.860041pt;}
.yc_c00292{bottom:920.485101pt;}
.yb_c00292{bottom:953.419488pt;}
.y9_c00292{bottom:972.580814pt;}
.y7_c00292{bottom:1000.229433pt;}
.y6_c00292{bottom:1018.754492pt;}
.y5_c00292{bottom:1036.963819pt;}
.y4_c00292{bottom:1055.170745pt;}
.hc_c00292{height:12.510400pt;}
.hb_c00292{height:12.670400pt;}
.hd_c00292{height:14.091200pt;}
.ha_c00292{height:26.817620pt;}
.h7_c00292{height:33.221817pt;}
.h6_c00292{height:36.824856pt;}
.h8_c00292{height:40.026651pt;}
.h9_c00292{height:42.512101pt;}
.h2_c00292{height:52.149123pt;}
.h3_c00292{height:56.683311pt;}
.h4_c00292{height:56.936644pt;}
.h5_c00292{height:1110.960672pt;}
.h1_c00292{height:1122.559167pt;}
.h0_c00292{height:1122.666667pt;}
.w4_c00292{width:8.547200pt;}
.w3_c00292{width:8.548800pt;}
.w2_c00292{width:785.062974pt;}
.w1_c00292{width:793.257550pt;}
.w0_c00292{width:793.333333pt;}
.x0_c00292{left:0.000000pt;}
.x7_c00292{left:1.370626pt;}
.x8_c00292{left:100.224934pt;}
.x2_c00292{left:112.192317pt;}
.x4_c00292{left:224.448440pt;}
.x3_c00292{left:240.124654pt;}
.x6_c00292{left:277.647120pt;}
.x5_c00292{left:373.596470pt;}
.x9_c00292{left:432.719867pt;}
.x1_c00292{left:442.475240pt;}
.xb_c00292{left:684.416000pt;}
.xa_c00292{left:688.059200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls0_c00293{letter-spacing:0.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:0.000000px;}
.fc0_c00293{color:rgb(35,31,32);}
.fs0_c00293{font-size:106.873757px;}
.y0_c00293{bottom:0.000000px;}
.y1_c00293{bottom:0.120938px;}
.y2_c00293{bottom:407.959899px;}
.h2_c00293{height:95.865760px;}
.h1_c00293{height:1262.879062px;}
.h0_c00293{height:1263.000000px;}
.w1_c00293{width:892.414744px;}
.w0_c00293{width:892.500000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:108.404900px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.000000pt;}
.fs0_c00293{font-size:94.998895pt;}
.y0_c00293{bottom:0.000000pt;}
.y1_c00293{bottom:0.107500pt;}
.y2_c00293{bottom:362.631022pt;}
.h2_c00293{height:85.214009pt;}
.h1_c00293{height:1122.559167pt;}
.h0_c00293{height:1122.666667pt;}
.w1_c00293{width:793.257550pt;}
.w0_c00293{width:793.333333pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:0.632000;font-style:normal;font-weight:normal;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_753da8243c40a3b94ddcc720.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.112000;font-style:normal;font-weight:normal;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_91c94d9680606deb988c60ae.woff2')format("woff");}.ff5_c00294{font-family:ff5_c00294;line-height:0.865062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00294;src:url('chunks/assets/font_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff6_c00294{font-family:ff6_c00294;line-height:1.113000;font-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_c00294{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls1_c00294{letter-spacing:0.000000px;}
.ls0_c00294{letter-spacing:74.155170px;}
.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:0.000000px;}
._0_c00294{margin-left:-1.339562px;}
._1_c00294{width:1.056634px;}
._8_c00294{width:2.534769px;}
._4_c00294{width:3.676121px;}
._5_c00294{width:4.766802px;}
._6_c00294{width:6.435613px;}
._7_c00294{width:7.488893px;}
._9_c00294{width:14.810785px;}
._a_c00294{width:19.993592px;}
._3_c00294{width:22.183502px;}
._2_c00294{width:23.186883px;}
.fc2_c00294{color:rgb(38,69,127);}
.fc3_c00294{color:transparent;}
.fc1_c00294{color:rgb(105,148,45);}
.fc0_c00294{color:rgb(35,31,32);}
.fs4_c00294{font-size:41.324503px;}
.fs3_c00294{font-size:53.436999px;}
.fs2_c00294{font-size:59.136936px;}
.fs0_c00294{font-size:65.550574px;}
.fs1_c00294{font-size:71.249972px;}
.y37_c00294{bottom:-1.601277px;}
.y3a_c00294{bottom:-1.425962px;}
.y0_c00294{bottom:0.000000px;}
.y1_c00294{bottom:0.120938px;}
.y38_c00294{bottom:0.176222px;}
.y3b_c00294{bottom:0.356037px;}
.y8_c00294{bottom:6.826644px;}
.ya_c00294{bottom:65.133277px;}
.y3_c00294{bottom:83.414442px;}
.y2_c00294{bottom:84.131629px;}
.y35_c00294{bottom:111.088759px;}
.y34_c00294{bottom:131.573651px;}
.y33_c00294{bottom:150.279393px;}
.y39_c00294{bottom:156.213900px;}
.y32_c00294{bottom:168.982586px;}
.y31_c00294{bottom:187.685778px;}
.y30_c00294{bottom:206.387471px;}
.y2f_c00294{bottom:225.089163px;}
.y2e_c00294{bottom:243.790856px;}
.y2d_c00294{bottom:262.494048px;}
.y2c_c00294{bottom:281.199941px;}
.y2b_c00294{bottom:299.901633px;}
.y2a_c00294{bottom:318.603326px;}
.y29_c00294{bottom:337.305018px;}
.y28_c00294{bottom:356.008211px;}
.y27_c00294{bottom:373.999204px;}
.y26_c00294{bottom:405.701691px;}
.y25_c00294{bottom:419.065186px;}
.y24_c00294{bottom:437.765228px;}
.y36_c00294{bottom:443.703600px;}
.y23_c00294{bottom:456.466921px;}
.y22_c00294{bottom:475.170113px;}
.y21_c00294{bottom:493.875406px;}
.y20_c00294{bottom:512.578598px;}
.y1f_c00294{bottom:531.280291px;}
.y1e_c00294{bottom:549.983483px;}
.y1d_c00294{bottom:568.686676px;}
.y1c_c00294{bottom:587.389868px;}
.y1b_c00294{bottom:606.093061px;}
.y1a_c00294{bottom:624.793403px;}
.y19_c00294{bottom:661.843089px;}
.y18_c00294{bottom:699.427673px;}
.y17_c00294{bottom:719.023066px;}
.y16_c00294{bottom:736.301559px;}
.y15_c00294{bottom:764.802297px;}
.y14_c00294{bottom:795.618885px;}
.y13_c00294{bottom:826.254723px;}
.y12_c00294{bottom:857.066360px;}
.y11_c00294{bottom:887.707148px;}
.y10_c00294{bottom:918.521636px;}
.yf_c00294{bottom:949.336124px;}
.ye_c00294{bottom:981.219961px;}
.yd_c00294{bottom:1012.035798px;}
.yc_c00294{bottom:1042.673736px;}
.yb_c00294{bottom:1073.310924px;}
.y9_c00294{bottom:1094.153416px;}
.y7_c00294{bottom:1125.258112px;}
.y6_c00294{bottom:1146.098804px;}
.y5_c00294{bottom:1166.584296px;}
.y4_c00294{bottom:1187.067088px;}
.he_c00294{height:14.072400px;}
.h10_c00294{height:14.248980px;}
.hf_c00294{height:15.852600px;}
.h11_c00294{height:16.030620px;}
.hd_c00294{height:26.117086px;}
.h7_c00294{height:37.374544px;}
.h6_c00294{height:41.427963px;}
.hb_c00294{height:45.029982px;}
.hc_c00294{height:47.826114px;}
.ha_c00294{height:53.045832px;}
.h2_c00294{height:58.667764px;}
.h3_c00294{height:63.768724px;}
.h8_c00294{height:63.839974px;}
.h9_c00294{height:63.911224px;}
.h4_c00294{height:64.053724px;}
.h5_c00294{height:1249.830756px;}
.h1_c00294{height:1262.879062px;}
.h0_c00294{height:1263.000000px;}
.w3_c00294{width:4.809600px;}
.w4_c00294{width:9.615600px;}
.w2_c00294{width:883.195846px;}
.w1_c00294{width:892.414744px;}
.w0_c00294{width:892.500000px;}
.x0_c00294{left:0.000000px;}
.x7_c00294{left:1.541954px;}
.x8_c00294{left:112.753050px;}
.x2_c00294{left:126.216356px;}
.xa_c00294{left:166.190596px;}
.x9_c00294{left:178.837474px;}
.xb_c00294{left:192.912097px;}
.xc_c00294{left:219.631049px;}
.x4_c00294{left:252.504495px;}
.x3_c00294{left:270.140236px;}
.x6_c00294{left:312.353010px;}
.x5_c00294{left:420.296029px;}
.xd_c00294{left:436.523400px;}
.x1_c00294{left:497.784645px;}
.xe_c00294{left:771.750000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls1_c00294{letter-spacing:0.000000pt;}
.ls0_c00294{letter-spacing:65.915707pt;}
.ws0_c00294{word-spacing:0.000000pt;}
._0_c00294{margin-left:-1.190722pt;}
._1_c00294{width:0.939230pt;}
._8_c00294{width:2.253128pt;}
._4_c00294{width:3.267663pt;}
._5_c00294{width:4.237157pt;}
._6_c00294{width:5.720545pt;}
._7_c00294{width:6.656793pt;}
._9_c00294{width:13.165142pt;}
._a_c00294{width:17.772082pt;}
._3_c00294{width:19.718669pt;}
._2_c00294{width:20.610562pt;}
.fs4_c00294{font-size:36.732892pt;}
.fs3_c00294{font-size:47.499554pt;}
.fs2_c00294{font-size:52.566166pt;}
.fs0_c00294{font-size:58.267177pt;}
.fs1_c00294{font-size:63.333308pt;}
.y37_c00294{bottom:-1.423357pt;}
.y3a_c00294{bottom:-1.267522pt;}
.y0_c00294{bottom:0.000000pt;}
.y1_c00294{bottom:0.107500pt;}
.y38_c00294{bottom:0.156642pt;}
.y3b_c00294{bottom:0.316478pt;}
.y8_c00294{bottom:6.068128pt;}
.ya_c00294{bottom:57.896246pt;}
.y3_c00294{bottom:74.146170pt;}
.y2_c00294{bottom:74.783670pt;}
.y35_c00294{bottom:98.745563pt;}
.y34_c00294{bottom:116.954356pt;}
.y33_c00294{bottom:133.581683pt;}
.y39_c00294{bottom:138.856800pt;}
.y32_c00294{bottom:150.206743pt;}
.y31_c00294{bottom:166.831803pt;}
.y30_c00294{bottom:183.455530pt;}
.y2f_c00294{bottom:200.079256pt;}
.y2e_c00294{bottom:216.702983pt;}
.y2d_c00294{bottom:233.328043pt;}
.y2c_c00294{bottom:249.955503pt;}
.y2b_c00294{bottom:266.579230pt;}
.y2a_c00294{bottom:283.202956pt;}
.y29_c00294{bottom:299.826683pt;}
.y28_c00294{bottom:316.451743pt;}
.y27_c00294{bottom:332.443737pt;}
.y26_c00294{bottom:360.623725pt;}
.y25_c00294{bottom:372.502387pt;}
.y24_c00294{bottom:389.124647pt;}
.y36_c00294{bottom:394.403200pt;}
.y23_c00294{bottom:405.748374pt;}
.y22_c00294{bottom:422.373434pt;}
.y21_c00294{bottom:439.000361pt;}
.y20_c00294{bottom:455.625421pt;}
.y1f_c00294{bottom:472.249147pt;}
.y1e_c00294{bottom:488.874207pt;}
.y1d_c00294{bottom:505.499267pt;}
.y1c_c00294{bottom:522.124327pt;}
.y1b_c00294{bottom:538.749387pt;}
.y1a_c00294{bottom:555.371914pt;}
.y19_c00294{bottom:588.304968pt;}
.y18_c00294{bottom:621.713488pt;}
.y17_c00294{bottom:639.131614pt;}
.y16_c00294{bottom:654.490274pt;}
.y15_c00294{bottom:679.824264pt;}
.y14_c00294{bottom:707.216787pt;}
.y13_c00294{bottom:734.448642pt;}
.y12_c00294{bottom:761.836765pt;}
.y11_c00294{bottom:789.073021pt;}
.y10_c00294{bottom:816.463676pt;}
.yf_c00294{bottom:843.854332pt;}
.ye_c00294{bottom:872.195521pt;}
.yd_c00294{bottom:899.587376pt;}
.yc_c00294{bottom:926.821099pt;}
.yb_c00294{bottom:954.054155pt;}
.y9_c00294{bottom:972.580814pt;}
.y7_c00294{bottom:1000.229433pt;}
.y6_c00294{bottom:1018.754492pt;}
.y5_c00294{bottom:1036.963819pt;}
.y4_c00294{bottom:1055.170745pt;}
.he_c00294{height:12.508800pt;}
.h10_c00294{height:12.665760pt;}
.hf_c00294{height:14.091200pt;}
.h11_c00294{height:14.249440pt;}
.hd_c00294{height:23.215188pt;}
.h7_c00294{height:33.221817pt;}
.h6_c00294{height:36.824856pt;}
.hb_c00294{height:40.026651pt;}
.hc_c00294{height:42.512101pt;}
.ha_c00294{height:47.151851pt;}
.h2_c00294{height:52.149123pt;}
.h3_c00294{height:56.683311pt;}
.h8_c00294{height:56.746644pt;}
.h9_c00294{height:56.809977pt;}
.h4_c00294{height:56.936644pt;}
.h5_c00294{height:1110.960672pt;}
.h1_c00294{height:1122.559167pt;}
.h0_c00294{height:1122.666667pt;}
.w3_c00294{width:4.275200pt;}
.w4_c00294{width:8.547200pt;}
.w2_c00294{width:785.062974pt;}
.w1_c00294{width:793.257550pt;}
.w0_c00294{width:793.333333pt;}
.x0_c00294{left:0.000000pt;}
.x7_c00294{left:1.370626pt;}
.x8_c00294{left:100.224934pt;}
.x2_c00294{left:112.192317pt;}
.xa_c00294{left:147.724975pt;}
.x9_c00294{left:158.966644pt;}
.xb_c00294{left:171.477419pt;}
.xc_c00294{left:195.227599pt;}
.x4_c00294{left:224.448440pt;}
.x3_c00294{left:240.124654pt;}
.x6_c00294{left:277.647120pt;}
.x5_c00294{left:373.596470pt;}
.xd_c00294{left:388.020800pt;}
.x1_c00294{left:442.475240pt;}
.xe_c00294{left:686.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_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:0.632000;font-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_c00295{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:0.000000px;}
._0_c00295{margin-left:-1.339562px;}
._1_c00295{width:1.056634px;}
.fc2_c00295{color:transparent;}
.fc1_c00295{color:rgb(105,148,45);}
.fc0_c00295{color:rgb(35,31,32);}
.fs3_c00295{font-size:53.436999px;}
.fs2_c00295{font-size:59.136936px;}
.fs0_c00295{font-size:65.550574px;}
.fs1_c00295{font-size:71.249972px;}
.y38_c00295{bottom:-1.608035px;}
.y0_c00295{bottom:0.000000px;}
.y1_c00295{bottom:0.120938px;}
.y39_c00295{bottom:0.172464px;}
.y3b_c00295{bottom:0.178281px;}
.y3d_c00295{bottom:0.179002px;}
.y8_c00295{bottom:6.826644px;}
.ya_c00295{bottom:65.133277px;}
.y3_c00295{bottom:83.414442px;}
.y2_c00295{bottom:84.131629px;}
.y36_c00295{bottom:110.910109px;}
.y35_c00295{bottom:150.632493px;}
.y34_c00295{bottom:190.531277px;}
.y33_c00295{bottom:211.015269px;}
.y3c_c00295{bottom:245.093400px;}
.y32_c00295{bottom:248.417004px;}
.y31_c00295{bottom:267.120196px;}
.y30_c00295{bottom:285.825489px;}
.y2f_c00295{bottom:304.528681px;}
.y2e_c00295{bottom:323.231874px;}
.y2d_c00295{bottom:341.935066px;}
.y2c_c00295{bottom:360.638259px;}
.y2b_c00295{bottom:379.339952px;}
.y2a_c00295{bottom:398.044494px;}
.y29_c00295{bottom:416.746187px;}
.y28_c00295{bottom:435.450729px;}
.y27_c00295{bottom:454.155272px;}
.y26_c00295{bottom:472.858464px;}
.y25_c00295{bottom:491.561657px;}
.y24_c00295{bottom:510.265149px;}
.y23_c00295{bottom:547.660884px;}
.y3a_c00295{bottom:548.442000px;}
.y22_c00295{bottom:566.364077px;}
.y21_c00295{bottom:585.068619px;}
.y20_c00295{bottom:603.770312px;}
.y1f_c00295{bottom:622.473504px;}
.y1e_c00295{bottom:641.178047px;}
.y1d_c00295{bottom:659.879739px;}
.y1c_c00295{bottom:678.586382px;}
.y1b_c00295{bottom:697.286724px;}
.y1a_c00295{bottom:715.992617px;}
.y19_c00295{bottom:734.697159px;}
.y18_c00295{bottom:753.400352px;}
.y17_c00295{bottom:790.630037px;}
.y16_c00295{bottom:811.114029px;}
.y37_c00295{bottom:840.031200px;}
.y15_c00295{bottom:867.224356px;}
.y14_c00295{bottom:885.926049px;}
.y13_c00295{bottom:904.629241px;}
.y12_c00295{bottom:923.332434px;}
.y11_c00295{bottom:942.032776px;}
.y10_c00295{bottom:960.734469px;}
.yf_c00295{bottom:979.434811px;}
.ye_c00295{bottom:998.139354px;}
.yd_c00295{bottom:1016.842547px;}
.yc_c00295{bottom:1035.545739px;}
.yb_c00295{bottom:1072.596924px;}
.y9_c00295{bottom:1094.153416px;}
.y7_c00295{bottom:1125.258112px;}
.y6_c00295{bottom:1146.098804px;}
.y5_c00295{bottom:1166.584296px;}
.y4_c00295{bottom:1187.067088px;}
.ha_c00295{height:14.070600px;}
.hb_c00295{height:15.850800px;}
.hc_c00295{height:15.854400px;}
.hd_c00295{height:15.858000px;}
.h7_c00295{height:37.374544px;}
.h6_c00295{height:41.427963px;}
.h8_c00295{height:45.029982px;}
.h9_c00295{height:47.826114px;}
.h2_c00295{height:58.667764px;}
.h3_c00295{height:63.768724px;}
.h4_c00295{height:64.053724px;}
.h5_c00295{height:1249.830756px;}
.h1_c00295{height:1262.879062px;}
.h0_c00295{height:1263.000000px;}
.w3_c00295{width:4.809600px;}
.w5_c00295{width:7.128000px;}
.w4_c00295{width:9.615600px;}
.w2_c00295{width:883.195846px;}
.w1_c00295{width:892.414744px;}
.w0_c00295{width:892.500000px;}
.x0_c00295{left:0.000000px;}
.x7_c00295{left:1.541954px;}
.x8_c00295{left:112.753050px;}
.x2_c00295{left:126.216356px;}
.x4_c00295{left:252.504495px;}
.x3_c00295{left:270.140236px;}
.x6_c00295{left:312.353010px;}
.x5_c00295{left:420.296029px;}
.xb_c00295{left:434.205000px;}
.x9_c00295{left:436.523400px;}
.x1_c00295{left:497.784645px;}
.xa_c00295{left:771.750000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
._0_c00295{margin-left:-1.190722pt;}
._1_c00295{width:0.939230pt;}
.fs3_c00295{font-size:47.499554pt;}
.fs2_c00295{font-size:52.566166pt;}
.fs0_c00295{font-size:58.267177pt;}
.fs1_c00295{font-size:63.333308pt;}
.y38_c00295{bottom:-1.429365pt;}
.y0_c00295{bottom:0.000000pt;}
.y1_c00295{bottom:0.107500pt;}
.y39_c00295{bottom:0.153301pt;}
.y3b_c00295{bottom:0.158472pt;}
.y3d_c00295{bottom:0.159113pt;}
.y8_c00295{bottom:6.068128pt;}
.ya_c00295{bottom:57.896246pt;}
.y3_c00295{bottom:74.146170pt;}
.y2_c00295{bottom:74.783670pt;}
.y36_c00295{bottom:98.586763pt;}
.y35_c00295{bottom:133.895549pt;}
.y34_c00295{bottom:169.361135pt;}
.y33_c00295{bottom:187.569128pt;}
.y3c_c00295{bottom:217.860800pt;}
.y32_c00295{bottom:220.815115pt;}
.y31_c00295{bottom:237.440175pt;}
.y30_c00295{bottom:254.067101pt;}
.y2f_c00295{bottom:270.692161pt;}
.y2e_c00295{bottom:287.317221pt;}
.y2d_c00295{bottom:303.942281pt;}
.y2c_c00295{bottom:320.567341pt;}
.y2b_c00295{bottom:337.191068pt;}
.y2a_c00295{bottom:353.817328pt;}
.y29_c00295{bottom:370.441055pt;}
.y28_c00295{bottom:387.067315pt;}
.y27_c00295{bottom:403.693575pt;}
.y26_c00295{bottom:420.318635pt;}
.y25_c00295{bottom:436.943695pt;}
.y24_c00295{bottom:453.569021pt;}
.y23_c00295{bottom:486.809675pt;}
.y3a_c00295{bottom:487.504000pt;}
.y22_c00295{bottom:503.434735pt;}
.y21_c00295{bottom:520.060995pt;}
.y20_c00295{bottom:536.684722pt;}
.y1f_c00295{bottom:553.309782pt;}
.y1e_c00295{bottom:569.936042pt;}
.y1d_c00295{bottom:586.559768pt;}
.y1c_c00295{bottom:603.187895pt;}
.y1b_c00295{bottom:619.810422pt;}
.y1a_c00295{bottom:636.437882pt;}
.y19_c00295{bottom:653.064142pt;}
.y18_c00295{bottom:669.689202pt;}
.y17_c00295{bottom:702.782255pt;}
.y16_c00295{bottom:720.990248pt;}
.y37_c00295{bottom:746.694400pt;}
.y15_c00295{bottom:770.866095pt;}
.y14_c00295{bottom:787.489821pt;}
.y13_c00295{bottom:804.114881pt;}
.y12_c00295{bottom:820.739941pt;}
.y11_c00295{bottom:837.362468pt;}
.y10_c00295{bottom:853.986195pt;}
.yf_c00295{bottom:870.608721pt;}
.ye_c00295{bottom:887.234981pt;}
.yd_c00295{bottom:903.860041pt;}
.yc_c00295{bottom:920.485101pt;}
.yb_c00295{bottom:953.419488pt;}
.y9_c00295{bottom:972.580814pt;}
.y7_c00295{bottom:1000.229433pt;}
.y6_c00295{bottom:1018.754492pt;}
.y5_c00295{bottom:1036.963819pt;}
.y4_c00295{bottom:1055.170745pt;}
.ha_c00295{height:12.507200pt;}
.hb_c00295{height:14.089600pt;}
.hc_c00295{height:14.092800pt;}
.hd_c00295{height:14.096000pt;}
.h7_c00295{height:33.221817pt;}
.h6_c00295{height:36.824856pt;}
.h8_c00295{height:40.026651pt;}
.h9_c00295{height:42.512101pt;}
.h2_c00295{height:52.149123pt;}
.h3_c00295{height:56.683311pt;}
.h4_c00295{height:56.936644pt;}
.h5_c00295{height:1110.960672pt;}
.h1_c00295{height:1122.559167pt;}
.h0_c00295{height:1122.666667pt;}
.w3_c00295{width:4.275200pt;}
.w5_c00295{width:6.336000pt;}
.w4_c00295{width:8.547200pt;}
.w2_c00295{width:785.062974pt;}
.w1_c00295{width:793.257550pt;}
.w0_c00295{width:793.333333pt;}
.x0_c00295{left:0.000000pt;}
.x7_c00295{left:1.370626pt;}
.x8_c00295{left:100.224934pt;}
.x2_c00295{left:112.192317pt;}
.x4_c00295{left:224.448440pt;}
.x3_c00295{left:240.124654pt;}
.x6_c00295{left:277.647120pt;}
.x5_c00295{left:373.596470pt;}
.xb_c00295{left:385.960000pt;}
.x9_c00295{left:388.020800pt;}
.x1_c00295{left:442.475240pt;}
.xa_c00295{left:686.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_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:0.632000;font-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_c00296{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls0_c00296{letter-spacing:0.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:0.000000px;}
._0_c00296{margin-left:-1.339562px;}
._1_c00296{width:1.056634px;}
.fc2_c00296{color:transparent;}
.fc1_c00296{color:rgb(105,148,45);}
.fc0_c00296{color:rgb(35,31,32);}
.fs4_c00296{font-size:47.737061px;}
.fs3_c00296{font-size:53.436999px;}
.fs2_c00296{font-size:59.136936px;}
.fs0_c00296{font-size:65.550574px;}
.fs1_c00296{font-size:71.249972px;}
.y3d_c00296{bottom:-1.604611px;}
.y3b_c00296{bottom:-1.423232px;}
.y0_c00296{bottom:0.000000px;}
.y1_c00296{bottom:0.120938px;}
.y3f_c00296{bottom:0.177208px;}
.y8_c00296{bottom:6.826644px;}
.ya_c00296{bottom:65.133277px;}
.y3_c00296{bottom:83.414442px;}
.y2_c00296{bottom:84.131629px;}
.y39_c00296{bottom:113.581608px;}
.y38_c00296{bottom:132.283300px;}
.y37_c00296{bottom:150.987093px;}
.y35_c00296{bottom:169.689085px;}
.y36_c00296{bottom:169.690285px;}
.y34_c00296{bottom:188.392278px;}
.y33_c00296{bottom:207.095770px;}
.y32_c00296{bottom:225.795363px;}
.y3e_c00296{bottom:229.066200px;}
.y31_c00296{bottom:244.499155px;}
.y30_c00296{bottom:263.200848px;}
.y2f_c00296{bottom:281.905391px;}
.y2e_c00296{bottom:300.608583px;}
.y2d_c00296{bottom:319.310276px;}
.y2c_c00296{bottom:338.014818px;}
.y2b_c00296{bottom:356.719361px;}
.y2a_c00296{bottom:375.421053px;}
.y29_c00296{bottom:412.472238px;}
.y28_c00296{bottom:452.371772px;}
.y27_c00296{bottom:472.855164px;}
.y26_c00296{bottom:491.561657px;}
.y25_c00296{bottom:528.958742px;}
.y3c_c00296{bottom:529.736400px;}
.y24_c00296{bottom:547.664634px;}
.y23_c00296{bottom:566.367827px;}
.y22_c00296{bottom:585.068169px;}
.y21_c00296{bottom:603.772712px;}
.y20_c00296{bottom:622.475904px;}
.y1f_c00296{bottom:641.181197px;}
.y1e_c00296{bottom:659.884389px;}
.y1d_c00296{bottom:678.586082px;}
.y1c_c00296{bottom:697.290624px;}
.y1b_c00296{bottom:715.992317px;}
.y1a_c00296{bottom:734.696859px;}
.y19_c00296{bottom:771.926544px;}
.y18_c00296{bottom:792.410536px;}
.y17_c00296{bottom:829.820821px;}
.y3a_c00296{bottom:830.408400px;}
.y16_c00296{bottom:848.524014px;}
.y15_c00296{bottom:867.224356px;}
.y14_c00296{bottom:885.926049px;}
.y13_c00296{bottom:904.629241px;}
.y12_c00296{bottom:923.332434px;}
.y11_c00296{bottom:942.032776px;}
.y10_c00296{bottom:960.734469px;}
.yf_c00296{bottom:979.434811px;}
.ye_c00296{bottom:998.139354px;}
.yd_c00296{bottom:1016.842547px;}
.yc_c00296{bottom:1035.545739px;}
.yb_c00296{bottom:1072.596924px;}
.y9_c00296{bottom:1094.153416px;}
.y7_c00296{bottom:1125.258112px;}
.y6_c00296{bottom:1146.098804px;}
.y5_c00296{bottom:1166.584296px;}
.y4_c00296{bottom:1187.067088px;}
.hc_c00296{height:14.076000px;}
.hb_c00296{height:14.254200px;}
.hd_c00296{height:15.850800px;}
.ha_c00296{height:30.169822px;}
.h7_c00296{height:37.374544px;}
.h6_c00296{height:41.427963px;}
.h8_c00296{height:45.029982px;}
.h9_c00296{height:47.826114px;}
.h2_c00296{height:58.667764px;}
.h3_c00296{height:63.768724px;}
.h4_c00296{height:64.053724px;}
.h5_c00296{height:1249.830756px;}
.h1_c00296{height:1262.879062px;}
.h0_c00296{height:1263.000000px;}
.w4_c00296{width:9.615600px;}
.w3_c00296{width:9.617400px;}
.w2_c00296{width:883.195846px;}
.w1_c00296{width:892.414744px;}
.w0_c00296{width:892.500000px;}
.x0_c00296{left:0.000000px;}
.x7_c00296{left:1.541954px;}
.x8_c00296{left:112.753050px;}
.x2_c00296{left:126.216356px;}
.x4_c00296{left:252.504495px;}
.x3_c00296{left:270.140236px;}
.x6_c00296{left:312.353010px;}
.x5_c00296{left:420.296029px;}
.x1_c00296{left:497.784645px;}
.x9_c00296{left:682.036273px;}
.xb_c00296{left:769.968000px;}
.xa_c00296{left:774.066600px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:0.000000pt;}
._0_c00296{margin-left:-1.190722pt;}
._1_c00296{width:0.939230pt;}
.fs4_c00296{font-size:42.432943pt;}
.fs3_c00296{font-size:47.499554pt;}
.fs2_c00296{font-size:52.566166pt;}
.fs0_c00296{font-size:58.267177pt;}
.fs1_c00296{font-size:63.333308pt;}
.y3d_c00296{bottom:-1.426321pt;}
.y3b_c00296{bottom:-1.265095pt;}
.y0_c00296{bottom:0.000000pt;}
.y1_c00296{bottom:0.107500pt;}
.y3f_c00296{bottom:0.157518pt;}
.y8_c00296{bottom:6.068128pt;}
.ya_c00296{bottom:57.896246pt;}
.y3_c00296{bottom:74.146170pt;}
.y2_c00296{bottom:74.783670pt;}
.y39_c00296{bottom:100.961429pt;}
.y38_c00296{bottom:117.585156pt;}
.y37_c00296{bottom:134.210749pt;}
.y35_c00296{bottom:150.834743pt;}
.y36_c00296{bottom:150.835809pt;}
.y34_c00296{bottom:167.459803pt;}
.y33_c00296{bottom:184.085129pt;}
.y32_c00296{bottom:200.706989pt;}
.y3e_c00296{bottom:203.614400pt;}
.y31_c00296{bottom:217.332583pt;}
.y30_c00296{bottom:233.956309pt;}
.y2f_c00296{bottom:250.582569pt;}
.y2e_c00296{bottom:267.207629pt;}
.y2d_c00296{bottom:283.831356pt;}
.y2c_c00296{bottom:300.457616pt;}
.y2b_c00296{bottom:317.083876pt;}
.y2a_c00296{bottom:333.707603pt;}
.y29_c00296{bottom:366.641990pt;}
.y28_c00296{bottom:402.108242pt;}
.y27_c00296{bottom:420.315701pt;}
.y26_c00296{bottom:436.943695pt;}
.y25_c00296{bottom:470.185548pt;}
.y3c_c00296{bottom:470.876800pt;}
.y24_c00296{bottom:486.813008pt;}
.y23_c00296{bottom:503.438068pt;}
.y22_c00296{bottom:520.060595pt;}
.y21_c00296{bottom:536.686855pt;}
.y20_c00296{bottom:553.311915pt;}
.y1f_c00296{bottom:569.938842pt;}
.y1e_c00296{bottom:586.563902pt;}
.y1d_c00296{bottom:603.187628pt;}
.y1c_c00296{bottom:619.813888pt;}
.y1b_c00296{bottom:636.437615pt;}
.y1a_c00296{bottom:653.063875pt;}
.y19_c00296{bottom:686.156928pt;}
.y18_c00296{bottom:704.364921pt;}
.y17_c00296{bottom:737.618508pt;}
.y3a_c00296{bottom:738.140800pt;}
.y16_c00296{bottom:754.243568pt;}
.y15_c00296{bottom:770.866095pt;}
.y14_c00296{bottom:787.489821pt;}
.y13_c00296{bottom:804.114881pt;}
.y12_c00296{bottom:820.739941pt;}
.y11_c00296{bottom:837.362468pt;}
.y10_c00296{bottom:853.986195pt;}
.yf_c00296{bottom:870.608721pt;}
.ye_c00296{bottom:887.234981pt;}
.yd_c00296{bottom:903.860041pt;}
.yc_c00296{bottom:920.485101pt;}
.yb_c00296{bottom:953.419488pt;}
.y9_c00296{bottom:972.580814pt;}
.y7_c00296{bottom:1000.229433pt;}
.y6_c00296{bottom:1018.754492pt;}
.y5_c00296{bottom:1036.963819pt;}
.y4_c00296{bottom:1055.170745pt;}
.hc_c00296{height:12.512000pt;}
.hb_c00296{height:12.670400pt;}
.hd_c00296{height:14.089600pt;}
.ha_c00296{height:26.817620pt;}
.h7_c00296{height:33.221817pt;}
.h6_c00296{height:36.824856pt;}
.h8_c00296{height:40.026651pt;}
.h9_c00296{height:42.512101pt;}
.h2_c00296{height:52.149123pt;}
.h3_c00296{height:56.683311pt;}
.h4_c00296{height:56.936644pt;}
.h5_c00296{height:1110.960672pt;}
.h1_c00296{height:1122.559167pt;}
.h0_c00296{height:1122.666667pt;}
.w4_c00296{width:8.547200pt;}
.w3_c00296{width:8.548800pt;}
.w2_c00296{width:785.062974pt;}
.w1_c00296{width:793.257550pt;}
.w0_c00296{width:793.333333pt;}
.x0_c00296{left:0.000000pt;}
.x7_c00296{left:1.370626pt;}
.x8_c00296{left:100.224934pt;}
.x2_c00296{left:112.192317pt;}
.x4_c00296{left:224.448440pt;}
.x3_c00296{left:240.124654pt;}
.x6_c00296{left:277.647120pt;}
.x5_c00296{left:373.596470pt;}
.x1_c00296{left:442.475240pt;}
.x9_c00296{left:606.254465pt;}
.xb_c00296{left:684.416000pt;}
.xa_c00296{left:688.059200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:0.632000;font-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_c00297{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:0.000000px;}
._0_c00297{margin-left:-1.339562px;}
._1_c00297{width:1.056634px;}
._2_c00297{width:200.510581px;}
.fc2_c00297{color:transparent;}
.fc1_c00297{color:rgb(105,148,45);}
.fc0_c00297{color:rgb(35,31,32);}
.fs3_c00297{font-size:47.737061px;}
.fs4_c00297{font-size:53.436999px;}
.fs2_c00297{font-size:59.136936px;}
.fs0_c00297{font-size:65.550574px;}
.fs1_c00297{font-size:71.249972px;}
.y0_c00297{bottom:0.000000px;}
.y1_c00297{bottom:0.120938px;}
.y3d_c00297{bottom:0.176189px;}
.y3b_c00297{bottom:0.177567px;}
.y3f_c00297{bottom:0.181410px;}
.y8_c00297{bottom:6.826644px;}
.ya_c00297{bottom:65.133277px;}
.y3_c00297{bottom:83.414442px;}
.y2_c00297{bottom:84.131629px;}
.y39_c00297{bottom:109.488559px;}
.y38_c00297{bottom:128.191752px;}
.y37_c00297{bottom:146.892095px;}
.y36_c00297{bottom:165.595287px;}
.y35_c00297{bottom:184.300280px;}
.y34_c00297{bottom:202.997772px;}
.y33_c00297{bottom:221.705765px;}
.y3e_c00297{bottom:225.144000px;}
.y32_c00297{bottom:240.407457px;}
.y31_c00297{bottom:259.112750px;}
.y30_c00297{bottom:277.812342px;}
.y2f_c00297{bottom:296.515535px;}
.y2e_c00297{bottom:315.218727px;}
.y2d_c00297{bottom:333.920420px;}
.y2c_c00297{bottom:352.622112px;}
.y2b_c00297{bottom:371.323805px;}
.y2a_c00297{bottom:408.552890px;}
.y29_c00297{bottom:448.453774px;}
.y28_c00297{bottom:468.937166px;}
.y27_c00297{bottom:468.937466px;}
.y26_c00297{bottom:487.640658px;}
.y25_c00297{bottom:506.344151px;}
.y24_c00297{bottom:525.046443px;}
.y3c_c00297{bottom:528.312600px;}
.y23_c00297{bottom:543.753086px;}
.y22_c00297{bottom:562.453428px;}
.y21_c00297{bottom:581.157971px;}
.y20_c00297{bottom:599.858313px;}
.y1f_c00297{bottom:618.560006px;}
.y1e_c00297{bottom:637.264548px;}
.y1d_c00297{bottom:655.964891px;}
.y1c_c00297{bottom:674.668083px;}
.y1b_c00297{bottom:711.720619px;}
.y1a_c00297{bottom:751.619403px;}
.y19_c00297{bottom:772.103544px;}
.y18_c00297{bottom:790.807037px;}
.y17_c00297{bottom:809.512029px;}
.y16_c00297{bottom:828.209672px;}
.y3a_c00297{bottom:831.657600px;}
.y15_c00297{bottom:846.912865px;}
.y14_c00297{bottom:865.616057px;}
.y13_c00297{bottom:884.319250px;}
.y12_c00297{bottom:903.024542px;}
.y11_c00297{bottom:921.729835px;}
.y10_c00297{bottom:940.433027px;}
.yf_c00297{bottom:959.132620px;}
.ye_c00297{bottom:977.836412px;}
.yd_c00297{bottom:1015.068347px;}
.yc_c00297{bottom:1054.786531px;}
.yb_c00297{bottom:1075.271423px;}
.y9_c00297{bottom:1094.153416px;}
.y7_c00297{bottom:1125.258112px;}
.y6_c00297{bottom:1146.098804px;}
.y5_c00297{bottom:1166.584296px;}
.y4_c00297{bottom:1187.067088px;}
.hb_c00297{height:15.850800px;}
.hc_c00297{height:15.854400px;}
.hd_c00297{height:15.856200px;}
.h9_c00297{height:30.169822px;}
.h7_c00297{height:37.374544px;}
.h6_c00297{height:41.427963px;}
.h8_c00297{height:45.029982px;}
.ha_c00297{height:47.826114px;}
.h2_c00297{height:58.667764px;}
.h3_c00297{height:63.768724px;}
.h4_c00297{height:64.053724px;}
.h5_c00297{height:1249.830756px;}
.h1_c00297{height:1262.879062px;}
.h0_c00297{height:1263.000000px;}
.w3_c00297{width:9.615600px;}
.w2_c00297{width:883.195846px;}
.w1_c00297{width:892.414744px;}
.w0_c00297{width:892.500000px;}
.x0_c00297{left:0.000000px;}
.x7_c00297{left:1.541954px;}
.x8_c00297{left:112.753050px;}
.x2_c00297{left:126.216356px;}
.x4_c00297{left:252.504495px;}
.x3_c00297{left:270.140236px;}
.xa_c00297{left:282.682433px;}
.x6_c00297{left:312.353010px;}
.x5_c00297{left:420.296029px;}
.x1_c00297{left:497.784645px;}
.xb_c00297{left:617.732798px;}
.x9_c00297{left:749.366746px;}
.xc_c00297{left:769.968000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws0_c00297{word-spacing:0.000000pt;}
._0_c00297{margin-left:-1.190722pt;}
._1_c00297{width:0.939230pt;}
._2_c00297{width:178.231628pt;}
.fs3_c00297{font-size:42.432943pt;}
.fs4_c00297{font-size:47.499554pt;}
.fs2_c00297{font-size:52.566166pt;}
.fs0_c00297{font-size:58.267177pt;}
.fs1_c00297{font-size:63.333308pt;}
.y0_c00297{bottom:0.000000pt;}
.y1_c00297{bottom:0.107500pt;}
.y3d_c00297{bottom:0.156612pt;}
.y3b_c00297{bottom:0.157838pt;}
.y3f_c00297{bottom:0.161253pt;}
.y8_c00297{bottom:6.068128pt;}
.ya_c00297{bottom:57.896246pt;}
.y3_c00297{bottom:74.146170pt;}
.y2_c00297{bottom:74.783670pt;}
.y39_c00297{bottom:97.323164pt;}
.y38_c00297{bottom:113.948224pt;}
.y37_c00297{bottom:130.570751pt;}
.y36_c00297{bottom:147.195811pt;}
.y35_c00297{bottom:163.822471pt;}
.y34_c00297{bottom:180.442464pt;}
.y33_c00297{bottom:197.071791pt;}
.y3e_c00297{bottom:200.128000pt;}
.y32_c00297{bottom:213.695517pt;}
.y31_c00297{bottom:230.322444pt;}
.y30_c00297{bottom:246.944304pt;}
.y2f_c00297{bottom:263.569364pt;}
.y2e_c00297{bottom:280.194424pt;}
.y2d_c00297{bottom:296.818151pt;}
.y2c_c00297{bottom:313.441878pt;}
.y2b_c00297{bottom:330.065604pt;}
.y2a_c00297{bottom:363.158124pt;}
.y29_c00297{bottom:398.625577pt;}
.y28_c00297{bottom:416.833036pt;}
.y27_c00297{bottom:416.833303pt;}
.y26_c00297{bottom:433.458363pt;}
.y25_c00297{bottom:450.083690pt;}
.y24_c00297{bottom:466.707950pt;}
.y3c_c00297{bottom:469.611200pt;}
.y23_c00297{bottom:483.336076pt;}
.y22_c00297{bottom:499.958603pt;}
.y21_c00297{bottom:516.584863pt;}
.y20_c00297{bottom:533.207390pt;}
.y1f_c00297{bottom:549.831116pt;}
.y1e_c00297{bottom:566.457376pt;}
.y1d_c00297{bottom:583.079903pt;}
.y1c_c00297{bottom:599.704963pt;}
.y1b_c00297{bottom:632.640550pt;}
.y1a_c00297{bottom:668.106136pt;}
.y19_c00297{bottom:686.314262pt;}
.y18_c00297{bottom:702.939588pt;}
.y17_c00297{bottom:719.566248pt;}
.y16_c00297{bottom:736.186375pt;}
.y3a_c00297{bottom:739.251200pt;}
.y15_c00297{bottom:752.811435pt;}
.y14_c00297{bottom:769.436495pt;}
.y13_c00297{bottom:786.061555pt;}
.y12_c00297{bottom:802.688482pt;}
.y11_c00297{bottom:819.315409pt;}
.y10_c00297{bottom:835.940469pt;}
.yf_c00297{bottom:852.562329pt;}
.ye_c00297{bottom:869.187922pt;}
.yd_c00297{bottom:902.282975pt;}
.yc_c00297{bottom:937.588028pt;}
.yb_c00297{bottom:955.796821pt;}
.y9_c00297{bottom:972.580814pt;}
.y7_c00297{bottom:1000.229433pt;}
.y6_c00297{bottom:1018.754492pt;}
.y5_c00297{bottom:1036.963819pt;}
.y4_c00297{bottom:1055.170745pt;}
.hb_c00297{height:14.089600pt;}
.hc_c00297{height:14.092800pt;}
.hd_c00297{height:14.094400pt;}
.h9_c00297{height:26.817620pt;}
.h7_c00297{height:33.221817pt;}
.h6_c00297{height:36.824856pt;}
.h8_c00297{height:40.026651pt;}
.ha_c00297{height:42.512101pt;}
.h2_c00297{height:52.149123pt;}
.h3_c00297{height:56.683311pt;}
.h4_c00297{height:56.936644pt;}
.h5_c00297{height:1110.960672pt;}
.h1_c00297{height:1122.559167pt;}
.h0_c00297{height:1122.666667pt;}
.w3_c00297{width:8.547200pt;}
.w2_c00297{width:785.062974pt;}
.w1_c00297{width:793.257550pt;}
.w0_c00297{width:793.333333pt;}
.x0_c00297{left:0.000000pt;}
.x7_c00297{left:1.370626pt;}
.x8_c00297{left:100.224934pt;}
.x2_c00297{left:112.192317pt;}
.x4_c00297{left:224.448440pt;}
.x3_c00297{left:240.124654pt;}
.xa_c00297{left:251.273273pt;}
.x6_c00297{left:277.647120pt;}
.x5_c00297{left:373.596470pt;}
.x1_c00297{left:442.475240pt;}
.xb_c00297{left:549.095821pt;}
.x9_c00297{left:666.103774pt;}
.xc_c00297{left:684.416000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:0.632000;font-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_c00298{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:0.000000px;}
._0_c00298{margin-left:-1.339562px;}
._1_c00298{width:1.056634px;}
._2_c00298{width:200.511650px;}
.fc2_c00298{color:transparent;}
.fc1_c00298{color:rgb(105,148,45);}
.fc0_c00298{color:rgb(35,31,32);}
.fs3_c00298{font-size:47.737061px;}
.fs4_c00298{font-size:53.436999px;}
.fs2_c00298{font-size:59.136936px;}
.fs0_c00298{font-size:65.550574px;}
.fs1_c00298{font-size:71.249972px;}
.y0_c00298{bottom:0.000000px;}
.y1_c00298{bottom:0.120938px;}
.y3d_c00298{bottom:0.177488px;}
.y39_c00298{bottom:0.177560px;}
.y3b_c00298{bottom:0.178574px;}
.y8_c00298{bottom:6.826644px;}
.ya_c00298{bottom:65.133277px;}
.y3_c00298{bottom:83.414442px;}
.y2_c00298{bottom:84.131629px;}
.y37_c00298{bottom:127.300002px;}
.y36_c00298{bottom:146.001695px;}
.y35_c00298{bottom:164.703387px;}
.y34_c00298{bottom:183.405080px;}
.y33_c00298{bottom:202.108272px;}
.y32_c00298{bottom:220.813565px;}
.y31_c00298{bottom:239.516757px;}
.y30_c00298{bottom:258.218750px;}
.y2f_c00298{bottom:276.924042px;}
.y3c_c00298{bottom:280.364400px;}
.y2e_c00298{bottom:295.623635px;}
.y2d_c00298{bottom:314.328928px;}
.y2c_c00298{bottom:333.030620px;}
.y2b_c00298{bottom:351.736513px;}
.y2a_c00298{bottom:370.438205px;}
.y29_c00298{bottom:389.137048px;}
.y28_c00298{bottom:407.841590px;}
.y27_c00298{bottom:426.543283px;}
.y26_c00298{bottom:463.772968px;}
.y25_c00298{bottom:503.671752px;}
.y24_c00298{bottom:524.156644px;}
.y23_c00298{bottom:542.858636px;}
.y22_c00298{bottom:561.559729px;}
.y3a_c00298{bottom:564.829200px;}
.y21_c00298{bottom:580.262921px;}
.y20_c00298{bottom:598.968214px;}
.y1f_c00298{bottom:617.669906px;}
.y1e_c00298{bottom:636.373099px;}
.y1d_c00298{bottom:655.077641px;}
.y1c_c00298{bottom:673.776484px;}
.y1b_c00298{bottom:692.482376px;}
.y1a_c00298{bottom:711.184069px;}
.y19_c00298{bottom:748.236604px;}
.y18_c00298{bottom:788.136138px;}
.y17_c00298{bottom:808.621030px;}
.y16_c00298{bottom:827.324522px;}
.y15_c00298{bottom:846.026965px;}
.y38_c00298{bottom:849.468600px;}
.y14_c00298{bottom:864.731507px;}
.y13_c00298{bottom:883.431850px;}
.y12_c00298{bottom:902.133542px;}
.y11_c00298{bottom:920.833885px;}
.y10_c00298{bottom:939.537677px;}
.yf_c00298{bottom:958.241470px;}
.ye_c00298{bottom:976.945262px;}
.yd_c00298{bottom:995.646955px;}
.yc_c00298{bottom:1032.871840px;}
.yb_c00298{bottom:1072.596924px;}
.y9_c00298{bottom:1094.153416px;}
.y7_c00298{bottom:1125.258112px;}
.y6_c00298{bottom:1146.098804px;}
.y5_c00298{bottom:1166.584296px;}
.y4_c00298{bottom:1187.067088px;}
.hb_c00298{height:15.850800px;}
.hc_c00298{height:15.854400px;}
.h9_c00298{height:30.169822px;}
.h7_c00298{height:37.374544px;}
.h6_c00298{height:41.427963px;}
.h8_c00298{height:45.029982px;}
.ha_c00298{height:47.826114px;}
.h2_c00298{height:58.667764px;}
.h3_c00298{height:63.768724px;}
.h4_c00298{height:64.053724px;}
.h5_c00298{height:1249.830756px;}
.h1_c00298{height:1262.879062px;}
.h0_c00298{height:1263.000000px;}
.w3_c00298{width:9.615600px;}
.w2_c00298{width:883.195846px;}
.w1_c00298{width:892.414744px;}
.w0_c00298{width:892.500000px;}
.x0_c00298{left:0.000000px;}
.x7_c00298{left:1.541954px;}
.x8_c00298{left:112.753050px;}
.x2_c00298{left:126.216356px;}
.x4_c00298{left:252.504495px;}
.x3_c00298{left:270.140236px;}
.x6_c00298{left:312.353010px;}
.x5_c00298{left:420.296029px;}
.x1_c00298{left:497.784645px;}
.x9_c00298{left:681.323773px;}
.xa_c00298{left:685.417271px;}
.xb_c00298{left:769.968000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:0.000000pt;}
._0_c00298{margin-left:-1.190722pt;}
._1_c00298{width:0.939230pt;}
._2_c00298{width:178.232578pt;}
.fs3_c00298{font-size:42.432943pt;}
.fs4_c00298{font-size:47.499554pt;}
.fs2_c00298{font-size:52.566166pt;}
.fs0_c00298{font-size:58.267177pt;}
.fs1_c00298{font-size:63.333308pt;}
.y0_c00298{bottom:0.000000pt;}
.y1_c00298{bottom:0.107500pt;}
.y3d_c00298{bottom:0.157767pt;}
.y39_c00298{bottom:0.157831pt;}
.y3b_c00298{bottom:0.158732pt;}
.y8_c00298{bottom:6.068128pt;}
.ya_c00298{bottom:57.896246pt;}
.y3_c00298{bottom:74.146170pt;}
.y2_c00298{bottom:74.783670pt;}
.y37_c00298{bottom:113.155558pt;}
.y36_c00298{bottom:129.779284pt;}
.y35_c00298{bottom:146.403011pt;}
.y34_c00298{bottom:163.026738pt;}
.y33_c00298{bottom:179.651798pt;}
.y32_c00298{bottom:196.278724pt;}
.y31_c00298{bottom:212.903784pt;}
.y30_c00298{bottom:229.527778pt;}
.y2f_c00298{bottom:246.154704pt;}
.y3c_c00298{bottom:249.212800pt;}
.y2e_c00298{bottom:262.776564pt;}
.y2d_c00298{bottom:279.403491pt;}
.y2c_c00298{bottom:296.027218pt;}
.y2b_c00298{bottom:312.654678pt;}
.y2a_c00298{bottom:329.278405pt;}
.y29_c00298{bottom:345.899598pt;}
.y28_c00298{bottom:362.525858pt;}
.y27_c00298{bottom:379.149585pt;}
.y26_c00298{bottom:412.242638pt;}
.y25_c00298{bottom:447.708224pt;}
.y24_c00298{bottom:465.917017pt;}
.y23_c00298{bottom:482.541010pt;}
.y22_c00298{bottom:499.164203pt;}
.y3a_c00298{bottom:502.070400pt;}
.y21_c00298{bottom:515.789263pt;}
.y20_c00298{bottom:532.416190pt;}
.y1f_c00298{bottom:549.039917pt;}
.y1e_c00298{bottom:565.664977pt;}
.y1d_c00298{bottom:582.291237pt;}
.y1c_c00298{bottom:598.912430pt;}
.y1b_c00298{bottom:615.539890pt;}
.y1a_c00298{bottom:632.163617pt;}
.y19_c00298{bottom:665.099204pt;}
.y18_c00298{bottom:700.565456pt;}
.y17_c00298{bottom:718.774249pt;}
.y16_c00298{bottom:735.399575pt;}
.y15_c00298{bottom:752.023969pt;}
.y38_c00298{bottom:755.083200pt;}
.y14_c00298{bottom:768.650229pt;}
.y13_c00298{bottom:785.272755pt;}
.y12_c00298{bottom:801.896482pt;}
.y11_c00298{bottom:818.519009pt;}
.y10_c00298{bottom:835.144602pt;}
.yf_c00298{bottom:851.770196pt;}
.ye_c00298{bottom:868.395789pt;}
.yd_c00298{bottom:885.019516pt;}
.yc_c00298{bottom:918.108302pt;}
.yb_c00298{bottom:953.419488pt;}
.y9_c00298{bottom:972.580814pt;}
.y7_c00298{bottom:1000.229433pt;}
.y6_c00298{bottom:1018.754492pt;}
.y5_c00298{bottom:1036.963819pt;}
.y4_c00298{bottom:1055.170745pt;}
.hb_c00298{height:14.089600pt;}
.hc_c00298{height:14.092800pt;}
.h9_c00298{height:26.817620pt;}
.h7_c00298{height:33.221817pt;}
.h6_c00298{height:36.824856pt;}
.h8_c00298{height:40.026651pt;}
.ha_c00298{height:42.512101pt;}
.h2_c00298{height:52.149123pt;}
.h3_c00298{height:56.683311pt;}
.h4_c00298{height:56.936644pt;}
.h5_c00298{height:1110.960672pt;}
.h1_c00298{height:1122.559167pt;}
.h0_c00298{height:1122.666667pt;}
.w3_c00298{width:8.547200pt;}
.w2_c00298{width:785.062974pt;}
.w1_c00298{width:793.257550pt;}
.w0_c00298{width:793.333333pt;}
.x0_c00298{left:0.000000pt;}
.x7_c00298{left:1.370626pt;}
.x8_c00298{left:100.224934pt;}
.x2_c00298{left:112.192317pt;}
.x4_c00298{left:224.448440pt;}
.x3_c00298{left:240.124654pt;}
.x6_c00298{left:277.647120pt;}
.x5_c00298{left:373.596470pt;}
.x1_c00298{left:442.475240pt;}
.x9_c00298{left:605.621132pt;}
.xa_c00298{left:609.259797pt;}
.xb_c00298{left:684.416000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eebb307e4db2fb2847b9ecd8.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.111000;font-style:normal;font-weight:normal;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_5760f146e81fe8bcdb03a687.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:0.632000;font-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_c00299{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:0.000000px;}
._0_c00299{margin-left:-1.339562px;}
._1_c00299{width:1.056634px;}
.fc2_c00299{color:transparent;}
.fc1_c00299{color:rgb(105,148,45);}
.fc0_c00299{color:rgb(35,31,32);}
.fs3_c00299{font-size:47.737061px;}
.fs4_c00299{font-size:53.436999px;}
.fs2_c00299{font-size:59.136936px;}
.fs0_c00299{font-size:65.550574px;}
.fs1_c00299{font-size:71.249972px;}
.y0_c00299{bottom:0.000000px;}
.y1_c00299{bottom:0.120938px;}
.y9_c00299{bottom:71.838984px;}
.y3_c00299{bottom:83.414442px;}
.y2_c00299{bottom:84.131629px;}
.y18_c00299{bottom:738.022767px;}
.y17_c00299{bottom:775.425252px;}
.y16_c00299{bottom:794.127245px;}
.y15_c00299{bottom:812.829687px;}
.y14_c00299{bottom:831.533480px;}
.y13_c00299{bottom:850.237272px;}
.y12_c00299{bottom:868.938215px;}
.y11_c00299{bottom:887.642007px;}
.y10_c00299{bottom:906.341600px;}
.yf_c00299{bottom:925.046892px;}
.ye_c00299{bottom:943.747235px;}
.yd_c00299{bottom:962.451777px;}
.yc_c00299{bottom:999.680863px;}
.yb_c00299{bottom:1039.577547px;}
.ya_c00299{bottom:1079.302631px;}
.y8_c00299{bottom:1100.859122px;}
.y7_c00299{bottom:1125.258112px;}
.y6_c00299{bottom:1146.098804px;}
.y5_c00299{bottom:1166.584296px;}
.y4_c00299{bottom:1187.067088px;}
.h8_c00299{height:30.169822px;}
.h6_c00299{height:37.374544px;}
.h5_c00299{height:41.427963px;}
.h7_c00299{height:45.029982px;}
.h9_c00299{height:47.826114px;}
.h2_c00299{height:58.667764px;}
.h3_c00299{height:63.768724px;}
.h4_c00299{height:64.053724px;}
.h1_c00299{height:1262.879062px;}
.h0_c00299{height:1263.000000px;}
.w1_c00299{width:892.414744px;}
.w0_c00299{width:892.500000px;}
.x0_c00299{left:0.000000px;}
.x7_c00299{left:114.282348px;}
.x2_c00299{left:126.216356px;}
.x4_c00299{left:252.504495px;}
.x3_c00299{left:270.140236px;}
.x6_c00299{left:312.353010px;}
.x5_c00299{left:420.296029px;}
.x1_c00299{left:497.784645px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
._0_c00299{margin-left:-1.190722pt;}
._1_c00299{width:0.939230pt;}
.fs3_c00299{font-size:42.432943pt;}
.fs4_c00299{font-size:47.499554pt;}
.fs2_c00299{font-size:52.566166pt;}
.fs0_c00299{font-size:58.267177pt;}
.fs1_c00299{font-size:63.333308pt;}
.y0_c00299{bottom:0.000000pt;}
.y1_c00299{bottom:0.107500pt;}
.y9_c00299{bottom:63.856874pt;}
.y3_c00299{bottom:74.146170pt;}
.y2_c00299{bottom:74.783670pt;}
.y18_c00299{bottom:656.020238pt;}
.y17_c00299{bottom:689.266891pt;}
.y16_c00299{bottom:705.890884pt;}
.y15_c00299{bottom:722.515278pt;}
.y14_c00299{bottom:739.140871pt;}
.y13_c00299{bottom:755.766464pt;}
.y12_c00299{bottom:772.389524pt;}
.y11_c00299{bottom:789.015118pt;}
.y10_c00299{bottom:805.636978pt;}
.yf_c00299{bottom:822.263904pt;}
.ye_c00299{bottom:838.886431pt;}
.yd_c00299{bottom:855.512691pt;}
.yc_c00299{bottom:888.605211pt;}
.yb_c00299{bottom:924.068930pt;}
.ya_c00299{bottom:959.380116pt;}
.y8_c00299{bottom:978.541442pt;}
.y7_c00299{bottom:1000.229433pt;}
.y6_c00299{bottom:1018.754492pt;}
.y5_c00299{bottom:1036.963819pt;}
.y4_c00299{bottom:1055.170745pt;}
.h8_c00299{height:26.817620pt;}
.h6_c00299{height:33.221817pt;}
.h5_c00299{height:36.824856pt;}
.h7_c00299{height:40.026651pt;}
.h9_c00299{height:42.512101pt;}
.h2_c00299{height:52.149123pt;}
.h3_c00299{height:56.683311pt;}
.h4_c00299{height:56.936644pt;}
.h1_c00299{height:1122.559167pt;}
.h0_c00299{height:1122.666667pt;}
.w1_c00299{width:793.257550pt;}
.w0_c00299{width:793.333333pt;}
.x0_c00299{left:0.000000pt;}
.x7_c00299{left:101.584309pt;}
.x2_c00299{left:112.192317pt;}
.x4_c00299{left:224.448440pt;}
.x3_c00299{left:240.124654pt;}
.x6_c00299{left:277.647120pt;}
.x5_c00299{left:373.596470pt;}
.x1_c00299{left:442.475240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbfaf83bbe51a703e6d2984b.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.113000;font-style: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.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls0_c00300{letter-spacing:0.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:0.000000px;}
._0_c00300{width:1.228191px;}
.fc0_c00300{color:rgb(35,31,32);}
.fs0_c00300{font-size:106.873757px;}
.y0_c00300{bottom:0.000000px;}
.y1_c00300{bottom:0.120938px;}
.y2_c00300{bottom:407.959899px;}
.h2_c00300{height:95.865760px;}
.h1_c00300{height:1262.879062px;}
.h0_c00300{height:1263.000000px;}
.w1_c00300{width:892.414744px;}
.w0_c00300{width:892.500000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:108.404900px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
._0_c00300{width:1.091726pt;}
.fs0_c00300{font-size:94.998895pt;}
.y0_c00300{bottom:0.000000pt;}
.y1_c00300{bottom:0.107500pt;}
.y2_c00300{bottom:362.631022pt;}
.h2_c00300{height:85.214009pt;}
.h1_c00300{height:1122.559167pt;}
.h0_c00300{height:1122.666667pt;}
.w1_c00300{width:793.257550pt;}
.w0_c00300{width:793.333333pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:96.359911pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d65b5f52712e765ef1de47f.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:0.916000;font-style:normal;font-weight:normal;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_06fc85728adf8d5199675249.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:0.632000;font-style:normal;font-weight:normal;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_d403edc6841e71e6a37a8cd7.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.113000;font-style:normal;font-weight:normal;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_0197708aab2d5f3307acad1e.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.112000;font-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_c00301{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:0.000000px;}
._0_c00301{margin-left:-1.339018px;}
._1_c00301{width:1.118724px;}
._9_c00301{width:2.119664px;}
._6_c00301{width:3.225657px;}
._3_c00301{width:4.508136px;}
._4_c00301{width:5.746458px;}
._5_c00301{width:6.762322px;}
._a_c00301{width:7.955074px;}
._b_c00301{width:9.297669px;}
._7_c00301{width:20.146277px;}
._8_c00301{width:21.365396px;}
._2_c00301{width:54.029279px;}
.fc1_c00301{color:rgb(105,148,45);}
.fc0_c00301{color:rgb(35,31,32);}
.fs3_c00301{font-size:48.207641px;}
.fs2_c00301{font-size:59.720076px;}
.fs0_c00301{font-size:66.193774px;}
.fs1_c00301{font-size:71.953771px;}
.y0_c00301{bottom:0.000000px;}
.y1_c00301{bottom:0.120938px;}
.y8_c00301{bottom:0.848671px;}
.ya_c00301{bottom:65.773052px;}
.y3_c00301{bottom:78.196581px;}
.y2_c00301{bottom:78.916581px;}
.y1f_c00301{bottom:509.539175px;}
.y1e_c00301{bottom:540.475312px;}
.y1d_c00301{bottom:571.597750px;}
.y1c_c00301{bottom:602.538087px;}
.y1b_c00301{bottom:633.655575px;}
.y1a_c00301{bottom:664.594413px;}
.y19_c00301{bottom:695.533250px;}
.y18_c00301{bottom:726.652088px;}
.y17_c00301{bottom:757.591675px;}
.y16_c00301{bottom:788.712013px;}
.y15_c00301{bottom:819.650851px;}
.y14_c00301{bottom:850.768338px;}
.y13_c00301{bottom:881.707176px;}
.y12_c00301{bottom:912.829613px;}
.y11_c00301{bottom:943.768451px;}
.y10_c00301{bottom:962.651943px;}
.yf_c00301{bottom:994.669431px;}
.ye_c00301{bottom:1018.958921px;}
.yd_c00301{bottom:1056.910406px;}
.yc_c00301{bottom:1073.459104px;}
.yb_c00301{bottom:1088.387143px;}
.y9_c00301{bottom:1105.115886px;}
.y7_c00301{bottom:1130.484410px;}
.y6_c00301{bottom:1151.530302px;}
.y5_c00301{bottom:1172.216194px;}
.y4_c00301{bottom:1192.902085px;}
.h9_c00301{height:30.467229px;}
.h7_c00301{height:37.743088px;}
.h6_c00301{height:41.834465px;}
.h2_c00301{height:46.335641px;}
.h3_c00301{height:50.367640px;}
.ha_c00301{height:64.470579px;}
.h8_c00301{height:64.542533px;}
.h4_c00301{height:64.686440px;}
.h5_c00301{height:1262.151000px;}
.h1_c00301{height:1262.879062px;}
.h0_c00301{height:1263.000000px;}
.w2_c00301{width:891.907200px;}
.w1_c00301{width:892.414744px;}
.w0_c00301{width:892.500000px;}
.x0_c00301{left:0.000000px;}
.x7_c00301{left:113.861261px;}
.x2_c00301{left:125.991314px;}
.x8_c00301{left:140.842950px;}
.x9_c00301{left:167.827339px;}
.x4_c00301{left:253.523292px;}
.x3_c00301{left:271.332735px;}
.x6_c00301{left:337.708441px;}
.x5_c00301{left:422.967853px;}
.x1_c00301{left:501.219643px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:0.000000pt;}
._0_c00301{margin-left:-1.190239pt;}
._1_c00301{width:0.994422pt;}
._9_c00301{width:1.884145pt;}
._6_c00301{width:2.867251pt;}
._3_c00301{width:4.007232pt;}
._4_c00301{width:5.107963pt;}
._5_c00301{width:6.010953pt;}
._a_c00301{width:7.071177pt;}
._b_c00301{width:8.264594pt;}
._7_c00301{width:17.907802pt;}
._8_c00301{width:18.991463pt;}
._2_c00301{width:48.026026pt;}
.fs3_c00301{font-size:42.851236pt;}
.fs2_c00301{font-size:53.084512pt;}
.fs0_c00301{font-size:58.838910pt;}
.fs1_c00301{font-size:63.958908pt;}
.y0_c00301{bottom:0.000000pt;}
.y1_c00301{bottom:0.107500pt;}
.y8_c00301{bottom:0.754374pt;}
.ya_c00301{bottom:58.464935pt;}
.y3_c00301{bottom:69.508072pt;}
.y2_c00301{bottom:70.148072pt;}
.y1f_c00301{bottom:452.923711pt;}
.y1e_c00301{bottom:480.422500pt;}
.y1d_c00301{bottom:508.086889pt;}
.y1c_c00301{bottom:535.589411pt;}
.y1b_c00301{bottom:563.249400pt;}
.y1a_c00301{bottom:590.750589pt;}
.y19_c00301{bottom:618.251778pt;}
.y18_c00301{bottom:645.912967pt;}
.y17_c00301{bottom:673.414823pt;}
.y16_c00301{bottom:701.077345pt;}
.y15_c00301{bottom:728.578534pt;}
.y14_c00301{bottom:756.238523pt;}
.y13_c00301{bottom:783.739712pt;}
.y12_c00301{bottom:811.404101pt;}
.y11_c00301{bottom:838.905290pt;}
.y10_c00301{bottom:855.690616pt;}
.yf_c00301{bottom:884.150605pt;}
.ye_c00301{bottom:905.741263pt;}
.yd_c00301{bottom:939.475916pt;}
.yc_c00301{bottom:954.185870pt;}
.yb_c00301{bottom:967.455238pt;}
.y9_c00301{bottom:982.325232pt;}
.y7_c00301{bottom:1004.875031pt;}
.y6_c00301{bottom:1023.582491pt;}
.y5_c00301{bottom:1041.969950pt;}
.y4_c00301{bottom:1060.357409pt;}
.h9_c00301{height:27.081981pt;}
.h7_c00301{height:33.549412pt;}
.h6_c00301{height:37.186191pt;}
.h2_c00301{height:41.187237pt;}
.h3_c00301{height:44.771235pt;}
.ha_c00301{height:57.307181pt;}
.h8_c00301{height:57.371140pt;}
.h4_c00301{height:57.499058pt;}
.h5_c00301{height:1121.912000pt;}
.h1_c00301{height:1122.559167pt;}
.h0_c00301{height:1122.666667pt;}
.w2_c00301{width:792.806400pt;}
.w1_c00301{width:793.257550pt;}
.w0_c00301{width:793.333333pt;}
.x0_c00301{left:0.000000pt;}
.x7_c00301{left:101.210009pt;}
.x2_c00301{left:111.992279pt;}
.x8_c00301{left:125.193733pt;}
.x9_c00301{left:149.179857pt;}
.x4_c00301{left:225.354037pt;}
.x3_c00301{left:241.184654pt;}
.x6_c00301{left:300.185281pt;}
.x5_c00301{left:375.971425pt;}
.x1_c00301{left:445.528572pt;}
}





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





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





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





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





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





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





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





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





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





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





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





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d403edc6841e71e6a37a8cd7.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.113000;font-style: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.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls0_c00315{letter-spacing:0.000000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:0.000000px;}
.fc0_c00315{color:rgb(35,31,32);}
.fs0_c00315{font-size:107.928557px;}
.y0_c00315{bottom:0.000000px;}
.y1_c00315{bottom:0.120938px;}
.y2_c00315{bottom:405.936400px;}
.h2_c00315{height:96.811915px;}
.h1_c00315{height:1262.879062px;}
.h0_c00315{height:1263.000000px;}
.w1_c00315{width:892.414744px;}
.w0_c00315{width:892.500000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:108.002001px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.fs0_c00315{font-size:95.936495pt;}
.y0_c00315{bottom:0.000000pt;}
.y1_c00315{bottom:0.107500pt;}
.y2_c00315{bottom:360.832356pt;}
.h2_c00315{height:86.055036pt;}
.h1_c00315{height:1122.559167pt;}
.h0_c00315{height:1122.666667pt;}
.w1_c00315{width:793.257550pt;}
.w0_c00315{width:793.333333pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:96.001778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d65b5f52712e765ef1de47f.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:0.916000;font-style:normal;font-weight:normal;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_06fc85728adf8d5199675249.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:0.632000;font-style:normal;font-weight:normal;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_d403edc6841e71e6a37a8cd7.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.113000;font-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_c00316{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:-21.046342px;}
.ws1_c00316{word-spacing:0.000000px;}
._3_c00316{margin-left:-12.280082px;}
._4_c00316{margin-left:-10.312975px;}
._5_c00316{margin-left:-6.499822px;}
._2_c00316{margin-left:-3.350801px;}
._0_c00316{margin-left:-1.339018px;}
._1_c00316{width:1.118548px;}
.fc1_c00316{color:rgb(105,148,45);}
.fc0_c00316{color:rgb(35,31,32);}
.fs2_c00316{font-size:59.720076px;}
.fs0_c00316{font-size:66.193774px;}
.fs1_c00316{font-size:71.953771px;}
.fs3_c00316{font-size:84.185366px;}
.y0_c00316{bottom:0.000000px;}
.y1_c00316{bottom:0.120938px;}
.y8_c00316{bottom:0.848671px;}
.ya_c00316{bottom:65.773052px;}
.y3_c00316{bottom:78.196581px;}
.y2_c00316{bottom:78.916581px;}
.y15_c00316{bottom:811.375504px;}
.y14_c00316{bottom:837.635993px;}
.y13_c00316{bottom:867.136332px;}
.y12_c00316{bottom:895.017270px;}
.y11_c00316{bottom:923.078209px;}
.y10_c00316{bottom:961.574944px;}
.yf_c00316{bottom:1001.689428px;}
.ye_c00316{bottom:1031.908416px;}
.yd_c00316{bottom:1056.910406px;}
.yc_c00316{bottom:1073.459104px;}
.yb_c00316{bottom:1088.387143px;}
.y9_c00316{bottom:1105.115886px;}
.y7_c00316{bottom:1130.484410px;}
.y6_c00316{bottom:1151.530302px;}
.y5_c00316{bottom:1172.216194px;}
.y4_c00316{bottom:1192.902085px;}
.h7_c00316{height:37.743088px;}
.h6_c00316{height:41.834465px;}
.h2_c00316{height:46.335641px;}
.h3_c00316{height:50.367640px;}
.h9_c00316{height:59.508202px;}
.h4_c00316{height:64.686440px;}
.h8_c00316{height:75.682644px;}
.h5_c00316{height:1262.151000px;}
.h1_c00316{height:1262.879062px;}
.h0_c00316{height:1263.000000px;}
.w2_c00316{width:891.907200px;}
.w1_c00316{width:892.414744px;}
.w0_c00316{width:892.500000px;}
.x0_c00316{left:0.000000px;}
.x7_c00316{left:113.861261px;}
.x2_c00316{left:125.991314px;}
.xa_c00316{left:128.790971px;}
.x4_c00316{left:253.523292px;}
.x3_c00316{left:271.332735px;}
.x6_c00316{left:368.824447px;}
.x8_c00316{left:409.582242px;}
.x5_c00316{left:422.967853px;}
.x1_c00316{left:501.219643px;}
.x9_c00316{left:774.920596px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:-18.707859pt;}
.ws1_c00316{word-spacing:0.000000pt;}
._3_c00316{margin-left:-10.915629pt;}
._4_c00316{margin-left:-9.167089pt;}
._5_c00316{margin-left:-5.777620pt;}
._2_c00316{margin-left:-2.978489pt;}
._0_c00316{margin-left:-1.190239pt;}
._1_c00316{width:0.994265pt;}
.fs2_c00316{font-size:53.084512pt;}
.fs0_c00316{font-size:58.838910pt;}
.fs1_c00316{font-size:63.958908pt;}
.fs3_c00316{font-size:74.831437pt;}
.y0_c00316{bottom:0.000000pt;}
.y1_c00316{bottom:0.107500pt;}
.y8_c00316{bottom:0.754374pt;}
.ya_c00316{bottom:58.464935pt;}
.y3_c00316{bottom:69.508072pt;}
.y2_c00316{bottom:70.148072pt;}
.y15_c00316{bottom:721.222670pt;}
.y14_c00316{bottom:744.565327pt;}
.y13_c00316{bottom:770.787850pt;}
.y12_c00316{bottom:795.570907pt;}
.y11_c00316{bottom:820.513964pt;}
.y10_c00316{bottom:854.733283pt;}
.yf_c00316{bottom:890.390602pt;}
.ye_c00316{bottom:917.251925pt;}
.yd_c00316{bottom:939.475916pt;}
.yc_c00316{bottom:954.185870pt;}
.yb_c00316{bottom:967.455238pt;}
.y9_c00316{bottom:982.325232pt;}
.y7_c00316{bottom:1004.875031pt;}
.y6_c00316{bottom:1023.582491pt;}
.y5_c00316{bottom:1041.969950pt;}
.y4_c00316{bottom:1060.357409pt;}
.h7_c00316{height:33.549412pt;}
.h6_c00316{height:37.186191pt;}
.h2_c00316{height:41.187237pt;}
.h3_c00316{height:44.771235pt;}
.h9_c00316{height:52.896180pt;}
.h4_c00316{height:57.499058pt;}
.h8_c00316{height:67.273462pt;}
.h5_c00316{height:1121.912000pt;}
.h1_c00316{height:1122.559167pt;}
.h0_c00316{height:1122.666667pt;}
.w2_c00316{width:792.806400pt;}
.w1_c00316{width:793.257550pt;}
.w0_c00316{width:793.333333pt;}
.x0_c00316{left:0.000000pt;}
.x7_c00316{left:101.210009pt;}
.x2_c00316{left:111.992279pt;}
.xa_c00316{left:114.480864pt;}
.x4_c00316{left:225.354037pt;}
.x3_c00316{left:241.184654pt;}
.x6_c00316{left:327.843953pt;}
.x8_c00316{left:364.073104pt;}
.x5_c00316{left:375.971425pt;}
.x1_c00316{left:445.528572pt;}
.x9_c00316{left:688.818308pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d65b5f52712e765ef1de47f.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:0.916000;font-style:normal;font-weight:normal;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_06fc85728adf8d5199675249.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:0.632000;font-style:normal;font-weight:normal;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_d403edc6841e71e6a37a8cd7.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.113000;font-style:normal;font-weight:normal;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_0197708aab2d5f3307acad1e.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.112000;font-style:normal;font-weight:normal;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_3247436cd682d4f78be90324.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00317{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls2_c00317{letter-spacing:0.000000px;}
.ls1_c00317{letter-spacing:50.851262px;}
.ls0_c00317{letter-spacing:50.856662px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00317{word-spacing:0.000000px;}
._d_c00317{margin-left:-2.858500px;}
._0_c00317{margin-left:-1.339018px;}
._1_c00317{width:1.118548px;}
._f_c00317{width:2.480582px;}
._c_c00317{width:3.526259px;}
._a_c00317{width:9.341474px;}
._7_c00317{width:10.353854px;}
._8_c00317{width:11.450639px;}
._9_c00317{width:12.974183px;}
._e_c00317{width:14.228675px;}
._b_c00317{width:15.263102px;}
._5_c00317{width:16.728351px;}
._6_c00317{width:19.962950px;}
._4_c00317{width:21.672675px;}
._10_c00317{width:22.787345px;}
._2_c00317{width:28.554700px;}
._3_c00317{width:29.851547px;}
.fc1_c00317{color:rgb(105,148,45);}
.fc0_c00317{color:rgb(35,31,32);}
.fs3_c00317{font-size:48.207641px;}
.fs2_c00317{font-size:59.720076px;}
.fs0_c00317{font-size:66.193774px;}
.fs1_c00317{font-size:71.953771px;}
.y0_c00317{bottom:0.000000px;}
.y1_c00317{bottom:0.120938px;}
.y8_c00317{bottom:0.848671px;}
.ya_c00317{bottom:65.773052px;}
.y3_c00317{bottom:78.196581px;}
.y2_c00317{bottom:78.916581px;}
.y28_c00317{bottom:132.691475px;}
.y27_c00317{bottom:163.630313px;}
.y26_c00317{bottom:194.387801px;}
.y25_c00317{bottom:225.688138px;}
.y24_c00317{bottom:256.806976px;}
.y23_c00317{bottom:312.750353px;}
.y22_c00317{bottom:392.976171px;}
.y21_c00317{bottom:424.096509px;}
.y20_c00317{bottom:455.035346px;}
.y1f_c00317{bottom:486.152834px;}
.y1e_c00317{bottom:517.095272px;}
.y1d_c00317{bottom:548.212759px;}
.y1c_c00317{bottom:579.153097px;}
.y1b_c00317{bottom:610.090584px;}
.y1a_c00317{bottom:641.211522px;}
.y19_c00317{bottom:672.149010px;}
.y18_c00317{bottom:703.267847px;}
.y17_c00317{bottom:734.208185px;}
.y16_c00317{bottom:765.327022px;}
.y15_c00317{bottom:785.110514px;}
.y14_c00317{bottom:801.126008px;}
.y13_c00317{bottom:827.743347px;}
.y12_c00317{bottom:858.863685px;}
.y11_c00317{bottom:889.801173px;}
.y10_c00317{bottom:920.920010px;}
.yf_c00317{bottom:951.860348px;}
.ye_c00317{bottom:982.979935px;}
.yd_c00317{bottom:1002.229428px;}
.yc_c00317{bottom:1016.798922px;}
.yb_c00317{bottom:1034.968414px;}
.y9_c00317{bottom:1105.115886px;}
.y7_c00317{bottom:1130.484410px;}
.y6_c00317{bottom:1151.530302px;}
.y5_c00317{bottom:1172.216194px;}
.y4_c00317{bottom:1192.902085px;}
.h9_c00317{height:30.467229px;}
.h7_c00317{height:37.743088px;}
.h6_c00317{height:41.834465px;}
.h2_c00317{height:46.335641px;}
.h3_c00317{height:50.367640px;}
.ha_c00317{height:64.470579px;}
.h8_c00317{height:64.542533px;}
.h4_c00317{height:64.686440px;}
.h5_c00317{height:1262.151000px;}
.h1_c00317{height:1262.879062px;}
.h0_c00317{height:1263.000000px;}
.w2_c00317{width:891.907200px;}
.w1_c00317{width:892.414744px;}
.w0_c00317{width:892.500000px;}
.x0_c00317{left:0.000000px;}
.x7_c00317{left:113.861261px;}
.x2_c00317{left:125.991314px;}
.x9_c00317{left:127.535788px;}
.x8_c00317{left:180.599834px;}
.xa_c00317{left:207.580991px;}
.x4_c00317{left:253.523292px;}
.x3_c00317{left:271.332735px;}
.x6_c00317{left:368.824447px;}
.x5_c00317{left:422.967853px;}
.x1_c00317{left:501.219643px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls2_c00317{letter-spacing:0.000000pt;}
.ls1_c00317{letter-spacing:45.201122pt;}
.ls0_c00317{letter-spacing:45.205922pt;}
.ws0_c00317{word-spacing:0.000000pt;}
._d_c00317{margin-left:-2.540889pt;}
._0_c00317{margin-left:-1.190239pt;}
._1_c00317{width:0.994265pt;}
._f_c00317{width:2.204961pt;}
._c_c00317{width:3.134452pt;}
._a_c00317{width:8.303532pt;}
._7_c00317{width:9.203426pt;}
._8_c00317{width:10.178346pt;}
._9_c00317{width:11.532607pt;}
._e_c00317{width:12.647711pt;}
._b_c00317{width:13.567202pt;}
._5_c00317{width:14.869645pt;}
._6_c00317{width:17.744844pt;}
._4_c00317{width:19.264600pt;}
._10_c00317{width:20.255418pt;}
._2_c00317{width:25.381955pt;}
._3_c00317{width:26.534709pt;}
.fs3_c00317{font-size:42.851236pt;}
.fs2_c00317{font-size:53.084512pt;}
.fs0_c00317{font-size:58.838910pt;}
.fs1_c00317{font-size:63.958908pt;}
.y0_c00317{bottom:0.000000pt;}
.y1_c00317{bottom:0.107500pt;}
.y8_c00317{bottom:0.754374pt;}
.ya_c00317{bottom:58.464935pt;}
.y3_c00317{bottom:69.508072pt;}
.y2_c00317{bottom:70.148072pt;}
.y28_c00317{bottom:117.947978pt;}
.y27_c00317{bottom:145.449167pt;}
.y26_c00317{bottom:172.789156pt;}
.y25_c00317{bottom:200.611678pt;}
.y24_c00317{bottom:228.272867pt;}
.y23_c00317{bottom:278.000314pt;}
.y22_c00317{bottom:349.312152pt;}
.y21_c00317{bottom:376.974675pt;}
.y20_c00317{bottom:404.475864pt;}
.y1f_c00317{bottom:432.135852pt;}
.y1e_c00317{bottom:459.640241pt;}
.y1d_c00317{bottom:487.300230pt;}
.y1c_c00317{bottom:514.802753pt;}
.y1b_c00317{bottom:542.302742pt;}
.y1a_c00317{bottom:569.965797pt;}
.y19_c00317{bottom:597.465786pt;}
.y18_c00317{bottom:625.126975pt;}
.y17_c00317{bottom:652.629498pt;}
.y16_c00317{bottom:680.290687pt;}
.y15_c00317{bottom:697.876013pt;}
.y14_c00317{bottom:712.112007pt;}
.y13_c00317{bottom:735.771864pt;}
.y12_c00317{bottom:763.434387pt;}
.y11_c00317{bottom:790.934376pt;}
.y10_c00317{bottom:818.595565pt;}
.yf_c00317{bottom:846.098087pt;}
.ye_c00317{bottom:873.759942pt;}
.yd_c00317{bottom:890.870602pt;}
.yc_c00317{bottom:903.821264pt;}
.yb_c00317{bottom:919.971924pt;}
.y9_c00317{bottom:982.325232pt;}
.y7_c00317{bottom:1004.875031pt;}
.y6_c00317{bottom:1023.582491pt;}
.y5_c00317{bottom:1041.969950pt;}
.y4_c00317{bottom:1060.357409pt;}
.h9_c00317{height:27.081981pt;}
.h7_c00317{height:33.549412pt;}
.h6_c00317{height:37.186191pt;}
.h2_c00317{height:41.187237pt;}
.h3_c00317{height:44.771235pt;}
.ha_c00317{height:57.307181pt;}
.h8_c00317{height:57.371140pt;}
.h4_c00317{height:57.499058pt;}
.h5_c00317{height:1121.912000pt;}
.h1_c00317{height:1122.559167pt;}
.h0_c00317{height:1122.666667pt;}
.w2_c00317{width:792.806400pt;}
.w1_c00317{width:793.257550pt;}
.w0_c00317{width:793.333333pt;}
.x0_c00317{left:0.000000pt;}
.x7_c00317{left:101.210009pt;}
.x2_c00317{left:111.992279pt;}
.x9_c00317{left:113.365145pt;}
.x8_c00317{left:160.533186pt;}
.xa_c00317{left:184.516436pt;}
.x4_c00317{left:225.354037pt;}
.x3_c00317{left:241.184654pt;}
.x6_c00317{left:327.843953pt;}
.x5_c00317{left:375.971425pt;}
.x1_c00317{left:445.528572pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d65b5f52712e765ef1de47f.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:0.916000;font-style:normal;font-weight:normal;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_06fc85728adf8d5199675249.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:0.632000;font-style:normal;font-weight:normal;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_0197708aab2d5f3307acad1e.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.112000;font-style:normal;font-weight:normal;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_3247436cd682d4f78be90324.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00318{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls4_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:50.848262px;}
.ls1_c00318{letter-spacing:50.856662px;}
.ls2_c00318{letter-spacing:50.862062px;}
.ls3_c00318{letter-spacing:50.868662px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:-17.988443px;}
.ws1_c00318{word-spacing:0.000000px;}
._0_c00318{margin-left:-1.339018px;}
._1_c00318{width:1.118548px;}
._4_c00318{width:2.118633px;}
._2_c00318{width:11.299146px;}
._3_c00318{width:12.758049px;}
._5_c00318{width:42.433602px;}
._6_c00318{width:44.084471px;}
.fc1_c00318{color:rgb(105,148,45);}
.fc0_c00318{color:rgb(35,31,32);}
.fs2_c00318{font-size:59.720076px;}
.fs0_c00318{font-size:66.193774px;}
.fs1_c00318{font-size:71.953771px;}
.y0_c00318{bottom:0.000000px;}
.y1_c00318{bottom:0.120938px;}
.y8_c00318{bottom:0.848671px;}
.ya_c00318{bottom:65.773052px;}
.y3_c00318{bottom:78.196581px;}
.y2_c00318{bottom:78.916581px;}
.y1b_c00318{bottom:544.614261px;}
.y1a_c00318{bottom:575.553098px;}
.y19_c00318{bottom:606.666986px;}
.y18_c00318{bottom:637.607923px;}
.y17_c00318{bottom:668.546761px;}
.y16_c00318{bottom:699.667099px;}
.y15_c00318{bottom:730.608036px;}
.y14_c00318{bottom:761.724174px;}
.y13_c00318{bottom:792.665861px;}
.y12_c00318{bottom:823.784699px;}
.y11_c00318{bottom:854.722187px;}
.y10_c00318{bottom:885.843124px;}
.yf_c00318{bottom:916.782262px;}
.ye_c00318{bottom:947.901099px;}
.yd_c00318{bottom:978.841437px;}
.yc_c00318{bottom:1009.961024px;}
.yb_c00318{bottom:1034.968414px;}
.y9_c00318{bottom:1105.115886px;}
.y7_c00318{bottom:1130.484410px;}
.y6_c00318{bottom:1151.530302px;}
.y5_c00318{bottom:1172.216194px;}
.y4_c00318{bottom:1192.902085px;}
.h7_c00318{height:37.743088px;}
.h6_c00318{height:41.834465px;}
.h2_c00318{height:46.335641px;}
.h3_c00318{height:50.367640px;}
.h8_c00318{height:64.470579px;}
.h4_c00318{height:64.686440px;}
.h5_c00318{height:1262.151000px;}
.h1_c00318{height:1262.879062px;}
.h0_c00318{height:1263.000000px;}
.w2_c00318{width:891.907200px;}
.w1_c00318{width:892.414744px;}
.w0_c00318{width:892.500000px;}
.x0_c00318{left:0.000000px;}
.x7_c00318{left:113.861261px;}
.x2_c00318{left:125.991314px;}
.x9_c00318{left:127.535788px;}
.x8_c00318{left:180.598402px;}
.xa_c00318{left:207.581478px;}
.xb_c00318{left:234.558887px;}
.x4_c00318{left:253.523292px;}
.x3_c00318{left:271.332735px;}
.x6_c00318{left:368.824447px;}
.x5_c00318{left:422.967853px;}
.x1_c00318{left:501.219643px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls4_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:45.198456pt;}
.ls1_c00318{letter-spacing:45.205922pt;}
.ls2_c00318{letter-spacing:45.210722pt;}
.ls3_c00318{letter-spacing:45.216589pt;}
.ws0_c00318{word-spacing:-15.989727pt;}
.ws1_c00318{word-spacing:0.000000pt;}
._0_c00318{margin-left:-1.190239pt;}
._1_c00318{width:0.994265pt;}
._4_c00318{width:1.883230pt;}
._2_c00318{width:10.043686pt;}
._3_c00318{width:11.340488pt;}
._5_c00318{width:37.718757pt;}
._6_c00318{width:39.186197pt;}
.fs2_c00318{font-size:53.084512pt;}
.fs0_c00318{font-size:58.838910pt;}
.fs1_c00318{font-size:63.958908pt;}
.y0_c00318{bottom:0.000000pt;}
.y1_c00318{bottom:0.107500pt;}
.y8_c00318{bottom:0.754374pt;}
.ya_c00318{bottom:58.464935pt;}
.y3_c00318{bottom:69.508072pt;}
.y2_c00318{bottom:70.148072pt;}
.y1b_c00318{bottom:484.101565pt;}
.y1a_c00318{bottom:511.602754pt;}
.y19_c00318{bottom:539.259543pt;}
.y18_c00318{bottom:566.762599pt;}
.y17_c00318{bottom:594.263788pt;}
.y16_c00318{bottom:621.926310pt;}
.y15_c00318{bottom:649.429366pt;}
.y14_c00318{bottom:677.088154pt;}
.y13_c00318{bottom:704.591877pt;}
.y12_c00318{bottom:732.253066pt;}
.y11_c00318{bottom:759.753055pt;}
.y10_c00318{bottom:787.416110pt;}
.yf_c00318{bottom:814.917566pt;}
.ye_c00318{bottom:842.578755pt;}
.yd_c00318{bottom:870.081277pt;}
.yc_c00318{bottom:897.743133pt;}
.yb_c00318{bottom:919.971924pt;}
.y9_c00318{bottom:982.325232pt;}
.y7_c00318{bottom:1004.875031pt;}
.y6_c00318{bottom:1023.582491pt;}
.y5_c00318{bottom:1041.969950pt;}
.y4_c00318{bottom:1060.357409pt;}
.h7_c00318{height:33.549412pt;}
.h6_c00318{height:37.186191pt;}
.h2_c00318{height:41.187237pt;}
.h3_c00318{height:44.771235pt;}
.h8_c00318{height:57.307181pt;}
.h4_c00318{height:57.499058pt;}
.h5_c00318{height:1121.912000pt;}
.h1_c00318{height:1122.559167pt;}
.h0_c00318{height:1122.666667pt;}
.w2_c00318{width:792.806400pt;}
.w1_c00318{width:793.257550pt;}
.w0_c00318{width:793.333333pt;}
.x0_c00318{left:0.000000pt;}
.x7_c00318{left:101.210009pt;}
.x2_c00318{left:111.992279pt;}
.x9_c00318{left:113.365145pt;}
.x8_c00318{left:160.531913pt;}
.xa_c00318{left:184.516869pt;}
.xb_c00318{left:208.496788pt;}
.x4_c00318{left:225.354037pt;}
.x3_c00318{left:241.184654pt;}
.x6_c00318{left:327.843953pt;}
.x5_c00318{left:375.971425pt;}
.x1_c00318{left:445.528572pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d65b5f52712e765ef1de47f.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:0.916000;font-style:normal;font-weight:normal;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_06fc85728adf8d5199675249.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:0.632000;font-style:normal;font-weight:normal;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_0197708aab2d5f3307acad1e.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.112000;font-style:normal;font-weight:normal;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_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:0.360019;font-style:normal;font-weight:normal;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_3247436cd682d4f78be90324.woff2')format("woff");}.ff6_c00319{font-family:ff6_c00319;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00319{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls4_c00319{letter-spacing:0.000000px;}
.ls1_c00319{letter-spacing:23.767082px;}
.ls0_c00319{letter-spacing:23.772722px;}
.ls2_c00319{letter-spacing:23.792402px;}
.ls3_c00319{letter-spacing:50.851262px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:-17.988443px;}
.ws1_c00319{word-spacing:0.000000px;}
._0_c00319{margin-left:-1.339018px;}
._1_c00319{width:1.118548px;}
._4_c00319{width:2.421499px;}
._5_c00319{width:9.341454px;}
._6_c00319{width:10.360495px;}
._2_c00319{width:20.658394px;}
._3_c00319{width:22.433747px;}
.fc1_c00319{color:rgb(105,148,45);}
.fc0_c00319{color:rgb(35,31,32);}
.fs2_c00319{font-size:59.720076px;}
.fs0_c00319{font-size:66.193774px;}
.fs1_c00319{font-size:71.953771px;}
.y0_c00319{bottom:0.000000px;}
.y1_c00319{bottom:0.120938px;}
.y8_c00319{bottom:0.848671px;}
.ya_c00319{bottom:65.773052px;}
.y3_c00319{bottom:78.196581px;}
.y2_c00319{bottom:78.916581px;}
.y21_c00319{bottom:364.909982px;}
.y20_c00319{bottom:416.537562px;}
.y1f_c00319{bottom:447.657149px;}
.y1e_c00319{bottom:478.594637px;}
.y1d_c00319{bottom:509.714975px;}
.y1c_c00319{bottom:540.653812px;}
.y1b_c00319{bottom:571.774150px;}
.y1a_c00319{bottom:602.713737px;}
.y19_c00319{bottom:633.651225px;}
.y18_c00319{bottom:664.771563px;}
.y17_c00319{bottom:695.713100px;}
.y16_c00319{bottom:726.831938px;}
.y15_c00319{bottom:757.771525px;}
.y14_c00319{bottom:788.893213px;}
.y13_c00319{bottom:813.892803px;}
.y12_c00319{bottom:863.001133px;}
.y11_c00319{bottom:894.119971px;}
.y10_c00319{bottom:925.238808px;}
.yf_c00319{bottom:957.437645px;}
.ye_c00319{bottom:988.557233px;}
.yd_c00319{bottom:1020.753970px;}
.yc_c00319{bottom:1053.131457px;}
.yb_c00319{bottom:1084.073895px;}
.y9_c00319{bottom:1105.115886px;}
.y7_c00319{bottom:1130.484410px;}
.y6_c00319{bottom:1151.530302px;}
.y5_c00319{bottom:1172.216194px;}
.y4_c00319{bottom:1192.902085px;}
.h7_c00319{height:37.743088px;}
.h6_c00319{height:41.834465px;}
.h2_c00319{height:46.335641px;}
.h3_c00319{height:50.367640px;}
.h8_c00319{height:64.470579px;}
.h4_c00319{height:64.686440px;}
.h5_c00319{height:1262.151000px;}
.h1_c00319{height:1262.879062px;}
.h0_c00319{height:1263.000000px;}
.w2_c00319{width:891.907200px;}
.w1_c00319{width:892.414744px;}
.w0_c00319{width:892.500000px;}
.x0_c00319{left:0.000000px;}
.x7_c00319{left:113.861261px;}
.x2_c00319{left:125.991314px;}
.x9_c00319{left:127.537287px;}
.x8_c00319{left:180.599834px;}
.xa_c00319{left:207.584439px;}
.xb_c00319{left:234.568774px;}
.x4_c00319{left:253.523292px;}
.x3_c00319{left:271.332735px;}
.x6_c00319{left:368.824447px;}
.x5_c00319{left:422.967853px;}
.x1_c00319{left:501.219643px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls4_c00319{letter-spacing:0.000000pt;}
.ls1_c00319{letter-spacing:21.126296pt;}
.ls0_c00319{letter-spacing:21.131309pt;}
.ls2_c00319{letter-spacing:21.148802pt;}
.ls3_c00319{letter-spacing:45.201122pt;}
.ws0_c00319{word-spacing:-15.989727pt;}
.ws1_c00319{word-spacing:0.000000pt;}
._0_c00319{margin-left:-1.190239pt;}
._1_c00319{width:0.994265pt;}
._4_c00319{width:2.152443pt;}
._5_c00319{width:8.303515pt;}
._6_c00319{width:9.209329pt;}
._2_c00319{width:18.363017pt;}
._3_c00319{width:19.941108pt;}
.fs2_c00319{font-size:53.084512pt;}
.fs0_c00319{font-size:58.838910pt;}
.fs1_c00319{font-size:63.958908pt;}
.y0_c00319{bottom:0.000000pt;}
.y1_c00319{bottom:0.107500pt;}
.y8_c00319{bottom:0.754374pt;}
.ya_c00319{bottom:58.464935pt;}
.y3_c00319{bottom:69.508072pt;}
.y2_c00319{bottom:70.148072pt;}
.y21_c00319{bottom:324.364429pt;}
.y20_c00319{bottom:370.255611pt;}
.y1f_c00319{bottom:397.917466pt;}
.y1e_c00319{bottom:425.417455pt;}
.y1d_c00319{bottom:453.079977pt;}
.y1c_c00319{bottom:480.581166pt;}
.y1b_c00319{bottom:508.243689pt;}
.y1a_c00319{bottom:535.745544pt;}
.y19_c00319{bottom:563.245533pt;}
.y18_c00319{bottom:590.908056pt;}
.y17_c00319{bottom:618.411645pt;}
.y16_c00319{bottom:646.072834pt;}
.y15_c00319{bottom:673.574689pt;}
.y14_c00319{bottom:701.238411pt;}
.y13_c00319{bottom:723.460269pt;}
.y12_c00319{bottom:767.112118pt;}
.y11_c00319{bottom:794.773307pt;}
.y10_c00319{bottom:822.434496pt;}
.yf_c00319{bottom:851.055685pt;}
.ye_c00319{bottom:878.717540pt;}
.yd_c00319{bottom:907.336862pt;}
.yc_c00319{bottom:936.116851pt;}
.yb_c00319{bottom:963.621240pt;}
.y9_c00319{bottom:982.325232pt;}
.y7_c00319{bottom:1004.875031pt;}
.y6_c00319{bottom:1023.582491pt;}
.y5_c00319{bottom:1041.969950pt;}
.y4_c00319{bottom:1060.357409pt;}
.h7_c00319{height:33.549412pt;}
.h6_c00319{height:37.186191pt;}
.h2_c00319{height:41.187237pt;}
.h3_c00319{height:44.771235pt;}
.h8_c00319{height:57.307181pt;}
.h4_c00319{height:57.499058pt;}
.h5_c00319{height:1121.912000pt;}
.h1_c00319{height:1122.559167pt;}
.h0_c00319{height:1122.666667pt;}
.w2_c00319{width:792.806400pt;}
.w1_c00319{width:793.257550pt;}
.w0_c00319{width:793.333333pt;}
.x0_c00319{left:0.000000pt;}
.x7_c00319{left:101.210009pt;}
.x2_c00319{left:111.992279pt;}
.x9_c00319{left:113.366477pt;}
.x8_c00319{left:160.533186pt;}
.xa_c00319{left:184.519501pt;}
.xb_c00319{left:208.505577pt;}
.x4_c00319{left:225.354037pt;}
.x3_c00319{left:241.184654pt;}
.x6_c00319{left:327.843953pt;}
.x5_c00319{left:375.971425pt;}
.x1_c00319{left:445.528572pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d65b5f52712e765ef1de47f.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:0.916000;font-style:normal;font-weight:normal;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_06fc85728adf8d5199675249.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:0.632000;font-style:normal;font-weight:normal;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_0197708aab2d5f3307acad1e.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.112000;font-style:normal;font-weight:normal;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_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:0.360019;font-style:normal;font-weight:normal;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_3247436cd682d4f78be90324.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00320{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls3_c00320{letter-spacing:0.000000px;}
.ls1_c00320{letter-spacing:23.767082px;}
.ls0_c00320{letter-spacing:23.772722px;}
.ls2_c00320{letter-spacing:50.851262px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00320{word-spacing:-33.560243px;}
.ws0_c00320{word-spacing:-17.988443px;}
.ws2_c00320{word-spacing:0.000000px;}
._0_c00320{margin-left:-1.339018px;}
._1_c00320{width:1.118548px;}
._2_c00320{width:2.415352px;}
._4_c00320{width:9.532954px;}
._3_c00320{width:10.972972px;}
.fc1_c00320{color:rgb(105,148,45);}
.fc0_c00320{color:rgb(35,31,32);}
.fs2_c00320{font-size:59.720076px;}
.fs0_c00320{font-size:66.193774px;}
.fs1_c00320{font-size:71.953771px;}
.y0_c00320{bottom:0.000000px;}
.y1_c00320{bottom:0.120938px;}
.y8_c00320{bottom:0.848671px;}
.y23_c00320{bottom:4.502617px;}
.ya_c00320{bottom:65.773052px;}
.y3_c00320{bottom:78.196581px;}
.y2_c00320{bottom:78.916581px;}
.y22_c00320{bottom:204.049800px;}
.y21_c00320{bottom:207.531479px;}
.y20_c00320{bottom:392.077522px;}
.y1f_c00320{bottom:454.137447px;}
.y1e_c00320{bottom:485.256284px;}
.y1d_c00320{bottom:516.193772px;}
.y1c_c00320{bottom:547.314110px;}
.y1b_c00320{bottom:578.250097px;}
.y1a_c00320{bottom:609.372535px;}
.y19_c00320{bottom:640.310022px;}
.y18_c00320{bottom:671.430360px;}
.y17_c00320{bottom:702.369198px;}
.y16_c00320{bottom:733.488035px;}
.y15_c00320{bottom:764.425073px;}
.y14_c00320{bottom:795.546010px;}
.y13_c00320{bottom:826.481848px;}
.y12_c00320{bottom:851.488488px;}
.y11_c00320{bottom:893.582971px;}
.y10_c00320{bottom:923.799559px;}
.yf_c00320{bottom:956.178396px;}
.ye_c00320{bottom:988.557233px;}
.yd_c00320{bottom:1020.753970px;}
.yc_c00320{bottom:1053.131457px;}
.yb_c00320{bottom:1084.073895px;}
.y9_c00320{bottom:1105.115886px;}
.y7_c00320{bottom:1130.484410px;}
.y6_c00320{bottom:1151.530302px;}
.y5_c00320{bottom:1172.216194px;}
.y4_c00320{bottom:1192.902085px;}
.h9_c00320{height:20.323800px;}
.h7_c00320{height:37.743088px;}
.h6_c00320{height:41.834465px;}
.h2_c00320{height:46.335641px;}
.h3_c00320{height:50.367640px;}
.h8_c00320{height:64.470579px;}
.h4_c00320{height:64.686440px;}
.h5_c00320{height:1262.151000px;}
.h1_c00320{height:1262.879062px;}
.h0_c00320{height:1263.000000px;}
.w3_c00320{width:3.238200px;}
.w2_c00320{width:891.907200px;}
.w1_c00320{width:892.414744px;}
.w0_c00320{width:892.500000px;}
.x0_c00320{left:0.000000px;}
.x7_c00320{left:113.861261px;}
.x2_c00320{left:125.991314px;}
.x9_c00320{left:127.537287px;}
.x8_c00320{left:180.599834px;}
.xa_c00320{left:207.584439px;}
.x4_c00320{left:253.523292px;}
.x3_c00320{left:271.332735px;}
.x6_c00320{left:368.824447px;}
.xc_c00320{left:390.785400px;}
.x5_c00320{left:422.967853px;}
.x1_c00320{left:501.219643px;}
.xb_c00320{left:694.229066px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls3_c00320{letter-spacing:0.000000pt;}
.ls1_c00320{letter-spacing:21.126296pt;}
.ls0_c00320{letter-spacing:21.131309pt;}
.ls2_c00320{letter-spacing:45.201122pt;}
.ws1_c00320{word-spacing:-29.831327pt;}
.ws0_c00320{word-spacing:-15.989727pt;}
.ws2_c00320{word-spacing:0.000000pt;}
._0_c00320{margin-left:-1.190239pt;}
._1_c00320{width:0.994265pt;}
._2_c00320{width:2.146979pt;}
._4_c00320{width:8.473737pt;}
._3_c00320{width:9.753753pt;}
.fs2_c00320{font-size:53.084512pt;}
.fs0_c00320{font-size:58.838910pt;}
.fs1_c00320{font-size:63.958908pt;}
.y0_c00320{bottom:0.000000pt;}
.y1_c00320{bottom:0.107500pt;}
.y8_c00320{bottom:0.754374pt;}
.y23_c00320{bottom:4.002326pt;}
.ya_c00320{bottom:58.464935pt;}
.y3_c00320{bottom:69.508072pt;}
.y2_c00320{bottom:70.148072pt;}
.y22_c00320{bottom:181.377600pt;}
.y21_c00320{bottom:184.472426pt;}
.y20_c00320{bottom:348.513353pt;}
.y1f_c00320{bottom:403.677730pt;}
.y1e_c00320{bottom:431.338919pt;}
.y1d_c00320{bottom:458.838908pt;}
.y1c_c00320{bottom:486.501431pt;}
.y1b_c00320{bottom:514.000086pt;}
.y1a_c00320{bottom:541.664475pt;}
.y19_c00320{bottom:569.164464pt;}
.y18_c00320{bottom:596.826987pt;}
.y17_c00320{bottom:624.328176pt;}
.y16_c00320{bottom:651.989365pt;}
.y15_c00320{bottom:679.488954pt;}
.y14_c00320{bottom:707.152009pt;}
.y13_c00320{bottom:734.650531pt;}
.y12_c00320{bottom:756.878656pt;}
.y11_c00320{bottom:794.295974pt;}
.y10_c00320{bottom:821.155164pt;}
.yf_c00320{bottom:849.936352pt;}
.ye_c00320{bottom:878.717540pt;}
.yd_c00320{bottom:907.336862pt;}
.yc_c00320{bottom:936.116851pt;}
.yb_c00320{bottom:963.621240pt;}
.y9_c00320{bottom:982.325232pt;}
.y7_c00320{bottom:1004.875031pt;}
.y6_c00320{bottom:1023.582491pt;}
.y5_c00320{bottom:1041.969950pt;}
.y4_c00320{bottom:1060.357409pt;}
.h9_c00320{height:18.065600pt;}
.h7_c00320{height:33.549412pt;}
.h6_c00320{height:37.186191pt;}
.h2_c00320{height:41.187237pt;}
.h3_c00320{height:44.771235pt;}
.h8_c00320{height:57.307181pt;}
.h4_c00320{height:57.499058pt;}
.h5_c00320{height:1121.912000pt;}
.h1_c00320{height:1122.559167pt;}
.h0_c00320{height:1122.666667pt;}
.w3_c00320{width:2.878400pt;}
.w2_c00320{width:792.806400pt;}
.w1_c00320{width:793.257550pt;}
.w0_c00320{width:793.333333pt;}
.x0_c00320{left:0.000000pt;}
.x7_c00320{left:101.210009pt;}
.x2_c00320{left:111.992279pt;}
.x9_c00320{left:113.366477pt;}
.x8_c00320{left:160.533186pt;}
.xa_c00320{left:184.519501pt;}
.x4_c00320{left:225.354037pt;}
.x3_c00320{left:241.184654pt;}
.x6_c00320{left:327.843953pt;}
.xc_c00320{left:347.364800pt;}
.x5_c00320{left:375.971425pt;}
.x1_c00320{left:445.528572pt;}
.xb_c00320{left:617.092503pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d65b5f52712e765ef1de47f.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:0.916000;font-style:normal;font-weight:normal;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_06fc85728adf8d5199675249.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.115000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.632000;font-style:normal;font-weight:normal;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_0197708aab2d5f3307acad1e.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:0.360019;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_128580e93db12181e59f88cd.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00321;src:url('chunks/assets/font_d403edc6841e71e6a37a8cd7.woff2')format("woff");}.ff7_c00321{font-family:ff7_c00321;line-height:1.113000;font-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_c00321{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls3_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:23.772722px;}
.ls2_c00321{letter-spacing:23.778362px;}
.ls1_c00321{letter-spacing:23.925090px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:0.000000px;}
._7_c00321{margin-left:-2.551715px;}
._0_c00321{margin-left:-1.339018px;}
._1_c00321{width:1.118548px;}
._9_c00321{width:4.136353px;}
._2_c00321{width:5.811626px;}
._3_c00321{width:7.014748px;}
._8_c00321{width:8.292307px;}
._4_c00321{width:9.564400px;}
._5_c00321{width:10.661914px;}
._a_c00321{width:13.620301px;}
._c_c00321{width:15.223073px;}
._b_c00321{width:16.481525px;}
._6_c00321{width:19.735637px;}
.fc1_c00321{color:rgb(105,148,45);}
.fc0_c00321{color:rgb(35,31,32);}
.fs2_c00321{font-size:59.720076px;}
.fs0_c00321{font-size:66.193774px;}
.fs1_c00321{font-size:71.953771px;}
.y0_c00321{bottom:0.000000px;}
.y1_c00321{bottom:0.120938px;}
.y8_c00321{bottom:0.848671px;}
.ya_c00321{bottom:65.773052px;}
.y3_c00321{bottom:78.196581px;}
.y2_c00321{bottom:78.916581px;}
.y1f_c00321{bottom:366.891182px;}
.y1e_c00321{bottom:397.115570px;}
.y1d_c00321{bottom:428.235157px;}
.y1c_c00321{bottom:459.173995px;}
.y1b_c00321{bottom:490.294332px;}
.y1a_c00321{bottom:521.231820px;}
.y19_c00321{bottom:552.352158px;}
.y18_c00321{bottom:598.039739px;}
.y17_c00321{bottom:678.268407px;}
.y16_c00321{bottom:709.204545px;}
.y15_c00321{bottom:740.326232px;}
.y14_c00321{bottom:771.263720px;}
.y13_c00321{bottom:802.384658px;}
.y12_c00321{bottom:834.580045px;}
.y11_c00321{bottom:865.702482px;}
.y10_c00321{bottom:896.638620px;}
.yf_c00321{bottom:927.760307px;}
.ye_c00321{bottom:958.697795px;}
.yd_c00321{bottom:991.076632px;}
.yc_c00321{bottom:1022.015470px;}
.yb_c00321{bottom:1053.136407px;}
.y9_c00321{bottom:1105.115886px;}
.y7_c00321{bottom:1130.484410px;}
.y6_c00321{bottom:1151.530302px;}
.y5_c00321{bottom:1172.216194px;}
.y4_c00321{bottom:1192.902085px;}
.h7_c00321{height:37.743088px;}
.h6_c00321{height:41.834465px;}
.h2_c00321{height:46.335641px;}
.h3_c00321{height:50.367640px;}
.h8_c00321{height:64.470579px;}
.h9_c00321{height:64.542533px;}
.h4_c00321{height:64.686440px;}
.h5_c00321{height:1262.151000px;}
.h1_c00321{height:1262.879062px;}
.h0_c00321{height:1263.000000px;}
.w2_c00321{width:891.907200px;}
.w1_c00321{width:892.414744px;}
.w0_c00321{width:892.500000px;}
.x0_c00321{left:0.000000px;}
.x7_c00321{left:113.861261px;}
.x2_c00321{left:125.991314px;}
.x9_c00321{left:127.535788px;}
.x8_c00321{left:180.599834px;}
.xa_c00321{left:207.583689px;}
.xb_c00321{left:234.562567px;}
.x4_c00321{left:253.523292px;}
.x3_c00321{left:271.332735px;}
.xc_c00321{left:315.508437px;}
.x6_c00321{left:368.824447px;}
.x5_c00321{left:422.967853px;}
.x1_c00321{left:501.219643px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls3_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:21.131309pt;}
.ls2_c00321{letter-spacing:21.136322pt;}
.ls1_c00321{letter-spacing:21.266747pt;}
.ws0_c00321{word-spacing:0.000000pt;}
._7_c00321{margin-left:-2.268191pt;}
._0_c00321{margin-left:-1.190239pt;}
._1_c00321{width:0.994265pt;}
._9_c00321{width:3.676759pt;}
._2_c00321{width:5.165889pt;}
._3_c00321{width:6.235332pt;}
._8_c00321{width:7.370940pt;}
._4_c00321{width:8.501689pt;}
._5_c00321{width:9.477257pt;}
._a_c00321{width:12.106934pt;}
._c_c00321{width:13.531620pt;}
._b_c00321{width:14.650245pt;}
._6_c00321{width:17.542789pt;}
.fs2_c00321{font-size:53.084512pt;}
.fs0_c00321{font-size:58.838910pt;}
.fs1_c00321{font-size:63.958908pt;}
.y0_c00321{bottom:0.000000pt;}
.y1_c00321{bottom:0.107500pt;}
.y8_c00321{bottom:0.754374pt;}
.ya_c00321{bottom:58.464935pt;}
.y3_c00321{bottom:69.508072pt;}
.y2_c00321{bottom:70.148072pt;}
.y1f_c00321{bottom:326.125495pt;}
.y1e_c00321{bottom:352.991617pt;}
.y1d_c00321{bottom:380.653473pt;}
.y1c_c00321{bottom:408.154662pt;}
.y1b_c00321{bottom:435.817184pt;}
.y1a_c00321{bottom:463.317173pt;}
.y19_c00321{bottom:490.979696pt;}
.y18_c00321{bottom:531.590879pt;}
.y17_c00321{bottom:602.905251pt;}
.y16_c00321{bottom:630.404040pt;}
.y15_c00321{bottom:658.067762pt;}
.y14_c00321{bottom:685.567751pt;}
.y13_c00321{bottom:713.230807pt;}
.y12_c00321{bottom:741.848929pt;}
.y11_c00321{bottom:769.513317pt;}
.y10_c00321{bottom:797.012106pt;}
.yf_c00321{bottom:824.675829pt;}
.ye_c00321{bottom:852.175818pt;}
.yd_c00321{bottom:880.957006pt;}
.yc_c00321{bottom:908.458195pt;}
.yb_c00321{bottom:936.121251pt;}
.y9_c00321{bottom:982.325232pt;}
.y7_c00321{bottom:1004.875031pt;}
.y6_c00321{bottom:1023.582491pt;}
.y5_c00321{bottom:1041.969950pt;}
.y4_c00321{bottom:1060.357409pt;}
.h7_c00321{height:33.549412pt;}
.h6_c00321{height:37.186191pt;}
.h2_c00321{height:41.187237pt;}
.h3_c00321{height:44.771235pt;}
.h8_c00321{height:57.307181pt;}
.h9_c00321{height:57.371140pt;}
.h4_c00321{height:57.499058pt;}
.h5_c00321{height:1121.912000pt;}
.h1_c00321{height:1122.559167pt;}
.h0_c00321{height:1122.666667pt;}
.w2_c00321{width:792.806400pt;}
.w1_c00321{width:793.257550pt;}
.w0_c00321{width:793.333333pt;}
.x0_c00321{left:0.000000pt;}
.x7_c00321{left:101.210009pt;}
.x2_c00321{left:111.992279pt;}
.x9_c00321{left:113.365145pt;}
.x8_c00321{left:160.533186pt;}
.xa_c00321{left:184.518835pt;}
.xb_c00321{left:208.500060pt;}
.x4_c00321{left:225.354037pt;}
.x3_c00321{left:241.184654pt;}
.xc_c00321{left:280.451944pt;}
.x6_c00321{left:327.843953pt;}
.x5_c00321{left:375.971425pt;}
.x1_c00321{left:445.528572pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d403edc6841e71e6a37a8cd7.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.113000;font-style: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.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls0_c00322{letter-spacing:0.000000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:0.000000px;}
._0_c00322{width:1.238958px;}
.fc0_c00322{color:rgb(35,31,32);}
.fs0_c00322{font-size:107.928557px;}
.y0_c00322{bottom:0.000000px;}
.y1_c00322{bottom:0.120938px;}
.y2_c00322{bottom:405.936400px;}
.h2_c00322{height:96.811915px;}
.h1_c00322{height:1262.879062px;}
.h0_c00322{height:1263.000000px;}
.w1_c00322{width:892.414744px;}
.w0_c00322{width:892.500000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:108.002001px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:0.000000pt;}
._0_c00322{width:1.101296pt;}
.fs0_c00322{font-size:95.936495pt;}
.y0_c00322{bottom:0.000000pt;}
.y1_c00322{bottom:0.107500pt;}
.y2_c00322{bottom:360.832356pt;}
.h2_c00322{height:86.055036pt;}
.h1_c00322{height:1122.559167pt;}
.h0_c00322{height:1122.666667pt;}
.w1_c00322{width:793.257550pt;}
.w0_c00322{width:793.333333pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:96.001778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b883c0cbd8f9398e2f4b324.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.087000;font-style:normal;font-weight:normal;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_bb1cd5b8f9abb8e4c2a24fad.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.000000,-0.249806,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249806,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249806,0.250000,0.000000,0,0);}
.m1_c00323{transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:-11.308168px;}
.ws2_c00323{word-spacing:-10.318744px;}
.ws9_c00323{word-spacing:0.000000px;}
.ws5_c00323{word-spacing:78.955097px;}
.ws7_c00323{word-spacing:98.289009px;}
.ws8_c00323{word-spacing:98.291740px;}
.ws6_c00323{word-spacing:98.303749px;}
.ws4_c00323{word-spacing:119.152173px;}
.ws3_c00323{word-spacing:139.459365px;}
.ws1_c00323{word-spacing:1116.477308px;}
._0_c00323{margin-left:-1.382537px;}
._2_c00323{width:1.056979px;}
._4_c00323{width:41.508673px;}
._6_c00323{width:89.282373px;}
._9_c00323{width:108.608800px;}
._8_c00323{width:129.490149px;}
._7_c00323{width:131.552422px;}
._5_c00323{width:149.493856px;}
._3_c00323{width:465.861610px;}
._1_c00323{width:1161.932038px;}
.fc2_c00323{color:transparent;}
.fc1_c00323{color:rgb(237,30,36);}
.fc0_c00323{color:rgb(35,31,32);}
.fs1_c00323{font-size:37.117785px;}
.fs0_c00323{font-size:40.676864px;}
.y6_c00323{bottom:-0.002973px;}
.y4_c00323{bottom:-0.000374px;}
.yf_c00323{bottom:-0.000035px;}
.y0_c00323{bottom:0.000000px;}
.y1_c00323{bottom:0.120938px;}
.y10_c00323{bottom:1.115156px;}
.y11_c00323{bottom:87.039809px;}
.y13_c00323{bottom:87.041458px;}
.yc_c00323{bottom:88.034027px;}
.yb_c00323{bottom:88.034249px;}
.y8_c00323{bottom:88.039770px;}
.ye_c00323{bottom:88.155000px;}
.yd_c00323{bottom:185.406267px;}
.ya_c00323{bottom:185.406488px;}
.y9_c00323{bottom:185.408412px;}
.y3_c00323{bottom:185.527800px;}
.y12_c00323{bottom:234.747296px;}
.y14_c00323{bottom:234.750294px;}
.y7_c00323{bottom:427.177892px;}
.y2_c00323{bottom:501.033362px;}
.y5_c00323{bottom:683.692200px;}
.h5_c00323{height:27.021748px;}
.h6_c00323{height:34.408187px;}
.h7_c00323{height:35.209800px;}
.h4_c00323{height:35.463600px;}
.h2_c00323{height:37.707453px;}
.h3_c00323{height:52.754400px;}
.h8_c00323{height:108.559800px;}
.h9_c00323{height:1261.619044px;}
.h1_c00323{height:1262.879062px;}
.h0_c00323{height:1263.000000px;}
.w6_c00323{width:0.763200px;}
.w3_c00323{width:1.650600px;}
.w4_c00323{width:8.899200px;}
.w5_c00323{width:10.171800px;}
.w2_c00323{width:11.694240px;}
.w7_c00323{width:891.930263px;}
.w1_c00323{width:892.414744px;}
.w0_c00323{width:892.500000px;}
.x1e_c00323{left:-1.526377px;}
.x0_c00323{left:0.000000px;}
.xd_c00323{left:6.863281px;}
.xb_c00323{left:8.386381px;}
.x3_c00323{left:9.404790px;}
.x1_c00323{left:112.684849px;}
.x2_c00323{left:140.156100px;}
.x4_c00323{left:162.644279px;}
.x5_c00323{left:187.302169px;}
.x6_c00323{left:224.294254px;}
.x7_c00323{left:248.954994px;}
.x8_c00323{left:273.617084px;}
.x9_c00323{left:285.944274px;}
.xa_c00323{left:289.899000px;}
.xc_c00323{left:291.549600px;}
.xe_c00323{left:323.064715px;}
.xf_c00323{left:347.723955px;}
.x10_c00323{left:372.383195px;}
.x11_c00323{left:409.375280px;}
.x12_c00323{left:434.033170px;}
.x13_c00323{left:446.366675px;}
.x14_c00323{left:458.695260px;}
.x15_c00323{left:483.356000px;}
.x16_c00323{left:520.344636px;}
.x17_c00323{left:557.332521px;}
.x18_c00323{left:569.663221px;}
.x19_c00323{left:581.994626px;}
.x1a_c00323{left:618.984611px;}
.x1b_c00323{left:655.973846px;}
.x1c_c00323{left:684.334800px;}
.x1d_c00323{left:694.506600px;}
.x1f_c00323{left:729.262771px;}
.x20_c00323{left:766.247806px;}
.x21_c00323{left:778.580621px;}
.x22_c00323{left:790.911321px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:-10.051705pt;}
.ws2_c00323{word-spacing:-9.172217pt;}
.ws9_c00323{word-spacing:0.000000pt;}
.ws5_c00323{word-spacing:70.182308pt;}
.ws7_c00323{word-spacing:87.368008pt;}
.ws8_c00323{word-spacing:87.370435pt;}
.ws6_c00323{word-spacing:87.381110pt;}
.ws4_c00323{word-spacing:105.913043pt;}
.ws3_c00323{word-spacing:123.963880pt;}
.ws1_c00323{word-spacing:992.424274pt;}
._0_c00323{margin-left:-1.228922pt;}
._2_c00323{width:0.939537pt;}
._4_c00323{width:36.896598pt;}
._6_c00323{width:79.362109pt;}
._9_c00323{width:96.541155pt;}
._8_c00323{width:115.102355pt;}
._7_c00323{width:116.935486pt;}
._5_c00323{width:132.883428pt;}
._3_c00323{width:414.099209pt;}
._1_c00323{width:1032.828479pt;}
.fs1_c00323{font-size:32.993587pt;}
.fs0_c00323{font-size:36.157212pt;}
.y6_c00323{bottom:-0.002643pt;}
.y4_c00323{bottom:-0.000333pt;}
.yf_c00323{bottom:-0.000031pt;}
.y0_c00323{bottom:0.000000pt;}
.y1_c00323{bottom:0.107500pt;}
.y10_c00323{bottom:0.991250pt;}
.y11_c00323{bottom:77.368719pt;}
.y13_c00323{bottom:77.370185pt;}
.yc_c00323{bottom:78.252469pt;}
.yb_c00323{bottom:78.252666pt;}
.y8_c00323{bottom:78.257573pt;}
.ye_c00323{bottom:78.360000pt;}
.yd_c00323{bottom:164.805570pt;}
.ya_c00323{bottom:164.805767pt;}
.y9_c00323{bottom:164.807478pt;}
.y3_c00323{bottom:164.913600pt;}
.y12_c00323{bottom:208.664263pt;}
.y14_c00323{bottom:208.666928pt;}
.y7_c00323{bottom:379.713681pt;}
.y2_c00323{bottom:445.362988pt;}
.y5_c00323{bottom:607.726400pt;}
.h5_c00323{height:24.019331pt;}
.h6_c00323{height:30.585055pt;}
.h7_c00323{height:31.297600pt;}
.h4_c00323{height:31.523200pt;}
.h2_c00323{height:33.517736pt;}
.h3_c00323{height:46.892800pt;}
.h8_c00323{height:96.497600pt;}
.h9_c00323{height:1121.439150pt;}
.h1_c00323{height:1122.559167pt;}
.h0_c00323{height:1122.666667pt;}
.w6_c00323{width:0.678400pt;}
.w3_c00323{width:1.467200pt;}
.w4_c00323{width:7.910400pt;}
.w5_c00323{width:9.041600pt;}
.w2_c00323{width:10.394880pt;}
.w7_c00323{width:792.826900pt;}
.w1_c00323{width:793.257550pt;}
.w0_c00323{width:793.333333pt;}
.x1e_c00323{left:-1.356780pt;}
.x0_c00323{left:0.000000pt;}
.xd_c00323{left:6.100694pt;}
.xb_c00323{left:7.454561pt;}
.x3_c00323{left:8.359813pt;}
.x1_c00323{left:100.164310pt;}
.x2_c00323{left:124.583200pt;}
.x4_c00323{left:144.572692pt;}
.x5_c00323{left:166.490817pt;}
.x6_c00323{left:199.372670pt;}
.x7_c00323{left:221.293328pt;}
.x8_c00323{left:243.215186pt;}
.x9_c00323{left:254.172688pt;}
.xa_c00323{left:257.688000pt;}
.xc_c00323{left:259.155200pt;}
.xe_c00323{left:287.168635pt;}
.xf_c00323{left:309.087960pt;}
.x10_c00323{left:331.007284pt;}
.x11_c00323{left:363.889138pt;}
.x12_c00323{left:385.807262pt;}
.x13_c00323{left:396.770378pt;}
.x14_c00323{left:407.729120pt;}
.x15_c00323{left:429.649778pt;}
.x16_c00323{left:462.528565pt;}
.x17_c00323{left:495.406685pt;}
.x18_c00323{left:506.367307pt;}
.x19_c00323{left:517.328556pt;}
.x1a_c00323{left:550.208543pt;}
.x1b_c00323{left:583.087863pt;}
.x1c_c00323{left:608.297600pt;}
.x1d_c00323{left:617.339200pt;}
.x1f_c00323{left:648.233574pt;}
.x20_c00323{left:681.109161pt;}
.x21_c00323{left:692.071663pt;}
.x22_c00323{left:703.032285pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.113000;font-style: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.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls0_c00324{letter-spacing:0.000000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00324{word-spacing:0.000000px;}
._0_c00324{margin-left:-1.031213px;}
.fc0_c00324{color:rgb(35,31,32);}
.fs0_c00324{font-size:120.185952px;}
.y0_c00324{bottom:0.000000px;}
.y1_c00324{bottom:0.120938px;}
.y3_c00324{bottom:402.854051px;}
.y2_c00324{bottom:454.672881px;}
.h2_c00324{height:107.806799px;}
.h1_c00324{height:1262.879062px;}
.h0_c00324{height:1263.000000px;}
.w1_c00324{width:892.414744px;}
.w0_c00324{width:892.500000px;}
.x0_c00324{left:0.000000px;}
.x1_c00324{left:431.843171px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:0.000000pt;}
._0_c00324{margin-left:-0.916634pt;}
.fs0_c00324{font-size:106.831957pt;}
.y0_c00324{bottom:0.000000pt;}
.y1_c00324{bottom:0.107500pt;}
.y3_c00324{bottom:358.092490pt;}
.y2_c00324{bottom:404.153672pt;}
.h2_c00324{height:95.828266pt;}
.h1_c00324{height:1122.559167pt;}
.h0_c00324{height:1122.666667pt;}
.w1_c00324{width:793.257550pt;}
.w0_c00324{width:793.333333pt;}
.x0_c00324{left:0.000000pt;}
.x1_c00324{left:383.860596pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:0.916000;font-style:normal;font-weight:normal;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_101e6aac74ea0346accb38ae.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:0.632000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.113000;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:0.000000px;}
._0_c00325{margin-left:-1.391431px;}
._1_c00325{width:1.101836px;}
._3_c00325{width:1411.857921px;}
._2_c00325{width:1747.199466px;}
.fc1_c00325{color:rgb(105,148,45);}
.fc0_c00325{color:rgb(35,31,32);}
.fs0_c00325{font-size:66.209374px;}
.fs1_c00325{font-size:71.968771px;}
.fs3_c00325{font-size:84.202766px;}
.fs2_c00325{font-size:131.700547px;}
.y0_c00325{bottom:0.000000px;}
.y1_c00325{bottom:0.120938px;}
.y7_c00325{bottom:0.556171px;}
.y9_c00325{bottom:57.871805px;}
.y2_c00325{bottom:62.449437px;}
.y21_c00325{bottom:225.916738px;}
.y1f_c00325{bottom:264.959773px;}
.y20_c00325{bottom:264.961723px;}
.y1e_c00325{bottom:307.600706px;}
.y1d_c00325{bottom:307.603106px;}
.y1c_c00325{bottom:350.422688px;}
.y1b_c00325{bottom:350.423738px;}
.y19_c00325{bottom:393.242721px;}
.y1a_c00325{bottom:393.244671px;}
.y18_c00325{bottom:435.885154px;}
.y17_c00325{bottom:435.885304px;}
.y15_c00325{bottom:478.703687px;}
.y16_c00325{bottom:478.704137px;}
.y14_c00325{bottom:521.344620px;}
.y13_c00325{bottom:564.168103px;}
.y12_c00325{bottom:606.987086px;}
.y11_c00325{bottom:649.626069px;}
.y10_c00325{bottom:692.451052px;}
.yf_c00325{bottom:735.090035px;}
.ye_c00325{bottom:777.909017px;}
.yd_c00325{bottom:820.731000px;}
.yc_c00325{bottom:906.193466px;}
.yb_c00325{bottom:1012.162424px;}
.ya_c00325{bottom:1065.239902px;}
.y8_c00325{bottom:1085.570894px;}
.y6_c00325{bottom:1131.344660px;}
.y5_c00325{bottom:1152.036252px;}
.y4_c00325{bottom:1172.727093px;}
.y3_c00325{bottom:1194.315985px;}
.h3_c00325{height:41.844324px;}
.h2_c00325{height:46.346561px;}
.h4_c00325{height:50.378140px;}
.h7_c00325{height:75.529881px;}
.h6_c00325{height:118.135391px;}
.h5_c00325{height:1262.431829px;}
.h1_c00325{height:1262.879062px;}
.h0_c00325{height:1263.000000px;}
.w2_c00325{width:892.099575px;}
.w1_c00325{width:892.414744px;}
.w0_c00325{width:892.500000px;}
.x0_c00325{left:0.000000px;}
.x2_c00325{left:127.597454px;}
.x4_c00325{left:267.214089px;}
.x3_c00325{left:285.027730px;}
.x6_c00325{left:315.756249px;}
.x17_c00325{left:390.423219px;}
.x10_c00325{left:418.489708px;}
.x5_c00325{left:436.696128px;}
.x9_c00325{left:469.765687px;}
.x16_c00325{left:471.025687px;}
.x12_c00325{left:472.824186px;}
.xb_c00325{left:478.584184px;}
.x15_c00325{left:480.381183px;}
.x11_c00325{left:493.158178px;}
.xe_c00325{left:496.038177px;}
.x14_c00325{left:509.530671px;}
.x1_c00325{left:547.349125px;}
.xf_c00325{left:570.702147px;}
.x18_c00325{left:593.008638px;}
.x13_c00325{left:685.131101px;}
.xc_c00325{left:749.182575px;}
.xa_c00325{left:754.578073px;}
.xd_c00325{left:759.618071px;}
.x8_c00325{left:765.015069px;}
.x7_c00325{left:808.375552px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws0_c00325{word-spacing:0.000000pt;}
._0_c00325{margin-left:-1.236827pt;}
._1_c00325{width:0.979410pt;}
._3_c00325{width:1254.984819pt;}
._2_c00325{width:1553.066192pt;}
.fs0_c00325{font-size:58.852776pt;}
.fs1_c00325{font-size:63.972241pt;}
.fs3_c00325{font-size:74.846903pt;}
.fs2_c00325{font-size:117.067153pt;}
.y0_c00325{bottom:0.000000pt;}
.y1_c00325{bottom:0.107500pt;}
.y7_c00325{bottom:0.494374pt;}
.y9_c00325{bottom:51.441605pt;}
.y2_c00325{bottom:55.510611pt;}
.y21_c00325{bottom:200.814878pt;}
.y1f_c00325{bottom:235.519798pt;}
.y20_c00325{bottom:235.521531pt;}
.y1e_c00325{bottom:273.422849pt;}
.y1d_c00325{bottom:273.424983pt;}
.y1c_c00325{bottom:311.486834pt;}
.y1b_c00325{bottom:311.487767pt;}
.y19_c00325{bottom:349.549086pt;}
.y1a_c00325{bottom:349.550819pt;}
.y18_c00325{bottom:387.453470pt;}
.y17_c00325{bottom:387.453604pt;}
.y15_c00325{bottom:425.514389pt;}
.y16_c00325{bottom:425.514789pt;}
.y14_c00325{bottom:463.417440pt;}
.y13_c00325{bottom:501.482758pt;}
.y12_c00325{bottom:539.544076pt;}
.y11_c00325{bottom:577.445394pt;}
.y10_c00325{bottom:615.512046pt;}
.yf_c00325{bottom:653.413364pt;}
.ye_c00325{bottom:691.474682pt;}
.yd_c00325{bottom:729.538667pt;}
.yc_c00325{bottom:805.505303pt;}
.yb_c00325{bottom:899.699932pt;}
.ya_c00325{bottom:946.879913pt;}
.y8_c00325{bottom:964.951906pt;}
.y6_c00325{bottom:1005.639698pt;}
.y5_c00325{bottom:1024.032224pt;}
.y4_c00325{bottom:1042.424083pt;}
.y3_c00325{bottom:1061.614209pt;}
.h3_c00325{height:37.194955pt;}
.h2_c00325{height:41.196944pt;}
.h4_c00325{height:44.780569pt;}
.h7_c00325{height:67.137672pt;}
.h6_c00325{height:105.009236pt;}
.h5_c00325{height:1122.161626pt;}
.h1_c00325{height:1122.559167pt;}
.h0_c00325{height:1122.666667pt;}
.w2_c00325{width:792.977400pt;}
.w1_c00325{width:793.257550pt;}
.w0_c00325{width:793.333333pt;}
.x0_c00325{left:0.000000pt;}
.x2_c00325{left:113.419960pt;}
.x4_c00325{left:237.523634pt;}
.x3_c00325{left:253.357982pt;}
.x6_c00325{left:280.672221pt;}
.x17_c00325{left:347.042861pt;}
.x10_c00325{left:371.990851pt;}
.x5_c00325{left:388.174336pt;}
.x9_c00325{left:417.569500pt;}
.x16_c00325{left:418.689499pt;}
.x12_c00325{left:420.288165pt;}
.xb_c00325{left:425.408163pt;}
.x15_c00325{left:427.005496pt;}
.x11_c00325{left:438.362825pt;}
.xe_c00325{left:440.922824pt;}
.x14_c00325{left:452.916152pt;}
.x1_c00325{left:486.532555pt;}
.xf_c00325{left:507.290797pt;}
.x18_c00325{left:527.118789pt;}
.x13_c00325{left:609.005423pt;}
.xc_c00325{left:665.940067pt;}
.xa_c00325{left:670.736065pt;}
.xd_c00325{left:675.216063pt;}
.x8_c00325{left:680.013395pt;}
.x7_c00325{left:718.556046pt;}
}





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





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





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





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





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





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





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





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





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





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





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

.ir_c00336:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
.sc__c00336{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
}
.y0_c00336{bottom:0.000000px;}
.h0_c00336{height:1263.000000px;}
.w0_c00336{width:892.500000px;}
.x0_c00336{left:0.000000px;}
@media print{
.y0_c00336{bottom:0.000000pt;}
.h0_c00336{height:1122.666667pt;}
.w0_c00336{width:793.333333pt;}
.x0_c00336{left:0.000000pt;}
}





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

.ir_c00337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
.sc__c00337{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
}
.y0_c00337{bottom:0.000000px;}
.h0_c00337{height:1263.000000px;}
.w0_c00337{width:892.500000px;}
.x0_c00337{left:0.000000px;}
@media print{
.y0_c00337{bottom:0.000000pt;}
.h0_c00337{height:1122.666667pt;}
.w0_c00337{width:793.333333pt;}
.x0_c00337{left:0.000000pt;}
}





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

.ir_c00338:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
.sc__c00338{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
}
.y0_c00338{bottom:0.000000px;}
.h0_c00338{height:1263.000000px;}
.w0_c00338{width:892.500000px;}
.x0_c00338{left:0.000000px;}
@media print{
.y0_c00338{bottom:0.000000pt;}
.h0_c00338{height:1122.666667pt;}
.w0_c00338{width:793.333333pt;}
.x0_c00338{left:0.000000pt;}
}





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

.ir_c00339:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
.sc__c00339{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
}
.y0_c00339{bottom:0.000000px;}
.h0_c00339{height:1263.000000px;}
.w0_c00339{width:892.500000px;}
.x0_c00339{left:0.000000px;}
@media print{
.y0_c00339{bottom:0.000000pt;}
.h0_c00339{height:1122.666667pt;}
.w0_c00339{width:793.333333pt;}
.x0_c00339{left:0.000000pt;}
}





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





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





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





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





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





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





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





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.113000;font-style: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.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls0_c00349{letter-spacing:0.000000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:0.000000px;}
._0_c00349{margin-left:-1.030773px;}
.fc0_c00349{color:rgb(35,31,32);}
.fs0_c00349{font-size:120.185952px;}
.y0_c00349{bottom:0.000000px;}
.y1_c00349{bottom:0.120938px;}
.y3_c00349{bottom:402.854051px;}
.y2_c00349{bottom:454.672881px;}
.h2_c00349{height:107.806799px;}
.h1_c00349{height:1262.879062px;}
.h0_c00349{height:1263.000000px;}
.w1_c00349{width:892.414744px;}
.w0_c00349{width:892.500000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:107.988651px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:0.000000pt;}
._0_c00349{margin-left:-0.916243pt;}
.fs0_c00349{font-size:106.831957pt;}
.y0_c00349{bottom:0.000000pt;}
.y1_c00349{bottom:0.107500pt;}
.y3_c00349{bottom:358.092490pt;}
.y2_c00349{bottom:404.153672pt;}
.h2_c00349{height:95.828266pt;}
.h1_c00349{height:1122.559167pt;}
.h0_c00349{height:1122.666667pt;}
.w1_c00349{width:793.257550pt;}
.w0_c00349{width:793.333333pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:95.989912pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.115000;font-style:normal;font-weight:normal;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_6156ab1b529e4a7782d41337.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:1.112000;font-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_c00350{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls0_c00350{letter-spacing:0.000000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00350{word-spacing:-21.050692px;}
.ws0_c00350{word-spacing:-16.552343px;}
.ws3_c00350{word-spacing:-14.933274px;}
.ws4_c00350{word-spacing:-4.217814px;}
.ws2_c00350{word-spacing:-3.581464px;}
.ws6_c00350{word-spacing:-3.580802px;}
.ws5_c00350{word-spacing:-3.580404px;}
.ws7_c00350{word-spacing:0.000000px;}
._3_c00350{margin-left:-1.150820px;}
._0_c00350{width:1.102012px;}
._5_c00350{width:2.711134px;}
._8_c00350{width:3.976786px;}
._2_c00350{width:5.916360px;}
._7_c00350{width:7.694658px;}
._4_c00350{width:9.726166px;}
._6_c00350{width:11.572953px;}
._9_c00350{width:13.141668px;}
._1_c00350{width:14.498453px;}
.fc1_c00350{color:rgb(105,148,45);}
.fc0_c00350{color:rgb(35,31,32);}
.fs4_c00350{font-size:41.741203px;}
.fs2_c00350{font-size:59.733096px;}
.fs0_c00350{font-size:66.209374px;}
.fs1_c00350{font-size:71.968771px;}
.fs3_c00350{font-size:84.202766px;}
.y0_c00350{bottom:0.000000px;}
.y3_c00350{bottom:0.120938px;}
.y7_c00350{bottom:0.556171px;}
.y2_c00350{bottom:3.957899px;}
.y9_c00350{bottom:65.791352px;}
.y1_c00350{bottom:74.623320px;}
.y3e_c00350{bottom:102.493788px;}
.y3d_c00350{bottom:140.638322px;}
.y3c_c00350{bottom:159.889765px;}
.y3b_c00350{bottom:177.162108px;}
.y3a_c00350{bottom:205.228746px;}
.y39_c00350{bottom:222.321840px;}
.y38_c00350{bottom:250.389228px;}
.y37_c00350{bottom:267.661722px;}
.y36_c00350{bottom:284.931215px;}
.y35_c00350{bottom:302.025208px;}
.y34_c00350{bottom:319.294701px;}
.y33_c00350{bottom:336.567194px;}
.y32_c00350{bottom:353.661787px;}
.y31_c00350{bottom:381.729176px;}
.y30_c00350{bottom:398.998669px;}
.y2f_c00350{bottom:416.272662px;}
.y2e_c00350{bottom:433.545155px;}
.y2d_c00350{bottom:433.545455px;}
.y2c_c00350{bottom:450.817648px;}
.y2b_c00350{bottom:467.907441px;}
.y2a_c00350{bottom:495.795430px;}
.y29_c00350{bottom:534.478615px;}
.y27_c00350{bottom:563.985403px;}
.y28_c00350{bottom:563.988103px;}
.y26_c00350{bottom:581.259096px;}
.y25_c00350{bottom:598.350089px;}
.y24_c00350{bottom:615.622582px;}
.y23_c00350{bottom:632.896575px;}
.y22_c00350{bottom:650.166069px;}
.y20_c00350{bottom:667.437362px;}
.y21_c00350{bottom:667.438562px;}
.y1f_c00350{bottom:684.711055px;}
.y1e_c00350{bottom:701.805048px;}
.y1d_c00350{bottom:719.077541px;}
.y1c_c00350{bottom:736.350034px;}
.y1b_c00350{bottom:753.621027px;}
.y1a_c00350{bottom:770.892020px;}
.y19_c00350{bottom:787.983013px;}
.y18_c00350{bottom:805.258506px;}
.y17_c00350{bottom:822.528000px;}
.y16_c00350{bottom:839.800493px;}
.y15_c00350{bottom:839.802293px;}
.y14_c00350{bottom:857.074486px;}
.y13_c00350{bottom:874.346979px;}
.y12_c00350{bottom:891.439472px;}
.y11_c00350{bottom:908.711965px;}
.y10_c00350{bottom:925.984458px;}
.yf_c00350{bottom:943.256951px;}
.ye_c00350{bottom:960.344044px;}
.yd_c00350{bottom:999.029929px;}
.yc_c00350{bottom:1038.976413px;}
.yb_c00350{bottom:1066.861402px;}
.ya_c00350{bottom:1079.815397px;}
.y8_c00350{bottom:1106.080386px;}
.y6_c00350{bottom:1151.494902px;}
.y5_c00350{bottom:1172.185744px;}
.y4_c00350{bottom:1192.876585px;}
.h1_c00350{height:18.172260px;}
.h9_c00350{height:26.756111px;}
.h7_c00350{height:38.288915px;}
.h6_c00350{height:42.440208px;}
.h2_c00350{height:46.346561px;}
.h4_c00350{height:50.378140px;}
.hc_c00350{height:53.520854px;}
.hb_c00350{height:59.522227px;}
.ha_c00350{height:64.699925px;}
.h8_c00350{height:75.698287px;}
.h5_c00350{height:1262.431829px;}
.h3_c00350{height:1262.879062px;}
.h0_c00350{height:1263.000000px;}
.w17_c00350{width:2.880000px;}
.w11_c00350{width:4.676400px;}
.wb_c00350{width:4.680000px;}
.w5_c00350{width:5.038200px;}
.w16_c00350{width:6.474600px;}
.w8_c00350{width:6.476400px;}
.w12_c00350{width:7.198200px;}
.we_c00350{width:7.376400px;}
.w15_c00350{width:7.378200px;}
.w14_c00350{width:8.094600px;}
.w13_c00350{width:8.274600px;}
.w6_c00350{width:8.276400px;}
.w7_c00350{width:8.278200px;}
.wd_c00350{width:9.358200px;}
.wa_c00350{width:10.076400px;}
.wf_c00350{width:11.334600px;}
.w3_c00350{width:11.874600px;}
.w1_c00350{width:12.058200px;}
.w9_c00350{width:12.414600px;}
.w4_c00350{width:15.472800px;}
.w2_c00350{width:23.929200px;}
.w10_c00350{width:25.911000px;}
.wc_c00350{width:28.063800px;}
.w19_c00350{width:892.099575px;}
.w18_c00350{width:892.414744px;}
.w0_c00350{width:892.500000px;}
.x0_c00350{left:0.000000px;}
.x1d_c00350{left:113.887229px;}
.x22_c00350{left:128.820025px;}
.x23_c00350{left:143.933867px;}
.x25_c00350{left:147.351756px;}
.x26_c00350{left:193.951797px;}
.x27_c00350{left:212.844290px;}
.x1b_c00350{left:253.542308px;}
.x1a_c00350{left:269.015236px;}
.x1f_c00350{left:306.942252px;}
.x1e_c00350{left:405.715713px;}
.x1c_c00350{left:423.021349px;}
.x1_c00350{left:496.623600px;}
.x2_c00350{left:508.681800px;}
.x3_c00350{left:532.611000px;}
.x4_c00350{left:544.485600px;}
.x5_c00350{left:559.958400px;}
.x6_c00350{left:564.636600px;}
.x7_c00350{left:576.869400px;}
.x20_c00350{left:580.416143px;}
.x8_c00350{left:585.147600px;}
.x9_c00350{left:590.364000px;}
.xa_c00350{left:606.555000px;}
.xb_c00350{left:616.631400px;}
.xc_c00350{left:621.309600px;}
.xd_c00350{left:625.809600px;}
.xe_c00350{left:653.873400px;}
.xf_c00350{left:661.971600px;}
.x10_c00350{left:673.126200px;}
.x11_c00350{left:683.920800px;}
.x12_c00350{left:708.751800px;}
.x13_c00350{left:713.428200px;}
.x14_c00350{left:720.626400px;}
.x15_c00350{left:725.306400px;}
.x16_c00350{left:733.581000px;}
.x17_c00350{left:741.675600px;}
.x18_c00350{left:749.053800px;}
.x19_c00350{left:755.528400px;}
.x24_c00350{left:772.930566px;}
.x21_c00350{left:775.090565px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws1_c00350{word-spacing:-18.711726pt;}
.ws0_c00350{word-spacing:-14.713194pt;}
.ws3_c00350{word-spacing:-13.274021pt;}
.ws4_c00350{word-spacing:-3.749168pt;}
.ws2_c00350{word-spacing:-3.183523pt;}
.ws6_c00350{word-spacing:-3.182935pt;}
.ws5_c00350{word-spacing:-3.182582pt;}
.ws7_c00350{word-spacing:0.000000pt;}
._3_c00350{margin-left:-1.022951pt;}
._0_c00350{width:0.979567pt;}
._5_c00350{width:2.409897pt;}
._8_c00350{width:3.534921pt;}
._2_c00350{width:5.258986pt;}
._7_c00350{width:6.839696pt;}
._4_c00350{width:8.645481pt;}
._6_c00350{width:10.287070pt;}
._9_c00350{width:11.681483pt;}
._1_c00350{width:12.887514pt;}
.fs4_c00350{font-size:37.103292pt;}
.fs2_c00350{font-size:53.096085pt;}
.fs0_c00350{font-size:58.852776pt;}
.fs1_c00350{font-size:63.972241pt;}
.fs3_c00350{font-size:74.846903pt;}
.y0_c00350{bottom:0.000000pt;}
.y3_c00350{bottom:0.107500pt;}
.y7_c00350{bottom:0.494374pt;}
.y2_c00350{bottom:3.518132pt;}
.y9_c00350{bottom:58.481202pt;}
.y1_c00350{bottom:66.331840pt;}
.y3e_c00350{bottom:91.105589pt;}
.y3d_c00350{bottom:125.011842pt;}
.y3c_c00350{bottom:142.124235pt;}
.y3b_c00350{bottom:157.477429pt;}
.y3a_c00350{bottom:182.425552pt;}
.y39_c00350{bottom:197.619413pt;}
.y38_c00350{bottom:222.568203pt;}
.y37_c00350{bottom:237.921530pt;}
.y36_c00350{bottom:253.272191pt;}
.y35_c00350{bottom:268.466851pt;}
.y34_c00350{bottom:283.817512pt;}
.y33_c00350{bottom:299.170839pt;}
.y32_c00350{bottom:314.366033pt;}
.y31_c00350{bottom:339.314823pt;}
.y30_c00350{bottom:354.665484pt;}
.y2f_c00350{bottom:370.020144pt;}
.y2e_c00350{bottom:385.373471pt;}
.y2d_c00350{bottom:385.373738pt;}
.y2c_c00350{bottom:400.726798pt;}
.y2b_c00350{bottom:415.917726pt;}
.y2a_c00350{bottom:440.707049pt;}
.y29_c00350{bottom:475.092102pt;}
.y27_c00350{bottom:501.320358pt;}
.y28_c00350{bottom:501.322758pt;}
.y26_c00350{bottom:516.674752pt;}
.y25_c00350{bottom:531.866746pt;}
.y24_c00350{bottom:547.220073pt;}
.y23_c00350{bottom:562.574734pt;}
.y22_c00350{bottom:577.925394pt;}
.y20_c00350{bottom:593.277655pt;}
.y21_c00350{bottom:593.278721pt;}
.y1f_c00350{bottom:608.632049pt;}
.y1e_c00350{bottom:623.826709pt;}
.y1d_c00350{bottom:639.180036pt;}
.y1c_c00350{bottom:654.533364pt;}
.y1b_c00350{bottom:669.885357pt;}
.y1a_c00350{bottom:685.237351pt;}
.y19_c00350{bottom:700.429345pt;}
.y18_c00350{bottom:715.785339pt;}
.y17_c00350{bottom:731.136000pt;}
.y16_c00350{bottom:746.489327pt;}
.y15_c00350{bottom:746.490927pt;}
.y14_c00350{bottom:761.843987pt;}
.y13_c00350{bottom:777.197315pt;}
.y12_c00350{bottom:792.390642pt;}
.y11_c00350{bottom:807.743969pt;}
.y10_c00350{bottom:823.097296pt;}
.yf_c00350{bottom:838.450623pt;}
.ye_c00350{bottom:853.639151pt;}
.yd_c00350{bottom:888.026604pt;}
.yc_c00350{bottom:923.534589pt;}
.yb_c00350{bottom:948.321246pt;}
.ya_c00350{bottom:959.835908pt;}
.y8_c00350{bottom:983.182565pt;}
.y6_c00350{bottom:1023.551024pt;}
.y5_c00350{bottom:1041.942883pt;}
.y4_c00350{bottom:1060.334742pt;}
.h1_c00350{height:16.153120pt;}
.h9_c00350{height:23.783210pt;}
.h7_c00350{height:34.034591pt;}
.h6_c00350{height:37.724630pt;}
.h2_c00350{height:41.196944pt;}
.h4_c00350{height:44.780569pt;}
.hc_c00350{height:47.574093pt;}
.hb_c00350{height:52.908646pt;}
.ha_c00350{height:57.511045pt;}
.h8_c00350{height:67.287366pt;}
.h5_c00350{height:1122.161626pt;}
.h3_c00350{height:1122.559167pt;}
.h0_c00350{height:1122.666667pt;}
.w17_c00350{width:2.560000pt;}
.w11_c00350{width:4.156800pt;}
.wb_c00350{width:4.160000pt;}
.w5_c00350{width:4.478400pt;}
.w16_c00350{width:5.755200pt;}
.w8_c00350{width:5.756800pt;}
.w12_c00350{width:6.398400pt;}
.we_c00350{width:6.556800pt;}
.w15_c00350{width:6.558400pt;}
.w14_c00350{width:7.195200pt;}
.w13_c00350{width:7.355200pt;}
.w6_c00350{width:7.356800pt;}
.w7_c00350{width:7.358400pt;}
.wd_c00350{width:8.318400pt;}
.wa_c00350{width:8.956800pt;}
.wf_c00350{width:10.075200pt;}
.w3_c00350{width:10.555200pt;}
.w1_c00350{width:10.718400pt;}
.w9_c00350{width:11.035200pt;}
.w4_c00350{width:13.753600pt;}
.w2_c00350{width:21.270400pt;}
.w10_c00350{width:23.032000pt;}
.wc_c00350{width:24.945600pt;}
.w19_c00350{width:792.977400pt;}
.w18_c00350{width:793.257550pt;}
.w0_c00350{width:793.333333pt;}
.x0_c00350{left:0.000000pt;}
.x1d_c00350{left:101.233093pt;}
.x22_c00350{left:114.506689pt;}
.x23_c00350{left:127.941215pt;}
.x25_c00350{left:130.979339pt;}
.x26_c00350{left:172.401598pt;}
.x27_c00350{left:189.194924pt;}
.x1b_c00350{left:225.370940pt;}
.x1a_c00350{left:239.124654pt;}
.x1f_c00350{left:272.837558pt;}
.x1e_c00350{left:360.636189pt;}
.x1c_c00350{left:376.018977pt;}
.x1_c00350{left:441.443200pt;}
.x2_c00350{left:452.161600pt;}
.x3_c00350{left:473.432000pt;}
.x4_c00350{left:483.987200pt;}
.x5_c00350{left:497.740800pt;}
.x6_c00350{left:501.899200pt;}
.x7_c00350{left:512.772800pt;}
.x20_c00350{left:515.925460pt;}
.x8_c00350{left:520.131200pt;}
.x9_c00350{left:524.768000pt;}
.xa_c00350{left:539.160000pt;}
.xb_c00350{left:548.116800pt;}
.xc_c00350{left:552.275200pt;}
.xd_c00350{left:556.275200pt;}
.xe_c00350{left:581.220800pt;}
.xf_c00350{left:588.419200pt;}
.x10_c00350{left:598.334400pt;}
.x11_c00350{left:607.929600pt;}
.x12_c00350{left:630.001600pt;}
.x13_c00350{left:634.158400pt;}
.x14_c00350{left:640.556800pt;}
.x15_c00350{left:644.716800pt;}
.x16_c00350{left:652.072000pt;}
.x17_c00350{left:659.267200pt;}
.x18_c00350{left:665.825600pt;}
.x19_c00350{left:671.580800pt;}
.x24_c00350{left:687.049392pt;}
.x21_c00350{left:688.969391pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.115000;font-style:normal;font-weight:normal;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_6156ab1b529e4a7782d41337.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:1.112000;font-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_c00351{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls0_c00351{letter-spacing:0.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:-16.552343px;}
.ws6_c00351{word-spacing:-14.933274px;}
.ws1_c00351{word-spacing:-3.581464px;}
.ws2_c00351{word-spacing:-3.581133px;}
.ws4_c00351{word-spacing:-3.580802px;}
.ws5_c00351{word-spacing:-3.580404px;}
.ws3_c00351{word-spacing:-3.580073px;}
.ws7_c00351{word-spacing:0.000000px;}
._2_c00351{margin-left:-1.071847px;}
._0_c00351{width:1.102012px;}
._4_c00351{width:2.405977px;}
._3_c00351{width:3.473495px;}
._7_c00351{width:5.209402px;}
._1_c00351{width:6.359444px;}
._8_c00351{width:7.775582px;}
._5_c00351{width:9.577677px;}
._a_c00351{width:11.657973px;}
._6_c00351{width:13.433127px;}
._9_c00351{width:14.996666px;}
.fc1_c00351{color:rgb(105,148,45);}
.fc0_c00351{color:rgb(35,31,32);}
.fs2_c00351{font-size:59.733096px;}
.fs0_c00351{font-size:66.209374px;}
.fs1_c00351{font-size:71.968771px;}
.y0_c00351{bottom:0.000000px;}
.y3_c00351{bottom:0.120938px;}
.y7_c00351{bottom:0.556171px;}
.y2_c00351{bottom:3.957899px;}
.y9_c00351{bottom:65.791352px;}
.y1_c00351{bottom:74.623320px;}
.y38_c00351{bottom:114.729433px;}
.y37_c00351{bottom:152.869767px;}
.y36_c00351{bottom:191.012202px;}
.y35_c00351{bottom:229.156737px;}
.y34_c00351{bottom:248.589229px;}
.y33_c00351{bottom:265.681722px;}
.y31_c00351{bottom:282.953015px;}
.y32_c00351{bottom:282.954215px;}
.y30_c00351{bottom:300.225208px;}
.y2f_c00351{bottom:317.494702px;}
.y2e_c00351{bottom:334.591245px;}
.y2d_c00351{bottom:373.273679px;}
.y2c_c00351{bottom:402.778667px;}
.y2b_c00351{bottom:419.871161px;}
.y2a_c00351{bottom:437.142754px;}
.y29_c00351{bottom:465.210142px;}
.y28_c00351{bottom:482.302636px;}
.y27_c00351{bottom:499.576629px;}
.y26_c00351{bottom:516.849122px;}
.y25_c00351{bottom:534.120115px;}
.y24_c00351{bottom:551.391108px;}
.y23_c00351{bottom:568.668101px;}
.y22_c00351{bottom:585.756094px;}
.y21_c00351{bottom:603.027087px;}
.y20_c00351{bottom:620.299580px;}
.y1f_c00351{bottom:648.187569px;}
.y1e_c00351{bottom:665.458562px;}
.y1d_c00351{bottom:682.732555px;}
.y1c_c00351{bottom:700.005049px;}
.y1b_c00351{bottom:717.277542px;}
.y1a_c00351{bottom:734.550035px;}
.y19_c00351{bottom:751.642528px;}
.y18_c00351{bottom:768.916521px;}
.y17_c00351{bottom:786.189014px;}
.y16_c00351{bottom:803.458507px;}
.y15_c00351{bottom:820.731000px;}
.y14_c00351{bottom:837.821843px;}
.y13_c00351{bottom:865.888482px;}
.y12_c00351{bottom:883.162475px;}
.y11_c00351{bottom:900.434968px;}
.y10_c00351{bottom:917.527462px;}
.yf_c00351{bottom:945.595450px;}
.ye_c00351{bottom:962.866443px;}
.yd_c00351{bottom:979.957737px;}
.yc_c00351{bottom:1007.846475px;}
.yb_c00351{bottom:1046.528910px;}
.ya_c00351{bottom:1085.750894px;}
.y8_c00351{bottom:1106.080386px;}
.y6_c00351{bottom:1151.494902px;}
.y5_c00351{bottom:1172.185744px;}
.y4_c00351{bottom:1192.876585px;}
.h1_c00351{height:18.172260px;}
.h7_c00351{height:38.288915px;}
.h6_c00351{height:42.440208px;}
.h2_c00351{height:46.346561px;}
.h4_c00351{height:50.378140px;}
.ha_c00351{height:53.520854px;}
.h9_c00351{height:59.522227px;}
.h8_c00351{height:64.699925px;}
.h5_c00351{height:1262.431829px;}
.h3_c00351{height:1262.879062px;}
.h0_c00351{height:1263.000000px;}
.w17_c00351{width:2.880000px;}
.w11_c00351{width:4.676400px;}
.wb_c00351{width:4.680000px;}
.w5_c00351{width:5.038200px;}
.w16_c00351{width:6.474600px;}
.w8_c00351{width:6.476400px;}
.w12_c00351{width:7.198200px;}
.we_c00351{width:7.376400px;}
.w15_c00351{width:7.378200px;}
.w14_c00351{width:8.094600px;}
.w13_c00351{width:8.274600px;}
.w6_c00351{width:8.276400px;}
.w7_c00351{width:8.278200px;}
.wd_c00351{width:9.358200px;}
.wa_c00351{width:10.076400px;}
.wf_c00351{width:11.334600px;}
.w3_c00351{width:11.874600px;}
.w1_c00351{width:12.058200px;}
.w9_c00351{width:12.414600px;}
.w4_c00351{width:15.472800px;}
.w2_c00351{width:23.929200px;}
.w10_c00351{width:25.911000px;}
.wc_c00351{width:28.063800px;}
.w19_c00351{width:892.099575px;}
.w18_c00351{width:892.414744px;}
.w0_c00351{width:892.500000px;}
.x0_c00351{left:0.000000px;}
.x1d_c00351{left:113.887229px;}
.x1f_c00351{left:128.820025px;}
.x20_c00351{left:143.933867px;}
.x26_c00351{left:147.351756px;}
.x1b_c00351{left:253.542308px;}
.x1a_c00351{left:269.015236px;}
.x22_c00351{left:298.122256px;}
.x23_c00351{left:314.496249px;}
.x24_c00351{left:342.922738px;}
.x25_c00351{left:359.476731px;}
.x1c_c00351{left:423.021349px;}
.x1_c00351{left:496.623600px;}
.x2_c00351{left:508.681800px;}
.x3_c00351{left:532.611000px;}
.x4_c00351{left:544.485600px;}
.x5_c00351{left:559.958400px;}
.x6_c00351{left:564.636600px;}
.x7_c00351{left:576.869400px;}
.x8_c00351{left:585.147600px;}
.x9_c00351{left:590.364000px;}
.xa_c00351{left:606.555000px;}
.xb_c00351{left:616.631400px;}
.xc_c00351{left:621.309600px;}
.xd_c00351{left:625.809600px;}
.xe_c00351{left:653.873400px;}
.xf_c00351{left:661.971600px;}
.x10_c00351{left:673.126200px;}
.x11_c00351{left:683.920800px;}
.x12_c00351{left:708.751800px;}
.x13_c00351{left:713.428200px;}
.x14_c00351{left:720.626400px;}
.x15_c00351{left:725.306400px;}
.x16_c00351{left:733.581000px;}
.x17_c00351{left:741.675600px;}
.x18_c00351{left:749.053800px;}
.x19_c00351{left:755.528400px;}
.x21_c00351{left:772.930566px;}
.x1e_c00351{left:775.090565px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:-14.713194pt;}
.ws6_c00351{word-spacing:-13.274021pt;}
.ws1_c00351{word-spacing:-3.183523pt;}
.ws2_c00351{word-spacing:-3.183229pt;}
.ws4_c00351{word-spacing:-3.182935pt;}
.ws5_c00351{word-spacing:-3.182582pt;}
.ws3_c00351{word-spacing:-3.182287pt;}
.ws7_c00351{word-spacing:0.000000pt;}
._2_c00351{margin-left:-0.952753pt;}
._0_c00351{width:0.979567pt;}
._4_c00351{width:2.138646pt;}
._3_c00351{width:3.087551pt;}
._7_c00351{width:4.630580pt;}
._1_c00351{width:5.652839pt;}
._8_c00351{width:6.911629pt;}
._5_c00351{width:8.513491pt;}
._a_c00351{width:10.362642pt;}
._6_c00351{width:11.940558pt;}
._9_c00351{width:13.330370pt;}
.fs2_c00351{font-size:53.096085pt;}
.fs0_c00351{font-size:58.852776pt;}
.fs1_c00351{font-size:63.972241pt;}
.y0_c00351{bottom:0.000000pt;}
.y3_c00351{bottom:0.107500pt;}
.y7_c00351{bottom:0.494374pt;}
.y2_c00351{bottom:3.518132pt;}
.y9_c00351{bottom:58.481202pt;}
.y1_c00351{bottom:66.331840pt;}
.y38_c00351{bottom:101.981718pt;}
.y37_c00351{bottom:135.884238pt;}
.y36_c00351{bottom:169.788624pt;}
.y35_c00351{bottom:203.694877pt;}
.y34_c00351{bottom:220.968204pt;}
.y33_c00351{bottom:236.161531pt;}
.y31_c00351{bottom:251.513791pt;}
.y32_c00351{bottom:251.514858pt;}
.y30_c00351{bottom:266.866852pt;}
.y2f_c00351{bottom:282.217513pt;}
.y2e_c00351{bottom:297.414440pt;}
.y2d_c00351{bottom:331.798826pt;}
.y2c_c00351{bottom:358.025482pt;}
.y2b_c00351{bottom:373.218809pt;}
.y2a_c00351{bottom:388.571337pt;}
.y29_c00351{bottom:413.520127pt;}
.y28_c00351{bottom:428.713454pt;}
.y27_c00351{bottom:444.068114pt;}
.y26_c00351{bottom:459.421442pt;}
.y25_c00351{bottom:474.773435pt;}
.y24_c00351{bottom:490.125429pt;}
.y23_c00351{bottom:505.482757pt;}
.y22_c00351{bottom:520.672084pt;}
.y21_c00351{bottom:536.024078pt;}
.y20_c00351{bottom:551.377405pt;}
.y1f_c00351{bottom:576.166728pt;}
.y1e_c00351{bottom:591.518722pt;}
.y1d_c00351{bottom:606.873383pt;}
.y1c_c00351{bottom:622.226710pt;}
.y1b_c00351{bottom:637.580037pt;}
.y1a_c00351{bottom:652.933364pt;}
.y19_c00351{bottom:668.126691pt;}
.y18_c00351{bottom:683.481352pt;}
.y17_c00351{bottom:698.834679pt;}
.y16_c00351{bottom:714.185340pt;}
.y15_c00351{bottom:729.538667pt;}
.y14_c00351{bottom:744.730528pt;}
.y13_c00351{bottom:769.678651pt;}
.y12_c00351{bottom:785.033311pt;}
.y11_c00351{bottom:800.386639pt;}
.y10_c00351{bottom:815.579966pt;}
.yf_c00351{bottom:840.529289pt;}
.ye_c00351{bottom:855.881283pt;}
.yd_c00351{bottom:871.073544pt;}
.yc_c00351{bottom:895.863534pt;}
.yb_c00351{bottom:930.247920pt;}
.ya_c00351{bottom:965.111906pt;}
.y8_c00351{bottom:983.182565pt;}
.y6_c00351{bottom:1023.551024pt;}
.y5_c00351{bottom:1041.942883pt;}
.y4_c00351{bottom:1060.334742pt;}
.h1_c00351{height:16.153120pt;}
.h7_c00351{height:34.034591pt;}
.h6_c00351{height:37.724630pt;}
.h2_c00351{height:41.196944pt;}
.h4_c00351{height:44.780569pt;}
.ha_c00351{height:47.574093pt;}
.h9_c00351{height:52.908646pt;}
.h8_c00351{height:57.511045pt;}
.h5_c00351{height:1122.161626pt;}
.h3_c00351{height:1122.559167pt;}
.h0_c00351{height:1122.666667pt;}
.w17_c00351{width:2.560000pt;}
.w11_c00351{width:4.156800pt;}
.wb_c00351{width:4.160000pt;}
.w5_c00351{width:4.478400pt;}
.w16_c00351{width:5.755200pt;}
.w8_c00351{width:5.756800pt;}
.w12_c00351{width:6.398400pt;}
.we_c00351{width:6.556800pt;}
.w15_c00351{width:6.558400pt;}
.w14_c00351{width:7.195200pt;}
.w13_c00351{width:7.355200pt;}
.w6_c00351{width:7.356800pt;}
.w7_c00351{width:7.358400pt;}
.wd_c00351{width:8.318400pt;}
.wa_c00351{width:8.956800pt;}
.wf_c00351{width:10.075200pt;}
.w3_c00351{width:10.555200pt;}
.w1_c00351{width:10.718400pt;}
.w9_c00351{width:11.035200pt;}
.w4_c00351{width:13.753600pt;}
.w2_c00351{width:21.270400pt;}
.w10_c00351{width:23.032000pt;}
.wc_c00351{width:24.945600pt;}
.w19_c00351{width:792.977400pt;}
.w18_c00351{width:793.257550pt;}
.w0_c00351{width:793.333333pt;}
.x0_c00351{left:0.000000pt;}
.x1d_c00351{left:101.233093pt;}
.x1f_c00351{left:114.506689pt;}
.x20_c00351{left:127.941215pt;}
.x26_c00351{left:130.979339pt;}
.x1b_c00351{left:225.370940pt;}
.x1a_c00351{left:239.124654pt;}
.x22_c00351{left:264.997561pt;}
.x23_c00351{left:279.552221pt;}
.x24_c00351{left:304.820211pt;}
.x25_c00351{left:319.534872pt;}
.x1c_c00351{left:376.018977pt;}
.x1_c00351{left:441.443200pt;}
.x2_c00351{left:452.161600pt;}
.x3_c00351{left:473.432000pt;}
.x4_c00351{left:483.987200pt;}
.x5_c00351{left:497.740800pt;}
.x6_c00351{left:501.899200pt;}
.x7_c00351{left:512.772800pt;}
.x8_c00351{left:520.131200pt;}
.x9_c00351{left:524.768000pt;}
.xa_c00351{left:539.160000pt;}
.xb_c00351{left:548.116800pt;}
.xc_c00351{left:552.275200pt;}
.xd_c00351{left:556.275200pt;}
.xe_c00351{left:581.220800pt;}
.xf_c00351{left:588.419200pt;}
.x10_c00351{left:598.334400pt;}
.x11_c00351{left:607.929600pt;}
.x12_c00351{left:630.001600pt;}
.x13_c00351{left:634.158400pt;}
.x14_c00351{left:640.556800pt;}
.x15_c00351{left:644.716800pt;}
.x16_c00351{left:652.072000pt;}
.x17_c00351{left:659.267200pt;}
.x18_c00351{left:665.825600pt;}
.x19_c00351{left:671.580800pt;}
.x21_c00351{left:687.049392pt;}
.x1e_c00351{left:688.969391pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.115000;font-style:normal;font-weight:normal;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_6156ab1b529e4a7782d41337.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.112000;font-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_c00352{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls0_c00352{letter-spacing:0.000000px;}
.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:-16.552343px;}
.ws2_c00352{word-spacing:-3.580404px;}
.ws1_c00352{word-spacing:-3.580073px;}
.ws3_c00352{word-spacing:0.000000px;}
._2_c00352{margin-left:-1.072683px;}
._0_c00352{width:1.102012px;}
._a_c00352{width:2.657788px;}
._7_c00352{width:3.862937px;}
._5_c00352{width:5.160344px;}
._1_c00352{width:6.359444px;}
._8_c00352{width:8.195714px;}
._4_c00352{width:9.202859px;}
._9_c00352{width:10.796415px;}
._6_c00352{width:12.540698px;}
._3_c00352{width:15.054919px;}
.fc1_c00352{color:rgb(105,148,45);}
.fc0_c00352{color:rgb(35,31,32);}
.fs2_c00352{font-size:59.733096px;}
.fs0_c00352{font-size:66.209374px;}
.fs1_c00352{font-size:71.968771px;}
.y0_c00352{bottom:0.000000px;}
.y3_c00352{bottom:0.120938px;}
.y7_c00352{bottom:0.556171px;}
.y2_c00352{bottom:3.957899px;}
.y9_c00352{bottom:65.791352px;}
.y1_c00352{bottom:74.623320px;}
.y2e_c00352{bottom:427.968157px;}
.y2d_c00352{bottom:443.617651px;}
.y2c_c00352{bottom:460.893144px;}
.y2b_c00352{bottom:478.165637px;}
.y2a_c00352{bottom:495.436630px;}
.y29_c00352{bottom:495.436930px;}
.y28_c00352{bottom:512.709123px;}
.y27_c00352{bottom:529.983117px;}
.y26_c00352{bottom:547.075610px;}
.y25_c00352{bottom:564.348103px;}
.y24_c00352{bottom:581.619096px;}
.y23_c00352{bottom:598.890089px;}
.y22_c00352{bottom:616.162582px;}
.y21_c00352{bottom:633.433575px;}
.y20_c00352{bottom:650.526068px;}
.y1f_c00352{bottom:667.798561px;}
.y1e_c00352{bottom:685.072555px;}
.y1d_c00352{bottom:702.345048px;}
.y1c_c00352{bottom:719.617541px;}
.y1b_c00352{bottom:736.710034px;}
.y1a_c00352{bottom:753.981027px;}
.y19_c00352{bottom:771.252020px;}
.y18_c00352{bottom:788.523013px;}
.y17_c00352{bottom:805.798506px;}
.y16_c00352{bottom:823.067999px;}
.y15_c00352{bottom:840.160493px;}
.y14_c00352{bottom:857.434486px;}
.y13_c00352{bottom:874.706979px;}
.y12_c00352{bottom:891.979472px;}
.y11_c00352{bottom:909.251965px;}
.y10_c00352{bottom:926.525958px;}
.yf_c00352{bottom:943.616951px;}
.ye_c00352{bottom:960.889444px;}
.yd_c00352{bottom:978.157737px;}
.yc_c00352{bottom:1006.044376px;}
.yb_c00352{bottom:1044.728911px;}
.ya_c00352{bottom:1084.670895px;}
.y8_c00352{bottom:1106.080386px;}
.y6_c00352{bottom:1151.494902px;}
.y5_c00352{bottom:1172.185744px;}
.y4_c00352{bottom:1192.876585px;}
.h1_c00352{height:18.172260px;}
.h7_c00352{height:38.288915px;}
.h6_c00352{height:42.440208px;}
.h2_c00352{height:46.346561px;}
.h4_c00352{height:50.378140px;}
.ha_c00352{height:53.520854px;}
.h9_c00352{height:59.522227px;}
.h8_c00352{height:64.699925px;}
.h5_c00352{height:1262.431829px;}
.h3_c00352{height:1262.879062px;}
.h0_c00352{height:1263.000000px;}
.w17_c00352{width:2.880000px;}
.w11_c00352{width:4.676400px;}
.wb_c00352{width:4.680000px;}
.w5_c00352{width:5.038200px;}
.w16_c00352{width:6.474600px;}
.w8_c00352{width:6.476400px;}
.w12_c00352{width:7.198200px;}
.we_c00352{width:7.376400px;}
.w15_c00352{width:7.378200px;}
.w14_c00352{width:8.094600px;}
.w13_c00352{width:8.274600px;}
.w6_c00352{width:8.276400px;}
.w7_c00352{width:8.278200px;}
.wd_c00352{width:9.358200px;}
.wa_c00352{width:10.076400px;}
.wf_c00352{width:11.334600px;}
.w3_c00352{width:11.874600px;}
.w1_c00352{width:12.058200px;}
.w9_c00352{width:12.414600px;}
.w4_c00352{width:15.472800px;}
.w2_c00352{width:23.929200px;}
.w10_c00352{width:25.911000px;}
.wc_c00352{width:28.063800px;}
.w19_c00352{width:892.099575px;}
.w18_c00352{width:892.414744px;}
.w0_c00352{width:892.500000px;}
.x0_c00352{left:0.000000px;}
.x1d_c00352{left:113.887229px;}
.x21_c00352{left:128.820025px;}
.x22_c00352{left:143.933867px;}
.x1b_c00352{left:253.542308px;}
.x1e_c00352{left:264.840269px;}
.x1a_c00352{left:269.015236px;}
.x1c_c00352{left:423.021349px;}
.x1_c00352{left:496.623600px;}
.x2_c00352{left:508.681800px;}
.x3_c00352{left:532.611000px;}
.x4_c00352{left:544.485600px;}
.x5_c00352{left:559.958400px;}
.x6_c00352{left:564.636600px;}
.x7_c00352{left:576.869400px;}
.x8_c00352{left:585.147600px;}
.x9_c00352{left:590.364000px;}
.xa_c00352{left:606.555000px;}
.xb_c00352{left:616.631400px;}
.xc_c00352{left:621.309600px;}
.x1f_c00352{left:622.699626px;}
.xd_c00352{left:625.809600px;}
.xe_c00352{left:653.873400px;}
.xf_c00352{left:661.971600px;}
.x10_c00352{left:673.126200px;}
.x11_c00352{left:683.920800px;}
.x12_c00352{left:708.751800px;}
.x13_c00352{left:713.428200px;}
.x14_c00352{left:720.626400px;}
.x15_c00352{left:725.306400px;}
.x16_c00352{left:733.581000px;}
.x17_c00352{left:741.675600px;}
.x18_c00352{left:749.053800px;}
.x19_c00352{left:755.528400px;}
.x23_c00352{left:772.930566px;}
.x20_c00352{left:775.090565px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:-14.713194pt;}
.ws2_c00352{word-spacing:-3.182582pt;}
.ws1_c00352{word-spacing:-3.182287pt;}
.ws3_c00352{word-spacing:0.000000pt;}
._2_c00352{margin-left:-0.953496pt;}
._0_c00352{width:0.979567pt;}
._a_c00352{width:2.362478pt;}
._7_c00352{width:3.433722pt;}
._5_c00352{width:4.586972pt;}
._1_c00352{width:5.652839pt;}
._8_c00352{width:7.285079pt;}
._4_c00352{width:8.180320pt;}
._9_c00352{width:9.596813pt;}
._6_c00352{width:11.147287pt;}
._3_c00352{width:13.382150pt;}
.fs2_c00352{font-size:53.096085pt;}
.fs0_c00352{font-size:58.852776pt;}
.fs1_c00352{font-size:63.972241pt;}
.y0_c00352{bottom:0.000000pt;}
.y3_c00352{bottom:0.107500pt;}
.y7_c00352{bottom:0.494374pt;}
.y2_c00352{bottom:3.518132pt;}
.y9_c00352{bottom:58.481202pt;}
.y1_c00352{bottom:66.331840pt;}
.y2e_c00352{bottom:380.416140pt;}
.y2d_c00352{bottom:394.326801pt;}
.y2c_c00352{bottom:409.682795pt;}
.y2b_c00352{bottom:425.036122pt;}
.y2a_c00352{bottom:440.388116pt;}
.y29_c00352{bottom:440.388383pt;}
.y28_c00352{bottom:455.741443pt;}
.y27_c00352{bottom:471.096104pt;}
.y26_c00352{bottom:486.289431pt;}
.y25_c00352{bottom:501.642758pt;}
.y24_c00352{bottom:516.994752pt;}
.y23_c00352{bottom:532.346746pt;}
.y22_c00352{bottom:547.700073pt;}
.y21_c00352{bottom:563.052067pt;}
.y20_c00352{bottom:578.245394pt;}
.y1f_c00352{bottom:593.598721pt;}
.y1e_c00352{bottom:608.953382pt;}
.y1d_c00352{bottom:624.306709pt;}
.y1c_c00352{bottom:639.660036pt;}
.y1b_c00352{bottom:654.853363pt;}
.y1a_c00352{bottom:670.205357pt;}
.y19_c00352{bottom:685.557351pt;}
.y18_c00352{bottom:700.909345pt;}
.y17_c00352{bottom:716.265339pt;}
.y16_c00352{bottom:731.615999pt;}
.y15_c00352{bottom:746.809327pt;}
.y14_c00352{bottom:762.163987pt;}
.y13_c00352{bottom:777.517314pt;}
.y12_c00352{bottom:792.870642pt;}
.y11_c00352{bottom:808.223969pt;}
.y10_c00352{bottom:823.578629pt;}
.yf_c00352{bottom:838.770623pt;}
.ye_c00352{bottom:854.123950pt;}
.yd_c00352{bottom:869.473544pt;}
.yc_c00352{bottom:894.261668pt;}
.yb_c00352{bottom:928.647921pt;}
.ya_c00352{bottom:964.151906pt;}
.y8_c00352{bottom:983.182565pt;}
.y6_c00352{bottom:1023.551024pt;}
.y5_c00352{bottom:1041.942883pt;}
.y4_c00352{bottom:1060.334742pt;}
.h1_c00352{height:16.153120pt;}
.h7_c00352{height:34.034591pt;}
.h6_c00352{height:37.724630pt;}
.h2_c00352{height:41.196944pt;}
.h4_c00352{height:44.780569pt;}
.ha_c00352{height:47.574093pt;}
.h9_c00352{height:52.908646pt;}
.h8_c00352{height:57.511045pt;}
.h5_c00352{height:1122.161626pt;}
.h3_c00352{height:1122.559167pt;}
.h0_c00352{height:1122.666667pt;}
.w17_c00352{width:2.560000pt;}
.w11_c00352{width:4.156800pt;}
.wb_c00352{width:4.160000pt;}
.w5_c00352{width:4.478400pt;}
.w16_c00352{width:5.755200pt;}
.w8_c00352{width:5.756800pt;}
.w12_c00352{width:6.398400pt;}
.we_c00352{width:6.556800pt;}
.w15_c00352{width:6.558400pt;}
.w14_c00352{width:7.195200pt;}
.w13_c00352{width:7.355200pt;}
.w6_c00352{width:7.356800pt;}
.w7_c00352{width:7.358400pt;}
.wd_c00352{width:8.318400pt;}
.wa_c00352{width:8.956800pt;}
.wf_c00352{width:10.075200pt;}
.w3_c00352{width:10.555200pt;}
.w1_c00352{width:10.718400pt;}
.w9_c00352{width:11.035200pt;}
.w4_c00352{width:13.753600pt;}
.w2_c00352{width:21.270400pt;}
.w10_c00352{width:23.032000pt;}
.wc_c00352{width:24.945600pt;}
.w19_c00352{width:792.977400pt;}
.w18_c00352{width:793.257550pt;}
.w0_c00352{width:793.333333pt;}
.x0_c00352{left:0.000000pt;}
.x1d_c00352{left:101.233093pt;}
.x21_c00352{left:114.506689pt;}
.x22_c00352{left:127.941215pt;}
.x1b_c00352{left:225.370940pt;}
.x1e_c00352{left:235.413572pt;}
.x1a_c00352{left:239.124654pt;}
.x1c_c00352{left:376.018977pt;}
.x1_c00352{left:441.443200pt;}
.x2_c00352{left:452.161600pt;}
.x3_c00352{left:473.432000pt;}
.x4_c00352{left:483.987200pt;}
.x5_c00352{left:497.740800pt;}
.x6_c00352{left:501.899200pt;}
.x7_c00352{left:512.772800pt;}
.x8_c00352{left:520.131200pt;}
.x9_c00352{left:524.768000pt;}
.xa_c00352{left:539.160000pt;}
.xb_c00352{left:548.116800pt;}
.xc_c00352{left:552.275200pt;}
.x1f_c00352{left:553.510779pt;}
.xd_c00352{left:556.275200pt;}
.xe_c00352{left:581.220800pt;}
.xf_c00352{left:588.419200pt;}
.x10_c00352{left:598.334400pt;}
.x11_c00352{left:607.929600pt;}
.x12_c00352{left:630.001600pt;}
.x13_c00352{left:634.158400pt;}
.x14_c00352{left:640.556800pt;}
.x15_c00352{left:644.716800pt;}
.x16_c00352{left:652.072000pt;}
.x17_c00352{left:659.267200pt;}
.x18_c00352{left:665.825600pt;}
.x19_c00352{left:671.580800pt;}
.x23_c00352{left:687.049392pt;}
.x20_c00352{left:688.969391pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:0.916000;font-style:normal;font-weight:normal;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_baf4269d1adfc66a8b0b9f17.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_5010898919f8f128fbcccfb4.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:0.886000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00353;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00353;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;line-height:1.112000;font-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_c00353{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls0_c00353{letter-spacing:0.000000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00353{word-spacing:-62.982024px;}
.ws1_c00353{word-spacing:-30.284680px;}
.ws0_c00353{word-spacing:-16.552343px;}
.ws3_c00353{word-spacing:0.000000px;}
._2_c00353{margin-left:-8.382069px;}
._1_c00353{margin-left:-3.645655px;}
._3_c00353{margin-left:-1.152491px;}
._0_c00353{width:1.102012px;}
._e_c00353{width:2.978764px;}
._f_c00353{width:4.082315px;}
._12_c00353{width:5.104602px;}
._b_c00353{width:7.356263px;}
._c_c00353{width:8.401877px;}
._6_c00353{width:10.217734px;}
._7_c00353{width:11.473024px;}
._d_c00353{width:13.971837px;}
._5_c00353{width:19.011773px;}
._4_c00353{width:20.280941px;}
._11_c00353{width:31.775393px;}
._a_c00353{width:33.019386px;}
._9_c00353{width:34.335912px;}
._10_c00353{width:35.532306px;}
._8_c00353{width:82.827419px;}
.fc1_c00353{color:rgb(105,148,45);}
.fc0_c00353{color:rgb(35,31,32);}
.fs4_c00353{font-size:35.983846px;}
.fs5_c00353{font-size:51.097060px;}
.fs2_c00353{font-size:59.733096px;}
.fs0_c00353{font-size:66.209374px;}
.fs1_c00353{font-size:71.968771px;}
.fs3_c00353{font-size:95.717362px;}
.y0_c00353{bottom:0.000000px;}
.y3_c00353{bottom:0.120938px;}
.y7_c00353{bottom:0.556171px;}
.y2_c00353{bottom:3.957899px;}
.y9_c00353{bottom:65.791352px;}
.y1_c00353{bottom:74.623320px;}
.y29_c00353{bottom:99.793939px;}
.y28_c00353{bottom:130.740576px;}
.y27_c00353{bottom:161.685114px;}
.y26_c00353{bottom:192.631752px;}
.y25_c00353{bottom:211.884244px;}
.y24_c00353{bottom:238.695083px;}
.y23_c00353{bottom:269.641721px;}
.y22_c00353{bottom:288.888213px;}
.y21_c00353{bottom:315.515302px;}
.y20_c00353{bottom:346.463290px;}
.y1f_c00353{bottom:377.409928px;}
.y1e_c00353{bottom:439.481853px;}
.y1d_c00353{bottom:470.607140px;}
.y1c_c00353{bottom:501.553028px;}
.y1b_c00353{bottom:532.679666px;}
.y1a_c00353{bottom:563.623453px;}
.y19_c00353{bottom:594.750091px;}
.y18_c00353{bottom:625.696728px;}
.y17_c00353{bottom:656.821266px;}
.y16_c00353{bottom:687.769253px;}
.y15_c00353{bottom:749.839679px;}
.y14_c00353{bottom:780.789166px;}
.y13_c00353{bottom:811.735804px;}
.y12_c00353{bottom:842.680342px;}
.y11_c00353{bottom:873.626979px;}
.y10_c00353{bottom:892.879771px;}
.yf_c00353{bottom:912.851963px;}
.ye_c00353{bottom:947.390950px;}
.yd_c00353{bottom:965.564942px;}
.yc_c00353{bottom:1000.649928px;}
.yb_c00353{bottom:1016.482422px;}
.ya_c00353{bottom:1060.742904px;}
.y8_c00353{bottom:1106.080386px;}
.y6_c00353{bottom:1151.494902px;}
.y5_c00353{bottom:1172.185744px;}
.y4_c00353{bottom:1192.876585px;}
.h1_c00353{height:18.172260px;}
.ha_c00353{height:23.065645px;}
.hc_c00353{height:32.753215px;}
.h7_c00353{height:38.288915px;}
.h6_c00353{height:42.440208px;}
.h2_c00353{height:46.346561px;}
.h4_c00353{height:50.378140px;}
.hd_c00353{height:53.580587px;}
.hb_c00353{height:59.522227px;}
.he_c00353{height:64.484019px;}
.h9_c00353{height:64.555988px;}
.h8_c00353{height:84.039844px;}
.h5_c00353{height:1262.431829px;}
.h3_c00353{height:1262.879062px;}
.h0_c00353{height:1263.000000px;}
.w17_c00353{width:2.880000px;}
.w11_c00353{width:4.676400px;}
.wb_c00353{width:4.680000px;}
.w5_c00353{width:5.038200px;}
.w16_c00353{width:6.474600px;}
.w8_c00353{width:6.476400px;}
.w12_c00353{width:7.198200px;}
.we_c00353{width:7.376400px;}
.w15_c00353{width:7.378200px;}
.w14_c00353{width:8.094600px;}
.w13_c00353{width:8.274600px;}
.w6_c00353{width:8.276400px;}
.w7_c00353{width:8.278200px;}
.wd_c00353{width:9.358200px;}
.wa_c00353{width:10.076400px;}
.wf_c00353{width:11.334600px;}
.w3_c00353{width:11.874600px;}
.w1_c00353{width:12.058200px;}
.w9_c00353{width:12.414600px;}
.w4_c00353{width:15.472800px;}
.w2_c00353{width:23.929200px;}
.w10_c00353{width:25.911000px;}
.wc_c00353{width:28.063800px;}
.w19_c00353{width:892.099575px;}
.w18_c00353{width:892.414744px;}
.w0_c00353{width:892.500000px;}
.x0_c00353{left:0.000000px;}
.x1d_c00353{left:113.887229px;}
.x22_c00353{left:127.562664px;}
.x23_c00353{left:140.875628px;}
.x21_c00353{left:166.965308px;}
.x24_c00353{left:180.639303px;}
.x1b_c00353{left:253.542308px;}
.x1a_c00353{left:269.015236px;}
.x1e_c00353{left:273.837265px;}
.x20_c00353{left:327.270244px;}
.x1f_c00353{left:387.544720px;}
.x1c_c00353{left:423.021349px;}
.x1_c00353{left:496.623600px;}
.x2_c00353{left:508.681800px;}
.x3_c00353{left:532.611000px;}
.x4_c00353{left:544.485600px;}
.x5_c00353{left:559.958400px;}
.x6_c00353{left:564.636600px;}
.x7_c00353{left:576.869400px;}
.x8_c00353{left:585.147600px;}
.x9_c00353{left:590.364000px;}
.xa_c00353{left:606.555000px;}
.xb_c00353{left:616.631400px;}
.xc_c00353{left:621.309600px;}
.xd_c00353{left:625.809600px;}
.xe_c00353{left:653.873400px;}
.xf_c00353{left:661.971600px;}
.x10_c00353{left:673.126200px;}
.x11_c00353{left:683.920800px;}
.x12_c00353{left:708.751800px;}
.x13_c00353{left:713.428200px;}
.x14_c00353{left:720.626400px;}
.x15_c00353{left:725.306400px;}
.x16_c00353{left:733.581000px;}
.x17_c00353{left:741.675600px;}
.x18_c00353{left:749.053800px;}
.x19_c00353{left:755.528400px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws2_c00353{word-spacing:-55.984021pt;}
.ws1_c00353{word-spacing:-26.919715pt;}
.ws0_c00353{word-spacing:-14.713194pt;}
.ws3_c00353{word-spacing:0.000000pt;}
._2_c00353{margin-left:-7.450728pt;}
._1_c00353{margin-left:-3.240582pt;}
._3_c00353{margin-left:-1.024436pt;}
._0_c00353{width:0.979567pt;}
._e_c00353{width:2.647790pt;}
._f_c00353{width:3.628724pt;}
._12_c00353{width:4.537424pt;}
._b_c00353{width:6.538900pt;}
._c_c00353{width:7.468335pt;}
._6_c00353{width:9.082430pt;}
._7_c00353{width:10.198244pt;}
._d_c00353{width:12.419410pt;}
._5_c00353{width:16.899354pt;}
._4_c00353{width:18.027503pt;}
._11_c00353{width:28.244794pt;}
._a_c00353{width:29.350565pt;}
._9_c00353{width:30.520811pt;}
._10_c00353{width:31.584272pt;}
._8_c00353{width:73.624373pt;}
.fs4_c00353{font-size:31.985641pt;}
.fs5_c00353{font-size:45.419608pt;}
.fs2_c00353{font-size:53.096085pt;}
.fs0_c00353{font-size:58.852776pt;}
.fs1_c00353{font-size:63.972241pt;}
.fs3_c00353{font-size:85.082099pt;}
.y0_c00353{bottom:0.000000pt;}
.y3_c00353{bottom:0.107500pt;}
.y7_c00353{bottom:0.494374pt;}
.y2_c00353{bottom:3.518132pt;}
.y9_c00353{bottom:58.481202pt;}
.y1_c00353{bottom:66.331840pt;}
.y29_c00353{bottom:88.705723pt;}
.y28_c00353{bottom:116.213846pt;}
.y27_c00353{bottom:143.720101pt;}
.y26_c00353{bottom:171.228224pt;}
.y25_c00353{bottom:188.341550pt;}
.y24_c00353{bottom:212.173407pt;}
.y23_c00353{bottom:239.681530pt;}
.y22_c00353{bottom:256.789523pt;}
.y21_c00353{bottom:280.458047pt;}
.y20_c00353{bottom:307.967369pt;}
.y1f_c00353{bottom:335.475491pt;}
.y1e_c00353{bottom:390.650536pt;}
.y1d_c00353{bottom:418.317458pt;}
.y1c_c00353{bottom:445.824914pt;}
.y1b_c00353{bottom:473.493036pt;}
.y1a_c00353{bottom:500.998625pt;}
.y19_c00353{bottom:528.666747pt;}
.y18_c00353{bottom:556.174870pt;}
.y17_c00353{bottom:583.841125pt;}
.y16_c00353{bottom:611.350448pt;}
.y15_c00353{bottom:666.524159pt;}
.y14_c00353{bottom:694.034814pt;}
.y13_c00353{bottom:721.542937pt;}
.y12_c00353{bottom:749.049192pt;}
.y11_c00353{bottom:776.557315pt;}
.y10_c00353{bottom:793.670908pt;}
.yf_c00353{bottom:811.423967pt;}
.ye_c00353{bottom:842.125289pt;}
.yd_c00353{bottom:858.279949pt;}
.yc_c00353{bottom:889.466603pt;}
.yb_c00353{bottom:903.539931pt;}
.ya_c00353{bottom:942.882582pt;}
.y8_c00353{bottom:983.182565pt;}
.y6_c00353{bottom:1023.551024pt;}
.y5_c00353{bottom:1041.942883pt;}
.y4_c00353{bottom:1060.334742pt;}
.h1_c00353{height:16.153120pt;}
.ha_c00353{height:20.502796pt;}
.hc_c00353{height:29.113969pt;}
.h7_c00353{height:34.034591pt;}
.h6_c00353{height:37.724630pt;}
.h2_c00353{height:41.196944pt;}
.h4_c00353{height:44.780569pt;}
.hd_c00353{height:47.627189pt;}
.hb_c00353{height:52.908646pt;}
.he_c00353{height:57.319128pt;}
.h9_c00353{height:57.383100pt;}
.h8_c00353{height:74.702083pt;}
.h5_c00353{height:1122.161626pt;}
.h3_c00353{height:1122.559167pt;}
.h0_c00353{height:1122.666667pt;}
.w17_c00353{width:2.560000pt;}
.w11_c00353{width:4.156800pt;}
.wb_c00353{width:4.160000pt;}
.w5_c00353{width:4.478400pt;}
.w16_c00353{width:5.755200pt;}
.w8_c00353{width:5.756800pt;}
.w12_c00353{width:6.398400pt;}
.we_c00353{width:6.556800pt;}
.w15_c00353{width:6.558400pt;}
.w14_c00353{width:7.195200pt;}
.w13_c00353{width:7.355200pt;}
.w6_c00353{width:7.356800pt;}
.w7_c00353{width:7.358400pt;}
.wd_c00353{width:8.318400pt;}
.wa_c00353{width:8.956800pt;}
.wf_c00353{width:10.075200pt;}
.w3_c00353{width:10.555200pt;}
.w1_c00353{width:10.718400pt;}
.w9_c00353{width:11.035200pt;}
.w4_c00353{width:13.753600pt;}
.w2_c00353{width:21.270400pt;}
.w10_c00353{width:23.032000pt;}
.wc_c00353{width:24.945600pt;}
.w19_c00353{width:792.977400pt;}
.w18_c00353{width:793.257550pt;}
.w0_c00353{width:793.333333pt;}
.x0_c00353{left:0.000000pt;}
.x1d_c00353{left:101.233093pt;}
.x22_c00353{left:113.389035pt;}
.x23_c00353{left:125.222780pt;}
.x21_c00353{left:148.413607pt;}
.x24_c00353{left:160.568269pt;}
.x1b_c00353{left:225.370940pt;}
.x1a_c00353{left:239.124654pt;}
.x1e_c00353{left:243.410903pt;}
.x20_c00353{left:290.906884pt;}
.x1f_c00353{left:344.484196pt;}
.x1c_c00353{left:376.018977pt;}
.x1_c00353{left:441.443200pt;}
.x2_c00353{left:452.161600pt;}
.x3_c00353{left:473.432000pt;}
.x4_c00353{left:483.987200pt;}
.x5_c00353{left:497.740800pt;}
.x6_c00353{left:501.899200pt;}
.x7_c00353{left:512.772800pt;}
.x8_c00353{left:520.131200pt;}
.x9_c00353{left:524.768000pt;}
.xa_c00353{left:539.160000pt;}
.xb_c00353{left:548.116800pt;}
.xc_c00353{left:552.275200pt;}
.xd_c00353{left:556.275200pt;}
.xe_c00353{left:581.220800pt;}
.xf_c00353{left:588.419200pt;}
.x10_c00353{left:598.334400pt;}
.x11_c00353{left:607.929600pt;}
.x12_c00353{left:630.001600pt;}
.x13_c00353{left:634.158400pt;}
.x14_c00353{left:640.556800pt;}
.x15_c00353{left:644.716800pt;}
.x16_c00353{left:652.072000pt;}
.x17_c00353{left:659.267200pt;}
.x18_c00353{left:665.825600pt;}
.x19_c00353{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:0.916000;font-style:normal;font-weight:normal;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_bdb189f2e4cd59b6ae693cae.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.112000;font-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_c00354{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:0.000000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00354{word-spacing:-30.284680px;}
.ws0_c00354{word-spacing:-16.552343px;}
.ws2_c00354{word-spacing:0.000000px;}
._6_c00354{margin-left:-2.858851px;}
._4_c00354{margin-left:-1.061287px;}
._0_c00354{width:1.102012px;}
._5_c00354{width:2.634166px;}
._14_c00354{width:3.644210px;}
._11_c00354{width:4.798609px;}
._e_c00354{width:6.912783px;}
._2_c00354{width:8.207342px;}
._3_c00354{width:9.335081px;}
._1_c00354{width:11.572321px;}
._12_c00354{width:12.580875px;}
._7_c00354{width:13.636363px;}
._10_c00354{width:15.179156px;}
._9_c00354{width:16.594493px;}
._8_c00354{width:19.490615px;}
._f_c00354{width:20.995683px;}
._13_c00354{width:23.133009px;}
._a_c00354{width:24.483449px;}
._c_c00354{width:26.629437px;}
._d_c00354{width:27.749741px;}
._b_c00354{width:28.818659px;}
.fc1_c00354{color:rgb(105,148,45);}
.fc0_c00354{color:rgb(35,31,32);}
.fs3_c00354{font-size:41.741203px;}
.fs2_c00354{font-size:59.733096px;}
.fs0_c00354{font-size:66.209374px;}
.fs1_c00354{font-size:71.968771px;}
.y0_c00354{bottom:0.000000px;}
.y3_c00354{bottom:0.120938px;}
.y7_c00354{bottom:0.556171px;}
.y2_c00354{bottom:3.957899px;}
.y9_c00354{bottom:65.791352px;}
.y1_c00354{bottom:74.623320px;}
.y2d_c00354{bottom:127.865197px;}
.y2c_c00354{bottom:142.978141px;}
.y2b_c00354{bottom:157.911100px;}
.y2a_c00354{bottom:172.844059px;}
.y29_c00354{bottom:187.957753px;}
.y28_c00354{bottom:214.584093px;}
.y27_c00354{bottom:245.708630px;}
.y26_c00354{bottom:276.655268px;}
.y25_c00354{bottom:307.780555px;}
.y24_c00354{bottom:338.727193px;}
.y23_c00354{bottom:389.106173px;}
.y22_c00354{bottom:415.731162px;}
.y21_c00354{bottom:446.857800px;}
.y20_c00354{bottom:477.802337px;}
.y1f_c00354{bottom:508.928975px;}
.y1e_c00354{bottom:539.875613px;}
.y1d_c00354{bottom:559.308105px;}
.y1c_c00354{bottom:573.342099px;}
.y1b_c00354{bottom:589.714593px;}
.y1a_c00354{bottom:636.132524px;}
.y19_c00354{bottom:667.259162px;}
.y18_c00354{bottom:698.203699px;}
.y17_c00354{bottom:729.330337px;}
.y16_c00354{bottom:760.275624px;}
.y15_c00354{bottom:791.403612px;}
.y14_c00354{bottom:813.532353px;}
.y13_c00354{bottom:842.500342px;}
.y12_c00354{bottom:873.626979px;}
.y11_c00354{bottom:892.879471px;}
.y10_c00354{bottom:920.944010px;}
.yf_c00354{bottom:951.891998px;}
.ye_c00354{bottom:982.834435px;}
.yd_c00354{bottom:1013.783923px;}
.yc_c00354{bottom:1033.215815px;}
.yb_c00354{bottom:1053.007407px;}
.ya_c00354{bottom:1088.267893px;}
.y8_c00354{bottom:1106.080386px;}
.y6_c00354{bottom:1151.494902px;}
.y5_c00354{bottom:1172.185744px;}
.y4_c00354{bottom:1192.876585px;}
.h1_c00354{height:18.172260px;}
.hb_c00354{height:26.756111px;}
.h7_c00354{height:38.288915px;}
.h6_c00354{height:42.440208px;}
.ha_c00354{height:46.131982px;}
.h2_c00354{height:46.346561px;}
.h4_c00354{height:50.378140px;}
.h8_c00354{height:53.580587px;}
.h9_c00354{height:64.484019px;}
.h5_c00354{height:1262.431829px;}
.h3_c00354{height:1262.879062px;}
.h0_c00354{height:1263.000000px;}
.w17_c00354{width:2.880000px;}
.w11_c00354{width:4.676400px;}
.wb_c00354{width:4.680000px;}
.w5_c00354{width:5.038200px;}
.w16_c00354{width:6.474600px;}
.w8_c00354{width:6.476400px;}
.w12_c00354{width:7.198200px;}
.we_c00354{width:7.376400px;}
.w15_c00354{width:7.378200px;}
.w14_c00354{width:8.094600px;}
.w13_c00354{width:8.274600px;}
.w6_c00354{width:8.276400px;}
.w7_c00354{width:8.278200px;}
.wd_c00354{width:9.358200px;}
.wa_c00354{width:10.076400px;}
.wf_c00354{width:11.334600px;}
.w3_c00354{width:11.874600px;}
.w1_c00354{width:12.058200px;}
.w9_c00354{width:12.414600px;}
.w4_c00354{width:15.472800px;}
.w2_c00354{width:23.929200px;}
.w10_c00354{width:25.911000px;}
.wc_c00354{width:28.063800px;}
.w19_c00354{width:892.099575px;}
.w18_c00354{width:892.414744px;}
.w0_c00354{width:892.500000px;}
.x0_c00354{left:0.000000px;}
.x1d_c00354{left:113.887229px;}
.x1f_c00354{left:127.567761px;}
.x1e_c00354{left:180.639303px;}
.x1b_c00354{left:253.542308px;}
.x1a_c00354{left:269.015236px;}
.x1c_c00354{left:423.021349px;}
.x1_c00354{left:496.623600px;}
.x2_c00354{left:508.681800px;}
.x3_c00354{left:532.611000px;}
.x4_c00354{left:544.485600px;}
.x5_c00354{left:559.958400px;}
.x6_c00354{left:564.636600px;}
.x7_c00354{left:576.869400px;}
.x8_c00354{left:585.147600px;}
.x9_c00354{left:590.364000px;}
.xa_c00354{left:606.555000px;}
.xb_c00354{left:616.631400px;}
.xc_c00354{left:621.309600px;}
.xd_c00354{left:625.809600px;}
.xe_c00354{left:653.873400px;}
.xf_c00354{left:661.971600px;}
.x10_c00354{left:673.126200px;}
.x11_c00354{left:683.920800px;}
.x12_c00354{left:708.751800px;}
.x13_c00354{left:713.428200px;}
.x14_c00354{left:720.626400px;}
.x15_c00354{left:725.306400px;}
.x16_c00354{left:733.581000px;}
.x17_c00354{left:741.675600px;}
.x18_c00354{left:749.053800px;}
.x19_c00354{left:755.528400px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws1_c00354{word-spacing:-26.919715pt;}
.ws0_c00354{word-spacing:-14.713194pt;}
.ws2_c00354{word-spacing:0.000000pt;}
._6_c00354{margin-left:-2.541201pt;}
._4_c00354{margin-left:-0.943366pt;}
._0_c00354{width:0.979567pt;}
._5_c00354{width:2.341481pt;}
._14_c00354{width:3.239298pt;}
._11_c00354{width:4.265430pt;}
._e_c00354{width:6.144696pt;}
._2_c00354{width:7.295415pt;}
._3_c00354{width:8.297850pt;}
._1_c00354{width:10.286508pt;}
._12_c00354{width:11.183000pt;}
._7_c00354{width:12.121211pt;}
._10_c00354{width:13.492583pt;}
._9_c00354{width:14.750660pt;}
._8_c00354{width:17.324991pt;}
._f_c00354{width:18.662830pt;}
._13_c00354{width:20.562675pt;}
._a_c00354{width:21.763065pt;}
._c_c00354{width:23.670611pt;}
._d_c00354{width:24.666436pt;}
._b_c00354{width:25.616586pt;}
.fs3_c00354{font-size:37.103292pt;}
.fs2_c00354{font-size:53.096085pt;}
.fs0_c00354{font-size:58.852776pt;}
.fs1_c00354{font-size:63.972241pt;}
.y0_c00354{bottom:0.000000pt;}
.y3_c00354{bottom:0.107500pt;}
.y7_c00354{bottom:0.494374pt;}
.y2_c00354{bottom:3.518132pt;}
.y9_c00354{bottom:58.481202pt;}
.y1_c00354{bottom:66.331840pt;}
.y2d_c00354{bottom:113.657953pt;}
.y2c_c00354{bottom:127.091681pt;}
.y2b_c00354{bottom:140.365423pt;}
.y2a_c00354{bottom:153.639164pt;}
.y29_c00354{bottom:167.073559pt;}
.y28_c00354{bottom:190.741416pt;}
.y27_c00354{bottom:218.407671pt;}
.y26_c00354{bottom:245.915794pt;}
.y25_c00354{bottom:273.582716pt;}
.y24_c00354{bottom:301.090838pt;}
.y23_c00354{bottom:345.872154pt;}
.y22_c00354{bottom:369.538811pt;}
.y21_c00354{bottom:397.206933pt;}
.y20_c00354{bottom:424.713189pt;}
.y1f_c00354{bottom:452.381311pt;}
.y1e_c00354{bottom:479.889433pt;}
.y1d_c00354{bottom:497.162760pt;}
.y1c_c00354{bottom:509.637422pt;}
.y1b_c00354{bottom:524.190749pt;}
.y1a_c00354{bottom:565.451133pt;}
.y19_c00354{bottom:593.119255pt;}
.y18_c00354{bottom:620.625510pt;}
.y17_c00354{bottom:648.293633pt;}
.y16_c00354{bottom:675.800555pt;}
.y15_c00354{bottom:703.469877pt;}
.y14_c00354{bottom:723.139869pt;}
.y13_c00354{bottom:748.889193pt;}
.y12_c00354{bottom:776.557315pt;}
.y11_c00354{bottom:793.670641pt;}
.y10_c00354{bottom:818.616898pt;}
.yf_c00354{bottom:846.126220pt;}
.ye_c00354{bottom:873.630609pt;}
.yd_c00354{bottom:901.141265pt;}
.yc_c00354{bottom:918.414058pt;}
.yb_c00354{bottom:936.006584pt;}
.ya_c00354{bottom:967.349238pt;}
.y8_c00354{bottom:983.182565pt;}
.y6_c00354{bottom:1023.551024pt;}
.y5_c00354{bottom:1041.942883pt;}
.y4_c00354{bottom:1060.334742pt;}
.h1_c00354{height:16.153120pt;}
.hb_c00354{height:23.783210pt;}
.h7_c00354{height:34.034591pt;}
.h6_c00354{height:37.724630pt;}
.ha_c00354{height:41.006207pt;}
.h2_c00354{height:41.196944pt;}
.h4_c00354{height:44.780569pt;}
.h8_c00354{height:47.627189pt;}
.h9_c00354{height:57.319128pt;}
.h5_c00354{height:1122.161626pt;}
.h3_c00354{height:1122.559167pt;}
.h0_c00354{height:1122.666667pt;}
.w17_c00354{width:2.560000pt;}
.w11_c00354{width:4.156800pt;}
.wb_c00354{width:4.160000pt;}
.w5_c00354{width:4.478400pt;}
.w16_c00354{width:5.755200pt;}
.w8_c00354{width:5.756800pt;}
.w12_c00354{width:6.398400pt;}
.we_c00354{width:6.556800pt;}
.w15_c00354{width:6.558400pt;}
.w14_c00354{width:7.195200pt;}
.w13_c00354{width:7.355200pt;}
.w6_c00354{width:7.356800pt;}
.w7_c00354{width:7.358400pt;}
.wd_c00354{width:8.318400pt;}
.wa_c00354{width:8.956800pt;}
.wf_c00354{width:10.075200pt;}
.w3_c00354{width:10.555200pt;}
.w1_c00354{width:10.718400pt;}
.w9_c00354{width:11.035200pt;}
.w4_c00354{width:13.753600pt;}
.w2_c00354{width:21.270400pt;}
.w10_c00354{width:23.032000pt;}
.wc_c00354{width:24.945600pt;}
.w19_c00354{width:792.977400pt;}
.w18_c00354{width:793.257550pt;}
.w0_c00354{width:793.333333pt;}
.x0_c00354{left:0.000000pt;}
.x1d_c00354{left:101.233093pt;}
.x1f_c00354{left:113.393565pt;}
.x1e_c00354{left:160.568269pt;}
.x1b_c00354{left:225.370940pt;}
.x1a_c00354{left:239.124654pt;}
.x1c_c00354{left:376.018977pt;}
.x1_c00354{left:441.443200pt;}
.x2_c00354{left:452.161600pt;}
.x3_c00354{left:473.432000pt;}
.x4_c00354{left:483.987200pt;}
.x5_c00354{left:497.740800pt;}
.x6_c00354{left:501.899200pt;}
.x7_c00354{left:512.772800pt;}
.x8_c00354{left:520.131200pt;}
.x9_c00354{left:524.768000pt;}
.xa_c00354{left:539.160000pt;}
.xb_c00354{left:548.116800pt;}
.xc_c00354{left:552.275200pt;}
.xd_c00354{left:556.275200pt;}
.xe_c00354{left:581.220800pt;}
.xf_c00354{left:588.419200pt;}
.x10_c00354{left:598.334400pt;}
.x11_c00354{left:607.929600pt;}
.x12_c00354{left:630.001600pt;}
.x13_c00354{left:634.158400pt;}
.x14_c00354{left:640.556800pt;}
.x15_c00354{left:644.716800pt;}
.x16_c00354{left:652.072000pt;}
.x17_c00354{left:659.267200pt;}
.x18_c00354{left:665.825600pt;}
.x19_c00354{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:0.916000;font-style:normal;font-weight:normal;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_680fb4a5949db6480b075c80.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.112000;font-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_c00355{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls0_c00355{letter-spacing:0.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00355{word-spacing:-30.284680px;}
.ws0_c00355{word-spacing:-16.552343px;}
.ws2_c00355{word-spacing:0.000000px;}
._6_c00355{margin-left:-3.326883px;}
._1_c00355{margin-left:-1.488876px;}
._0_c00355{width:1.102012px;}
._9_c00355{width:2.185225px;}
._a_c00355{width:3.436629px;}
._b_c00355{width:4.441469px;}
._c_c00355{width:5.685327px;}
._7_c00355{width:7.554603px;}
._8_c00355{width:9.372095px;}
._3_c00355{width:10.808356px;}
._d_c00355{width:11.937349px;}
._2_c00355{width:13.092917px;}
._4_c00355{width:14.194066px;}
._5_c00355{width:15.591181px;}
._e_c00355{width:20.046601px;}
._f_c00355{width:21.064744px;}
._10_c00355{width:22.804046px;}
._11_c00355{width:23.917612px;}
._12_c00355{width:198.042225px;}
.fc1_c00355{color:rgb(105,148,45);}
.fc0_c00355{color:rgb(35,31,32);}
.fs2_c00355{font-size:59.733096px;}
.fs0_c00355{font-size:66.209374px;}
.fs1_c00355{font-size:71.968771px;}
.y0_c00355{bottom:0.000000px;}
.y3_c00355{bottom:0.120938px;}
.y7_c00355{bottom:0.556171px;}
.y2_c00355{bottom:3.957899px;}
.y9_c00355{bottom:65.791352px;}
.y1_c00355{bottom:74.623320px;}
.y24_c00355{bottom:186.697004px;}
.y23_c00355{bottom:217.640792px;}
.y22_c00355{bottom:248.767429px;}
.y21_c00355{bottom:294.646261px;}
.y20_c00355{bottom:325.772898px;}
.y1f_c00355{bottom:356.719536px;}
.y1e_c00355{bottom:387.844073px;}
.y1d_c00355{bottom:433.903655px;}
.y1c_c00355{bottom:464.850293px;}
.y1b_c00355{bottom:495.976180px;}
.y1a_c00355{bottom:526.921468px;}
.y19_c00355{bottom:558.048105px;}
.y18_c00355{bottom:628.212677px;}
.y17_c00355{bottom:663.118563px;}
.y16_c00355{bottom:689.749253px;}
.y15_c00355{bottom:720.875890px;}
.y14_c00355{bottom:751.822528px;}
.y13_c00355{bottom:802.917607px;}
.y12_c00355{bottom:831.527096px;}
.y10_c00355{bottom:861.032684px;}
.y11_c00355{bottom:861.034484px;}
.yf_c00355{bottom:892.159322px;}
.ye_c00355{bottom:939.296803px;}
.yd_c00355{bottom:970.243440px;}
.yc_c00355{bottom:1017.382272px;}
.yb_c00355{bottom:1048.508909px;}
.ya_c00355{bottom:1087.548944px;}
.y8_c00355{bottom:1106.080386px;}
.y6_c00355{bottom:1151.494902px;}
.y5_c00355{bottom:1172.185744px;}
.y4_c00355{bottom:1192.876585px;}
.h1_c00355{height:18.172260px;}
.h7_c00355{height:38.288915px;}
.h6_c00355{height:42.440208px;}
.h2_c00355{height:46.346561px;}
.h4_c00355{height:50.378140px;}
.h8_c00355{height:53.580587px;}
.ha_c00355{height:59.323599px;}
.h9_c00355{height:64.484019px;}
.h5_c00355{height:1262.431829px;}
.h3_c00355{height:1262.879062px;}
.h0_c00355{height:1263.000000px;}
.w17_c00355{width:2.880000px;}
.w11_c00355{width:4.676400px;}
.wb_c00355{width:4.680000px;}
.w5_c00355{width:5.038200px;}
.w16_c00355{width:6.474600px;}
.w8_c00355{width:6.476400px;}
.w12_c00355{width:7.198200px;}
.we_c00355{width:7.376400px;}
.w15_c00355{width:7.378200px;}
.w14_c00355{width:8.094600px;}
.w13_c00355{width:8.274600px;}
.w6_c00355{width:8.276400px;}
.w7_c00355{width:8.278200px;}
.wd_c00355{width:9.358200px;}
.wa_c00355{width:10.076400px;}
.wf_c00355{width:11.334600px;}
.w3_c00355{width:11.874600px;}
.w1_c00355{width:12.058200px;}
.w9_c00355{width:12.414600px;}
.w4_c00355{width:15.472800px;}
.w2_c00355{width:23.929200px;}
.w10_c00355{width:25.911000px;}
.wc_c00355{width:28.063800px;}
.w19_c00355{width:892.099575px;}
.w18_c00355{width:892.414744px;}
.w0_c00355{width:892.500000px;}
.x0_c00355{left:0.000000px;}
.x1d_c00355{left:113.887229px;}
.x1f_c00355{left:127.561764px;}
.x21_c00355{left:167.859737px;}
.x1e_c00355{left:180.639303px;}
.x1b_c00355{left:253.542308px;}
.x1a_c00355{left:269.015236px;}
.x20_c00355{left:419.751207px;}
.x1c_c00355{left:423.021349px;}
.x1_c00355{left:496.623600px;}
.x2_c00355{left:508.681800px;}
.x3_c00355{left:532.611000px;}
.x4_c00355{left:544.485600px;}
.x5_c00355{left:559.958400px;}
.x6_c00355{left:564.636600px;}
.x7_c00355{left:576.869400px;}
.x8_c00355{left:585.147600px;}
.x9_c00355{left:590.364000px;}
.xa_c00355{left:606.555000px;}
.xb_c00355{left:616.631400px;}
.xc_c00355{left:621.309600px;}
.xd_c00355{left:625.809600px;}
.xe_c00355{left:653.873400px;}
.xf_c00355{left:661.971600px;}
.x10_c00355{left:673.126200px;}
.x11_c00355{left:683.920800px;}
.x12_c00355{left:708.751800px;}
.x13_c00355{left:713.428200px;}
.x14_c00355{left:720.626400px;}
.x15_c00355{left:725.306400px;}
.x16_c00355{left:733.581000px;}
.x17_c00355{left:741.675600px;}
.x18_c00355{left:749.053800px;}
.x19_c00355{left:755.528400px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws1_c00355{word-spacing:-26.919715pt;}
.ws0_c00355{word-spacing:-14.713194pt;}
.ws2_c00355{word-spacing:0.000000pt;}
._6_c00355{margin-left:-2.957229pt;}
._1_c00355{margin-left:-1.323445pt;}
._0_c00355{width:0.979567pt;}
._9_c00355{width:1.942423pt;}
._a_c00355{width:3.054781pt;}
._b_c00355{width:3.947973pt;}
._c_c00355{width:5.053624pt;}
._7_c00355{width:6.715203pt;}
._8_c00355{width:8.330751pt;}
._3_c00355{width:9.607427pt;}
._d_c00355{width:10.610977pt;}
._2_c00355{width:11.638148pt;}
._4_c00355{width:12.616947pt;}
._5_c00355{width:13.858827pt;}
._e_c00355{width:17.819201pt;}
._f_c00355{width:18.724217pt;}
._10_c00355{width:20.270263pt;}
._11_c00355{width:21.260100pt;}
._12_c00355{width:176.037534pt;}
.fs2_c00355{font-size:53.096085pt;}
.fs0_c00355{font-size:58.852776pt;}
.fs1_c00355{font-size:63.972241pt;}
.y0_c00355{bottom:0.000000pt;}
.y3_c00355{bottom:0.107500pt;}
.y7_c00355{bottom:0.494374pt;}
.y2_c00355{bottom:3.518132pt;}
.y9_c00355{bottom:58.481202pt;}
.y1_c00355{bottom:66.331840pt;}
.y24_c00355{bottom:165.952892pt;}
.y23_c00355{bottom:193.458481pt;}
.y22_c00355{bottom:221.126604pt;}
.y21_c00355{bottom:261.907787pt;}
.y20_c00355{bottom:289.575910pt;}
.y1f_c00355{bottom:317.084032pt;}
.y1e_c00355{bottom:344.750288pt;}
.y1d_c00355{bottom:385.692138pt;}
.y1c_c00355{bottom:413.200260pt;}
.y1b_c00355{bottom:440.867716pt;}
.y1a_c00355{bottom:468.374638pt;}
.y19_c00355{bottom:496.042760pt;}
.y18_c00355{bottom:558.411269pt;}
.y17_c00355{bottom:589.438723pt;}
.y16_c00355{bottom:613.110447pt;}
.y15_c00355{bottom:640.778569pt;}
.y14_c00355{bottom:668.286691pt;}
.y13_c00355{bottom:713.704540pt;}
.y12_c00355{bottom:739.135196pt;}
.y10_c00355{bottom:765.362386pt;}
.y11_c00355{bottom:765.363986pt;}
.yf_c00355{bottom:793.030508pt;}
.ye_c00355{bottom:834.930491pt;}
.yd_c00355{bottom:862.438614pt;}
.yc_c00355{bottom:904.339797pt;}
.yb_c00355{bottom:932.007919pt;}
.ya_c00355{bottom:966.710172pt;}
.y8_c00355{bottom:983.182565pt;}
.y6_c00355{bottom:1023.551024pt;}
.y5_c00355{bottom:1041.942883pt;}
.y4_c00355{bottom:1060.334742pt;}
.h1_c00355{height:16.153120pt;}
.h7_c00355{height:34.034591pt;}
.h6_c00355{height:37.724630pt;}
.h2_c00355{height:41.196944pt;}
.h4_c00355{height:44.780569pt;}
.h8_c00355{height:47.627189pt;}
.ha_c00355{height:52.732088pt;}
.h9_c00355{height:57.319128pt;}
.h5_c00355{height:1122.161626pt;}
.h3_c00355{height:1122.559167pt;}
.h0_c00355{height:1122.666667pt;}
.w17_c00355{width:2.560000pt;}
.w11_c00355{width:4.156800pt;}
.wb_c00355{width:4.160000pt;}
.w5_c00355{width:4.478400pt;}
.w16_c00355{width:5.755200pt;}
.w8_c00355{width:5.756800pt;}
.w12_c00355{width:6.398400pt;}
.we_c00355{width:6.556800pt;}
.w15_c00355{width:6.558400pt;}
.w14_c00355{width:7.195200pt;}
.w13_c00355{width:7.355200pt;}
.w6_c00355{width:7.356800pt;}
.w7_c00355{width:7.358400pt;}
.wd_c00355{width:8.318400pt;}
.wa_c00355{width:8.956800pt;}
.wf_c00355{width:10.075200pt;}
.w3_c00355{width:10.555200pt;}
.w1_c00355{width:10.718400pt;}
.w9_c00355{width:11.035200pt;}
.w4_c00355{width:13.753600pt;}
.w2_c00355{width:21.270400pt;}
.w10_c00355{width:23.032000pt;}
.wc_c00355{width:24.945600pt;}
.w19_c00355{width:792.977400pt;}
.w18_c00355{width:793.257550pt;}
.w0_c00355{width:793.333333pt;}
.x0_c00355{left:0.000000pt;}
.x1d_c00355{left:101.233093pt;}
.x1f_c00355{left:113.388235pt;}
.x21_c00355{left:149.208655pt;}
.x1e_c00355{left:160.568269pt;}
.x1b_c00355{left:225.370940pt;}
.x1a_c00355{left:239.124654pt;}
.x20_c00355{left:373.112184pt;}
.x1c_c00355{left:376.018977pt;}
.x1_c00355{left:441.443200pt;}
.x2_c00355{left:452.161600pt;}
.x3_c00355{left:473.432000pt;}
.x4_c00355{left:483.987200pt;}
.x5_c00355{left:497.740800pt;}
.x6_c00355{left:501.899200pt;}
.x7_c00355{left:512.772800pt;}
.x8_c00355{left:520.131200pt;}
.x9_c00355{left:524.768000pt;}
.xa_c00355{left:539.160000pt;}
.xb_c00355{left:548.116800pt;}
.xc_c00355{left:552.275200pt;}
.xd_c00355{left:556.275200pt;}
.xe_c00355{left:581.220800pt;}
.xf_c00355{left:588.419200pt;}
.x10_c00355{left:598.334400pt;}
.x11_c00355{left:607.929600pt;}
.x12_c00355{left:630.001600pt;}
.x13_c00355{left:634.158400pt;}
.x14_c00355{left:640.556800pt;}
.x15_c00355{left:644.716800pt;}
.x16_c00355{left:652.072000pt;}
.x17_c00355{left:659.267200pt;}
.x18_c00355{left:665.825600pt;}
.x19_c00355{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:0.916000;font-style:normal;font-weight:normal;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_b8e70a4986db5b986f249d7f.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.112000;font-style:normal;font-weight:normal;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_1a62eef3142479a8393f68e7.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:1.107000;font-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_c00356{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls0_c00356{letter-spacing:0.000000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00356{word-spacing:-30.284680px;}
.ws2_c00356{word-spacing:-17.992193px;}
.ws0_c00356{word-spacing:-16.552343px;}
.ws3_c00356{word-spacing:0.000000px;}
._c_c00356{margin-left:-3.603645px;}
._5_c00356{margin-left:-2.138948px;}
._2_c00356{margin-left:-1.040145px;}
._0_c00356{width:1.102012px;}
._b_c00356{width:2.246154px;}
._7_c00356{width:3.277764px;}
._3_c00356{width:4.420105px;}
._6_c00356{width:6.491684px;}
._4_c00356{width:7.565849px;}
._a_c00356{width:9.634772px;}
._8_c00356{width:10.696975px;}
._9_c00356{width:11.761340px;}
._e_c00356{width:13.944823px;}
._f_c00356{width:15.508788px;}
._d_c00356{width:16.680411px;}
._13_c00356{width:23.330327px;}
._12_c00356{width:25.334528px;}
._11_c00356{width:27.436652px;}
._10_c00356{width:28.720765px;}
._1_c00356{width:198.042225px;}
.fc1_c00356{color:rgb(105,148,45);}
.fc0_c00356{color:rgb(35,31,32);}
.fs4_c00356{font-size:38.862464px;}
.fs3_c00356{font-size:45.339642px;}
.fs2_c00356{font-size:59.733096px;}
.fs0_c00356{font-size:66.209374px;}
.fs1_c00356{font-size:71.968771px;}
.y0_c00356{bottom:0.000000px;}
.y3_c00356{bottom:0.120938px;}
.y7_c00356{bottom:0.556171px;}
.y2_c00356{bottom:3.957899px;}
.y9_c00356{bottom:65.791352px;}
.y1_c00356{bottom:74.623320px;}
.y30_c00356{bottom:104.473937px;}
.y2f_c00356{bottom:135.600574px;}
.y2e_c00356{bottom:166.545862px;}
.y2d_c00356{bottom:197.671750px;}
.y2c_c00356{bottom:216.924242px;}
.y2b_c00356{bottom:231.136736px;}
.y2a_c00356{bottom:244.809231px;}
.y29_c00356{bottom:262.801723px;}
.y28_c00356{bottom:275.755718px;}
.y27_c00356{bottom:296.988210px;}
.y26_c00356{bottom:323.793049px;}
.y25_c00356{bottom:354.739687px;}
.y24_c00356{bottom:387.665274px;}
.y23_c00356{bottom:418.611161px;}
.y22_c00356{bottom:436.965154px;}
.y21_c00356{bottom:450.817648px;}
.y20_c00356{bottom:483.203235px;}
.y1f_c00356{bottom:514.329123px;}
.y1e_c00356{bottom:533.580115px;}
.y1d_c00356{bottom:550.131109px;}
.y1c_c00356{bottom:569.382101px;}
.y1b_c00356{bottom:597.452190px;}
.y1a_c00356{bottom:628.578077px;}
.y19_c00356{bottom:647.826369px;}
.y18_c00356{bottom:667.618562px;}
.y17_c00356{bottom:714.217693px;}
.y16_c00356{bottom:745.344330px;}
.y15_c00356{bottom:776.288868px;}
.y14_c00356{bottom:807.415506px;}
.y13_c00356{bottom:826.668298px;}
.y12_c00356{bottom:846.640490px;}
.y11_c00356{bottom:893.059171px;}
.y10_c00356{bottom:924.184459px;}
.yf_c00356{bottom:955.131097px;}
.ye_c00356{bottom:986.257734px;}
.yd_c00356{bottom:1017.202272px;}
.yc_c00356{bottom:1048.328909px;}
.yb_c00356{bottom:1067.578852px;}
.ya_c00356{bottom:1087.548944px;}
.y8_c00356{bottom:1106.080386px;}
.y6_c00356{bottom:1151.494902px;}
.y5_c00356{bottom:1172.185744px;}
.y4_c00356{bottom:1192.876585px;}
.h1_c00356{height:18.172260px;}
.hc_c00356{height:24.910840px;}
.hb_c00356{height:29.062710px;}
.h7_c00356{height:38.288915px;}
.h6_c00356{height:42.440208px;}
.h2_c00356{height:46.346561px;}
.h4_c00356{height:50.378140px;}
.h8_c00356{height:53.580587px;}
.h9_c00356{height:64.484019px;}
.ha_c00356{height:64.555988px;}
.h5_c00356{height:1262.431829px;}
.h3_c00356{height:1262.879062px;}
.h0_c00356{height:1263.000000px;}
.w17_c00356{width:2.880000px;}
.w11_c00356{width:4.676400px;}
.wb_c00356{width:4.680000px;}
.w5_c00356{width:5.038200px;}
.w16_c00356{width:6.474600px;}
.w8_c00356{width:6.476400px;}
.w12_c00356{width:7.198200px;}
.we_c00356{width:7.376400px;}
.w15_c00356{width:7.378200px;}
.w14_c00356{width:8.094600px;}
.w13_c00356{width:8.274600px;}
.w6_c00356{width:8.276400px;}
.w7_c00356{width:8.278200px;}
.wd_c00356{width:9.358200px;}
.wa_c00356{width:10.076400px;}
.wf_c00356{width:11.334600px;}
.w3_c00356{width:11.874600px;}
.w1_c00356{width:12.058200px;}
.w9_c00356{width:12.414600px;}
.w4_c00356{width:15.472800px;}
.w2_c00356{width:23.929200px;}
.w10_c00356{width:25.911000px;}
.wc_c00356{width:28.063800px;}
.w19_c00356{width:892.099575px;}
.w18_c00356{width:892.414744px;}
.w0_c00356{width:892.500000px;}
.x0_c00356{left:0.000000px;}
.x1d_c00356{left:113.887229px;}
.x1f_c00356{left:127.563264px;}
.x20_c00356{left:154.549813px;}
.x1e_c00356{left:180.639303px;}
.x21_c00356{left:197.191796px;}
.x22_c00356{left:222.738286px;}
.x1b_c00356{left:253.542308px;}
.x1a_c00356{left:269.015236px;}
.x1c_c00356{left:423.021349px;}
.x1_c00356{left:496.623600px;}
.x2_c00356{left:508.681800px;}
.x3_c00356{left:532.611000px;}
.x4_c00356{left:544.485600px;}
.x5_c00356{left:559.958400px;}
.x6_c00356{left:564.636600px;}
.x7_c00356{left:576.869400px;}
.x8_c00356{left:585.147600px;}
.x9_c00356{left:590.364000px;}
.xa_c00356{left:606.555000px;}
.xb_c00356{left:616.631400px;}
.xc_c00356{left:621.309600px;}
.xd_c00356{left:625.809600px;}
.xe_c00356{left:653.873400px;}
.xf_c00356{left:661.971600px;}
.x10_c00356{left:673.126200px;}
.x23_c00356{left:675.774105px;}
.x11_c00356{left:683.920800px;}
.x12_c00356{left:708.751800px;}
.x13_c00356{left:713.428200px;}
.x14_c00356{left:720.626400px;}
.x15_c00356{left:725.306400px;}
.x16_c00356{left:733.581000px;}
.x17_c00356{left:741.675600px;}
.x18_c00356{left:749.053800px;}
.x19_c00356{left:755.528400px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws1_c00356{word-spacing:-26.919715pt;}
.ws2_c00356{word-spacing:-15.993060pt;}
.ws0_c00356{word-spacing:-14.713194pt;}
.ws3_c00356{word-spacing:0.000000pt;}
._c_c00356{margin-left:-3.203240pt;}
._5_c00356{margin-left:-1.901287pt;}
._2_c00356{margin-left:-0.924574pt;}
._0_c00356{width:0.979567pt;}
._b_c00356{width:1.996581pt;}
._7_c00356{width:2.913568pt;}
._3_c00356{width:3.928982pt;}
._6_c00356{width:5.770386pt;}
._4_c00356{width:6.725199pt;}
._a_c00356{width:8.564241pt;}
._8_c00356{width:9.508423pt;}
._9_c00356{width:10.454525pt;}
._e_c00356{width:12.395398pt;}
._f_c00356{width:13.785589pt;}
._d_c00356{width:14.827032pt;}
._13_c00356{width:20.738068pt;}
._12_c00356{width:22.519580pt;}
._11_c00356{width:24.388135pt;}
._10_c00356{width:25.529569pt;}
._1_c00356{width:176.037534pt;}
.fs4_c00356{font-size:34.544413pt;}
.fs3_c00356{font-size:40.301904pt;}
.fs2_c00356{font-size:53.096085pt;}
.fs0_c00356{font-size:58.852776pt;}
.fs1_c00356{font-size:63.972241pt;}
.y0_c00356{bottom:0.000000pt;}
.y3_c00356{bottom:0.107500pt;}
.y7_c00356{bottom:0.494374pt;}
.y2_c00356{bottom:3.518132pt;}
.y9_c00356{bottom:58.481202pt;}
.y1_c00356{bottom:66.331840pt;}
.y30_c00356{bottom:92.865722pt;}
.y2f_c00356{bottom:120.533844pt;}
.y2e_c00356{bottom:148.040766pt;}
.y2d_c00356{bottom:175.708222pt;}
.y2c_c00356{bottom:192.821548pt;}
.y2b_c00356{bottom:205.454877pt;}
.y2a_c00356{bottom:217.608205pt;}
.y29_c00356{bottom:233.601532pt;}
.y28_c00356{bottom:245.116194pt;}
.y27_c00356{bottom:263.989520pt;}
.y26_c00356{bottom:287.816044pt;}
.y25_c00356{bottom:315.324166pt;}
.y24_c00356{bottom:344.591354pt;}
.y23_c00356{bottom:372.098810pt;}
.y22_c00356{bottom:388.413470pt;}
.y21_c00356{bottom:400.726798pt;}
.y20_c00356{bottom:429.513987pt;}
.y1f_c00356{bottom:457.181443pt;}
.y1e_c00356{bottom:474.293436pt;}
.y1d_c00356{bottom:489.005430pt;}
.y1c_c00356{bottom:506.117423pt;}
.y1b_c00356{bottom:531.068613pt;}
.y1a_c00356{bottom:558.736069pt;}
.y19_c00356{bottom:575.845662pt;}
.y18_c00356{bottom:593.438721pt;}
.y17_c00356{bottom:634.860171pt;}
.y16_c00356{bottom:662.528294pt;}
.y15_c00356{bottom:690.034549pt;}
.y14_c00356{bottom:717.702672pt;}
.y13_c00356{bottom:734.816265pt;}
.y12_c00356{bottom:752.569324pt;}
.y11_c00356{bottom:793.830375pt;}
.y10_c00356{bottom:821.497297pt;}
.yf_c00356{bottom:849.005419pt;}
.ye_c00356{bottom:876.673541pt;}
.yd_c00356{bottom:904.179797pt;}
.yc_c00356{bottom:931.847919pt;}
.yb_c00356{bottom:948.958979pt;}
.ya_c00356{bottom:966.710172pt;}
.y8_c00356{bottom:983.182565pt;}
.y6_c00356{bottom:1023.551024pt;}
.y5_c00356{bottom:1041.942883pt;}
.y4_c00356{bottom:1060.334742pt;}
.h1_c00356{height:16.153120pt;}
.hc_c00356{height:22.142969pt;}
.hb_c00356{height:25.833520pt;}
.h7_c00356{height:34.034591pt;}
.h6_c00356{height:37.724630pt;}
.h2_c00356{height:41.196944pt;}
.h4_c00356{height:44.780569pt;}
.h8_c00356{height:47.627189pt;}
.h9_c00356{height:57.319128pt;}
.ha_c00356{height:57.383100pt;}
.h5_c00356{height:1122.161626pt;}
.h3_c00356{height:1122.559167pt;}
.h0_c00356{height:1122.666667pt;}
.w17_c00356{width:2.560000pt;}
.w11_c00356{width:4.156800pt;}
.wb_c00356{width:4.160000pt;}
.w5_c00356{width:4.478400pt;}
.w16_c00356{width:5.755200pt;}
.w8_c00356{width:5.756800pt;}
.w12_c00356{width:6.398400pt;}
.we_c00356{width:6.556800pt;}
.w15_c00356{width:6.558400pt;}
.w14_c00356{width:7.195200pt;}
.w13_c00356{width:7.355200pt;}
.w6_c00356{width:7.356800pt;}
.w7_c00356{width:7.358400pt;}
.wd_c00356{width:8.318400pt;}
.wa_c00356{width:8.956800pt;}
.wf_c00356{width:10.075200pt;}
.w3_c00356{width:10.555200pt;}
.w1_c00356{width:10.718400pt;}
.w9_c00356{width:11.035200pt;}
.w4_c00356{width:13.753600pt;}
.w2_c00356{width:21.270400pt;}
.w10_c00356{width:23.032000pt;}
.wc_c00356{width:24.945600pt;}
.w19_c00356{width:792.977400pt;}
.w18_c00356{width:793.257550pt;}
.w0_c00356{width:793.333333pt;}
.x0_c00356{left:0.000000pt;}
.x1d_c00356{left:101.233093pt;}
.x1f_c00356{left:113.389568pt;}
.x20_c00356{left:137.377612pt;}
.x1e_c00356{left:160.568269pt;}
.x21_c00356{left:175.281597pt;}
.x22_c00356{left:197.989587pt;}
.x1b_c00356{left:225.370940pt;}
.x1a_c00356{left:239.124654pt;}
.x1c_c00356{left:376.018977pt;}
.x1_c00356{left:441.443200pt;}
.x2_c00356{left:452.161600pt;}
.x3_c00356{left:473.432000pt;}
.x4_c00356{left:483.987200pt;}
.x5_c00356{left:497.740800pt;}
.x6_c00356{left:501.899200pt;}
.x7_c00356{left:512.772800pt;}
.x8_c00356{left:520.131200pt;}
.x9_c00356{left:524.768000pt;}
.xa_c00356{left:539.160000pt;}
.xb_c00356{left:548.116800pt;}
.xc_c00356{left:552.275200pt;}
.xd_c00356{left:556.275200pt;}
.xe_c00356{left:581.220800pt;}
.xf_c00356{left:588.419200pt;}
.x10_c00356{left:598.334400pt;}
.x23_c00356{left:600.688093pt;}
.x11_c00356{left:607.929600pt;}
.x12_c00356{left:630.001600pt;}
.x13_c00356{left:634.158400pt;}
.x14_c00356{left:640.556800pt;}
.x15_c00356{left:644.716800pt;}
.x16_c00356{left:652.072000pt;}
.x17_c00356{left:659.267200pt;}
.x18_c00356{left:665.825600pt;}
.x19_c00356{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:0.916000;font-style:normal;font-weight:normal;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_bbf043094d7ca77c4169c9e9.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.112000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.113000;font-style:normal;font-weight:normal;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_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:1.115000;font-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_c00357{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00357{word-spacing:-30.284680px;}
.ws0_c00357{word-spacing:-16.552343px;}
.ws2_c00357{word-spacing:0.000000px;}
._11_c00357{margin-left:-4.687292px;}
._4_c00357{margin-left:-2.676096px;}
._3_c00357{margin-left:-1.181407px;}
._0_c00357{width:1.102012px;}
._12_c00357{width:2.417962px;}
._5_c00357{width:4.621916px;}
._6_c00357{width:5.679611px;}
._2_c00357{width:6.940791px;}
._1_c00357{width:8.398919px;}
._13_c00357{width:9.456701px;}
._7_c00357{width:10.590404px;}
._8_c00357{width:12.136852px;}
._e_c00357{width:13.385117px;}
._c_c00357{width:14.620814px;}
._b_c00357{width:15.796034px;}
._d_c00357{width:16.866496px;}
._f_c00357{width:21.363955px;}
._9_c00357{width:23.502475px;}
._a_c00357{width:25.700708px;}
._10_c00357{width:59.575241px;}
.fc1_c00357{color:rgb(105,148,45);}
.fc0_c00357{color:rgb(35,31,32);}
.fs2_c00357{font-size:59.733096px;}
.fs0_c00357{font-size:66.209374px;}
.fs1_c00357{font-size:71.968771px;}
.y0_c00357{bottom:0.000000px;}
.y3_c00357{bottom:0.120938px;}
.y7_c00357{bottom:0.556171px;}
.y2_c00357{bottom:3.957899px;}
.y9_c00357{bottom:65.791352px;}
.y1_c00357{bottom:74.623320px;}
.y27_c00357{bottom:120.665530px;}
.y26_c00357{bottom:151.792168px;}
.y25_c00357{bottom:182.917455px;}
.y24_c00357{bottom:214.044093px;}
.y23_c00357{bottom:245.168631px;}
.y22_c00357{bottom:276.115268px;}
.y21_c00357{bottom:307.423256px;}
.y20_c00357{bottom:338.367043px;}
.y1f_c00357{bottom:369.493681px;}
.y1e_c00357{bottom:410.514614px;}
.y1d_c00357{bottom:441.461252px;}
.y1c_c00357{bottom:472.405790px;}
.y1b_c00357{bottom:524.223269px;}
.y1a_c00357{bottom:555.167807px;}
.y19_c00357{bottom:586.475794px;}
.y18_c00357{bottom:617.421082px;}
.y17_c00357{bottom:648.727719px;}
.y16_c00357{bottom:679.674357px;}
.y15_c00357{bottom:710.798894px;}
.y14_c00357{bottom:741.025532px;}
.y13_c00357{bottom:806.338506px;}
.y12_c00357{bottom:852.756137px;}
.y11_c00357{bottom:883.880675px;}
.y10_c00357{bottom:914.827313px;}
.yf_c00357{bottom:945.952600px;}
.ye_c00357{bottom:976.900588px;}
.yd_c00357{bottom:1008.027225px;}
.yc_c00357{bottom:1038.972513px;}
.yb_c00357{bottom:1070.098401px;}
.ya_c00357{bottom:1089.348943px;}
.y8_c00357{bottom:1106.080386px;}
.y6_c00357{bottom:1151.494902px;}
.y5_c00357{bottom:1172.185744px;}
.y4_c00357{bottom:1192.876585px;}
.h1_c00357{height:18.172260px;}
.h7_c00357{height:38.288915px;}
.h6_c00357{height:42.440208px;}
.h2_c00357{height:46.346561px;}
.h4_c00357{height:50.378140px;}
.h9_c00357{height:53.580587px;}
.h8_c00357{height:64.484019px;}
.ha_c00357{height:64.699925px;}
.h5_c00357{height:1262.431829px;}
.h3_c00357{height:1262.879062px;}
.h0_c00357{height:1263.000000px;}
.w17_c00357{width:2.880000px;}
.w11_c00357{width:4.676400px;}
.wb_c00357{width:4.680000px;}
.w5_c00357{width:5.038200px;}
.w16_c00357{width:6.474600px;}
.w8_c00357{width:6.476400px;}
.w12_c00357{width:7.198200px;}
.we_c00357{width:7.376400px;}
.w15_c00357{width:7.378200px;}
.w14_c00357{width:8.094600px;}
.w13_c00357{width:8.274600px;}
.w6_c00357{width:8.276400px;}
.w7_c00357{width:8.278200px;}
.wd_c00357{width:9.358200px;}
.wa_c00357{width:10.076400px;}
.wf_c00357{width:11.334600px;}
.w3_c00357{width:11.874600px;}
.w1_c00357{width:12.058200px;}
.w9_c00357{width:12.414600px;}
.w4_c00357{width:15.472800px;}
.w2_c00357{width:23.929200px;}
.w10_c00357{width:25.911000px;}
.wc_c00357{width:28.063800px;}
.w19_c00357{width:892.099575px;}
.w18_c00357{width:892.414744px;}
.w0_c00357{width:892.500000px;}
.x0_c00357{left:0.000000px;}
.x1d_c00357{left:113.887229px;}
.x1f_c00357{left:127.563264px;}
.x20_c00357{left:154.547478px;}
.x1e_c00357{left:180.639303px;}
.x21_c00357{left:233.894245px;}
.x1b_c00357{left:253.542308px;}
.x1a_c00357{left:269.015236px;}
.x1c_c00357{left:423.021349px;}
.x1_c00357{left:496.623600px;}
.x2_c00357{left:508.681800px;}
.x3_c00357{left:532.611000px;}
.x4_c00357{left:544.485600px;}
.x5_c00357{left:559.958400px;}
.x6_c00357{left:564.636600px;}
.x7_c00357{left:576.869400px;}
.x8_c00357{left:585.147600px;}
.x9_c00357{left:590.364000px;}
.xa_c00357{left:606.555000px;}
.xb_c00357{left:616.631400px;}
.xc_c00357{left:621.309600px;}
.xd_c00357{left:625.809600px;}
.xe_c00357{left:653.873400px;}
.xf_c00357{left:661.971600px;}
.x10_c00357{left:673.126200px;}
.x11_c00357{left:683.920800px;}
.x12_c00357{left:708.751800px;}
.x13_c00357{left:713.428200px;}
.x14_c00357{left:720.626400px;}
.x15_c00357{left:725.306400px;}
.x16_c00357{left:733.581000px;}
.x17_c00357{left:741.675600px;}
.x18_c00357{left:749.053800px;}
.x19_c00357{left:755.528400px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws1_c00357{word-spacing:-26.919715pt;}
.ws0_c00357{word-spacing:-14.713194pt;}
.ws2_c00357{word-spacing:0.000000pt;}
._11_c00357{margin-left:-4.166482pt;}
._4_c00357{margin-left:-2.378752pt;}
._3_c00357{margin-left:-1.050139pt;}
._0_c00357{width:0.979567pt;}
._12_c00357{width:2.149300pt;}
._5_c00357{width:4.108370pt;}
._6_c00357{width:5.048543pt;}
._2_c00357{width:6.169592pt;}
._1_c00357{width:7.465706pt;}
._13_c00357{width:8.405956pt;}
._7_c00357{width:9.413692pt;}
._8_c00357{width:10.788313pt;}
._e_c00357{width:11.897882pt;}
._c_c00357{width:12.996279pt;}
._b_c00357{width:14.040919pt;}
._d_c00357{width:14.992441pt;}
._f_c00357{width:18.990183pt;}
._9_c00357{width:20.891089pt;}
._a_c00357{width:22.845074pt;}
._10_c00357{width:52.955770pt;}
.fs2_c00357{font-size:53.096085pt;}
.fs0_c00357{font-size:58.852776pt;}
.fs1_c00357{font-size:63.972241pt;}
.y0_c00357{bottom:0.000000pt;}
.y3_c00357{bottom:0.107500pt;}
.y7_c00357{bottom:0.494374pt;}
.y2_c00357{bottom:3.518132pt;}
.y9_c00357{bottom:58.481202pt;}
.y1_c00357{bottom:66.331840pt;}
.y27_c00357{bottom:107.258249pt;}
.y26_c00357{bottom:134.926371pt;}
.y25_c00357{bottom:162.593294pt;}
.y24_c00357{bottom:190.261416pt;}
.y23_c00357{bottom:217.927672pt;}
.y22_c00357{bottom:245.435794pt;}
.y21_c00357{bottom:273.265116pt;}
.y20_c00357{bottom:300.770705pt;}
.y1f_c00357{bottom:328.438827pt;}
.y1e_c00357{bottom:364.901879pt;}
.y1d_c00357{bottom:392.410002pt;}
.y1c_c00357{bottom:419.916257pt;}
.y1b_c00357{bottom:465.976239pt;}
.y1a_c00357{bottom:493.482495pt;}
.y19_c00357{bottom:521.311817pt;}
.y18_c00357{bottom:548.818739pt;}
.y17_c00357{bottom:576.646861pt;}
.y16_c00357{bottom:604.154984pt;}
.y15_c00357{bottom:631.821239pt;}
.y14_c00357{bottom:658.689362pt;}
.y13_c00357{bottom:716.745339pt;}
.y12_c00357{bottom:758.005456pt;}
.y11_c00357{bottom:785.671711pt;}
.y10_c00357{bottom:813.179833pt;}
.yf_c00357{bottom:840.846756pt;}
.ye_c00357{bottom:868.356078pt;}
.yd_c00357{bottom:896.024200pt;}
.yc_c00357{bottom:923.531123pt;}
.yb_c00357{bottom:951.198578pt;}
.ya_c00357{bottom:968.310171pt;}
.y8_c00357{bottom:983.182565pt;}
.y6_c00357{bottom:1023.551024pt;}
.y5_c00357{bottom:1041.942883pt;}
.y4_c00357{bottom:1060.334742pt;}
.h1_c00357{height:16.153120pt;}
.h7_c00357{height:34.034591pt;}
.h6_c00357{height:37.724630pt;}
.h2_c00357{height:41.196944pt;}
.h4_c00357{height:44.780569pt;}
.h9_c00357{height:47.627189pt;}
.h8_c00357{height:57.319128pt;}
.ha_c00357{height:57.511045pt;}
.h5_c00357{height:1122.161626pt;}
.h3_c00357{height:1122.559167pt;}
.h0_c00357{height:1122.666667pt;}
.w17_c00357{width:2.560000pt;}
.w11_c00357{width:4.156800pt;}
.wb_c00357{width:4.160000pt;}
.w5_c00357{width:4.478400pt;}
.w16_c00357{width:5.755200pt;}
.w8_c00357{width:5.756800pt;}
.w12_c00357{width:6.398400pt;}
.we_c00357{width:6.556800pt;}
.w15_c00357{width:6.558400pt;}
.w14_c00357{width:7.195200pt;}
.w13_c00357{width:7.355200pt;}
.w6_c00357{width:7.356800pt;}
.w7_c00357{width:7.358400pt;}
.wd_c00357{width:8.318400pt;}
.wa_c00357{width:8.956800pt;}
.wf_c00357{width:10.075200pt;}
.w3_c00357{width:10.555200pt;}
.w1_c00357{width:10.718400pt;}
.w9_c00357{width:11.035200pt;}
.w4_c00357{width:13.753600pt;}
.w2_c00357{width:21.270400pt;}
.w10_c00357{width:23.032000pt;}
.wc_c00357{width:24.945600pt;}
.w19_c00357{width:792.977400pt;}
.w18_c00357{width:793.257550pt;}
.w0_c00357{width:793.333333pt;}
.x0_c00357{left:0.000000pt;}
.x1d_c00357{left:101.233093pt;}
.x1f_c00357{left:113.389568pt;}
.x20_c00357{left:137.375536pt;}
.x1e_c00357{left:160.568269pt;}
.x21_c00357{left:207.905995pt;}
.x1b_c00357{left:225.370940pt;}
.x1a_c00357{left:239.124654pt;}
.x1c_c00357{left:376.018977pt;}
.x1_c00357{left:441.443200pt;}
.x2_c00357{left:452.161600pt;}
.x3_c00357{left:473.432000pt;}
.x4_c00357{left:483.987200pt;}
.x5_c00357{left:497.740800pt;}
.x6_c00357{left:501.899200pt;}
.x7_c00357{left:512.772800pt;}
.x8_c00357{left:520.131200pt;}
.x9_c00357{left:524.768000pt;}
.xa_c00357{left:539.160000pt;}
.xb_c00357{left:548.116800pt;}
.xc_c00357{left:552.275200pt;}
.xd_c00357{left:556.275200pt;}
.xe_c00357{left:581.220800pt;}
.xf_c00357{left:588.419200pt;}
.x10_c00357{left:598.334400pt;}
.x11_c00357{left:607.929600pt;}
.x12_c00357{left:630.001600pt;}
.x13_c00357{left:634.158400pt;}
.x14_c00357{left:640.556800pt;}
.x15_c00357{left:644.716800pt;}
.x16_c00357{left:652.072000pt;}
.x17_c00357{left:659.267200pt;}
.x18_c00357{left:665.825600pt;}
.x19_c00357{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:0.916000;font-style:normal;font-weight:normal;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_31d328c485f92bb856d88a32.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.112000;font-style:normal;font-weight:normal;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_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.115000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.113000;font-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_c00358{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls0_c00358{letter-spacing:0.000000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00358{word-spacing:-30.284680px;}
.ws2_c00358{word-spacing:-17.992193px;}
.ws0_c00358{word-spacing:-16.552343px;}
.ws3_c00358{word-spacing:0.000000px;}
._3_c00358{margin-left:-4.443309px;}
._4_c00358{margin-left:-3.381274px;}
._5_c00358{margin-left:-2.272883px;}
._2_c00358{margin-left:-1.195322px;}
._0_c00358{width:1.102012px;}
._6_c00358{width:2.437074px;}
._a_c00358{width:4.972874px;}
._8_c00358{width:6.500569px;}
._9_c00358{width:8.487520px;}
._b_c00358{width:13.232768px;}
._7_c00358{width:15.882570px;}
._1_c00358{width:59.575241px;}
.fc1_c00358{color:rgb(105,148,45);}
.fc0_c00358{color:rgb(35,31,32);}
.fs2_c00358{font-size:59.733096px;}
.fs0_c00358{font-size:66.209374px;}
.fs1_c00358{font-size:71.968771px;}
.y0_c00358{bottom:0.000000px;}
.y3_c00358{bottom:0.120938px;}
.y7_c00358{bottom:0.556171px;}
.y2_c00358{bottom:3.957899px;}
.y9_c00358{bottom:65.791352px;}
.y1_c00358{bottom:74.623320px;}
.y29_c00358{bottom:84.501595px;}
.y28_c00358{bottom:115.627482px;}
.y27_c00358{bottom:146.752770px;}
.y26_c00358{bottom:177.160758px;}
.y25_c00358{bottom:208.287395px;}
.y24_c00358{bottom:244.269831px;}
.y23_c00358{bottom:275.215118px;}
.y22_c00358{bottom:306.341756px;}
.y21_c00358{bottom:336.568394px;}
.y20_c00358{bottom:384.427225px;}
.y1f_c00358{bottom:415.551762px;}
.y1e_c00358{bottom:446.498400px;}
.y1d_c00358{bottom:477.622938px;}
.y1c_c00358{bottom:507.669576px;}
.y1b_c00358{bottom:552.830507px;}
.y1a_c00358{bottom:583.775795px;}
.y19_c00358{bottom:615.081683px;}
.y18_c00358{bottom:646.028320px;}
.y17_c00358{bottom:677.334958px;}
.y16_c00358{bottom:708.280245px;}
.y15_c00358{bottom:739.406883px;}
.y14_c00358{bottom:770.351420px;}
.y13_c00358{bottom:801.298058px;}
.y12_c00358{bottom:832.604696px;}
.y11_c00358{bottom:863.549983px;}
.y10_c00358{bottom:894.856621px;}
.yf_c00358{bottom:925.801158px;}
.ye_c00358{bottom:956.927796px;}
.yd_c00358{bottom:987.153084px;}
.yc_c00358{bottom:1018.279721px;}
.yb_c00358{bottom:1054.262907px;}
.ya_c00358{bottom:1085.210894px;}
.y8_c00358{bottom:1106.080386px;}
.y6_c00358{bottom:1151.494902px;}
.y5_c00358{bottom:1172.185744px;}
.y4_c00358{bottom:1192.876585px;}
.h1_c00358{height:18.172260px;}
.h7_c00358{height:38.288915px;}
.h6_c00358{height:42.440208px;}
.h2_c00358{height:46.346561px;}
.h4_c00358{height:50.378140px;}
.h8_c00358{height:64.484019px;}
.ha_c00358{height:64.555988px;}
.h9_c00358{height:64.699925px;}
.h5_c00358{height:1262.431829px;}
.h3_c00358{height:1262.879062px;}
.h0_c00358{height:1263.000000px;}
.w17_c00358{width:2.880000px;}
.w11_c00358{width:4.676400px;}
.wb_c00358{width:4.680000px;}
.w5_c00358{width:5.038200px;}
.w16_c00358{width:6.474600px;}
.w8_c00358{width:6.476400px;}
.w12_c00358{width:7.198200px;}
.we_c00358{width:7.376400px;}
.w15_c00358{width:7.378200px;}
.w14_c00358{width:8.094600px;}
.w13_c00358{width:8.274600px;}
.w6_c00358{width:8.276400px;}
.w7_c00358{width:8.278200px;}
.wd_c00358{width:9.358200px;}
.wa_c00358{width:10.076400px;}
.wf_c00358{width:11.334600px;}
.w3_c00358{width:11.874600px;}
.w1_c00358{width:12.058200px;}
.w9_c00358{width:12.414600px;}
.w4_c00358{width:15.472800px;}
.w2_c00358{width:23.929200px;}
.w10_c00358{width:25.911000px;}
.wc_c00358{width:28.063800px;}
.w19_c00358{width:892.099575px;}
.w18_c00358{width:892.414744px;}
.w0_c00358{width:892.500000px;}
.x0_c00358{left:0.000000px;}
.x1d_c00358{left:113.887229px;}
.x1f_c00358{left:127.561311px;}
.x1e_c00358{left:154.549813px;}
.x21_c00358{left:181.535617px;}
.x20_c00358{left:233.892683px;}
.x1b_c00358{left:253.542308px;}
.x1a_c00358{left:269.015236px;}
.x1c_c00358{left:423.021349px;}
.x22_c00358{left:462.211690px;}
.x1_c00358{left:496.623600px;}
.x2_c00358{left:508.681800px;}
.x3_c00358{left:532.611000px;}
.x4_c00358{left:544.485600px;}
.x5_c00358{left:559.958400px;}
.x6_c00358{left:564.636600px;}
.x7_c00358{left:576.869400px;}
.x8_c00358{left:585.147600px;}
.x9_c00358{left:590.364000px;}
.xa_c00358{left:606.555000px;}
.xb_c00358{left:616.631400px;}
.xc_c00358{left:621.309600px;}
.xd_c00358{left:625.809600px;}
.xe_c00358{left:653.873400px;}
.xf_c00358{left:661.971600px;}
.x10_c00358{left:673.126200px;}
.x11_c00358{left:683.920800px;}
.x12_c00358{left:708.751800px;}
.x13_c00358{left:713.428200px;}
.x14_c00358{left:720.626400px;}
.x15_c00358{left:725.306400px;}
.x16_c00358{left:733.581000px;}
.x17_c00358{left:741.675600px;}
.x18_c00358{left:749.053800px;}
.x19_c00358{left:755.528400px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws1_c00358{word-spacing:-26.919715pt;}
.ws2_c00358{word-spacing:-15.993060pt;}
.ws0_c00358{word-spacing:-14.713194pt;}
.ws3_c00358{word-spacing:0.000000pt;}
._3_c00358{margin-left:-3.949608pt;}
._4_c00358{margin-left:-3.005577pt;}
._5_c00358{margin-left:-2.020340pt;}
._2_c00358{margin-left:-1.062509pt;}
._0_c00358{width:0.979567pt;}
._6_c00358{width:2.166288pt;}
._a_c00358{width:4.420332pt;}
._8_c00358{width:5.778284pt;}
._9_c00358{width:7.544462pt;}
._b_c00358{width:11.762460pt;}
._7_c00358{width:14.117840pt;}
._1_c00358{width:52.955770pt;}
.fs2_c00358{font-size:53.096085pt;}
.fs0_c00358{font-size:58.852776pt;}
.fs1_c00358{font-size:63.972241pt;}
.y0_c00358{bottom:0.000000pt;}
.y3_c00358{bottom:0.107500pt;}
.y7_c00358{bottom:0.494374pt;}
.y2_c00358{bottom:3.518132pt;}
.y9_c00358{bottom:58.481202pt;}
.y1_c00358{bottom:66.331840pt;}
.y29_c00358{bottom:75.112529pt;}
.y28_c00358{bottom:102.779984pt;}
.y27_c00358{bottom:130.446907pt;}
.y26_c00358{bottom:157.476229pt;}
.y25_c00358{bottom:185.144351pt;}
.y24_c00358{bottom:217.128739pt;}
.y23_c00358{bottom:244.635661pt;}
.y22_c00358{bottom:272.303783pt;}
.y21_c00358{bottom:299.171906pt;}
.y20_c00358{bottom:341.713089pt;}
.y1f_c00358{bottom:369.379344pt;}
.y1e_c00358{bottom:396.887467pt;}
.y1d_c00358{bottom:424.553722pt;}
.y1c_c00358{bottom:451.261845pt;}
.y1b_c00358{bottom:491.404896pt;}
.y1a_c00358{bottom:518.911818pt;}
.y19_c00358{bottom:546.739273pt;}
.y18_c00358{bottom:574.247396pt;}
.y17_c00358{bottom:602.075518pt;}
.y16_c00358{bottom:629.582440pt;}
.y15_c00358{bottom:657.250563pt;}
.y14_c00358{bottom:684.756818pt;}
.y13_c00358{bottom:712.264940pt;}
.y12_c00358{bottom:740.093063pt;}
.y11_c00358{bottom:767.599985pt;}
.y10_c00358{bottom:795.428107pt;}
.yf_c00358{bottom:822.934363pt;}
.ye_c00358{bottom:850.602485pt;}
.yd_c00358{bottom:877.469408pt;}
.yc_c00358{bottom:905.137530pt;}
.yb_c00358{bottom:937.122584pt;}
.ya_c00358{bottom:964.631906pt;}
.y8_c00358{bottom:983.182565pt;}
.y6_c00358{bottom:1023.551024pt;}
.y5_c00358{bottom:1041.942883pt;}
.y4_c00358{bottom:1060.334742pt;}
.h1_c00358{height:16.153120pt;}
.h7_c00358{height:34.034591pt;}
.h6_c00358{height:37.724630pt;}
.h2_c00358{height:41.196944pt;}
.h4_c00358{height:44.780569pt;}
.h8_c00358{height:57.319128pt;}
.ha_c00358{height:57.383100pt;}
.h9_c00358{height:57.511045pt;}
.h5_c00358{height:1122.161626pt;}
.h3_c00358{height:1122.559167pt;}
.h0_c00358{height:1122.666667pt;}
.w17_c00358{width:2.560000pt;}
.w11_c00358{width:4.156800pt;}
.wb_c00358{width:4.160000pt;}
.w5_c00358{width:4.478400pt;}
.w16_c00358{width:5.755200pt;}
.w8_c00358{width:5.756800pt;}
.w12_c00358{width:6.398400pt;}
.we_c00358{width:6.556800pt;}
.w15_c00358{width:6.558400pt;}
.w14_c00358{width:7.195200pt;}
.w13_c00358{width:7.355200pt;}
.w6_c00358{width:7.356800pt;}
.w7_c00358{width:7.358400pt;}
.wd_c00358{width:8.318400pt;}
.wa_c00358{width:8.956800pt;}
.wf_c00358{width:10.075200pt;}
.w3_c00358{width:10.555200pt;}
.w1_c00358{width:10.718400pt;}
.w9_c00358{width:11.035200pt;}
.w4_c00358{width:13.753600pt;}
.w2_c00358{width:21.270400pt;}
.w10_c00358{width:23.032000pt;}
.wc_c00358{width:24.945600pt;}
.w19_c00358{width:792.977400pt;}
.w18_c00358{width:793.257550pt;}
.w0_c00358{width:793.333333pt;}
.x0_c00358{left:0.000000pt;}
.x1d_c00358{left:101.233093pt;}
.x1f_c00358{left:113.387832pt;}
.x1e_c00358{left:137.377612pt;}
.x21_c00358{left:161.364993pt;}
.x20_c00358{left:207.904607pt;}
.x1b_c00358{left:225.370940pt;}
.x1a_c00358{left:239.124654pt;}
.x1c_c00358{left:376.018977pt;}
.x22_c00358{left:410.854836pt;}
.x1_c00358{left:441.443200pt;}
.x2_c00358{left:452.161600pt;}
.x3_c00358{left:473.432000pt;}
.x4_c00358{left:483.987200pt;}
.x5_c00358{left:497.740800pt;}
.x6_c00358{left:501.899200pt;}
.x7_c00358{left:512.772800pt;}
.x8_c00358{left:520.131200pt;}
.x9_c00358{left:524.768000pt;}
.xa_c00358{left:539.160000pt;}
.xb_c00358{left:548.116800pt;}
.xc_c00358{left:552.275200pt;}
.xd_c00358{left:556.275200pt;}
.xe_c00358{left:581.220800pt;}
.xf_c00358{left:588.419200pt;}
.x10_c00358{left:598.334400pt;}
.x11_c00358{left:607.929600pt;}
.x12_c00358{left:630.001600pt;}
.x13_c00358{left:634.158400pt;}
.x14_c00358{left:640.556800pt;}
.x15_c00358{left:644.716800pt;}
.x16_c00358{left:652.072000pt;}
.x17_c00358{left:659.267200pt;}
.x18_c00358{left:665.825600pt;}
.x19_c00358{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:0.916000;font-style:normal;font-weight:normal;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_e4f510306f13ad735913275c.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.112000;font-style:normal;font-weight:normal;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_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.115000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:1.113000;font-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_c00359{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00359{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00359{word-spacing:-30.284680px;}
.ws0_c00359{word-spacing:-16.552343px;}
.ws2_c00359{word-spacing:0.000000px;}
._f_c00359{margin-left:-5.570264px;}
._5_c00359{margin-left:-4.446530px;}
._6_c00359{margin-left:-3.353129px;}
._4_c00359{margin-left:-2.251166px;}
._2_c00359{margin-left:-1.070529px;}
._0_c00359{width:1.102012px;}
._3_c00359{width:2.420194px;}
._7_c00359{width:3.989606px;}
._8_c00359{width:5.970633px;}
._9_c00359{width:7.767473px;}
._a_c00359{width:9.358199px;}
._c_c00359{width:11.769856px;}
._b_c00359{width:13.487886px;}
._d_c00359{width:53.308282px;}
._e_c00359{width:56.015881px;}
._1_c00359{width:59.575241px;}
.fc1_c00359{color:rgb(105,148,45);}
.fc0_c00359{color:rgb(35,31,32);}
.fs2_c00359{font-size:59.733096px;}
.fs0_c00359{font-size:66.209374px;}
.fs1_c00359{font-size:71.968771px;}
.y0_c00359{bottom:0.000000px;}
.y3_c00359{bottom:0.120938px;}
.y7_c00359{bottom:0.556171px;}
.y2_c00359{bottom:3.957899px;}
.y9_c00359{bottom:65.791352px;}
.y1_c00359{bottom:74.623320px;}
.y28_c00359{bottom:133.079825px;}
.y27_c00359{bottom:164.025113px;}
.y26_c00359{bottom:195.151751px;}
.y25_c00359{bottom:226.098388px;}
.y24_c00359{bottom:257.222926px;}
.y23_c00359{bottom:287.989563px;}
.y22_c00359{bottom:319.474851px;}
.y21_c00359{bottom:350.420138px;}
.y20_c00359{bottom:381.548126px;}
.y1f_c00359{bottom:412.672664px;}
.y1e_c00359{bottom:443.797951px;}
.y1d_c00359{bottom:474.745939px;}
.y1c_c00359{bottom:505.871226px;}
.y1b_c00359{bottom:536.815764px;}
.y1a_c00359{bottom:567.943751px;}
.y19_c00359{bottom:598.889039px;}
.y18_c00359{bottom:630.014327px;}
.y17_c00359{bottom:660.959614px;}
.y16_c00359{bottom:691.907602px;}
.y15_c00359{bottom:725.190789px;}
.y14_c00359{bottom:756.497426px;}
.y13_c00359{bottom:787.444064px;}
.y12_c00359{bottom:818.028601px;}
.y11_c00359{bottom:854.013137px;}
.y10_c00359{bottom:885.139775px;}
.yf_c00359{bottom:916.085062px;}
.ye_c00359{bottom:946.313050px;}
.yd_c00359{bottom:977.438338px;}
.yc_c00359{bottom:1013.602873px;}
.yb_c00359{bottom:1044.549511px;}
.ya_c00359{bottom:1075.495398px;}
.y8_c00359{bottom:1106.080386px;}
.y6_c00359{bottom:1151.494902px;}
.y5_c00359{bottom:1172.185744px;}
.y4_c00359{bottom:1192.876585px;}
.h1_c00359{height:18.172260px;}
.h7_c00359{height:38.288915px;}
.h6_c00359{height:42.440208px;}
.h2_c00359{height:46.346561px;}
.h4_c00359{height:50.378140px;}
.h8_c00359{height:64.484019px;}
.ha_c00359{height:64.555988px;}
.h9_c00359{height:64.699925px;}
.h5_c00359{height:1262.431829px;}
.h3_c00359{height:1262.879062px;}
.h0_c00359{height:1263.000000px;}
.w17_c00359{width:2.880000px;}
.w11_c00359{width:4.676400px;}
.wb_c00359{width:4.680000px;}
.w5_c00359{width:5.038200px;}
.w16_c00359{width:6.474600px;}
.w8_c00359{width:6.476400px;}
.w12_c00359{width:7.198200px;}
.we_c00359{width:7.376400px;}
.w15_c00359{width:7.378200px;}
.w14_c00359{width:8.094600px;}
.w13_c00359{width:8.274600px;}
.w6_c00359{width:8.276400px;}
.w7_c00359{width:8.278200px;}
.wd_c00359{width:9.358200px;}
.wa_c00359{width:10.076400px;}
.wf_c00359{width:11.334600px;}
.w3_c00359{width:11.874600px;}
.w1_c00359{width:12.058200px;}
.w9_c00359{width:12.414600px;}
.w4_c00359{width:15.472800px;}
.w2_c00359{width:23.929200px;}
.w10_c00359{width:25.911000px;}
.wc_c00359{width:28.063800px;}
.w19_c00359{width:892.099575px;}
.w18_c00359{width:892.414744px;}
.w0_c00359{width:892.500000px;}
.x0_c00359{left:0.000000px;}
.x1d_c00359{left:113.887229px;}
.x20_c00359{left:127.559961px;}
.x1e_c00359{left:154.549813px;}
.x1f_c00359{left:181.533818px;}
.x21_c00359{left:233.893882px;}
.x1b_c00359{left:253.542308px;}
.x1a_c00359{left:269.015236px;}
.x1c_c00359{left:423.021349px;}
.x1_c00359{left:496.623600px;}
.x2_c00359{left:508.681800px;}
.x3_c00359{left:532.611000px;}
.x4_c00359{left:544.485600px;}
.x5_c00359{left:559.958400px;}
.x6_c00359{left:564.636600px;}
.x7_c00359{left:576.869400px;}
.x8_c00359{left:585.147600px;}
.x9_c00359{left:590.364000px;}
.xa_c00359{left:606.555000px;}
.xb_c00359{left:616.631400px;}
.xc_c00359{left:621.309600px;}
.xd_c00359{left:625.809600px;}
.xe_c00359{left:653.873400px;}
.xf_c00359{left:661.971600px;}
.x10_c00359{left:673.126200px;}
.x11_c00359{left:683.920800px;}
.x12_c00359{left:708.751800px;}
.x13_c00359{left:713.428200px;}
.x14_c00359{left:720.626400px;}
.x15_c00359{left:725.306400px;}
.x16_c00359{left:733.581000px;}
.x17_c00359{left:741.675600px;}
.x18_c00359{left:749.053800px;}
.x19_c00359{left:755.528400px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws1_c00359{word-spacing:-26.919715pt;}
.ws0_c00359{word-spacing:-14.713194pt;}
.ws2_c00359{word-spacing:0.000000pt;}
._f_c00359{margin-left:-4.951346pt;}
._5_c00359{margin-left:-3.952471pt;}
._6_c00359{margin-left:-2.980559pt;}
._4_c00359{margin-left:-2.001037pt;}
._2_c00359{margin-left:-0.951582pt;}
._0_c00359{width:0.979567pt;}
._3_c00359{width:2.151284pt;}
._7_c00359{width:3.546316pt;}
._8_c00359{width:5.307230pt;}
._9_c00359{width:6.904420pt;}
._a_c00359{width:8.318399pt;}
._c_c00359{width:10.462094pt;}
._b_c00359{width:11.989232pt;}
._d_c00359{width:47.385139pt;}
._e_c00359{width:49.791894pt;}
._1_c00359{width:52.955770pt;}
.fs2_c00359{font-size:53.096085pt;}
.fs0_c00359{font-size:58.852776pt;}
.fs1_c00359{font-size:63.972241pt;}
.y0_c00359{bottom:0.000000pt;}
.y3_c00359{bottom:0.107500pt;}
.y7_c00359{bottom:0.494374pt;}
.y2_c00359{bottom:3.518132pt;}
.y9_c00359{bottom:58.481202pt;}
.y1_c00359{bottom:66.331840pt;}
.y28_c00359{bottom:118.293178pt;}
.y27_c00359{bottom:145.800100pt;}
.y26_c00359{bottom:173.468223pt;}
.y25_c00359{bottom:200.976345pt;}
.y24_c00359{bottom:228.642601pt;}
.y23_c00359{bottom:255.990723pt;}
.y22_c00359{bottom:283.977645pt;}
.y21_c00359{bottom:311.484567pt;}
.y20_c00359{bottom:339.153890pt;}
.y1f_c00359{bottom:366.820145pt;}
.y1e_c00359{bottom:394.487068pt;}
.y1d_c00359{bottom:421.996390pt;}
.y1c_c00359{bottom:449.663312pt;}
.y1b_c00359{bottom:477.169568pt;}
.y1a_c00359{bottom:504.838890pt;}
.y19_c00359{bottom:532.345812pt;}
.y18_c00359{bottom:560.012735pt;}
.y17_c00359{bottom:587.519657pt;}
.y16_c00359{bottom:615.028979pt;}
.y15_c00359{bottom:644.614034pt;}
.y14_c00359{bottom:672.442156pt;}
.y13_c00359{bottom:699.950279pt;}
.y12_c00359{bottom:727.136535pt;}
.y11_c00359{bottom:759.122788pt;}
.y10_c00359{bottom:786.790911pt;}
.yf_c00359{bottom:814.297833pt;}
.ye_c00359{bottom:841.167156pt;}
.yd_c00359{bottom:868.834078pt;}
.yc_c00359{bottom:900.980332pt;}
.yb_c00359{bottom:928.488454pt;}
.ya_c00359{bottom:955.995910pt;}
.y8_c00359{bottom:983.182565pt;}
.y6_c00359{bottom:1023.551024pt;}
.y5_c00359{bottom:1041.942883pt;}
.y4_c00359{bottom:1060.334742pt;}
.h1_c00359{height:16.153120pt;}
.h7_c00359{height:34.034591pt;}
.h6_c00359{height:37.724630pt;}
.h2_c00359{height:41.196944pt;}
.h4_c00359{height:44.780569pt;}
.h8_c00359{height:57.319128pt;}
.ha_c00359{height:57.383100pt;}
.h9_c00359{height:57.511045pt;}
.h5_c00359{height:1122.161626pt;}
.h3_c00359{height:1122.559167pt;}
.h0_c00359{height:1122.666667pt;}
.w17_c00359{width:2.560000pt;}
.w11_c00359{width:4.156800pt;}
.wb_c00359{width:4.160000pt;}
.w5_c00359{width:4.478400pt;}
.w16_c00359{width:5.755200pt;}
.w8_c00359{width:5.756800pt;}
.w12_c00359{width:6.398400pt;}
.we_c00359{width:6.556800pt;}
.w15_c00359{width:6.558400pt;}
.w14_c00359{width:7.195200pt;}
.w13_c00359{width:7.355200pt;}
.w6_c00359{width:7.356800pt;}
.w7_c00359{width:7.358400pt;}
.wd_c00359{width:8.318400pt;}
.wa_c00359{width:8.956800pt;}
.wf_c00359{width:10.075200pt;}
.w3_c00359{width:10.555200pt;}
.w1_c00359{width:10.718400pt;}
.w9_c00359{width:11.035200pt;}
.w4_c00359{width:13.753600pt;}
.w2_c00359{width:21.270400pt;}
.w10_c00359{width:23.032000pt;}
.wc_c00359{width:24.945600pt;}
.w19_c00359{width:792.977400pt;}
.w18_c00359{width:793.257550pt;}
.w0_c00359{width:793.333333pt;}
.x0_c00359{left:0.000000pt;}
.x1d_c00359{left:101.233093pt;}
.x20_c00359{left:113.386632pt;}
.x1e_c00359{left:137.377612pt;}
.x1f_c00359{left:161.363394pt;}
.x21_c00359{left:207.905673pt;}
.x1b_c00359{left:225.370940pt;}
.x1a_c00359{left:239.124654pt;}
.x1c_c00359{left:376.018977pt;}
.x1_c00359{left:441.443200pt;}
.x2_c00359{left:452.161600pt;}
.x3_c00359{left:473.432000pt;}
.x4_c00359{left:483.987200pt;}
.x5_c00359{left:497.740800pt;}
.x6_c00359{left:501.899200pt;}
.x7_c00359{left:512.772800pt;}
.x8_c00359{left:520.131200pt;}
.x9_c00359{left:524.768000pt;}
.xa_c00359{left:539.160000pt;}
.xb_c00359{left:548.116800pt;}
.xc_c00359{left:552.275200pt;}
.xd_c00359{left:556.275200pt;}
.xe_c00359{left:581.220800pt;}
.xf_c00359{left:588.419200pt;}
.x10_c00359{left:598.334400pt;}
.x11_c00359{left:607.929600pt;}
.x12_c00359{left:630.001600pt;}
.x13_c00359{left:634.158400pt;}
.x14_c00359{left:640.556800pt;}
.x15_c00359{left:644.716800pt;}
.x16_c00359{left:652.072000pt;}
.x17_c00359{left:659.267200pt;}
.x18_c00359{left:665.825600pt;}
.x19_c00359{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:0.916000;font-style:normal;font-weight:normal;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_8e78208c9e1cdcabb78affb0.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.112000;font-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_c00360{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls0_c00360{letter-spacing:0.000000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00360{word-spacing:-30.284680px;}
.ws0_c00360{word-spacing:-16.552343px;}
.ws2_c00360{word-spacing:0.000000px;}
._9_c00360{margin-left:-4.278349px;}
._1_c00360{margin-left:-2.109315px;}
._a_c00360{margin-left:-1.017840px;}
._0_c00360{width:1.102012px;}
._3_c00360{width:2.508411px;}
._4_c00360{width:3.856383px;}
._6_c00360{width:5.082027px;}
._5_c00360{width:6.673424px;}
._8_c00360{width:8.445650px;}
._7_c00360{width:9.601839px;}
._b_c00360{width:19.423976px;}
._c_c00360{width:20.683378px;}
._d_c00360{width:43.153078px;}
._f_c00360{width:45.206608px;}
._e_c00360{width:47.258831px;}
._2_c00360{width:59.575241px;}
.fc1_c00360{color:rgb(105,148,45);}
.fc0_c00360{color:rgb(35,31,32);}
.fs2_c00360{font-size:59.733096px;}
.fs0_c00360{font-size:66.209374px;}
.fs1_c00360{font-size:71.968771px;}
.y0_c00360{bottom:0.000000px;}
.y3_c00360{bottom:0.120938px;}
.y7_c00360{bottom:0.556171px;}
.y2_c00360{bottom:3.957899px;}
.y9_c00360{bottom:65.791352px;}
.y1_c00360{bottom:74.623320px;}
.y1f_c00360{bottom:430.664256px;}
.y1e_c00360{bottom:461.432244px;}
.y1d_c00360{bottom:492.916031px;}
.y1c_c00360{bottom:523.864019px;}
.y1b_c00360{bottom:554.988557px;}
.y1a_c00360{bottom:586.115194px;}
.y19_c00360{bottom:617.241832px;}
.y18_c00360{bottom:648.184269px;}
.y17_c00360{bottom:679.313757px;}
.y16_c00360{bottom:710.258294px;}
.y15_c00360{bottom:741.203582px;}
.y14_c00360{bottom:774.486769px;}
.y13_c00360{bottom:805.436856px;}
.y12_c00360{bottom:836.561394px;}
.y11_c00360{bottom:867.508032px;}
.y10_c00360{bottom:898.634669px;}
.yf_c00360{bottom:929.581307px;}
.ye_c00360{bottom:960.704494px;}
.yd_c00360{bottom:991.652482px;}
.yc_c00360{bottom:1022.959119px;}
.yb_c00360{bottom:1053.902907px;}
.ya_c00360{bottom:1085.210894px;}
.y8_c00360{bottom:1106.080386px;}
.y6_c00360{bottom:1151.494902px;}
.y5_c00360{bottom:1172.185744px;}
.y4_c00360{bottom:1192.876585px;}
.h1_c00360{height:18.172260px;}
.h7_c00360{height:38.288915px;}
.h6_c00360{height:42.440208px;}
.h2_c00360{height:46.346561px;}
.h4_c00360{height:50.378140px;}
.h8_c00360{height:64.484019px;}
.h5_c00360{height:1262.431829px;}
.h3_c00360{height:1262.879062px;}
.h0_c00360{height:1263.000000px;}
.w17_c00360{width:2.880000px;}
.w11_c00360{width:4.676400px;}
.wb_c00360{width:4.680000px;}
.w5_c00360{width:5.038200px;}
.w16_c00360{width:6.474600px;}
.w8_c00360{width:6.476400px;}
.w12_c00360{width:7.198200px;}
.we_c00360{width:7.376400px;}
.w15_c00360{width:7.378200px;}
.w14_c00360{width:8.094600px;}
.w13_c00360{width:8.274600px;}
.w6_c00360{width:8.276400px;}
.w7_c00360{width:8.278200px;}
.wd_c00360{width:9.358200px;}
.wa_c00360{width:10.076400px;}
.wf_c00360{width:11.334600px;}
.w3_c00360{width:11.874600px;}
.w1_c00360{width:12.058200px;}
.w9_c00360{width:12.414600px;}
.w4_c00360{width:15.472800px;}
.w2_c00360{width:23.929200px;}
.w10_c00360{width:25.911000px;}
.wc_c00360{width:28.063800px;}
.w19_c00360{width:892.099575px;}
.w18_c00360{width:892.414744px;}
.w0_c00360{width:892.500000px;}
.x0_c00360{left:0.000000px;}
.x1d_c00360{left:113.887229px;}
.x1f_c00360{left:154.548214px;}
.x20_c00360{left:181.538215px;}
.x1e_c00360{left:233.893781px;}
.x1b_c00360{left:253.542308px;}
.x1a_c00360{left:269.015236px;}
.x1c_c00360{left:423.021349px;}
.x1_c00360{left:496.623600px;}
.x2_c00360{left:508.681800px;}
.x3_c00360{left:532.611000px;}
.x4_c00360{left:544.485600px;}
.x5_c00360{left:559.958400px;}
.x6_c00360{left:564.636600px;}
.x7_c00360{left:576.869400px;}
.x8_c00360{left:585.147600px;}
.x9_c00360{left:590.364000px;}
.xa_c00360{left:606.555000px;}
.xb_c00360{left:616.631400px;}
.xc_c00360{left:621.309600px;}
.xd_c00360{left:625.809600px;}
.xe_c00360{left:653.873400px;}
.xf_c00360{left:661.971600px;}
.x10_c00360{left:673.126200px;}
.x11_c00360{left:683.920800px;}
.x12_c00360{left:708.751800px;}
.x13_c00360{left:713.428200px;}
.x14_c00360{left:720.626400px;}
.x15_c00360{left:725.306400px;}
.x16_c00360{left:733.581000px;}
.x17_c00360{left:741.675600px;}
.x18_c00360{left:749.053800px;}
.x19_c00360{left:755.528400px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws1_c00360{word-spacing:-26.919715pt;}
.ws0_c00360{word-spacing:-14.713194pt;}
.ws2_c00360{word-spacing:0.000000pt;}
._9_c00360{margin-left:-3.802977pt;}
._1_c00360{margin-left:-1.874947pt;}
._a_c00360{margin-left:-0.904747pt;}
._0_c00360{width:0.979567pt;}
._3_c00360{width:2.229699pt;}
._4_c00360{width:3.427896pt;}
._6_c00360{width:4.517357pt;}
._5_c00360{width:5.931933pt;}
._8_c00360{width:7.507244pt;}
._7_c00360{width:8.534968pt;}
._b_c00360{width:17.265757pt;}
._c_c00360{width:18.385225pt;}
._d_c00360{width:38.358291pt;}
._f_c00360{width:40.183652pt;}
._e_c00360{width:42.007850pt;}
._2_c00360{width:52.955770pt;}
.fs2_c00360{font-size:53.096085pt;}
.fs0_c00360{font-size:58.852776pt;}
.fs1_c00360{font-size:63.972241pt;}
.y0_c00360{bottom:0.000000pt;}
.y3_c00360{bottom:0.107500pt;}
.y7_c00360{bottom:0.494374pt;}
.y2_c00360{bottom:3.518132pt;}
.y9_c00360{bottom:58.481202pt;}
.y1_c00360{bottom:66.331840pt;}
.y1f_c00360{bottom:382.812672pt;}
.y1e_c00360{bottom:410.161995pt;}
.y1d_c00360{bottom:438.147583pt;}
.y1c_c00360{bottom:465.656906pt;}
.y1b_c00360{bottom:493.323161pt;}
.y1a_c00360{bottom:520.991284pt;}
.y19_c00360{bottom:548.659406pt;}
.y18_c00360{bottom:576.163795pt;}
.y17_c00360{bottom:603.834451pt;}
.y16_c00360{bottom:631.340706pt;}
.y15_c00360{bottom:658.847629pt;}
.y14_c00360{bottom:688.432683pt;}
.y13_c00360{bottom:715.943872pt;}
.y12_c00360{bottom:743.610128pt;}
.y11_c00360{bottom:771.118250pt;}
.y10_c00360{bottom:798.786373pt;}
.yf_c00360{bottom:826.294495pt;}
.ye_c00360{bottom:853.959550pt;}
.yd_c00360{bottom:881.468873pt;}
.yc_c00360{bottom:909.296995pt;}
.yb_c00360{bottom:936.802584pt;}
.ya_c00360{bottom:964.631906pt;}
.y8_c00360{bottom:983.182565pt;}
.y6_c00360{bottom:1023.551024pt;}
.y5_c00360{bottom:1041.942883pt;}
.y4_c00360{bottom:1060.334742pt;}
.h1_c00360{height:16.153120pt;}
.h7_c00360{height:34.034591pt;}
.h6_c00360{height:37.724630pt;}
.h2_c00360{height:41.196944pt;}
.h4_c00360{height:44.780569pt;}
.h8_c00360{height:57.319128pt;}
.h5_c00360{height:1122.161626pt;}
.h3_c00360{height:1122.559167pt;}
.h0_c00360{height:1122.666667pt;}
.w17_c00360{width:2.560000pt;}
.w11_c00360{width:4.156800pt;}
.wb_c00360{width:4.160000pt;}
.w5_c00360{width:4.478400pt;}
.w16_c00360{width:5.755200pt;}
.w8_c00360{width:5.756800pt;}
.w12_c00360{width:6.398400pt;}
.we_c00360{width:6.556800pt;}
.w15_c00360{width:6.558400pt;}
.w14_c00360{width:7.195200pt;}
.w13_c00360{width:7.355200pt;}
.w6_c00360{width:7.356800pt;}
.w7_c00360{width:7.358400pt;}
.wd_c00360{width:8.318400pt;}
.wa_c00360{width:8.956800pt;}
.wf_c00360{width:10.075200pt;}
.w3_c00360{width:10.555200pt;}
.w1_c00360{width:10.718400pt;}
.w9_c00360{width:11.035200pt;}
.w4_c00360{width:13.753600pt;}
.w2_c00360{width:21.270400pt;}
.w10_c00360{width:23.032000pt;}
.wc_c00360{width:24.945600pt;}
.w19_c00360{width:792.977400pt;}
.w18_c00360{width:793.257550pt;}
.w0_c00360{width:793.333333pt;}
.x0_c00360{left:0.000000pt;}
.x1d_c00360{left:101.233093pt;}
.x1f_c00360{left:137.376190pt;}
.x20_c00360{left:161.367302pt;}
.x1e_c00360{left:207.905583pt;}
.x1b_c00360{left:225.370940pt;}
.x1a_c00360{left:239.124654pt;}
.x1c_c00360{left:376.018977pt;}
.x1_c00360{left:441.443200pt;}
.x2_c00360{left:452.161600pt;}
.x3_c00360{left:473.432000pt;}
.x4_c00360{left:483.987200pt;}
.x5_c00360{left:497.740800pt;}
.x6_c00360{left:501.899200pt;}
.x7_c00360{left:512.772800pt;}
.x8_c00360{left:520.131200pt;}
.x9_c00360{left:524.768000pt;}
.xa_c00360{left:539.160000pt;}
.xb_c00360{left:548.116800pt;}
.xc_c00360{left:552.275200pt;}
.xd_c00360{left:556.275200pt;}
.xe_c00360{left:581.220800pt;}
.xf_c00360{left:588.419200pt;}
.x10_c00360{left:598.334400pt;}
.x11_c00360{left:607.929600pt;}
.x12_c00360{left:630.001600pt;}
.x13_c00360{left:634.158400pt;}
.x14_c00360{left:640.556800pt;}
.x15_c00360{left:644.716800pt;}
.x16_c00360{left:652.072000pt;}
.x17_c00360{left:659.267200pt;}
.x18_c00360{left:665.825600pt;}
.x19_c00360{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.115000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.113000;font-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_c00361{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls0_c00361{letter-spacing:0.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-16.552343px;}
.ws1_c00361{word-spacing:0.000000px;}
._b_c00361{margin-left:-5.013185px;}
._6_c00361{margin-left:-3.031749px;}
._1_c00361{margin-left:-1.378772px;}
._0_c00361{width:1.102012px;}
._3_c00361{width:3.048720px;}
._a_c00361{width:4.256543px;}
._9_c00361{width:5.835035px;}
._7_c00361{width:7.053413px;}
._8_c00361{width:8.426440px;}
._11_c00361{width:9.882423px;}
._12_c00361{width:11.040802px;}
._5_c00361{width:16.505774px;}
._4_c00361{width:20.016206px;}
._f_c00361{width:27.818636px;}
._10_c00361{width:29.665592px;}
._d_c00361{width:32.919383px;}
._c_c00361{width:34.122563px;}
._2_c00361{width:59.575241px;}
._e_c00361{width:198.042225px;}
.fc1_c00361{color:rgb(105,148,45);}
.fc0_c00361{color:rgb(35,31,32);}
.fs2_c00361{font-size:59.733096px;}
.fs0_c00361{font-size:66.209374px;}
.fs1_c00361{font-size:71.968771px;}
.y0_c00361{bottom:0.000000px;}
.y4_c00361{bottom:0.120938px;}
.y8_c00361{bottom:0.556171px;}
.y2_c00361{bottom:3.957898px;}
.ya_c00361{bottom:65.791352px;}
.y3_c00361{bottom:74.623320px;}
.y1_c00361{bottom:74.983320px;}
.y25_c00361{bottom:211.706344px;}
.y24_c00361{bottom:242.832981px;}
.y23_c00361{bottom:273.778269px;}
.y22_c00361{bottom:304.904907px;}
.y21_c00361{bottom:335.850794px;}
.y20_c00361{bottom:366.976082px;}
.y1f_c00361{bottom:397.922719px;}
.y1e_c00361{bottom:429.048007px;}
.y1d_c00361{bottom:459.994645px;}
.y1c_c00361{bottom:498.856629px;}
.y1b_c00361{bottom:522.424620px;}
.y1a_c00361{bottom:569.022101px;}
.y19_c00361{bottom:599.968739px;}
.y18_c00361{bottom:631.094026px;}
.y17_c00361{bottom:662.040664px;}
.y16_c00361{bottom:693.168651px;}
.y15_c00361{bottom:739.587483px;}
.y14_c00361{bottom:790.682862px;}
.y13_c00361{bottom:821.629500px;}
.y12_c00361{bottom:852.576138px;}
.y11_c00361{bottom:883.880675px;}
.y10_c00361{bottom:914.827313px;}
.yf_c00361{bottom:946.132600px;}
.ye_c00361{bottom:977.079238px;}
.yd_c00361{bottom:1008.387225px;}
.yc_c00361{bottom:1039.332513px;}
.yb_c00361{bottom:1069.918401px;}
.y9_c00361{bottom:1106.080386px;}
.y7_c00361{bottom:1151.494902px;}
.y6_c00361{bottom:1172.185744px;}
.y5_c00361{bottom:1192.876585px;}
.h1_c00361{height:18.172260px;}
.h7_c00361{height:38.288915px;}
.h6_c00361{height:42.440208px;}
.h2_c00361{height:46.346561px;}
.h4_c00361{height:50.378140px;}
.ha_c00361{height:53.580587px;}
.h9_c00361{height:64.484019px;}
.h8_c00361{height:64.699925px;}
.h5_c00361{height:1262.431829px;}
.h3_c00361{height:1262.879062px;}
.h0_c00361{height:1263.000000px;}
.w18_c00361{width:2.880000px;}
.w12_c00361{width:4.676400px;}
.wc_c00361{width:4.680000px;}
.w6_c00361{width:5.038200px;}
.w17_c00361{width:6.474600px;}
.w9_c00361{width:6.476400px;}
.w13_c00361{width:7.198200px;}
.wf_c00361{width:7.376400px;}
.w16_c00361{width:7.378200px;}
.w15_c00361{width:8.094600px;}
.w14_c00361{width:8.274600px;}
.w7_c00361{width:8.276400px;}
.w1_c00361{width:8.276580px;}
.w8_c00361{width:8.278200px;}
.we_c00361{width:9.358200px;}
.wb_c00361{width:10.076400px;}
.w10_c00361{width:11.334600px;}
.w4_c00361{width:11.874600px;}
.w2_c00361{width:12.058200px;}
.wa_c00361{width:12.414600px;}
.w5_c00361{width:15.472800px;}
.w3_c00361{width:23.929200px;}
.w11_c00361{width:25.911000px;}
.wd_c00361{width:28.063800px;}
.w1a_c00361{width:892.099575px;}
.w19_c00361{width:892.414744px;}
.w0_c00361{width:892.500000px;}
.x0_c00361{left:0.000000px;}
.x1e_c00361{left:113.887229px;}
.x1_c00361{left:128.331540px;}
.x1f_c00361{left:154.547478px;}
.x20_c00361{left:181.537479px;}
.x21_c00361{left:233.891396px;}
.x1c_c00361{left:253.542308px;}
.x1b_c00361{left:269.015236px;}
.x1d_c00361{left:423.021349px;}
.x2_c00361{left:496.623600px;}
.x3_c00361{left:508.681800px;}
.x4_c00361{left:532.611000px;}
.x5_c00361{left:544.485600px;}
.x6_c00361{left:559.958400px;}
.x7_c00361{left:564.636600px;}
.x8_c00361{left:576.869400px;}
.x9_c00361{left:585.147600px;}
.xa_c00361{left:590.364000px;}
.xb_c00361{left:606.555000px;}
.xc_c00361{left:616.631400px;}
.xd_c00361{left:621.309600px;}
.xe_c00361{left:625.809600px;}
.xf_c00361{left:653.873400px;}
.x10_c00361{left:661.971600px;}
.x11_c00361{left:673.126200px;}
.x12_c00361{left:683.920800px;}
.x13_c00361{left:708.751800px;}
.x14_c00361{left:713.428200px;}
.x15_c00361{left:720.626400px;}
.x16_c00361{left:725.306400px;}
.x17_c00361{left:733.581000px;}
.x18_c00361{left:741.675600px;}
.x19_c00361{left:749.053800px;}
.x1a_c00361{left:755.528400px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:-14.713194pt;}
.ws1_c00361{word-spacing:0.000000pt;}
._b_c00361{margin-left:-4.456164pt;}
._6_c00361{margin-left:-2.694888pt;}
._1_c00361{margin-left:-1.225575pt;}
._0_c00361{width:0.979567pt;}
._3_c00361{width:2.709974pt;}
._a_c00361{width:3.783594pt;}
._9_c00361{width:5.186697pt;}
._7_c00361{width:6.269701pt;}
._8_c00361{width:7.490169pt;}
._11_c00361{width:8.784376pt;}
._12_c00361{width:9.814046pt;}
._5_c00361{width:14.671799pt;}
._4_c00361{width:17.792183pt;}
._f_c00361{width:24.727677pt;}
._10_c00361{width:26.369415pt;}
._d_c00361{width:29.261674pt;}
._c_c00361{width:30.331167pt;}
._2_c00361{width:52.955770pt;}
._e_c00361{width:176.037534pt;}
.fs2_c00361{font-size:53.096085pt;}
.fs0_c00361{font-size:58.852776pt;}
.fs1_c00361{font-size:63.972241pt;}
.y0_c00361{bottom:0.000000pt;}
.y4_c00361{bottom:0.107500pt;}
.y8_c00361{bottom:0.494374pt;}
.y2_c00361{bottom:3.518132pt;}
.ya_c00361{bottom:58.481202pt;}
.y3_c00361{bottom:66.331840pt;}
.y1_c00361{bottom:66.651840pt;}
.y25_c00361{bottom:188.183417pt;}
.y24_c00361{bottom:215.851539pt;}
.y23_c00361{bottom:243.358461pt;}
.y22_c00361{bottom:271.026584pt;}
.y21_c00361{bottom:298.534039pt;}
.y20_c00361{bottom:326.200962pt;}
.y1f_c00361{bottom:353.709084pt;}
.y1e_c00361{bottom:381.376006pt;}
.y1d_c00361{bottom:408.884129pt;}
.y1c_c00361{bottom:443.428115pt;}
.y1b_c00361{bottom:464.377440pt;}
.y1a_c00361{bottom:505.797423pt;}
.y19_c00361{bottom:533.305545pt;}
.y18_c00361{bottom:560.972468pt;}
.y17_c00361{bottom:588.480590pt;}
.y16_c00361{bottom:616.149912pt;}
.y15_c00361{bottom:657.411096pt;}
.y14_c00361{bottom:702.829211pt;}
.y13_c00361{bottom:730.337333pt;}
.y12_c00361{bottom:757.845456pt;}
.y11_c00361{bottom:785.671711pt;}
.y10_c00361{bottom:813.179833pt;}
.yf_c00361{bottom:841.006756pt;}
.ye_c00361{bottom:868.514878pt;}
.yd_c00361{bottom:896.344200pt;}
.yc_c00361{bottom:923.851123pt;}
.yb_c00361{bottom:951.038578pt;}
.y9_c00361{bottom:983.182565pt;}
.y7_c00361{bottom:1023.551024pt;}
.y6_c00361{bottom:1041.942883pt;}
.y5_c00361{bottom:1060.334742pt;}
.h1_c00361{height:16.153120pt;}
.h7_c00361{height:34.034591pt;}
.h6_c00361{height:37.724630pt;}
.h2_c00361{height:41.196944pt;}
.h4_c00361{height:44.780569pt;}
.ha_c00361{height:47.627189pt;}
.h9_c00361{height:57.319128pt;}
.h8_c00361{height:57.511045pt;}
.h5_c00361{height:1122.161626pt;}
.h3_c00361{height:1122.559167pt;}
.h0_c00361{height:1122.666667pt;}
.w18_c00361{width:2.560000pt;}
.w12_c00361{width:4.156800pt;}
.wc_c00361{width:4.160000pt;}
.w6_c00361{width:4.478400pt;}
.w17_c00361{width:5.755200pt;}
.w9_c00361{width:5.756800pt;}
.w13_c00361{width:6.398400pt;}
.wf_c00361{width:6.556800pt;}
.w16_c00361{width:6.558400pt;}
.w15_c00361{width:7.195200pt;}
.w14_c00361{width:7.355200pt;}
.w7_c00361{width:7.356800pt;}
.w1_c00361{width:7.356960pt;}
.w8_c00361{width:7.358400pt;}
.we_c00361{width:8.318400pt;}
.wb_c00361{width:8.956800pt;}
.w10_c00361{width:10.075200pt;}
.w4_c00361{width:10.555200pt;}
.w2_c00361{width:10.718400pt;}
.wa_c00361{width:11.035200pt;}
.w5_c00361{width:13.753600pt;}
.w3_c00361{width:21.270400pt;}
.w11_c00361{width:23.032000pt;}
.wd_c00361{width:24.945600pt;}
.w1a_c00361{width:792.977400pt;}
.w19_c00361{width:793.257550pt;}
.w0_c00361{width:793.333333pt;}
.x0_c00361{left:0.000000pt;}
.x1e_c00361{left:101.233093pt;}
.x1_c00361{left:114.072480pt;}
.x1f_c00361{left:137.375536pt;}
.x20_c00361{left:161.366648pt;}
.x21_c00361{left:207.903464pt;}
.x1c_c00361{left:225.370940pt;}
.x1b_c00361{left:239.124654pt;}
.x1d_c00361{left:376.018977pt;}
.x2_c00361{left:441.443200pt;}
.x3_c00361{left:452.161600pt;}
.x4_c00361{left:473.432000pt;}
.x5_c00361{left:483.987200pt;}
.x6_c00361{left:497.740800pt;}
.x7_c00361{left:501.899200pt;}
.x8_c00361{left:512.772800pt;}
.x9_c00361{left:520.131200pt;}
.xa_c00361{left:524.768000pt;}
.xb_c00361{left:539.160000pt;}
.xc_c00361{left:548.116800pt;}
.xd_c00361{left:552.275200pt;}
.xe_c00361{left:556.275200pt;}
.xf_c00361{left:581.220800pt;}
.x10_c00361{left:588.419200pt;}
.x11_c00361{left:598.334400pt;}
.x12_c00361{left:607.929600pt;}
.x13_c00361{left:630.001600pt;}
.x14_c00361{left:634.158400pt;}
.x15_c00361{left:640.556800pt;}
.x16_c00361{left:644.716800pt;}
.x17_c00361{left:652.072000pt;}
.x18_c00361{left:659.267200pt;}
.x19_c00361{left:665.825600pt;}
.x1a_c00361{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.112000;font-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_c00362{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls0_c00362{letter-spacing:0.000000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:-16.552343px;}
.ws1_c00362{word-spacing:0.000000px;}
._4_c00362{margin-left:-1.026657px;}
._0_c00362{width:1.102012px;}
._9_c00362{width:2.425380px;}
._a_c00362{width:3.460644px;}
._f_c00362{width:4.954633px;}
._c_c00362{width:6.184593px;}
._3_c00362{width:7.716539px;}
._5_c00362{width:8.850021px;}
._6_c00362{width:10.608809px;}
._b_c00362{width:12.145374px;}
._d_c00362{width:13.292881px;}
._e_c00362{width:14.871778px;}
._2_c00362{width:19.560505px;}
._7_c00362{width:27.636226px;}
._8_c00362{width:28.802159px;}
._1_c00362{width:198.042225px;}
.fc1_c00362{color:rgb(105,148,45);}
.fc0_c00362{color:rgb(35,31,32);}
.fs2_c00362{font-size:59.733096px;}
.fs0_c00362{font-size:66.209374px;}
.fs1_c00362{font-size:71.968771px;}
.y0_c00362{bottom:0.000000px;}
.y4_c00362{bottom:0.120938px;}
.y8_c00362{bottom:0.556171px;}
.y2_c00362{bottom:3.957898px;}
.ya_c00362{bottom:65.791352px;}
.y3_c00362{bottom:74.623320px;}
.y1_c00362{bottom:74.983320px;}
.y26_c00362{bottom:106.090786px;}
.y25_c00362{bottom:137.036674px;}
.y24_c00362{bottom:168.163311px;}
.y23_c00362{bottom:199.108599px;}
.y22_c00362{bottom:230.235236px;}
.y21_c00362{bottom:261.180524px;}
.y20_c00362{bottom:292.306412px;}
.y1f_c00362{bottom:338.187343px;}
.y1e_c00362{bottom:369.313981px;}
.y1d_c00362{bottom:400.258518px;}
.y1c_c00362{bottom:431.385156px;}
.y1b_c00362{bottom:501.555128px;}
.y1a_c00362{bottom:548.150359px;}
.y19_c00362{bottom:579.280447px;}
.y18_c00362{bottom:610.224984px;}
.y17_c00362{bottom:641.351622px;}
.y16_c00362{bottom:687.230454px;}
.y15_c00362{bottom:718.357091px;}
.y14_c00362{bottom:749.302379px;}
.y13_c00362{bottom:780.429016px;}
.y12_c00362{bottom:826.487848px;}
.y11_c00362{bottom:857.433136px;}
.y10_c00362{bottom:888.559773px;}
.yf_c00362{bottom:919.504311px;}
.ye_c00362{bottom:950.630948px;}
.yd_c00362{bottom:996.510530px;}
.yc_c00362{bottom:1027.636418px;}
.yb_c00362{bottom:1087.548944px;}
.y9_c00362{bottom:1106.080386px;}
.y7_c00362{bottom:1151.494902px;}
.y6_c00362{bottom:1172.185744px;}
.y5_c00362{bottom:1192.876585px;}
.h1_c00362{height:18.172260px;}
.h7_c00362{height:38.288915px;}
.h6_c00362{height:42.440208px;}
.h2_c00362{height:46.346561px;}
.h4_c00362{height:50.378140px;}
.h8_c00362{height:53.580587px;}
.h9_c00362{height:64.484019px;}
.h5_c00362{height:1262.431829px;}
.h3_c00362{height:1262.879062px;}
.h0_c00362{height:1263.000000px;}
.w18_c00362{width:2.880000px;}
.w12_c00362{width:4.676400px;}
.wc_c00362{width:4.680000px;}
.w6_c00362{width:5.038200px;}
.w17_c00362{width:6.474600px;}
.w9_c00362{width:6.476400px;}
.w13_c00362{width:7.198200px;}
.wf_c00362{width:7.376400px;}
.w16_c00362{width:7.378200px;}
.w15_c00362{width:8.094600px;}
.w14_c00362{width:8.274600px;}
.w7_c00362{width:8.276400px;}
.w8_c00362{width:8.278200px;}
.we_c00362{width:9.358200px;}
.wb_c00362{width:10.076400px;}
.w10_c00362{width:11.334600px;}
.w4_c00362{width:11.874600px;}
.w2_c00362{width:12.058200px;}
.wa_c00362{width:12.414600px;}
.w5_c00362{width:15.472800px;}
.w1_c00362{width:16.552980px;}
.w3_c00362{width:23.929200px;}
.w11_c00362{width:25.911000px;}
.wd_c00362{width:28.063800px;}
.w1a_c00362{width:892.099575px;}
.w19_c00362{width:892.414744px;}
.w0_c00362{width:892.500000px;}
.x0_c00362{left:0.000000px;}
.x1e_c00362{left:113.887229px;}
.x1_c00362{left:128.331540px;}
.x1c_c00362{left:253.542308px;}
.x1b_c00362{left:269.015236px;}
.x1d_c00362{left:423.021349px;}
.x2_c00362{left:496.623600px;}
.x3_c00362{left:508.681800px;}
.x4_c00362{left:532.611000px;}
.x5_c00362{left:544.485600px;}
.x6_c00362{left:559.958400px;}
.x7_c00362{left:564.636600px;}
.x8_c00362{left:576.869400px;}
.x9_c00362{left:585.147600px;}
.xa_c00362{left:590.364000px;}
.xb_c00362{left:606.555000px;}
.xc_c00362{left:616.631400px;}
.xd_c00362{left:621.309600px;}
.xe_c00362{left:625.809600px;}
.xf_c00362{left:653.873400px;}
.x10_c00362{left:661.971600px;}
.x11_c00362{left:673.126200px;}
.x12_c00362{left:683.920800px;}
.x13_c00362{left:708.751800px;}
.x14_c00362{left:713.428200px;}
.x15_c00362{left:720.626400px;}
.x16_c00362{left:725.306400px;}
.x17_c00362{left:733.581000px;}
.x18_c00362{left:741.675600px;}
.x19_c00362{left:749.053800px;}
.x1a_c00362{left:755.528400px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws0_c00362{word-spacing:-14.713194pt;}
.ws1_c00362{word-spacing:0.000000pt;}
._4_c00362{margin-left:-0.912584pt;}
._0_c00362{width:0.979567pt;}
._9_c00362{width:2.155893pt;}
._a_c00362{width:3.076128pt;}
._f_c00362{width:4.404118pt;}
._c_c00362{width:5.497416pt;}
._3_c00362{width:6.859146pt;}
._5_c00362{width:7.866685pt;}
._6_c00362{width:9.430052pt;}
._b_c00362{width:10.795888pt;}
._d_c00362{width:11.815894pt;}
._e_c00362{width:13.219358pt;}
._2_c00362{width:17.387116pt;}
._7_c00362{width:24.565534pt;}
._8_c00362{width:25.601919pt;}
._1_c00362{width:176.037534pt;}
.fs2_c00362{font-size:53.096085pt;}
.fs0_c00362{font-size:58.852776pt;}
.fs1_c00362{font-size:63.972241pt;}
.y0_c00362{bottom:0.000000pt;}
.y4_c00362{bottom:0.107500pt;}
.y8_c00362{bottom:0.494374pt;}
.y2_c00362{bottom:3.518132pt;}
.ya_c00362{bottom:58.481202pt;}
.y3_c00362{bottom:66.331840pt;}
.y1_c00362{bottom:66.651840pt;}
.y26_c00362{bottom:94.302921pt;}
.y25_c00362{bottom:121.810377pt;}
.y24_c00362{bottom:149.478499pt;}
.y23_c00362{bottom:176.985421pt;}
.y22_c00362{bottom:204.653544pt;}
.y21_c00362{bottom:232.160466pt;}
.y20_c00362{bottom:259.827921pt;}
.y1f_c00362{bottom:300.610972pt;}
.y1e_c00362{bottom:328.279094pt;}
.y1d_c00362{bottom:355.785350pt;}
.y1c_c00362{bottom:383.453472pt;}
.y1b_c00362{bottom:445.826780pt;}
.y1a_c00362{bottom:487.244764pt;}
.y19_c00362{bottom:514.915953pt;}
.y18_c00362{bottom:542.422208pt;}
.y17_c00362{bottom:570.090331pt;}
.y16_c00362{bottom:610.871514pt;}
.y15_c00362{bottom:638.539637pt;}
.y14_c00362{bottom:666.046559pt;}
.y13_c00362{bottom:693.714681pt;}
.y12_c00362{bottom:734.655865pt;}
.y11_c00362{bottom:762.162787pt;}
.y10_c00362{bottom:789.830909pt;}
.yf_c00362{bottom:817.337165pt;}
.ye_c00362{bottom:845.005287pt;}
.yd_c00362{bottom:885.787138pt;}
.yc_c00362{bottom:913.454593pt;}
.yb_c00362{bottom:966.710172pt;}
.y9_c00362{bottom:983.182565pt;}
.y7_c00362{bottom:1023.551024pt;}
.y6_c00362{bottom:1041.942883pt;}
.y5_c00362{bottom:1060.334742pt;}
.h1_c00362{height:16.153120pt;}
.h7_c00362{height:34.034591pt;}
.h6_c00362{height:37.724630pt;}
.h2_c00362{height:41.196944pt;}
.h4_c00362{height:44.780569pt;}
.h8_c00362{height:47.627189pt;}
.h9_c00362{height:57.319128pt;}
.h5_c00362{height:1122.161626pt;}
.h3_c00362{height:1122.559167pt;}
.h0_c00362{height:1122.666667pt;}
.w18_c00362{width:2.560000pt;}
.w12_c00362{width:4.156800pt;}
.wc_c00362{width:4.160000pt;}
.w6_c00362{width:4.478400pt;}
.w17_c00362{width:5.755200pt;}
.w9_c00362{width:5.756800pt;}
.w13_c00362{width:6.398400pt;}
.wf_c00362{width:6.556800pt;}
.w16_c00362{width:6.558400pt;}
.w15_c00362{width:7.195200pt;}
.w14_c00362{width:7.355200pt;}
.w7_c00362{width:7.356800pt;}
.w8_c00362{width:7.358400pt;}
.we_c00362{width:8.318400pt;}
.wb_c00362{width:8.956800pt;}
.w10_c00362{width:10.075200pt;}
.w4_c00362{width:10.555200pt;}
.w2_c00362{width:10.718400pt;}
.wa_c00362{width:11.035200pt;}
.w5_c00362{width:13.753600pt;}
.w1_c00362{width:14.713760pt;}
.w3_c00362{width:21.270400pt;}
.w11_c00362{width:23.032000pt;}
.wd_c00362{width:24.945600pt;}
.w1a_c00362{width:792.977400pt;}
.w19_c00362{width:793.257550pt;}
.w0_c00362{width:793.333333pt;}
.x0_c00362{left:0.000000pt;}
.x1e_c00362{left:101.233093pt;}
.x1_c00362{left:114.072480pt;}
.x1c_c00362{left:225.370940pt;}
.x1b_c00362{left:239.124654pt;}
.x1d_c00362{left:376.018977pt;}
.x2_c00362{left:441.443200pt;}
.x3_c00362{left:452.161600pt;}
.x4_c00362{left:473.432000pt;}
.x5_c00362{left:483.987200pt;}
.x6_c00362{left:497.740800pt;}
.x7_c00362{left:501.899200pt;}
.x8_c00362{left:512.772800pt;}
.x9_c00362{left:520.131200pt;}
.xa_c00362{left:524.768000pt;}
.xb_c00362{left:539.160000pt;}
.xc_c00362{left:548.116800pt;}
.xd_c00362{left:552.275200pt;}
.xe_c00362{left:556.275200pt;}
.xf_c00362{left:581.220800pt;}
.x10_c00362{left:588.419200pt;}
.x11_c00362{left:598.334400pt;}
.x12_c00362{left:607.929600pt;}
.x13_c00362{left:630.001600pt;}
.x14_c00362{left:634.158400pt;}
.x15_c00362{left:640.556800pt;}
.x16_c00362{left:644.716800pt;}
.x17_c00362{left:652.072000pt;}
.x18_c00362{left:659.267200pt;}
.x19_c00362{left:665.825600pt;}
.x1a_c00362{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.112000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.113000;font-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_c00363{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:-16.552343px;}
.ws1_c00363{word-spacing:0.000000px;}
._3_c00363{margin-left:-1.169883px;}
._0_c00363{width:1.102012px;}
._2_c00363{width:3.100253px;}
._9_c00363{width:4.347026px;}
._a_c00363{width:5.380962px;}
._4_c00363{width:7.189084px;}
._c_c00363{width:9.237784px;}
._7_c00363{width:10.786636px;}
._8_c00363{width:12.264966px;}
._6_c00363{width:14.262290px;}
._5_c00363{width:15.705410px;}
._b_c00363{width:16.747294px;}
._1_c00363{width:198.042225px;}
.fc1_c00363{color:rgb(105,148,45);}
.fc0_c00363{color:rgb(35,31,32);}
.fs2_c00363{font-size:59.733096px;}
.fs0_c00363{font-size:66.209374px;}
.fs1_c00363{font-size:71.968771px;}
.y0_c00363{bottom:0.000000px;}
.y4_c00363{bottom:0.120938px;}
.y8_c00363{bottom:0.556171px;}
.y2_c00363{bottom:3.957898px;}
.ya_c00363{bottom:65.791352px;}
.y3_c00363{bottom:74.623320px;}
.y1_c00363{bottom:74.983320px;}
.y24_c00363{bottom:174.821659px;}
.y23_c00363{bottom:205.946946px;}
.y22_c00363{bottom:236.892234px;}
.y21_c00363{bottom:268.020221px;}
.y20_c00363{bottom:313.900553px;}
.y1f_c00363{bottom:345.024341px;}
.y1e_c00363{bottom:375.972328px;}
.y1d_c00363{bottom:422.031160px;}
.y1c_c00363{bottom:453.156447px;}
.y1b_c00363{bottom:484.100985px;}
.y1a_c00363{bottom:530.158467px;}
.y19_c00363{bottom:561.283754px;}
.y18_c00363{bottom:592.233242px;}
.y17_c00363{bottom:638.292073px;}
.y16_c00363{bottom:669.235261px;}
.y15_c00363{bottom:715.294092px;}
.y14_c00363{bottom:746.422080px;}
.y13_c00363{bottom:777.368718px;}
.y12_c00363{bottom:808.492505px;}
.y11_c00363{bottom:839.440493px;}
.y10_c00363{bottom:899.354969px;}
.yf_c00363{bottom:945.953650px;}
.ye_c00363{bottom:976.900288px;}
.yd_c00363{bottom:1022.959119px;}
.yc_c00363{bottom:1054.082907px;}
.yb_c00363{bottom:1085.030895px;}
.y9_c00363{bottom:1106.080386px;}
.y7_c00363{bottom:1151.494902px;}
.y6_c00363{bottom:1172.185744px;}
.y5_c00363{bottom:1192.876585px;}
.h1_c00363{height:18.172260px;}
.h7_c00363{height:38.288915px;}
.h6_c00363{height:42.440208px;}
.h2_c00363{height:46.346561px;}
.h4_c00363{height:50.378140px;}
.h9_c00363{height:53.580587px;}
.h8_c00363{height:64.484019px;}
.ha_c00363{height:64.555988px;}
.h5_c00363{height:1262.431829px;}
.h3_c00363{height:1262.879062px;}
.h0_c00363{height:1263.000000px;}
.w18_c00363{width:2.880000px;}
.w12_c00363{width:4.676400px;}
.wc_c00363{width:4.680000px;}
.w6_c00363{width:5.038200px;}
.w17_c00363{width:6.474600px;}
.w9_c00363{width:6.476400px;}
.w13_c00363{width:7.198200px;}
.wf_c00363{width:7.376400px;}
.w16_c00363{width:7.378200px;}
.w15_c00363{width:8.094600px;}
.w14_c00363{width:8.274600px;}
.w7_c00363{width:8.276400px;}
.w8_c00363{width:8.278200px;}
.we_c00363{width:9.358200px;}
.wb_c00363{width:10.076400px;}
.w10_c00363{width:11.334600px;}
.w4_c00363{width:11.874600px;}
.w2_c00363{width:12.058200px;}
.wa_c00363{width:12.414600px;}
.w5_c00363{width:15.472800px;}
.w1_c00363{width:16.552980px;}
.w3_c00363{width:23.929200px;}
.w11_c00363{width:25.911000px;}
.wd_c00363{width:28.063800px;}
.w1a_c00363{width:892.099575px;}
.w19_c00363{width:892.414744px;}
.w0_c00363{width:892.500000px;}
.x0_c00363{left:0.000000px;}
.x1e_c00363{left:113.887229px;}
.x1_c00363{left:128.331540px;}
.x1f_c00363{left:167.858238px;}
.x1c_c00363{left:253.542308px;}
.x1b_c00363{left:269.015236px;}
.x1d_c00363{left:423.021349px;}
.x2_c00363{left:496.623600px;}
.x3_c00363{left:508.681800px;}
.x4_c00363{left:532.611000px;}
.x5_c00363{left:544.485600px;}
.x6_c00363{left:559.958400px;}
.x7_c00363{left:564.636600px;}
.x8_c00363{left:576.869400px;}
.x9_c00363{left:585.147600px;}
.xa_c00363{left:590.364000px;}
.xb_c00363{left:606.555000px;}
.xc_c00363{left:616.631400px;}
.xd_c00363{left:621.309600px;}
.xe_c00363{left:625.809600px;}
.xf_c00363{left:653.873400px;}
.x10_c00363{left:661.971600px;}
.x11_c00363{left:673.126200px;}
.x12_c00363{left:683.920800px;}
.x13_c00363{left:708.751800px;}
.x14_c00363{left:713.428200px;}
.x15_c00363{left:720.626400px;}
.x16_c00363{left:725.306400px;}
.x17_c00363{left:733.581000px;}
.x18_c00363{left:741.675600px;}
.x19_c00363{left:749.053800px;}
.x1a_c00363{left:755.528400px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:-14.713194pt;}
.ws1_c00363{word-spacing:0.000000pt;}
._3_c00363{margin-left:-1.039896pt;}
._0_c00363{width:0.979567pt;}
._2_c00363{width:2.755780pt;}
._9_c00363{width:3.864023pt;}
._a_c00363{width:4.783077pt;}
._4_c00363{width:6.390297pt;}
._c_c00363{width:8.211363pt;}
._7_c00363{width:9.588121pt;}
._8_c00363{width:10.902192pt;}
._6_c00363{width:12.677591pt;}
._5_c00363{width:13.960365pt;}
._b_c00363{width:14.886483pt;}
._1_c00363{width:176.037534pt;}
.fs2_c00363{font-size:53.096085pt;}
.fs0_c00363{font-size:58.852776pt;}
.fs1_c00363{font-size:63.972241pt;}
.y0_c00363{bottom:0.000000pt;}
.y4_c00363{bottom:0.107500pt;}
.y8_c00363{bottom:0.494374pt;}
.y2_c00363{bottom:3.518132pt;}
.ya_c00363{bottom:58.481202pt;}
.y3_c00363{bottom:66.331840pt;}
.y1_c00363{bottom:66.651840pt;}
.y24_c00363{bottom:155.397030pt;}
.y23_c00363{bottom:183.063952pt;}
.y22_c00363{bottom:210.570875pt;}
.y21_c00363{bottom:238.240197pt;}
.y20_c00363{bottom:279.022714pt;}
.y1f_c00363{bottom:306.688303pt;}
.y1e_c00363{bottom:334.197625pt;}
.y1d_c00363{bottom:375.138809pt;}
.y1c_c00363{bottom:402.805731pt;}
.y1b_c00363{bottom:430.311987pt;}
.y1a_c00363{bottom:471.251970pt;}
.y19_c00363{bottom:498.918893pt;}
.y18_c00363{bottom:526.429548pt;}
.y17_c00363{bottom:567.370732pt;}
.y16_c00363{bottom:594.875787pt;}
.y15_c00363{bottom:635.816971pt;}
.y14_c00363{bottom:663.486293pt;}
.y13_c00363{bottom:690.994416pt;}
.y12_c00363{bottom:718.660005pt;}
.y11_c00363{bottom:746.169327pt;}
.y10_c00363{bottom:799.426639pt;}
.yf_c00363{bottom:840.847689pt;}
.ye_c00363{bottom:868.355811pt;}
.yd_c00363{bottom:909.296995pt;}
.yc_c00363{bottom:936.962584pt;}
.yb_c00363{bottom:964.471906pt;}
.y9_c00363{bottom:983.182565pt;}
.y7_c00363{bottom:1023.551024pt;}
.y6_c00363{bottom:1041.942883pt;}
.y5_c00363{bottom:1060.334742pt;}
.h1_c00363{height:16.153120pt;}
.h7_c00363{height:34.034591pt;}
.h6_c00363{height:37.724630pt;}
.h2_c00363{height:41.196944pt;}
.h4_c00363{height:44.780569pt;}
.h9_c00363{height:47.627189pt;}
.h8_c00363{height:57.319128pt;}
.ha_c00363{height:57.383100pt;}
.h5_c00363{height:1122.161626pt;}
.h3_c00363{height:1122.559167pt;}
.h0_c00363{height:1122.666667pt;}
.w18_c00363{width:2.560000pt;}
.w12_c00363{width:4.156800pt;}
.wc_c00363{width:4.160000pt;}
.w6_c00363{width:4.478400pt;}
.w17_c00363{width:5.755200pt;}
.w9_c00363{width:5.756800pt;}
.w13_c00363{width:6.398400pt;}
.wf_c00363{width:6.556800pt;}
.w16_c00363{width:6.558400pt;}
.w15_c00363{width:7.195200pt;}
.w14_c00363{width:7.355200pt;}
.w7_c00363{width:7.356800pt;}
.w8_c00363{width:7.358400pt;}
.we_c00363{width:8.318400pt;}
.wb_c00363{width:8.956800pt;}
.w10_c00363{width:10.075200pt;}
.w4_c00363{width:10.555200pt;}
.w2_c00363{width:10.718400pt;}
.wa_c00363{width:11.035200pt;}
.w5_c00363{width:13.753600pt;}
.w1_c00363{width:14.713760pt;}
.w3_c00363{width:21.270400pt;}
.w11_c00363{width:23.032000pt;}
.wd_c00363{width:24.945600pt;}
.w1a_c00363{width:792.977400pt;}
.w19_c00363{width:793.257550pt;}
.w0_c00363{width:793.333333pt;}
.x0_c00363{left:0.000000pt;}
.x1e_c00363{left:101.233093pt;}
.x1_c00363{left:114.072480pt;}
.x1f_c00363{left:149.207323pt;}
.x1c_c00363{left:225.370940pt;}
.x1b_c00363{left:239.124654pt;}
.x1d_c00363{left:376.018977pt;}
.x2_c00363{left:441.443200pt;}
.x3_c00363{left:452.161600pt;}
.x4_c00363{left:473.432000pt;}
.x5_c00363{left:483.987200pt;}
.x6_c00363{left:497.740800pt;}
.x7_c00363{left:501.899200pt;}
.x8_c00363{left:512.772800pt;}
.x9_c00363{left:520.131200pt;}
.xa_c00363{left:524.768000pt;}
.xb_c00363{left:539.160000pt;}
.xc_c00363{left:548.116800pt;}
.xd_c00363{left:552.275200pt;}
.xe_c00363{left:556.275200pt;}
.xf_c00363{left:581.220800pt;}
.x10_c00363{left:588.419200pt;}
.x11_c00363{left:598.334400pt;}
.x12_c00363{left:607.929600pt;}
.x13_c00363{left:630.001600pt;}
.x14_c00363{left:634.158400pt;}
.x15_c00363{left:640.556800pt;}
.x16_c00363{left:644.716800pt;}
.x17_c00363{left:652.072000pt;}
.x18_c00363{left:659.267200pt;}
.x19_c00363{left:665.825600pt;}
.x1a_c00363{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.112000;font-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_c00364{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m2_c00364{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls0_c00364{letter-spacing:0.000000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:-16.552343px;}
.ws1_c00364{word-spacing:0.000000px;}
._3_c00364{margin-left:-1.156431px;}
._0_c00364{width:1.102012px;}
._1_c00364{width:3.055142px;}
._8_c00364{width:4.064321px;}
._9_c00364{width:5.110562px;}
._d_c00364{width:6.664647px;}
._4_c00364{width:7.685577px;}
._e_c00364{width:8.701045px;}
._6_c00364{width:10.153647px;}
._7_c00364{width:11.541946px;}
._a_c00364{width:12.685801px;}
._f_c00364{width:16.827901px;}
._b_c00364{width:26.753342px;}
._c_c00364{width:29.228052px;}
._2_c00364{width:31.523002px;}
._5_c00364{width:198.042225px;}
.fc1_c00364{color:rgb(105,148,45);}
.fc0_c00364{color:rgb(35,31,32);}
.fs3_c00364{font-size:17.991833px;}
.fs2_c00364{font-size:59.733096px;}
.fs0_c00364{font-size:66.209374px;}
.fs1_c00364{font-size:71.968771px;}
.y0_c00364{bottom:0.000000px;}
.y4_c00364{bottom:0.120938px;}
.y8_c00364{bottom:0.556171px;}
.y2_c00364{bottom:3.957898px;}
.ya_c00364{bottom:65.791352px;}
.y3_c00364{bottom:74.623320px;}
.y1_c00364{bottom:74.983320px;}
.y29_c00364{bottom:139.918173px;}
.y28_c00364{bottom:170.864810px;}
.y27_c00364{bottom:201.990098px;}
.y26_c00364{bottom:232.936735px;}
.y25_c00364{bottom:266.581722px;}
.y24_c00364{bottom:278.636017px;}
.y23_c00364{bottom:295.728210px;}
.y22_c00364{bottom:342.322242px;}
.y21_c00364{bottom:373.268879px;}
.y20_c00364{bottom:404.396867px;}
.y1f_c00364{bottom:450.454348px;}
.y1e_c00364{bottom:481.402336px;}
.y1d_c00364{bottom:512.525524px;}
.y1c_c00364{bottom:543.473511px;}
.y1b_c00364{bottom:574.598799px;}
.y1a_c00364{bottom:605.544086px;}
.y19_c00364{bottom:636.672074px;}
.y18_c00364{bottom:670.138561px;}
.y17_c00364{bottom:682.191056px;}
.y16_c00364{bottom:728.610637px;}
.y15_c00364{bottom:759.737275px;}
.y14_c00364{bottom:790.683912px;}
.y13_c00364{bottom:821.809200px;}
.y12_c00364{bottom:852.755837px;}
.y11_c00364{bottom:883.881725px;}
.y10_c00364{bottom:914.827013px;}
.yf_c00364{bottom:945.953650px;}
.ye_c00364{bottom:992.012482px;}
.yd_c00364{bottom:1022.959119px;}
.yc_c00364{bottom:1054.082907px;}
.yb_c00364{bottom:1085.030895px;}
.y9_c00364{bottom:1106.080386px;}
.y7_c00364{bottom:1151.494902px;}
.y6_c00364{bottom:1172.185744px;}
.y5_c00364{bottom:1192.876585px;}
.hb_c00364{height:11.532765px;}
.h1_c00364{height:18.172260px;}
.h7_c00364{height:38.288915px;}
.h6_c00364{height:42.440208px;}
.h2_c00364{height:46.346561px;}
.h4_c00364{height:50.378140px;}
.ha_c00364{height:53.580587px;}
.h9_c00364{height:64.484019px;}
.h8_c00364{height:64.555988px;}
.h5_c00364{height:1262.431829px;}
.h3_c00364{height:1262.879062px;}
.h0_c00364{height:1263.000000px;}
.w18_c00364{width:2.880000px;}
.w12_c00364{width:4.676400px;}
.wc_c00364{width:4.680000px;}
.w6_c00364{width:5.038200px;}
.w17_c00364{width:6.474600px;}
.w9_c00364{width:6.476400px;}
.w13_c00364{width:7.198200px;}
.wf_c00364{width:7.376400px;}
.w16_c00364{width:7.378200px;}
.w15_c00364{width:8.094600px;}
.w14_c00364{width:8.274600px;}
.w7_c00364{width:8.276400px;}
.w8_c00364{width:8.278200px;}
.we_c00364{width:9.358200px;}
.wb_c00364{width:10.076400px;}
.w10_c00364{width:11.334600px;}
.w4_c00364{width:11.874600px;}
.w2_c00364{width:12.058200px;}
.wa_c00364{width:12.414600px;}
.w5_c00364{width:15.472800px;}
.w1_c00364{width:16.552980px;}
.w3_c00364{width:23.929200px;}
.w11_c00364{width:25.911000px;}
.wd_c00364{width:28.063800px;}
.w1a_c00364{width:892.099575px;}
.w19_c00364{width:892.414744px;}
.w0_c00364{width:892.500000px;}
.x0_c00364{left:0.000000px;}
.x1e_c00364{left:113.887229px;}
.x1_c00364{left:128.331540px;}
.x1f_c00364{left:167.865308px;}
.x1c_c00364{left:253.542308px;}
.x1b_c00364{left:269.015236px;}
.x1d_c00364{left:423.021349px;}
.x2_c00364{left:496.623600px;}
.x3_c00364{left:508.681800px;}
.x4_c00364{left:532.611000px;}
.x5_c00364{left:544.485600px;}
.x6_c00364{left:559.958400px;}
.x7_c00364{left:564.636600px;}
.x8_c00364{left:576.869400px;}
.x9_c00364{left:585.147600px;}
.xa_c00364{left:590.364000px;}
.xb_c00364{left:606.555000px;}
.xc_c00364{left:616.631400px;}
.xd_c00364{left:621.309600px;}
.xe_c00364{left:625.809600px;}
.xf_c00364{left:653.873400px;}
.x10_c00364{left:661.971600px;}
.x11_c00364{left:673.126200px;}
.x12_c00364{left:683.920800px;}
.x13_c00364{left:708.751800px;}
.x14_c00364{left:713.428200px;}
.x15_c00364{left:720.626400px;}
.x16_c00364{left:725.306400px;}
.x17_c00364{left:733.581000px;}
.x18_c00364{left:741.675600px;}
.x19_c00364{left:749.053800px;}
.x1a_c00364{left:755.528400px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:-14.713194pt;}
.ws1_c00364{word-spacing:0.000000pt;}
._3_c00364{margin-left:-1.027939pt;}
._0_c00364{width:0.979567pt;}
._1_c00364{width:2.715682pt;}
._8_c00364{width:3.612730pt;}
._9_c00364{width:4.542722pt;}
._d_c00364{width:5.924131pt;}
._4_c00364{width:6.831624pt;}
._e_c00364{width:7.734262pt;}
._6_c00364{width:9.025464pt;}
._7_c00364{width:10.259508pt;}
._a_c00364{width:11.276268pt;}
._f_c00364{width:14.958134pt;}
._b_c00364{width:23.780748pt;}
._c_c00364{width:25.980490pt;}
._2_c00364{width:28.020446pt;}
._5_c00364{width:176.037534pt;}
.fs3_c00364{font-size:15.992740pt;}
.fs2_c00364{font-size:53.096085pt;}
.fs0_c00364{font-size:58.852776pt;}
.fs1_c00364{font-size:63.972241pt;}
.y0_c00364{bottom:0.000000pt;}
.y4_c00364{bottom:0.107500pt;}
.y8_c00364{bottom:0.494374pt;}
.y2_c00364{bottom:3.518132pt;}
.ya_c00364{bottom:58.481202pt;}
.y3_c00364{bottom:66.331840pt;}
.y1_c00364{bottom:66.651840pt;}
.y29_c00364{bottom:124.371709pt;}
.y28_c00364{bottom:151.879831pt;}
.y27_c00364{bottom:179.546754pt;}
.y26_c00364{bottom:207.054876pt;}
.y25_c00364{bottom:236.961531pt;}
.y24_c00364{bottom:247.676460pt;}
.y23_c00364{bottom:262.869520pt;}
.y22_c00364{bottom:304.286437pt;}
.y21_c00364{bottom:331.794559pt;}
.y20_c00364{bottom:359.463882pt;}
.y1f_c00364{bottom:400.403865pt;}
.y1e_c00364{bottom:427.913188pt;}
.y1d_c00364{bottom:455.578243pt;}
.y1c_c00364{bottom:483.087566pt;}
.y1b_c00364{bottom:510.754488pt;}
.y1a_c00364{bottom:538.261410pt;}
.y19_c00364{bottom:565.930732pt;}
.y18_c00364{bottom:595.678720pt;}
.y17_c00364{bottom:606.392050pt;}
.y16_c00364{bottom:647.653900pt;}
.y15_c00364{bottom:675.322022pt;}
.y14_c00364{bottom:702.830144pt;}
.y13_c00364{bottom:730.497067pt;}
.y12_c00364{bottom:758.005189pt;}
.y11_c00364{bottom:785.672644pt;}
.y10_c00364{bottom:813.179567pt;}
.yf_c00364{bottom:840.847689pt;}
.ye_c00364{bottom:881.788873pt;}
.yd_c00364{bottom:909.296995pt;}
.yc_c00364{bottom:936.962584pt;}
.yb_c00364{bottom:964.471906pt;}
.y9_c00364{bottom:983.182565pt;}
.y7_c00364{bottom:1023.551024pt;}
.y6_c00364{bottom:1041.942883pt;}
.y5_c00364{bottom:1060.334742pt;}
.hb_c00364{height:10.251347pt;}
.h1_c00364{height:16.153120pt;}
.h7_c00364{height:34.034591pt;}
.h6_c00364{height:37.724630pt;}
.h2_c00364{height:41.196944pt;}
.h4_c00364{height:44.780569pt;}
.ha_c00364{height:47.627189pt;}
.h9_c00364{height:57.319128pt;}
.h8_c00364{height:57.383100pt;}
.h5_c00364{height:1122.161626pt;}
.h3_c00364{height:1122.559167pt;}
.h0_c00364{height:1122.666667pt;}
.w18_c00364{width:2.560000pt;}
.w12_c00364{width:4.156800pt;}
.wc_c00364{width:4.160000pt;}
.w6_c00364{width:4.478400pt;}
.w17_c00364{width:5.755200pt;}
.w9_c00364{width:5.756800pt;}
.w13_c00364{width:6.398400pt;}
.wf_c00364{width:6.556800pt;}
.w16_c00364{width:6.558400pt;}
.w15_c00364{width:7.195200pt;}
.w14_c00364{width:7.355200pt;}
.w7_c00364{width:7.356800pt;}
.w8_c00364{width:7.358400pt;}
.we_c00364{width:8.318400pt;}
.wb_c00364{width:8.956800pt;}
.w10_c00364{width:10.075200pt;}
.w4_c00364{width:10.555200pt;}
.w2_c00364{width:10.718400pt;}
.wa_c00364{width:11.035200pt;}
.w5_c00364{width:13.753600pt;}
.w1_c00364{width:14.713760pt;}
.w3_c00364{width:21.270400pt;}
.w11_c00364{width:23.032000pt;}
.wd_c00364{width:24.945600pt;}
.w1a_c00364{width:792.977400pt;}
.w19_c00364{width:793.257550pt;}
.w0_c00364{width:793.333333pt;}
.x0_c00364{left:0.000000pt;}
.x1e_c00364{left:101.233093pt;}
.x1_c00364{left:114.072480pt;}
.x1f_c00364{left:149.213607pt;}
.x1c_c00364{left:225.370940pt;}
.x1b_c00364{left:239.124654pt;}
.x1d_c00364{left:376.018977pt;}
.x2_c00364{left:441.443200pt;}
.x3_c00364{left:452.161600pt;}
.x4_c00364{left:473.432000pt;}
.x5_c00364{left:483.987200pt;}
.x6_c00364{left:497.740800pt;}
.x7_c00364{left:501.899200pt;}
.x8_c00364{left:512.772800pt;}
.x9_c00364{left:520.131200pt;}
.xa_c00364{left:524.768000pt;}
.xb_c00364{left:539.160000pt;}
.xc_c00364{left:548.116800pt;}
.xd_c00364{left:552.275200pt;}
.xe_c00364{left:556.275200pt;}
.xf_c00364{left:581.220800pt;}
.x10_c00364{left:588.419200pt;}
.x11_c00364{left:598.334400pt;}
.x12_c00364{left:607.929600pt;}
.x13_c00364{left:630.001600pt;}
.x14_c00364{left:634.158400pt;}
.x15_c00364{left:640.556800pt;}
.x16_c00364{left:644.716800pt;}
.x17_c00364{left:652.072000pt;}
.x18_c00364{left:659.267200pt;}
.x19_c00364{left:665.825600pt;}
.x1a_c00364{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00365;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:0.360019;font-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_c00365{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls1_c00365{letter-spacing:0.000000px;}
.ls0_c00365{letter-spacing:74.904522px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:-16.552343px;}
.ws1_c00365{word-spacing:0.000000px;}
._9_c00365{margin-left:-1.203628px;}
._0_c00365{width:1.102012px;}
._6_c00365{width:2.225216px;}
._2_c00365{width:3.672453px;}
._3_c00365{width:4.835808px;}
._e_c00365{width:5.985836px;}
._7_c00365{width:8.527953px;}
._8_c00365{width:9.564244px;}
._d_c00365{width:10.600177px;}
._4_c00365{width:14.147047px;}
._5_c00365{width:15.356632px;}
._c_c00365{width:16.456607px;}
._b_c00365{width:20.162951px;}
._a_c00365{width:21.197321px;}
._1_c00365{width:198.042225px;}
.fc1_c00365{color:rgb(105,148,45);}
.fc0_c00365{color:rgb(35,31,32);}
.fs2_c00365{font-size:59.733096px;}
.fs0_c00365{font-size:66.209374px;}
.fs1_c00365{font-size:71.968771px;}
.y0_c00365{bottom:0.000000px;}
.y4_c00365{bottom:0.120938px;}
.y8_c00365{bottom:0.556171px;}
.y2_c00365{bottom:3.957898px;}
.ya_c00365{bottom:65.791352px;}
.y3_c00365{bottom:74.623320px;}
.y1_c00365{bottom:74.983320px;}
.y25_c00365{bottom:101.592138px;}
.y24_c00365{bottom:132.718775px;}
.y23_c00365{bottom:163.665413px;}
.y22_c00365{bottom:194.790701px;}
.y21_c00365{bottom:242.109532px;}
.y20_c00365{bottom:273.054819px;}
.y1f_c00365{bottom:304.180707px;}
.y1e_c00365{bottom:359.239685px;}
.y1d_c00365{bottom:405.838816px;}
.y1c_c00365{bottom:436.783354px;}
.y1b_c00365{bottom:467.909991px;}
.y1a_c00365{bottom:498.855279px;}
.y19_c00365{bottom:544.914111px;}
.y18_c00365{bottom:575.860748px;}
.y17_c00365{bottom:606.987386px;}
.y16_c00365{bottom:637.932673px;}
.y15_c00365{bottom:669.058561px;}
.y14_c00365{bottom:714.217543px;}
.y13_c00365{bottom:760.820274px;}
.y12_c00365{bottom:791.765562px;}
.y11_c00365{bottom:822.892199px;}
.y10_c00365{bottom:868.769681px;}
.yf_c00365{bottom:899.899169px;}
.ye_c00365{bottom:930.842956px;}
.yd_c00365{bottom:976.904638px;}
.yc_c00365{bottom:1008.028425px;}
.yb_c00365{bottom:1038.976413px;}
.y9_c00365{bottom:1106.080386px;}
.y7_c00365{bottom:1151.494902px;}
.y6_c00365{bottom:1172.185744px;}
.y5_c00365{bottom:1192.876585px;}
.h1_c00365{height:18.172260px;}
.h7_c00365{height:38.288915px;}
.h6_c00365{height:42.440208px;}
.h2_c00365{height:46.346561px;}
.h4_c00365{height:50.378140px;}
.h9_c00365{height:53.580587px;}
.h8_c00365{height:64.484019px;}
.h5_c00365{height:1262.431829px;}
.h3_c00365{height:1262.879062px;}
.h0_c00365{height:1263.000000px;}
.w18_c00365{width:2.880000px;}
.w12_c00365{width:4.676400px;}
.wc_c00365{width:4.680000px;}
.w6_c00365{width:5.038200px;}
.w17_c00365{width:6.474600px;}
.w9_c00365{width:6.476400px;}
.w13_c00365{width:7.198200px;}
.wf_c00365{width:7.376400px;}
.w16_c00365{width:7.378200px;}
.w15_c00365{width:8.094600px;}
.w14_c00365{width:8.274600px;}
.w7_c00365{width:8.276400px;}
.w8_c00365{width:8.278200px;}
.we_c00365{width:9.358200px;}
.wb_c00365{width:10.076400px;}
.w10_c00365{width:11.334600px;}
.w4_c00365{width:11.874600px;}
.w2_c00365{width:12.058200px;}
.wa_c00365{width:12.414600px;}
.w5_c00365{width:15.472800px;}
.w1_c00365{width:16.552980px;}
.w3_c00365{width:23.929200px;}
.w11_c00365{width:25.911000px;}
.wd_c00365{width:28.063800px;}
.w1a_c00365{width:892.099575px;}
.w19_c00365{width:892.414744px;}
.w0_c00365{width:892.500000px;}
.x0_c00365{left:0.000000px;}
.x1e_c00365{left:113.887229px;}
.x1_c00365{left:128.331540px;}
.x1f_c00365{left:140.873783px;}
.x1c_c00365{left:253.542308px;}
.x1b_c00365{left:269.015236px;}
.x1d_c00365{left:423.021349px;}
.x2_c00365{left:496.623600px;}
.x3_c00365{left:508.681800px;}
.x4_c00365{left:532.611000px;}
.x5_c00365{left:544.485600px;}
.x6_c00365{left:559.958400px;}
.x7_c00365{left:564.636600px;}
.x8_c00365{left:576.869400px;}
.x9_c00365{left:585.147600px;}
.xa_c00365{left:590.364000px;}
.xb_c00365{left:606.555000px;}
.xc_c00365{left:616.631400px;}
.xd_c00365{left:621.309600px;}
.xe_c00365{left:625.809600px;}
.xf_c00365{left:653.873400px;}
.x10_c00365{left:661.971600px;}
.x11_c00365{left:673.126200px;}
.x12_c00365{left:683.920800px;}
.x13_c00365{left:708.751800px;}
.x14_c00365{left:713.428200px;}
.x15_c00365{left:720.626400px;}
.x16_c00365{left:725.306400px;}
.x17_c00365{left:733.581000px;}
.x18_c00365{left:741.675600px;}
.x19_c00365{left:749.053800px;}
.x1a_c00365{left:755.528400px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls1_c00365{letter-spacing:0.000000pt;}
.ls0_c00365{letter-spacing:66.581797pt;}
.ws0_c00365{word-spacing:-14.713194pt;}
.ws1_c00365{word-spacing:0.000000pt;}
._9_c00365{margin-left:-1.069892pt;}
._0_c00365{width:0.979567pt;}
._6_c00365{width:1.977970pt;}
._2_c00365{width:3.264402pt;}
._3_c00365{width:4.298496pt;}
._e_c00365{width:5.320743pt;}
._7_c00365{width:7.580402pt;}
._8_c00365{width:8.501550pt;}
._d_c00365{width:9.422380pt;}
._4_c00365{width:12.575153pt;}
._5_c00365{width:13.650340pt;}
._c_c00365{width:14.628095pt;}
._b_c00365{width:17.922623pt;}
._a_c00365{width:18.842063pt;}
._1_c00365{width:176.037534pt;}
.fs2_c00365{font-size:53.096085pt;}
.fs0_c00365{font-size:58.852776pt;}
.fs1_c00365{font-size:63.972241pt;}
.y0_c00365{bottom:0.000000pt;}
.y4_c00365{bottom:0.107500pt;}
.y8_c00365{bottom:0.494374pt;}
.y2_c00365{bottom:3.518132pt;}
.ya_c00365{bottom:58.481202pt;}
.y3_c00365{bottom:66.331840pt;}
.y1_c00365{bottom:66.651840pt;}
.y25_c00365{bottom:90.304123pt;}
.y24_c00365{bottom:117.972245pt;}
.y23_c00365{bottom:145.480367pt;}
.y22_c00365{bottom:173.147289pt;}
.y21_c00365{bottom:215.208473pt;}
.y20_c00365{bottom:242.715395pt;}
.y1f_c00365{bottom:270.382851pt;}
.y1e_c00365{bottom:319.324164pt;}
.y1d_c00365{bottom:360.745614pt;}
.y1c_c00365{bottom:388.251870pt;}
.y1b_c00365{bottom:415.919992pt;}
.y1a_c00365{bottom:443.426915pt;}
.y19_c00365{bottom:484.368098pt;}
.y18_c00365{bottom:511.876221pt;}
.y17_c00365{bottom:539.544343pt;}
.y16_c00365{bottom:567.051265pt;}
.y15_c00365{bottom:594.718721pt;}
.y14_c00365{bottom:634.860038pt;}
.y13_c00365{bottom:676.284688pt;}
.y12_c00365{bottom:703.791611pt;}
.y11_c00365{bottom:731.459733pt;}
.y10_c00365{bottom:772.239717pt;}
.yf_c00365{bottom:799.910372pt;}
.ye_c00365{bottom:827.415961pt;}
.yd_c00365{bottom:868.359678pt;}
.yc_c00365{bottom:896.025267pt;}
.yb_c00365{bottom:923.534589pt;}
.y9_c00365{bottom:983.182565pt;}
.y7_c00365{bottom:1023.551024pt;}
.y6_c00365{bottom:1041.942883pt;}
.y5_c00365{bottom:1060.334742pt;}
.h1_c00365{height:16.153120pt;}
.h7_c00365{height:34.034591pt;}
.h6_c00365{height:37.724630pt;}
.h2_c00365{height:41.196944pt;}
.h4_c00365{height:44.780569pt;}
.h9_c00365{height:47.627189pt;}
.h8_c00365{height:57.319128pt;}
.h5_c00365{height:1122.161626pt;}
.h3_c00365{height:1122.559167pt;}
.h0_c00365{height:1122.666667pt;}
.w18_c00365{width:2.560000pt;}
.w12_c00365{width:4.156800pt;}
.wc_c00365{width:4.160000pt;}
.w6_c00365{width:4.478400pt;}
.w17_c00365{width:5.755200pt;}
.w9_c00365{width:5.756800pt;}
.w13_c00365{width:6.398400pt;}
.wf_c00365{width:6.556800pt;}
.w16_c00365{width:6.558400pt;}
.w15_c00365{width:7.195200pt;}
.w14_c00365{width:7.355200pt;}
.w7_c00365{width:7.356800pt;}
.w8_c00365{width:7.358400pt;}
.we_c00365{width:8.318400pt;}
.wb_c00365{width:8.956800pt;}
.w10_c00365{width:10.075200pt;}
.w4_c00365{width:10.555200pt;}
.w2_c00365{width:10.718400pt;}
.wa_c00365{width:11.035200pt;}
.w5_c00365{width:13.753600pt;}
.w1_c00365{width:14.713760pt;}
.w3_c00365{width:21.270400pt;}
.w11_c00365{width:23.032000pt;}
.wd_c00365{width:24.945600pt;}
.w1a_c00365{width:792.977400pt;}
.w19_c00365{width:793.257550pt;}
.w0_c00365{width:793.333333pt;}
.x0_c00365{left:0.000000pt;}
.x1e_c00365{left:101.233093pt;}
.x1_c00365{left:114.072480pt;}
.x1f_c00365{left:125.221141pt;}
.x1c_c00365{left:225.370940pt;}
.x1b_c00365{left:239.124654pt;}
.x1d_c00365{left:376.018977pt;}
.x2_c00365{left:441.443200pt;}
.x3_c00365{left:452.161600pt;}
.x4_c00365{left:473.432000pt;}
.x5_c00365{left:483.987200pt;}
.x6_c00365{left:497.740800pt;}
.x7_c00365{left:501.899200pt;}
.x8_c00365{left:512.772800pt;}
.x9_c00365{left:520.131200pt;}
.xa_c00365{left:524.768000pt;}
.xb_c00365{left:539.160000pt;}
.xc_c00365{left:548.116800pt;}
.xd_c00365{left:552.275200pt;}
.xe_c00365{left:556.275200pt;}
.xf_c00365{left:581.220800pt;}
.x10_c00365{left:588.419200pt;}
.x11_c00365{left:598.334400pt;}
.x12_c00365{left:607.929600pt;}
.x13_c00365{left:630.001600pt;}
.x14_c00365{left:634.158400pt;}
.x15_c00365{left:640.556800pt;}
.x16_c00365{left:644.716800pt;}
.x17_c00365{left:652.072000pt;}
.x18_c00365{left:659.267200pt;}
.x19_c00365{left:665.825600pt;}
.x1a_c00365{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.113000;font-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_c00366{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls0_c00366{letter-spacing:0.000000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:-16.552343px;}
.ws1_c00366{word-spacing:0.000000px;}
._5_c00366{margin-left:-2.815547px;}
._3_c00366{margin-left:-1.418872px;}
._0_c00366{width:1.102012px;}
._7_c00366{width:2.132952px;}
._a_c00366{width:3.200597px;}
._e_c00366{width:4.587936px;}
._f_c00366{width:6.577059px;}
._8_c00366{width:9.976783px;}
._9_c00366{width:11.140121px;}
._12_c00366{width:12.987581px;}
._10_c00366{width:14.047071px;}
._6_c00366{width:15.739160px;}
._4_c00366{width:16.849152px;}
._11_c00366{width:22.916540px;}
._1_c00366{width:24.471486px;}
._2_c00366{width:25.650004px;}
._b_c00366{width:28.978421px;}
._c_c00366{width:31.007015px;}
._d_c00366{width:198.042225px;}
.fc1_c00366{color:rgb(105,148,45);}
.fc0_c00366{color:rgb(35,31,32);}
.fs2_c00366{font-size:59.733096px;}
.fs0_c00366{font-size:66.209374px;}
.fs1_c00366{font-size:71.968771px;}
.y0_c00366{bottom:0.000000px;}
.y4_c00366{bottom:0.120938px;}
.y8_c00366{bottom:0.556171px;}
.y2_c00366{bottom:3.957898px;}
.ya_c00366{bottom:65.791352px;}
.y3_c00366{bottom:74.623320px;}
.y1_c00366{bottom:74.983320px;}
.y25_c00366{bottom:123.184329px;}
.y24_c00366{bottom:154.310967px;}
.y23_c00366{bottom:200.369798px;}
.y22_c00366{bottom:231.316436px;}
.y21_c00366{bottom:277.375268px;}
.y20_c00366{bottom:308.320555px;}
.y1f_c00366{bottom:339.447193px;}
.y1e_c00366{bottom:402.418668px;}
.y1d_c00366{bottom:449.016899px;}
.y1c_c00366{bottom:479.964887px;}
.y1b_c00366{bottom:511.091524px;}
.y1a_c00366{bottom:556.969006px;}
.y19_c00366{bottom:588.095643px;}
.y18_c00366{bottom:619.042281px;}
.y17_c00366{bottom:665.101113px;}
.y16_c00366{bottom:696.226400px;}
.y15_c00366{bottom:727.173038px;}
.y14_c00366{bottom:790.323012px;}
.y13_c00366{bottom:836.741394px;}
.y12_c00366{bottom:867.868031px;}
.y11_c00366{bottom:898.814669px;}
.y10_c00366{bottom:929.941307px;}
.yf_c00366{bottom:960.884494px;}
.ye_c00366{bottom:992.012482px;}
.yd_c00366{bottom:1022.959119px;}
.yc_c00366{bottom:1054.082907px;}
.yb_c00366{bottom:1085.030895px;}
.y9_c00366{bottom:1106.080386px;}
.y7_c00366{bottom:1151.494902px;}
.y6_c00366{bottom:1172.185744px;}
.y5_c00366{bottom:1192.876585px;}
.h1_c00366{height:18.172260px;}
.h7_c00366{height:38.288915px;}
.h6_c00366{height:42.440208px;}
.h2_c00366{height:46.346561px;}
.h4_c00366{height:50.378140px;}
.h9_c00366{height:53.580587px;}
.h8_c00366{height:64.484019px;}
.h5_c00366{height:1262.431829px;}
.h3_c00366{height:1262.879062px;}
.h0_c00366{height:1263.000000px;}
.w18_c00366{width:2.880000px;}
.w12_c00366{width:4.676400px;}
.wc_c00366{width:4.680000px;}
.w6_c00366{width:5.038200px;}
.w17_c00366{width:6.474600px;}
.w9_c00366{width:6.476400px;}
.w13_c00366{width:7.198200px;}
.wf_c00366{width:7.376400px;}
.w16_c00366{width:7.378200px;}
.w15_c00366{width:8.094600px;}
.w14_c00366{width:8.274600px;}
.w7_c00366{width:8.276400px;}
.w8_c00366{width:8.278200px;}
.we_c00366{width:9.358200px;}
.wb_c00366{width:10.076400px;}
.w10_c00366{width:11.334600px;}
.w4_c00366{width:11.874600px;}
.w2_c00366{width:12.058200px;}
.wa_c00366{width:12.414600px;}
.w5_c00366{width:15.472800px;}
.w1_c00366{width:16.552980px;}
.w3_c00366{width:23.929200px;}
.w11_c00366{width:25.911000px;}
.wd_c00366{width:28.063800px;}
.w1a_c00366{width:892.099575px;}
.w19_c00366{width:892.414744px;}
.w0_c00366{width:892.500000px;}
.x0_c00366{left:0.000000px;}
.x1e_c00366{left:113.887229px;}
.x1_c00366{left:128.331540px;}
.x1f_c00366{left:140.874619px;}
.x1c_c00366{left:253.542308px;}
.x1b_c00366{left:269.015236px;}
.x1d_c00366{left:423.021349px;}
.x2_c00366{left:496.623600px;}
.x3_c00366{left:508.681800px;}
.x4_c00366{left:532.611000px;}
.x5_c00366{left:544.485600px;}
.x6_c00366{left:559.958400px;}
.x7_c00366{left:564.636600px;}
.x8_c00366{left:576.869400px;}
.x9_c00366{left:585.147600px;}
.xa_c00366{left:590.364000px;}
.xb_c00366{left:606.555000px;}
.xc_c00366{left:616.631400px;}
.xd_c00366{left:621.309600px;}
.xe_c00366{left:625.809600px;}
.xf_c00366{left:653.873400px;}
.x10_c00366{left:661.971600px;}
.x11_c00366{left:673.126200px;}
.x12_c00366{left:683.920800px;}
.x13_c00366{left:708.751800px;}
.x14_c00366{left:713.428200px;}
.x15_c00366{left:720.626400px;}
.x16_c00366{left:725.306400px;}
.x17_c00366{left:733.581000px;}
.x18_c00366{left:741.675600px;}
.x19_c00366{left:749.053800px;}
.x1a_c00366{left:755.528400px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws0_c00366{word-spacing:-14.713194pt;}
.ws1_c00366{word-spacing:0.000000pt;}
._5_c00366{margin-left:-2.502709pt;}
._3_c00366{margin-left:-1.261219pt;}
._0_c00366{width:0.979567pt;}
._7_c00366{width:1.895958pt;}
._a_c00366{width:2.844975pt;}
._e_c00366{width:4.078165pt;}
._f_c00366{width:5.846274pt;}
._8_c00366{width:8.868252pt;}
._9_c00366{width:9.902330pt;}
._12_c00366{width:11.544517pt;}
._10_c00366{width:12.486286pt;}
._6_c00366{width:13.990364pt;}
._4_c00366{width:14.977024pt;}
._11_c00366{width:20.370258pt;}
._1_c00366{width:21.752432pt;}
._2_c00366{width:22.800004pt;}
._b_c00366{width:25.758596pt;}
._c_c00366{width:27.561791pt;}
._d_c00366{width:176.037534pt;}
.fs2_c00366{font-size:53.096085pt;}
.fs0_c00366{font-size:58.852776pt;}
.fs1_c00366{font-size:63.972241pt;}
.y0_c00366{bottom:0.000000pt;}
.y4_c00366{bottom:0.107500pt;}
.y8_c00366{bottom:0.494374pt;}
.y2_c00366{bottom:3.518132pt;}
.ya_c00366{bottom:58.481202pt;}
.y3_c00366{bottom:66.331840pt;}
.y1_c00366{bottom:66.651840pt;}
.y25_c00366{bottom:109.497182pt;}
.y24_c00366{bottom:137.165304pt;}
.y23_c00366{bottom:178.106487pt;}
.y22_c00366{bottom:205.614610pt;}
.y21_c00366{bottom:246.555793pt;}
.y20_c00366{bottom:274.062716pt;}
.y1f_c00366{bottom:301.730838pt;}
.y1e_c00366{bottom:357.705482pt;}
.y1d_c00366{bottom:399.126132pt;}
.y1c_c00366{bottom:426.635455pt;}
.y1b_c00366{bottom:454.303577pt;}
.y1a_c00366{bottom:495.083561pt;}
.y19_c00366{bottom:522.751683pt;}
.y18_c00366{bottom:550.259805pt;}
.y17_c00366{bottom:591.200989pt;}
.y16_c00366{bottom:618.867911pt;}
.y15_c00366{bottom:646.376034pt;}
.y14_c00366{bottom:702.509344pt;}
.y13_c00366{bottom:743.770128pt;}
.y12_c00366{bottom:771.438250pt;}
.y11_c00366{bottom:798.946372pt;}
.y10_c00366{bottom:826.614495pt;}
.yf_c00366{bottom:854.119550pt;}
.ye_c00366{bottom:881.788873pt;}
.yd_c00366{bottom:909.296995pt;}
.yc_c00366{bottom:936.962584pt;}
.yb_c00366{bottom:964.471906pt;}
.y9_c00366{bottom:983.182565pt;}
.y7_c00366{bottom:1023.551024pt;}
.y6_c00366{bottom:1041.942883pt;}
.y5_c00366{bottom:1060.334742pt;}
.h1_c00366{height:16.153120pt;}
.h7_c00366{height:34.034591pt;}
.h6_c00366{height:37.724630pt;}
.h2_c00366{height:41.196944pt;}
.h4_c00366{height:44.780569pt;}
.h9_c00366{height:47.627189pt;}
.h8_c00366{height:57.319128pt;}
.h5_c00366{height:1122.161626pt;}
.h3_c00366{height:1122.559167pt;}
.h0_c00366{height:1122.666667pt;}
.w18_c00366{width:2.560000pt;}
.w12_c00366{width:4.156800pt;}
.wc_c00366{width:4.160000pt;}
.w6_c00366{width:4.478400pt;}
.w17_c00366{width:5.755200pt;}
.w9_c00366{width:5.756800pt;}
.w13_c00366{width:6.398400pt;}
.wf_c00366{width:6.556800pt;}
.w16_c00366{width:6.558400pt;}
.w15_c00366{width:7.195200pt;}
.w14_c00366{width:7.355200pt;}
.w7_c00366{width:7.356800pt;}
.w8_c00366{width:7.358400pt;}
.we_c00366{width:8.318400pt;}
.wb_c00366{width:8.956800pt;}
.w10_c00366{width:10.075200pt;}
.w4_c00366{width:10.555200pt;}
.w2_c00366{width:10.718400pt;}
.wa_c00366{width:11.035200pt;}
.w5_c00366{width:13.753600pt;}
.w1_c00366{width:14.713760pt;}
.w3_c00366{width:21.270400pt;}
.w11_c00366{width:23.032000pt;}
.wd_c00366{width:24.945600pt;}
.w1a_c00366{width:792.977400pt;}
.w19_c00366{width:793.257550pt;}
.w0_c00366{width:793.333333pt;}
.x0_c00366{left:0.000000pt;}
.x1e_c00366{left:101.233093pt;}
.x1_c00366{left:114.072480pt;}
.x1f_c00366{left:125.221883pt;}
.x1c_c00366{left:225.370940pt;}
.x1b_c00366{left:239.124654pt;}
.x1d_c00366{left:376.018977pt;}
.x2_c00366{left:441.443200pt;}
.x3_c00366{left:452.161600pt;}
.x4_c00366{left:473.432000pt;}
.x5_c00366{left:483.987200pt;}
.x6_c00366{left:497.740800pt;}
.x7_c00366{left:501.899200pt;}
.x8_c00366{left:512.772800pt;}
.x9_c00366{left:520.131200pt;}
.xa_c00366{left:524.768000pt;}
.xb_c00366{left:539.160000pt;}
.xc_c00366{left:548.116800pt;}
.xd_c00366{left:552.275200pt;}
.xe_c00366{left:556.275200pt;}
.xf_c00366{left:581.220800pt;}
.x10_c00366{left:588.419200pt;}
.x11_c00366{left:598.334400pt;}
.x12_c00366{left:607.929600pt;}
.x13_c00366{left:630.001600pt;}
.x14_c00366{left:634.158400pt;}
.x15_c00366{left:640.556800pt;}
.x16_c00366{left:644.716800pt;}
.x17_c00366{left:652.072000pt;}
.x18_c00366{left:659.267200pt;}
.x19_c00366{left:665.825600pt;}
.x1a_c00366{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.112000;font-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_c00367{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:-16.552343px;}
.ws1_c00367{word-spacing:0.000000px;}
._5_c00367{margin-left:-1.173670px;}
._0_c00367{width:1.102012px;}
._2_c00367{width:9.809084px;}
._1_c00367{width:11.066943px;}
._7_c00367{width:15.771304px;}
._6_c00367{width:16.874986px;}
._4_c00367{width:22.441199px;}
._3_c00367{width:198.042225px;}
.fc1_c00367{color:rgb(105,148,45);}
.fc0_c00367{color:rgb(35,31,32);}
.fs2_c00367{font-size:59.733096px;}
.fs0_c00367{font-size:66.209374px;}
.fs1_c00367{font-size:71.968771px;}
.y0_c00367{bottom:0.000000px;}
.y4_c00367{bottom:0.120938px;}
.y8_c00367{bottom:0.556171px;}
.y2_c00367{bottom:3.957898px;}
.ya_c00367{bottom:65.791352px;}
.y3_c00367{bottom:74.623320px;}
.y1_c00367{bottom:74.983320px;}
.y12_c00367{bottom:845.018391px;}
.y11_c00367{bottom:876.145028px;}
.y10_c00367{bottom:907.091666px;}
.yf_c00367{bottom:938.216203px;}
.ye_c00367{bottom:984.095785px;}
.yd_c00367{bottom:1015.222422px;}
.yc_c00367{bottom:1070.276750px;}
.yb_c00367{bottom:1087.548944px;}
.y9_c00367{bottom:1106.080386px;}
.y7_c00367{bottom:1151.494902px;}
.y6_c00367{bottom:1172.185744px;}
.y5_c00367{bottom:1192.876585px;}
.h1_c00367{height:18.172260px;}
.h7_c00367{height:38.288915px;}
.h6_c00367{height:42.440208px;}
.h2_c00367{height:46.346561px;}
.h4_c00367{height:50.378140px;}
.h8_c00367{height:53.580587px;}
.h9_c00367{height:64.484019px;}
.h5_c00367{height:1262.431829px;}
.h3_c00367{height:1262.879062px;}
.h0_c00367{height:1263.000000px;}
.w18_c00367{width:2.880000px;}
.w12_c00367{width:4.676400px;}
.wc_c00367{width:4.680000px;}
.w6_c00367{width:5.038200px;}
.w17_c00367{width:6.474600px;}
.w9_c00367{width:6.476400px;}
.w13_c00367{width:7.198200px;}
.wf_c00367{width:7.376400px;}
.w16_c00367{width:7.378200px;}
.w15_c00367{width:8.094600px;}
.w14_c00367{width:8.274600px;}
.w7_c00367{width:8.276400px;}
.w8_c00367{width:8.278200px;}
.we_c00367{width:9.358200px;}
.wb_c00367{width:10.076400px;}
.w10_c00367{width:11.334600px;}
.w4_c00367{width:11.874600px;}
.w2_c00367{width:12.058200px;}
.wa_c00367{width:12.414600px;}
.w5_c00367{width:15.472800px;}
.w1_c00367{width:16.552980px;}
.w3_c00367{width:23.929200px;}
.w11_c00367{width:25.911000px;}
.wd_c00367{width:28.063800px;}
.w1a_c00367{width:892.099575px;}
.w19_c00367{width:892.414744px;}
.w0_c00367{width:892.500000px;}
.x0_c00367{left:0.000000px;}
.x1e_c00367{left:113.887229px;}
.x1_c00367{left:128.331540px;}
.x1c_c00367{left:253.542308px;}
.x1b_c00367{left:269.015236px;}
.x1d_c00367{left:423.021349px;}
.x2_c00367{left:496.623600px;}
.x3_c00367{left:508.681800px;}
.x4_c00367{left:532.611000px;}
.x5_c00367{left:544.485600px;}
.x6_c00367{left:559.958400px;}
.x7_c00367{left:564.636600px;}
.x8_c00367{left:576.869400px;}
.x9_c00367{left:585.147600px;}
.xa_c00367{left:590.364000px;}
.xb_c00367{left:606.555000px;}
.xc_c00367{left:616.631400px;}
.xd_c00367{left:621.309600px;}
.xe_c00367{left:625.809600px;}
.xf_c00367{left:653.873400px;}
.x10_c00367{left:661.971600px;}
.x11_c00367{left:673.126200px;}
.x12_c00367{left:683.920800px;}
.x13_c00367{left:708.751800px;}
.x14_c00367{left:713.428200px;}
.x15_c00367{left:720.626400px;}
.x16_c00367{left:725.306400px;}
.x17_c00367{left:733.581000px;}
.x18_c00367{left:741.675600px;}
.x19_c00367{left:749.053800px;}
.x1a_c00367{left:755.528400px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:-14.713194pt;}
.ws1_c00367{word-spacing:0.000000pt;}
._5_c00367{margin-left:-1.043262pt;}
._0_c00367{width:0.979567pt;}
._2_c00367{width:8.719185pt;}
._1_c00367{width:9.837282pt;}
._7_c00367{width:14.018937pt;}
._6_c00367{width:14.999987pt;}
._4_c00367{width:19.947733pt;}
._3_c00367{width:176.037534pt;}
.fs2_c00367{font-size:53.096085pt;}
.fs0_c00367{font-size:58.852776pt;}
.fs1_c00367{font-size:63.972241pt;}
.y0_c00367{bottom:0.000000pt;}
.y4_c00367{bottom:0.107500pt;}
.y8_c00367{bottom:0.494374pt;}
.y2_c00367{bottom:3.518132pt;}
.ya_c00367{bottom:58.481202pt;}
.y3_c00367{bottom:66.331840pt;}
.y1_c00367{bottom:66.651840pt;}
.y12_c00367{bottom:751.127458pt;}
.y11_c00367{bottom:778.795581pt;}
.y10_c00367{bottom:806.303703pt;}
.yf_c00367{bottom:833.969958pt;}
.ye_c00367{bottom:874.751809pt;}
.yd_c00367{bottom:902.419931pt;}
.yc_c00367{bottom:951.357112pt;}
.yb_c00367{bottom:966.710172pt;}
.y9_c00367{bottom:983.182565pt;}
.y7_c00367{bottom:1023.551024pt;}
.y6_c00367{bottom:1041.942883pt;}
.y5_c00367{bottom:1060.334742pt;}
.h1_c00367{height:16.153120pt;}
.h7_c00367{height:34.034591pt;}
.h6_c00367{height:37.724630pt;}
.h2_c00367{height:41.196944pt;}
.h4_c00367{height:44.780569pt;}
.h8_c00367{height:47.627189pt;}
.h9_c00367{height:57.319128pt;}
.h5_c00367{height:1122.161626pt;}
.h3_c00367{height:1122.559167pt;}
.h0_c00367{height:1122.666667pt;}
.w18_c00367{width:2.560000pt;}
.w12_c00367{width:4.156800pt;}
.wc_c00367{width:4.160000pt;}
.w6_c00367{width:4.478400pt;}
.w17_c00367{width:5.755200pt;}
.w9_c00367{width:5.756800pt;}
.w13_c00367{width:6.398400pt;}
.wf_c00367{width:6.556800pt;}
.w16_c00367{width:6.558400pt;}
.w15_c00367{width:7.195200pt;}
.w14_c00367{width:7.355200pt;}
.w7_c00367{width:7.356800pt;}
.w8_c00367{width:7.358400pt;}
.we_c00367{width:8.318400pt;}
.wb_c00367{width:8.956800pt;}
.w10_c00367{width:10.075200pt;}
.w4_c00367{width:10.555200pt;}
.w2_c00367{width:10.718400pt;}
.wa_c00367{width:11.035200pt;}
.w5_c00367{width:13.753600pt;}
.w1_c00367{width:14.713760pt;}
.w3_c00367{width:21.270400pt;}
.w11_c00367{width:23.032000pt;}
.wd_c00367{width:24.945600pt;}
.w1a_c00367{width:792.977400pt;}
.w19_c00367{width:793.257550pt;}
.w0_c00367{width:793.333333pt;}
.x0_c00367{left:0.000000pt;}
.x1e_c00367{left:101.233093pt;}
.x1_c00367{left:114.072480pt;}
.x1c_c00367{left:225.370940pt;}
.x1b_c00367{left:239.124654pt;}
.x1d_c00367{left:376.018977pt;}
.x2_c00367{left:441.443200pt;}
.x3_c00367{left:452.161600pt;}
.x4_c00367{left:473.432000pt;}
.x5_c00367{left:483.987200pt;}
.x6_c00367{left:497.740800pt;}
.x7_c00367{left:501.899200pt;}
.x8_c00367{left:512.772800pt;}
.x9_c00367{left:520.131200pt;}
.xa_c00367{left:524.768000pt;}
.xb_c00367{left:539.160000pt;}
.xc_c00367{left:548.116800pt;}
.xd_c00367{left:552.275200pt;}
.xe_c00367{left:556.275200pt;}
.xf_c00367{left:581.220800pt;}
.x10_c00367{left:588.419200pt;}
.x11_c00367{left:598.334400pt;}
.x12_c00367{left:607.929600pt;}
.x13_c00367{left:630.001600pt;}
.x14_c00367{left:634.158400pt;}
.x15_c00367{left:640.556800pt;}
.x16_c00367{left:644.716800pt;}
.x17_c00367{left:652.072000pt;}
.x18_c00367{left:659.267200pt;}
.x19_c00367{left:665.825600pt;}
.x1a_c00367{left:671.580800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.113000;font-style:normal;font-weight:normal;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_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.112000;font-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_c00368{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls0_c00368{letter-spacing:0.000000px;}
.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:-17.992193px;}
.ws1_c00368{word-spacing:0.000000px;}
._17_c00368{margin-left:-5.175097px;}
._b_c00368{margin-left:-3.819889px;}
._a_c00368{margin-left:-2.107830px;}
._2_c00368{margin-left:-1.071231px;}
._1_c00368{width:1.126361px;}
._0_c00368{width:2.267170px;}
._c_c00368{width:3.800014px;}
._5_c00368{width:5.305115px;}
._9_c00368{width:6.419280px;}
._7_c00368{width:7.958226px;}
._6_c00368{width:9.121864px;}
._8_c00368{width:10.231039px;}
._d_c00368{width:11.580515px;}
._15_c00368{width:12.653591px;}
._e_c00368{width:13.735035px;}
._16_c00368{width:14.882947px;}
._11_c00368{width:19.012749px;}
._13_c00368{width:20.221017px;}
._12_c00368{width:21.269634px;}
._4_c00368{width:27.919347px;}
._3_c00368{width:29.888802px;}
._f_c00368{width:66.056676px;}
._10_c00368{width:89.304609px;}
._14_c00368{width:173.353262px;}
.fc1_c00368{color:rgb(105,148,45);}
.fc0_c00368{color:rgb(35,31,32);}
.fs5_c00368{font-size:38.862464px;}
.fs4_c00368{font-size:51.097060px;}
.fs3_c00368{font-size:53.975678px;}
.fs2_c00368{font-size:59.733096px;}
.fs1_c00368{font-size:66.209374px;}
.fs0_c00368{font-size:71.968771px;}
.y0_c00368{bottom:0.000000px;}
.y5_c00368{bottom:0.120938px;}
.y9_c00368{bottom:0.556171px;}
.y2_c00368{bottom:4.319248px;}
.y4_c00368{bottom:4.319998px;}
.yb_c00368{bottom:67.590602px;}
.y3_c00368{bottom:74.983320px;}
.y1_c00368{bottom:75.343320px;}
.y35_c00368{bottom:94.759491px;}
.y34_c00368{bottom:112.030364px;}
.y33_c00368{bottom:127.144058px;}
.y32_c00368{bottom:142.077722px;}
.y31_c00368{bottom:157.011386px;}
.y30_c00368{bottom:172.124330px;}
.y2f_c00368{bottom:187.057289px;}
.y2e_c00368{bottom:201.990248px;}
.y2d_c00368{bottom:228.797037px;}
.y2c_c00368{bottom:259.745025px;}
.y2b_c00368{bottom:281.873766px;}
.y2a_c00368{bottom:300.765958px;}
.y29_c00368{bottom:332.071246px;}
.y28_c00368{bottom:363.197883px;}
.y27_c00368{bottom:394.502421px;}
.y26_c00368{bottom:425.629058px;}
.y25_c00368{bottom:456.755696px;}
.y24_c00368{bottom:487.880983px;}
.y23_c00368{bottom:518.827621px;}
.y22_c00368{bottom:537.175614px;}
.y21_c00368{bottom:550.131109px;}
.y20_c00368{bottom:569.205101px;}
.y1f_c00368{bottom:597.273240px;}
.y1e_c00368{bottom:628.399127px;}
.y1d_c00368{bottom:659.344415px;}
.y1c_c00368{bottom:690.471052px;}
.y1b_c00368{bottom:709.722045px;}
.y1a_c00368{bottom:725.913038px;}
.y19_c00368{bottom:745.704030px;}
.y18_c00368{bottom:763.156523px;}
.y17_c00368{bottom:789.783913px;}
.y16_c00368{bottom:820.910550px;}
.y15_c00368{bottom:851.855838px;}
.y14_c00368{bottom:882.982475px;}
.y13_c00368{bottom:902.233018px;}
.y12_c00368{bottom:918.425961px;}
.y11_c00368{bottom:938.578453px;}
.y10_c00368{bottom:974.560439px;}
.yf_c00368{bottom:992.731431px;}
.ye_c00368{bottom:1028.716417px;}
.yd_c00368{bottom:1048.146359px;}
.yc_c00368{bottom:1086.470894px;}
.ya_c00368{bottom:1106.080386px;}
.y8_c00368{bottom:1151.494902px;}
.y7_c00368{bottom:1172.185744px;}
.y6_c00368{bottom:1192.876585px;}
.h1_c00368{height:20.152260px;}
.hd_c00368{height:24.910840px;}
.hb_c00368{height:32.753215px;}
.h9_c00368{height:34.598410px;}
.h6_c00368{height:38.288915px;}
.h5_c00368{height:42.440208px;}
.h7_c00368{height:46.131982px;}
.h2_c00368{height:50.378140px;}
.ha_c00368{height:59.522227px;}
.hc_c00368{height:64.484019px;}
.h8_c00368{height:64.555988px;}
.h4_c00368{height:1262.431829px;}
.h3_c00368{height:1262.879062px;}
.h0_c00368{height:1263.000000px;}
.w7_c00368{width:5.396400px;}
.w3_c00368{width:7.914600px;}
.w5_c00368{width:7.918200px;}
.w6_c00368{width:8.994600px;}
.w8_c00368{width:8.998200px;}
.w1_c00368{width:18.352980px;}
.w4_c00368{width:21.949200px;}
.w9_c00368{width:28.063800px;}
.wb_c00368{width:33.463800px;}
.w2_c00368{width:66.931200px;}
.wa_c00368{width:133.140600px;}
.wd_c00368{width:892.099575px;}
.wc_c00368{width:892.414744px;}
.w0_c00368{width:892.500000px;}
.x0_c00368{left:0.000000px;}
.xf_c00368{left:113.887229px;}
.x1_c00368{left:128.331540px;}
.x13_c00368{left:146.993866px;}
.x16_c00368{left:154.549813px;}
.x14_c00368{left:180.639303px;}
.xd_c00368{left:253.542308px;}
.xc_c00368{left:269.015236px;}
.x12_c00368{left:277.974264px;}
.x10_c00368{left:384.667224px;}
.x15_c00368{left:407.154212px;}
.xe_c00368{left:423.021349px;}
.x11_c00368{left:443.679198px;}
.x2_c00368{left:454.705200px;}
.x3_c00368{left:521.636400px;}
.x4_c00368{left:529.551000px;}
.x5_c00368{left:551.500200px;}
.x6_c00368{left:559.418400px;}
.x7_c00368{left:568.413000px;}
.x8_c00368{left:573.449400px;}
.x9_c00368{left:586.047600px;}
.xa_c00368{left:618.071400px;}
.xb_c00368{left:751.212000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws0_c00368{word-spacing:-15.993060pt;}
.ws1_c00368{word-spacing:0.000000pt;}
._17_c00368{margin-left:-4.600086pt;}
._b_c00368{margin-left:-3.395457pt;}
._a_c00368{margin-left:-1.873626pt;}
._2_c00368{margin-left:-0.952205pt;}
._1_c00368{width:1.001210pt;}
._0_c00368{width:2.015262pt;}
._c_c00368{width:3.377791pt;}
._5_c00368{width:4.715658pt;}
._9_c00368{width:5.706027pt;}
._7_c00368{width:7.073978pt;}
._6_c00368{width:8.108323pt;}
._8_c00368{width:9.094257pt;}
._d_c00368{width:10.293791pt;}
._15_c00368{width:11.247637pt;}
._e_c00368{width:12.208920pt;}
._16_c00368{width:13.229287pt;}
._11_c00368{width:16.900221pt;}
._13_c00368{width:17.974238pt;}
._12_c00368{width:18.906341pt;}
._4_c00368{width:24.817197pt;}
._3_c00368{width:26.567824pt;}
._f_c00368{width:58.717046pt;}
._10_c00368{width:79.381875pt;}
._14_c00368{width:154.091788pt;}
.fs5_c00368{font-size:34.544413pt;}
.fs4_c00368{font-size:45.419608pt;}
.fs3_c00368{font-size:47.978381pt;}
.fs2_c00368{font-size:53.096085pt;}
.fs1_c00368{font-size:58.852776pt;}
.fs0_c00368{font-size:63.972241pt;}
.y0_c00368{bottom:0.000000pt;}
.y5_c00368{bottom:0.107500pt;}
.y9_c00368{bottom:0.494374pt;}
.y2_c00368{bottom:3.839332pt;}
.y4_c00368{bottom:3.839998pt;}
.yb_c00368{bottom:60.080535pt;}
.y3_c00368{bottom:66.651840pt;}
.y1_c00368{bottom:66.971840pt;}
.y35_c00368{bottom:84.230658pt;}
.y34_c00368{bottom:99.582546pt;}
.y33_c00368{bottom:113.016940pt;}
.y32_c00368{bottom:126.291308pt;}
.y31_c00368{bottom:139.565676pt;}
.y30_c00368{bottom:152.999404pt;}
.y2f_c00368{bottom:166.273146pt;}
.y2e_c00368{bottom:179.546887pt;}
.y2d_c00368{bottom:203.375144pt;}
.y2c_c00368{bottom:230.884466pt;}
.y2b_c00368{bottom:250.554459pt;}
.y2a_c00368{bottom:267.347518pt;}
.y29_c00368{bottom:295.174441pt;}
.y28_c00368{bottom:322.842563pt;}
.y27_c00368{bottom:350.668818pt;}
.y26_c00368{bottom:378.336941pt;}
.y25_c00368{bottom:406.005063pt;}
.y24_c00368{bottom:433.671985pt;}
.y23_c00368{bottom:461.180108pt;}
.y22_c00368{bottom:477.489434pt;}
.y21_c00368{bottom:489.005430pt;}
.y20_c00368{bottom:505.960090pt;}
.y1f_c00368{bottom:530.909546pt;}
.y1e_c00368{bottom:558.577002pt;}
.y1d_c00368{bottom:586.083924pt;}
.y1c_c00368{bottom:613.752047pt;}
.y1b_c00368{bottom:630.864040pt;}
.y1a_c00368{bottom:645.256034pt;}
.y19_c00368{bottom:662.848027pt;}
.y18_c00368{bottom:678.361354pt;}
.y17_c00368{bottom:702.030145pt;}
.y16_c00368{bottom:729.698267pt;}
.y15_c00368{bottom:757.205189pt;}
.y14_c00368{bottom:784.873311pt;}
.y13_c00368{bottom:801.984905pt;}
.y12_c00368{bottom:816.378632pt;}
.y11_c00368{bottom:834.291958pt;}
.y10_c00368{bottom:866.275946pt;}
.yf_c00368{bottom:882.427939pt;}
.ye_c00368{bottom:914.414593pt;}
.yd_c00368{bottom:931.685653pt;}
.yc_c00368{bottom:965.751906pt;}
.ya_c00368{bottom:983.182565pt;}
.y8_c00368{bottom:1023.551024pt;}
.y7_c00368{bottom:1041.942883pt;}
.y6_c00368{bottom:1060.334742pt;}
.h1_c00368{height:17.913120pt;}
.hd_c00368{height:22.142969pt;}
.hb_c00368{height:29.113969pt;}
.h9_c00368{height:30.754142pt;}
.h6_c00368{height:34.034591pt;}
.h5_c00368{height:37.724630pt;}
.h7_c00368{height:41.006207pt;}
.h2_c00368{height:44.780569pt;}
.ha_c00368{height:52.908646pt;}
.hc_c00368{height:57.319128pt;}
.h8_c00368{height:57.383100pt;}
.h4_c00368{height:1122.161626pt;}
.h3_c00368{height:1122.559167pt;}
.h0_c00368{height:1122.666667pt;}
.w7_c00368{width:4.796800pt;}
.w3_c00368{width:7.035200pt;}
.w5_c00368{width:7.038400pt;}
.w6_c00368{width:7.995200pt;}
.w8_c00368{width:7.998400pt;}
.w1_c00368{width:16.313760pt;}
.w4_c00368{width:19.510400pt;}
.w9_c00368{width:24.945600pt;}
.wb_c00368{width:29.745600pt;}
.w2_c00368{width:59.494400pt;}
.wa_c00368{width:118.347200pt;}
.wd_c00368{width:792.977400pt;}
.wc_c00368{width:793.257550pt;}
.w0_c00368{width:793.333333pt;}
.x0_c00368{left:0.000000pt;}
.xf_c00368{left:101.233093pt;}
.x1_c00368{left:114.072480pt;}
.x13_c00368{left:130.661214pt;}
.x16_c00368{left:137.377612pt;}
.x14_c00368{left:160.568269pt;}
.xd_c00368{left:225.370940pt;}
.xc_c00368{left:239.124654pt;}
.x12_c00368{left:247.088234pt;}
.x10_c00368{left:341.926422pt;}
.x15_c00368{left:361.914855pt;}
.xe_c00368{left:376.018977pt;}
.x11_c00368{left:394.381509pt;}
.x2_c00368{left:404.182400pt;}
.x3_c00368{left:463.676800pt;}
.x4_c00368{left:470.712000pt;}
.x5_c00368{left:490.222400pt;}
.x6_c00368{left:497.260800pt;}
.x7_c00368{left:505.256000pt;}
.x8_c00368{left:509.732800pt;}
.x9_c00368{left:520.931200pt;}
.xa_c00368{left:549.396800pt;}
.xb_c00368{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.112000;font-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_c00369{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:-17.992193px;}
.ws1_c00369{word-spacing:0.000000px;}
._2_c00369{margin-left:-3.819889px;}
._5_c00369{margin-left:-2.707752px;}
._3_c00369{margin-left:-1.488876px;}
._1_c00369{width:1.126361px;}
._0_c00369{width:2.267170px;}
._f_c00369{width:4.215631px;}
._c_c00369{width:5.560607px;}
._a_c00369{width:6.734908px;}
._b_c00369{width:7.842116px;}
._9_c00369{width:8.917598px;}
._6_c00369{width:10.148798px;}
._7_c00369{width:11.930795px;}
._4_c00369{width:13.036410px;}
._8_c00369{width:14.981682px;}
._11_c00369{width:16.668489px;}
._10_c00369{width:19.359356px;}
._12_c00369{width:20.858459px;}
._13_c00369{width:23.756442px;}
._14_c00369{width:25.208436px;}
._d_c00369{width:26.869113px;}
._e_c00369{width:28.728102px;}
._15_c00369{width:29.801220px;}
.fc1_c00369{color:rgb(105,148,45);}
.fc0_c00369{color:rgb(35,31,32);}
.fs3_c00369{font-size:41.741203px;}
.fs4_c00369{font-size:45.339642px;}
.fs5_c00369{font-size:48.218261px;}
.fs2_c00369{font-size:59.733096px;}
.fs1_c00369{font-size:66.209374px;}
.fs0_c00369{font-size:71.968771px;}
.y0_c00369{bottom:0.000000px;}
.y5_c00369{bottom:0.120938px;}
.y9_c00369{bottom:0.556171px;}
.y2_c00369{bottom:4.319248px;}
.y4_c00369{bottom:4.319998px;}
.yb_c00369{bottom:67.590602px;}
.y3_c00369{bottom:74.983320px;}
.y1_c00369{bottom:75.343320px;}
.y37_c00369{bottom:91.517242px;}
.y36_c00369{bottom:106.450201px;}
.y35_c00369{bottom:121.383160px;}
.y34_c00369{bottom:136.495354px;}
.y33_c00369{bottom:151.429018px;}
.y32_c00369{bottom:166.362682px;}
.y31_c00369{bottom:181.477126px;}
.y30_c00369{bottom:196.410085px;}
.y2f_c00369{bottom:211.343044px;}
.y2e_c00369{bottom:226.456738px;}
.y2d_c00369{bottom:241.030732px;}
.y2c_c00369{bottom:255.605026px;}
.y2b_c00369{bottom:277.735117px;}
.y2a_c00369{bottom:307.781755px;}
.y29_c00369{bottom:338.907043px;}
.y28_c00369{bottom:369.853681px;}
.y27_c00369{bottom:389.284223px;}
.y26_c00369{bottom:405.658666px;}
.y25_c00369{bottom:432.284556px;}
.y24_c00369{bottom:463.409843px;}
.y23_c00369{bottom:494.356481px;}
.y22_c00369{bottom:525.482368px;}
.y21_c00369{bottom:556.426156px;}
.y20_c00369{bottom:587.552794px;}
.y1f_c00369{bottom:618.498081px;}
.y1e_c00369{bottom:649.624719px;}
.y1d_c00369{bottom:680.574206px;}
.y1c_c00369{bottom:711.697394px;}
.y1b_c00369{bottom:742.645382px;}
.y1a_c00369{bottom:773.769169px;}
.y19_c00369{bottom:804.717157px;}
.y18_c00369{bottom:835.843794px;}
.y17_c00369{bottom:866.788332px;}
.y16_c00369{bottom:897.914969px;}
.y15_c00369{bottom:917.165962px;}
.y14_c00369{bottom:931.381456px;}
.y13_c00369{bottom:945.055451px;}
.y12_c00369{bottom:964.304943px;}
.y11_c00369{bottom:992.371282px;}
.y10_c00369{bottom:1023.317919px;}
.yf_c00369{bottom:1042.569212px;}
.ye_c00369{bottom:1057.682906px;}
.yd_c00369{bottom:1071.716900px;}
.yc_c00369{bottom:1084.850895px;}
.ya_c00369{bottom:1106.080386px;}
.y8_c00369{bottom:1151.494902px;}
.y7_c00369{bottom:1172.185744px;}
.y6_c00369{bottom:1192.876585px;}
.h1_c00369{height:20.152260px;}
.h8_c00369{height:26.756111px;}
.ha_c00369{height:29.062710px;}
.hc_c00369{height:30.907905px;}
.h6_c00369{height:38.288915px;}
.h5_c00369{height:42.440208px;}
.hb_c00369{height:46.131982px;}
.h2_c00369{height:50.378140px;}
.h9_c00369{height:64.484019px;}
.h7_c00369{height:64.555988px;}
.h4_c00369{height:1262.431829px;}
.h3_c00369{height:1262.879062px;}
.h0_c00369{height:1263.000000px;}
.w7_c00369{width:5.396400px;}
.w3_c00369{width:7.914600px;}
.w5_c00369{width:7.918200px;}
.w6_c00369{width:8.994600px;}
.w8_c00369{width:8.998200px;}
.w1_c00369{width:18.352980px;}
.w4_c00369{width:21.949200px;}
.w9_c00369{width:28.063800px;}
.wb_c00369{width:33.463800px;}
.w2_c00369{width:66.931200px;}
.wa_c00369{width:133.140600px;}
.wd_c00369{width:892.099575px;}
.wc_c00369{width:892.414744px;}
.w0_c00369{width:892.500000px;}
.x0_c00369{left:0.000000px;}
.xf_c00369{left:113.887229px;}
.x1_c00369{left:128.331540px;}
.x11_c00369{left:154.549813px;}
.x12_c00369{left:181.535317px;}
.xd_c00369{left:253.542308px;}
.xc_c00369{left:269.015236px;}
.x10_c00369{left:396.180217px;}
.xe_c00369{left:423.021349px;}
.x2_c00369{left:454.705200px;}
.x3_c00369{left:521.636400px;}
.x4_c00369{left:529.551000px;}
.x5_c00369{left:551.500200px;}
.x6_c00369{left:559.418400px;}
.x7_c00369{left:568.413000px;}
.x8_c00369{left:573.449400px;}
.x9_c00369{left:586.047600px;}
.xa_c00369{left:618.071400px;}
.xb_c00369{left:751.212000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:-15.993060pt;}
.ws1_c00369{word-spacing:0.000000pt;}
._2_c00369{margin-left:-3.395457pt;}
._5_c00369{margin-left:-2.406891pt;}
._3_c00369{margin-left:-1.323445pt;}
._1_c00369{width:1.001210pt;}
._0_c00369{width:2.015262pt;}
._f_c00369{width:3.747228pt;}
._c_c00369{width:4.942762pt;}
._a_c00369{width:5.986585pt;}
._b_c00369{width:6.970769pt;}
._9_c00369{width:7.926754pt;}
._6_c00369{width:9.021154pt;}
._7_c00369{width:10.605152pt;}
._4_c00369{width:11.587920pt;}
._8_c00369{width:13.317050pt;}
._11_c00369{width:14.816435pt;}
._10_c00369{width:17.208316pt;}
._12_c00369{width:18.540853pt;}
._13_c00369{width:21.116838pt;}
._14_c00369{width:22.407498pt;}
._d_c00369{width:23.883656pt;}
._e_c00369{width:25.536091pt;}
._15_c00369{width:26.489973pt;}
.fs3_c00369{font-size:37.103292pt;}
.fs4_c00369{font-size:40.301904pt;}
.fs5_c00369{font-size:42.860676pt;}
.fs2_c00369{font-size:53.096085pt;}
.fs1_c00369{font-size:58.852776pt;}
.fs0_c00369{font-size:63.972241pt;}
.y0_c00369{bottom:0.000000pt;}
.y5_c00369{bottom:0.107500pt;}
.y9_c00369{bottom:0.494374pt;}
.y2_c00369{bottom:3.839332pt;}
.y4_c00369{bottom:3.839998pt;}
.yb_c00369{bottom:60.080535pt;}
.y3_c00369{bottom:66.651840pt;}
.y1_c00369{bottom:66.971840pt;}
.y37_c00369{bottom:81.348660pt;}
.y36_c00369{bottom:94.622401pt;}
.y35_c00369{bottom:107.896142pt;}
.y34_c00369{bottom:121.329204pt;}
.y33_c00369{bottom:134.603572pt;}
.y32_c00369{bottom:147.877940pt;}
.y31_c00369{bottom:161.313001pt;}
.y30_c00369{bottom:174.586742pt;}
.y2f_c00369{bottom:187.860484pt;}
.y2e_c00369{bottom:201.294878pt;}
.y2d_c00369{bottom:214.249540pt;}
.y2c_c00369{bottom:227.204468pt;}
.y2b_c00369{bottom:246.875660pt;}
.y2a_c00369{bottom:273.583783pt;}
.y29_c00369{bottom:301.250705pt;}
.y28_c00369{bottom:328.758827pt;}
.y27_c00369{bottom:346.030420pt;}
.y26_c00369{bottom:360.585481pt;}
.y25_c00369{bottom:384.252938pt;}
.y24_c00369{bottom:411.919861pt;}
.y23_c00369{bottom:439.427983pt;}
.y22_c00369{bottom:467.095439pt;}
.y21_c00369{bottom:494.601028pt;}
.y20_c00369{bottom:522.269150pt;}
.y1f_c00369{bottom:549.776072pt;}
.y1e_c00369{bottom:577.444194pt;}
.y1d_c00369{bottom:604.954850pt;}
.y1c_c00369{bottom:632.619906pt;}
.y1b_c00369{bottom:660.129228pt;}
.y1a_c00369{bottom:687.794817pt;}
.y19_c00369{bottom:715.304139pt;}
.y18_c00369{bottom:742.972262pt;}
.y17_c00369{bottom:770.478517pt;}
.y16_c00369{bottom:798.146639pt;}
.y15_c00369{bottom:815.258633pt;}
.y14_c00369{bottom:827.894628pt;}
.y13_c00369{bottom:840.049289pt;}
.y12_c00369{bottom:857.159949pt;}
.y11_c00369{bottom:882.107806pt;}
.y10_c00369{bottom:909.615928pt;}
.yf_c00369{bottom:926.728188pt;}
.ye_c00369{bottom:940.162583pt;}
.yd_c00369{bottom:952.637244pt;}
.yc_c00369{bottom:964.311906pt;}
.ya_c00369{bottom:983.182565pt;}
.y8_c00369{bottom:1023.551024pt;}
.y7_c00369{bottom:1041.942883pt;}
.y6_c00369{bottom:1060.334742pt;}
.h1_c00369{height:17.913120pt;}
.h8_c00369{height:23.783210pt;}
.ha_c00369{height:25.833520pt;}
.hc_c00369{height:27.473693pt;}
.h6_c00369{height:34.034591pt;}
.h5_c00369{height:37.724630pt;}
.hb_c00369{height:41.006207pt;}
.h2_c00369{height:44.780569pt;}
.h9_c00369{height:57.319128pt;}
.h7_c00369{height:57.383100pt;}
.h4_c00369{height:1122.161626pt;}
.h3_c00369{height:1122.559167pt;}
.h0_c00369{height:1122.666667pt;}
.w7_c00369{width:4.796800pt;}
.w3_c00369{width:7.035200pt;}
.w5_c00369{width:7.038400pt;}
.w6_c00369{width:7.995200pt;}
.w8_c00369{width:7.998400pt;}
.w1_c00369{width:16.313760pt;}
.w4_c00369{width:19.510400pt;}
.w9_c00369{width:24.945600pt;}
.wb_c00369{width:29.745600pt;}
.w2_c00369{width:59.494400pt;}
.wa_c00369{width:118.347200pt;}
.wd_c00369{width:792.977400pt;}
.wc_c00369{width:793.257550pt;}
.w0_c00369{width:793.333333pt;}
.x0_c00369{left:0.000000pt;}
.xf_c00369{left:101.233093pt;}
.x1_c00369{left:114.072480pt;}
.x11_c00369{left:137.377612pt;}
.x12_c00369{left:161.364727pt;}
.xd_c00369{left:225.370940pt;}
.xc_c00369{left:239.124654pt;}
.x10_c00369{left:352.160192pt;}
.xe_c00369{left:376.018977pt;}
.x2_c00369{left:404.182400pt;}
.x3_c00369{left:463.676800pt;}
.x4_c00369{left:470.712000pt;}
.x5_c00369{left:490.222400pt;}
.x6_c00369{left:497.260800pt;}
.x7_c00369{left:505.256000pt;}
.x8_c00369{left:509.732800pt;}
.x9_c00369{left:520.931200pt;}
.xa_c00369{left:549.396800pt;}
.xb_c00369{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.112000;font-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_c00370{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls0_c00370{letter-spacing:0.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00370{word-spacing:-17.992193px;}
.ws1_c00370{word-spacing:0.000000px;}
._13_c00370{margin-left:-5.673929px;}
._2_c00370{margin-left:-3.819889px;}
._9_c00370{margin-left:-2.623448px;}
._5_c00370{margin-left:-1.134193px;}
._1_c00370{width:1.126361px;}
._0_c00370{width:2.267170px;}
._a_c00370{width:3.323011px;}
._d_c00370{width:4.765888px;}
._b_c00370{width:6.397324px;}
._c_c00370{width:8.279537px;}
._e_c00370{width:9.281210px;}
._7_c00370{width:10.299643px;}
._12_c00370{width:11.620203px;}
._11_c00370{width:13.092328px;}
._10_c00370{width:14.104706px;}
._f_c00370{width:15.602939px;}
._6_c00370{width:19.991334px;}
._4_c00370{width:21.000928px;}
._15_c00370{width:25.833764px;}
._16_c00370{width:27.549818px;}
._14_c00370{width:36.768091px;}
._3_c00370{width:54.041202px;}
._8_c00370{width:59.575241px;}
.fc1_c00370{color:rgb(105,148,45);}
.fc0_c00370{color:rgb(35,31,32);}
.fs5_c00370{font-size:38.862464px;}
.fs3_c00370{font-size:41.741203px;}
.fs4_c00370{font-size:45.339642px;}
.fs2_c00370{font-size:59.733096px;}
.fs1_c00370{font-size:66.209374px;}
.fs0_c00370{font-size:71.968771px;}
.y0_c00370{bottom:0.000000px;}
.y5_c00370{bottom:0.120938px;}
.y9_c00370{bottom:0.556171px;}
.y2_c00370{bottom:4.319248px;}
.y4_c00370{bottom:4.319998px;}
.yb_c00370{bottom:67.590602px;}
.y3_c00370{bottom:74.983320px;}
.y1_c00370{bottom:75.343320px;}
.y2f_c00370{bottom:130.558326px;}
.y2e_c00370{bottom:161.684964px;}
.y2d_c00370{bottom:192.991601px;}
.y2c_c00370{bottom:224.116889px;}
.y2b_c00370{bottom:255.063527px;}
.y2a_c00370{bottom:288.168063px;}
.y29_c00370{bottom:319.294701px;}
.y28_c00370{bottom:338.547193px;}
.y27_c00370{bottom:352.581188px;}
.y26_c00370{bottom:365.715182px;}
.y25_c00370{bottom:406.018666px;}
.y24_c00370{bottom:432.643506px;}
.y23_c00370{bottom:463.770143px;}
.y22_c00370{bottom:481.942636px;}
.y21_c00370{bottom:494.896931px;}
.y20_c00370{bottom:526.201468px;}
.y1f_c00370{bottom:557.148106px;}
.y1e_c00370{bottom:575.500598px;}
.y1d_c00370{bottom:588.273093px;}
.y1c_c00370{bottom:619.579731px;}
.y1b_c00370{bottom:650.524268px;}
.y1a_c00370{bottom:681.650906px;}
.y19_c00370{bottom:712.776193px;}
.y18_c00370{bottom:743.902831px;}
.y17_c00370{bottom:775.209468px;}
.y16_c00370{bottom:806.334006px;}
.y15_c00370{bottom:837.281994px;}
.y14_c00370{bottom:856.534486px;}
.y13_c00370{bottom:870.926980px;}
.y12_c00370{bottom:909.610315px;}
.y11_c00370{bottom:955.492746px;}
.y10_c00370{bottom:986.617284px;}
.yf_c00370{bottom:1017.563922px;}
.ye_c00370{bottom:1036.996414px;}
.yd_c00370{bottom:1051.028908px;}
.yc_c00370{bottom:1064.161403px;}
.ya_c00370{bottom:1106.080386px;}
.y8_c00370{bottom:1151.494902px;}
.y7_c00370{bottom:1172.185744px;}
.y6_c00370{bottom:1192.876585px;}
.h1_c00370{height:20.152260px;}
.hb_c00370{height:24.910840px;}
.h8_c00370{height:26.756111px;}
.ha_c00370{height:29.062710px;}
.h6_c00370{height:38.288915px;}
.h5_c00370{height:42.440208px;}
.h2_c00370{height:50.378140px;}
.h9_c00370{height:64.484019px;}
.h7_c00370{height:64.555988px;}
.h4_c00370{height:1262.431829px;}
.h3_c00370{height:1262.879062px;}
.h0_c00370{height:1263.000000px;}
.w7_c00370{width:5.396400px;}
.w3_c00370{width:7.914600px;}
.w5_c00370{width:7.918200px;}
.w6_c00370{width:8.994600px;}
.w8_c00370{width:8.998200px;}
.w1_c00370{width:17.992980px;}
.w4_c00370{width:21.949200px;}
.w9_c00370{width:28.063800px;}
.wb_c00370{width:33.463800px;}
.w2_c00370{width:66.931200px;}
.wa_c00370{width:133.140600px;}
.wd_c00370{width:892.099575px;}
.wc_c00370{width:892.414744px;}
.w0_c00370{width:892.500000px;}
.x0_c00370{left:0.000000px;}
.xf_c00370{left:113.887229px;}
.x1_c00370{left:128.331540px;}
.x11_c00370{left:140.874619px;}
.x13_c00370{left:154.549813px;}
.x12_c00370{left:167.866119px;}
.x14_c00370{left:181.532319px;}
.xd_c00370{left:253.542308px;}
.xc_c00370{left:269.015236px;}
.x15_c00370{left:369.373727px;}
.x10_c00370{left:390.961719px;}
.xe_c00370{left:423.021349px;}
.x2_c00370{left:454.705200px;}
.x3_c00370{left:521.636400px;}
.x4_c00370{left:529.551000px;}
.x5_c00370{left:551.500200px;}
.x6_c00370{left:559.418400px;}
.x7_c00370{left:568.413000px;}
.x8_c00370{left:573.449400px;}
.x9_c00370{left:586.047600px;}
.xa_c00370{left:618.071400px;}
.xb_c00370{left:751.212000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:-15.993060pt;}
.ws1_c00370{word-spacing:0.000000pt;}
._13_c00370{margin-left:-5.043492pt;}
._2_c00370{margin-left:-3.395457pt;}
._9_c00370{margin-left:-2.331954pt;}
._5_c00370{margin-left:-1.008171pt;}
._1_c00370{width:1.001210pt;}
._0_c00370{width:2.015262pt;}
._a_c00370{width:2.953787pt;}
._d_c00370{width:4.236345pt;}
._b_c00370{width:5.686510pt;}
._c_c00370{width:7.359589pt;}
._e_c00370{width:8.249964pt;}
._7_c00370{width:9.155238pt;}
._12_c00370{width:10.329070pt;}
._11_c00370{width:11.637625pt;}
._10_c00370{width:12.537517pt;}
._f_c00370{width:13.869279pt;}
._6_c00370{width:17.770075pt;}
._4_c00370{width:18.667492pt;}
._15_c00370{width:22.963346pt;}
._16_c00370{width:24.488727pt;}
._14_c00370{width:32.682747pt;}
._3_c00370{width:48.036624pt;}
._8_c00370{width:52.955770pt;}
.fs5_c00370{font-size:34.544413pt;}
.fs3_c00370{font-size:37.103292pt;}
.fs4_c00370{font-size:40.301904pt;}
.fs2_c00370{font-size:53.096085pt;}
.fs1_c00370{font-size:58.852776pt;}
.fs0_c00370{font-size:63.972241pt;}
.y0_c00370{bottom:0.000000pt;}
.y5_c00370{bottom:0.107500pt;}
.y9_c00370{bottom:0.494374pt;}
.y2_c00370{bottom:3.839332pt;}
.y4_c00370{bottom:3.839998pt;}
.yb_c00370{bottom:60.080535pt;}
.y3_c00370{bottom:66.651840pt;}
.y1_c00370{bottom:66.971840pt;}
.y2f_c00370{bottom:116.051846pt;}
.y2e_c00370{bottom:143.719968pt;}
.y2d_c00370{bottom:171.548090pt;}
.y2c_c00370{bottom:199.215012pt;}
.y2b_c00370{bottom:226.723135pt;}
.y2a_c00370{bottom:256.149390pt;}
.y29_c00370{bottom:283.817512pt;}
.y28_c00370{bottom:300.930838pt;}
.y27_c00370{bottom:313.405500pt;}
.y26_c00370{bottom:325.080162pt;}
.y25_c00370{bottom:360.905481pt;}
.y24_c00370{bottom:384.572005pt;}
.y23_c00370{bottom:412.240127pt;}
.y22_c00370{bottom:428.393454pt;}
.y21_c00370{bottom:439.908383pt;}
.y20_c00370{bottom:467.734638pt;}
.y1f_c00370{bottom:495.242761pt;}
.y1e_c00370{bottom:511.556087pt;}
.y1d_c00370{bottom:522.909416pt;}
.y1c_c00370{bottom:550.737538pt;}
.y1b_c00370{bottom:578.243794pt;}
.y1a_c00370{bottom:605.911916pt;}
.y19_c00370{bottom:633.578839pt;}
.y18_c00370{bottom:661.246961pt;}
.y17_c00370{bottom:689.075083pt;}
.y16_c00370{bottom:716.741339pt;}
.y15_c00370{bottom:744.250661pt;}
.y14_c00370{bottom:761.363988pt;}
.y13_c00370{bottom:774.157316pt;}
.y12_c00370{bottom:808.542502pt;}
.y11_c00370{bottom:849.326886pt;}
.y10_c00370{bottom:876.993141pt;}
.yf_c00370{bottom:904.501264pt;}
.ye_c00370{bottom:921.774590pt;}
.yd_c00370{bottom:934.247918pt;}
.yc_c00370{bottom:945.921247pt;}
.ya_c00370{bottom:983.182565pt;}
.y8_c00370{bottom:1023.551024pt;}
.y7_c00370{bottom:1041.942883pt;}
.y6_c00370{bottom:1060.334742pt;}
.h1_c00370{height:17.913120pt;}
.hb_c00370{height:22.142969pt;}
.h8_c00370{height:23.783210pt;}
.ha_c00370{height:25.833520pt;}
.h6_c00370{height:34.034591pt;}
.h5_c00370{height:37.724630pt;}
.h2_c00370{height:44.780569pt;}
.h9_c00370{height:57.319128pt;}
.h7_c00370{height:57.383100pt;}
.h4_c00370{height:1122.161626pt;}
.h3_c00370{height:1122.559167pt;}
.h0_c00370{height:1122.666667pt;}
.w7_c00370{width:4.796800pt;}
.w3_c00370{width:7.035200pt;}
.w5_c00370{width:7.038400pt;}
.w6_c00370{width:7.995200pt;}
.w8_c00370{width:7.998400pt;}
.w1_c00370{width:15.993760pt;}
.w4_c00370{width:19.510400pt;}
.w9_c00370{width:24.945600pt;}
.wb_c00370{width:29.745600pt;}
.w2_c00370{width:59.494400pt;}
.wa_c00370{width:118.347200pt;}
.wd_c00370{width:792.977400pt;}
.wc_c00370{width:793.257550pt;}
.w0_c00370{width:793.333333pt;}
.x0_c00370{left:0.000000pt;}
.xf_c00370{left:101.233093pt;}
.x1_c00370{left:114.072480pt;}
.x11_c00370{left:125.221883pt;}
.x13_c00370{left:137.377612pt;}
.x12_c00370{left:149.214328pt;}
.x14_c00370{left:161.362062pt;}
.xd_c00370{left:225.370940pt;}
.xc_c00370{left:239.124654pt;}
.x15_c00370{left:328.332202pt;}
.x10_c00370{left:347.521528pt;}
.xe_c00370{left:376.018977pt;}
.x2_c00370{left:404.182400pt;}
.x3_c00370{left:463.676800pt;}
.x4_c00370{left:470.712000pt;}
.x5_c00370{left:490.222400pt;}
.x6_c00370{left:497.260800pt;}
.x7_c00370{left:505.256000pt;}
.x8_c00370{left:509.732800pt;}
.x9_c00370{left:520.931200pt;}
.xa_c00370{left:549.396800pt;}
.xb_c00370{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.112000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.113000;font-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_c00371{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls0_c00371{letter-spacing:0.000000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:-17.992193px;}
.ws1_c00371{word-spacing:0.000000px;}
._4_c00371{margin-left:-3.436449px;}
._12_c00371{margin-left:-2.161048px;}
._3_c00371{margin-left:-1.075716px;}
._1_c00371{width:1.126361px;}
._0_c00371{width:2.267170px;}
._8_c00371{width:3.387558px;}
._b_c00371{width:5.052600px;}
._a_c00371{width:6.868439px;}
._9_c00371{width:8.652014px;}
._6_c00371{width:9.715745px;}
._7_c00371{width:11.186377px;}
._c_c00371{width:12.268875px;}
._2_c00371{width:13.735035px;}
._e_c00371{width:15.209478px;}
._d_c00371{width:16.292297px;}
._11_c00371{width:19.351492px;}
._10_c00371{width:20.438513px;}
._f_c00371{width:21.691287px;}
._14_c00371{width:27.881707px;}
._13_c00371{width:30.228752px;}
._5_c00371{width:59.575241px;}
.fc1_c00371{color:rgb(105,148,45);}
.fc0_c00371{color:rgb(35,31,32);}
.fs3_c00371{font-size:45.339642px;}
.fs2_c00371{font-size:59.733096px;}
.fs1_c00371{font-size:66.209374px;}
.fs0_c00371{font-size:71.968771px;}
.y0_c00371{bottom:0.000000px;}
.y5_c00371{bottom:0.120938px;}
.y9_c00371{bottom:0.556171px;}
.y2_c00371{bottom:4.319248px;}
.y4_c00371{bottom:4.319998px;}
.yb_c00371{bottom:67.590602px;}
.y3_c00371{bottom:74.983320px;}
.y1_c00371{bottom:75.343320px;}
.y2b_c00371{bottom:119.225681px;}
.y2a_c00371{bottom:150.172319px;}
.y29_c00371{bottom:181.297606px;}
.y28_c00371{bottom:212.244244px;}
.y27_c00371{bottom:231.676736px;}
.y26_c00371{bottom:247.686680px;}
.y25_c00371{bottom:306.339956px;}
.y24_c00371{bottom:337.286594px;}
.y23_c00371{bottom:368.411881px;}
.y22_c00371{bottom:399.539269px;}
.y21_c00371{bottom:430.663056px;}
.y20_c00371{bottom:461.791044px;}
.y1f_c00371{bottom:492.916331px;}
.y1e_c00371{bottom:524.042969px;}
.y1d_c00371{bottom:554.986157px;}
.y1c_c00371{bottom:585.932794px;}
.y1b_c00371{bottom:617.240782px;}
.y1a_c00371{bottom:648.184569px;}
.y19_c00371{bottom:679.132557px;}
.y18_c00371{bottom:710.257094px;}
.y17_c00371{bottom:741.563732px;}
.y16_c00371{bottom:772.690370px;}
.y15_c00371{bottom:803.817007px;}
.y14_c00371{bottom:834.941545px;}
.y13_c00371{bottom:865.888182px;}
.y12_c00371{bottom:897.373470px;}
.y11_c00371{bottom:928.320107px;}
.y10_c00371{bottom:959.446745px;}
.yf_c00371{bottom:990.391282px;}
.ye_c00371{bottom:1021.517920px;}
.yd_c00371{bottom:1040.056413px;}
.yc_c00371{bottom:1053.725907px;}
.ya_c00371{bottom:1106.080386px;}
.y8_c00371{bottom:1151.494902px;}
.y7_c00371{bottom:1172.185744px;}
.y6_c00371{bottom:1192.876585px;}
.h1_c00371{height:20.152260px;}
.h8_c00371{height:29.062710px;}
.h6_c00371{height:38.288915px;}
.h5_c00371{height:42.440208px;}
.h2_c00371{height:50.378140px;}
.h7_c00371{height:64.484019px;}
.h9_c00371{height:64.555988px;}
.h4_c00371{height:1262.431829px;}
.h3_c00371{height:1262.879062px;}
.h0_c00371{height:1263.000000px;}
.w7_c00371{width:5.396400px;}
.w3_c00371{width:7.914600px;}
.w5_c00371{width:7.918200px;}
.w6_c00371{width:8.994600px;}
.w8_c00371{width:8.998200px;}
.w1_c00371{width:17.992980px;}
.w4_c00371{width:21.949200px;}
.w9_c00371{width:28.063800px;}
.wb_c00371{width:33.463800px;}
.w2_c00371{width:66.931200px;}
.wa_c00371{width:133.140600px;}
.wd_c00371{width:892.099575px;}
.wc_c00371{width:892.414744px;}
.w0_c00371{width:892.500000px;}
.x0_c00371{left:0.000000px;}
.xf_c00371{left:113.887229px;}
.x1_c00371{left:128.331540px;}
.x10_c00371{left:154.549813px;}
.x11_c00371{left:181.536817px;}
.xd_c00371{left:253.542308px;}
.xc_c00371{left:269.015236px;}
.x12_c00371{left:270.957013px;}
.xe_c00371{left:423.021349px;}
.x2_c00371{left:454.705200px;}
.x3_c00371{left:521.636400px;}
.x4_c00371{left:529.551000px;}
.x5_c00371{left:551.500200px;}
.x6_c00371{left:559.418400px;}
.x7_c00371{left:568.413000px;}
.x8_c00371{left:573.449400px;}
.x9_c00371{left:586.047600px;}
.xa_c00371{left:618.071400px;}
.xb_c00371{left:751.212000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:-15.993060pt;}
.ws1_c00371{word-spacing:0.000000pt;}
._4_c00371{margin-left:-3.054621pt;}
._12_c00371{margin-left:-1.920931pt;}
._3_c00371{margin-left:-0.956192pt;}
._1_c00371{width:1.001210pt;}
._0_c00371{width:2.015262pt;}
._8_c00371{width:3.011163pt;}
._b_c00371{width:4.491200pt;}
._a_c00371{width:6.105279pt;}
._9_c00371{width:7.690679pt;}
._6_c00371{width:8.636218pt;}
._7_c00371{width:9.943446pt;}
._c_c00371{width:10.905667pt;}
._2_c00371{width:12.208920pt;}
._e_c00371{width:13.519536pt;}
._d_c00371{width:14.482042pt;}
._11_c00371{width:17.201327pt;}
._10_c00371{width:18.167567pt;}
._f_c00371{width:19.281144pt;}
._14_c00371{width:24.783740pt;}
._13_c00371{width:26.870002pt;}
._5_c00371{width:52.955770pt;}
.fs3_c00371{font-size:40.301904pt;}
.fs2_c00371{font-size:53.096085pt;}
.fs1_c00371{font-size:58.852776pt;}
.fs0_c00371{font-size:63.972241pt;}
.y0_c00371{bottom:0.000000pt;}
.y5_c00371{bottom:0.107500pt;}
.y9_c00371{bottom:0.494374pt;}
.y2_c00371{bottom:3.839332pt;}
.y4_c00371{bottom:3.839998pt;}
.yb_c00371{bottom:60.080535pt;}
.y3_c00371{bottom:66.651840pt;}
.y1_c00371{bottom:66.971840pt;}
.y2b_c00371{bottom:105.978383pt;}
.y2a_c00371{bottom:133.486505pt;}
.y29_c00371{bottom:161.153428pt;}
.y28_c00371{bottom:188.661550pt;}
.y27_c00371{bottom:205.934876pt;}
.y26_c00371{bottom:220.165937pt;}
.y25_c00371{bottom:272.302183pt;}
.y24_c00371{bottom:299.810305pt;}
.y23_c00371{bottom:327.477228pt;}
.y22_c00371{bottom:355.146017pt;}
.y21_c00371{bottom:382.811606pt;}
.y20_c00371{bottom:410.480928pt;}
.y1f_c00371{bottom:438.147850pt;}
.y1e_c00371{bottom:465.815972pt;}
.y1d_c00371{bottom:493.321028pt;}
.y1c_c00371{bottom:520.829150pt;}
.y1b_c00371{bottom:548.658473pt;}
.y1a_c00371{bottom:576.164062pt;}
.y19_c00371{bottom:603.673384pt;}
.y18_c00371{bottom:631.339640pt;}
.y17_c00371{bottom:659.167762pt;}
.y16_c00371{bottom:686.835884pt;}
.y15_c00371{bottom:714.504006pt;}
.y14_c00371{bottom:742.170262pt;}
.y13_c00371{bottom:769.678384pt;}
.y12_c00371{bottom:797.665306pt;}
.y11_c00371{bottom:825.173429pt;}
.y10_c00371{bottom:852.841551pt;}
.yf_c00371{bottom:880.347807pt;}
.ye_c00371{bottom:908.015929pt;}
.yd_c00371{bottom:924.494589pt;}
.yc_c00371{bottom:936.645251pt;}
.ya_c00371{bottom:983.182565pt;}
.y8_c00371{bottom:1023.551024pt;}
.y7_c00371{bottom:1041.942883pt;}
.y6_c00371{bottom:1060.334742pt;}
.h1_c00371{height:17.913120pt;}
.h8_c00371{height:25.833520pt;}
.h6_c00371{height:34.034591pt;}
.h5_c00371{height:37.724630pt;}
.h2_c00371{height:44.780569pt;}
.h7_c00371{height:57.319128pt;}
.h9_c00371{height:57.383100pt;}
.h4_c00371{height:1122.161626pt;}
.h3_c00371{height:1122.559167pt;}
.h0_c00371{height:1122.666667pt;}
.w7_c00371{width:4.796800pt;}
.w3_c00371{width:7.035200pt;}
.w5_c00371{width:7.038400pt;}
.w6_c00371{width:7.995200pt;}
.w8_c00371{width:7.998400pt;}
.w1_c00371{width:15.993760pt;}
.w4_c00371{width:19.510400pt;}
.w9_c00371{width:24.945600pt;}
.wb_c00371{width:29.745600pt;}
.w2_c00371{width:59.494400pt;}
.wa_c00371{width:118.347200pt;}
.wd_c00371{width:792.977400pt;}
.wc_c00371{width:793.257550pt;}
.w0_c00371{width:793.333333pt;}
.x0_c00371{left:0.000000pt;}
.xf_c00371{left:101.233093pt;}
.x1_c00371{left:114.072480pt;}
.x10_c00371{left:137.377612pt;}
.x11_c00371{left:161.366059pt;}
.xd_c00371{left:225.370940pt;}
.xc_c00371{left:239.124654pt;}
.x12_c00371{left:240.850678pt;}
.xe_c00371{left:376.018977pt;}
.x2_c00371{left:404.182400pt;}
.x3_c00371{left:463.676800pt;}
.x4_c00371{left:470.712000pt;}
.x5_c00371{left:490.222400pt;}
.x6_c00371{left:497.260800pt;}
.x7_c00371{left:505.256000pt;}
.x8_c00371{left:509.732800pt;}
.x9_c00371{left:520.931200pt;}
.xa_c00371{left:549.396800pt;}
.xb_c00371{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.112000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.113000;font-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_c00372{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls0_c00372{letter-spacing:0.000000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:-17.992193px;}
.ws1_c00372{word-spacing:0.000000px;}
._4_c00372{margin-left:-3.436449px;}
._e_c00372{margin-left:-2.377187px;}
._3_c00372{margin-left:-1.075716px;}
._1_c00372{width:1.126361px;}
._0_c00372{width:2.267170px;}
._b_c00372{width:3.601305px;}
._6_c00372{width:5.287042px;}
._7_c00372{width:6.961681px;}
._8_c00372{width:8.972169px;}
._f_c00372{width:10.776091px;}
._9_c00372{width:12.115012px;}
._2_c00372{width:13.735035px;}
._a_c00372{width:14.753818px;}
._d_c00372{width:16.589197px;}
._c_c00372{width:19.203481px;}
._5_c00372{width:59.575241px;}
.fc1_c00372{color:rgb(105,148,45);}
.fc0_c00372{color:rgb(35,31,32);}
.fs4_c00372{font-size:38.862464px;}
.fs3_c00372{font-size:45.339642px;}
.fs2_c00372{font-size:59.733096px;}
.fs1_c00372{font-size:66.209374px;}
.fs0_c00372{font-size:71.968771px;}
.y0_c00372{bottom:0.000000px;}
.y5_c00372{bottom:0.120938px;}
.y9_c00372{bottom:0.556171px;}
.y2_c00372{bottom:4.319248px;}
.y4_c00372{bottom:4.319998px;}
.yb_c00372{bottom:67.590602px;}
.y3_c00372{bottom:74.983320px;}
.y1_c00372{bottom:75.343320px;}
.y30_c00372{bottom:90.080843px;}
.y2f_c00372{bottom:104.293787px;}
.y2e_c00372{bottom:139.017873px;}
.y2d_c00372{bottom:170.324510px;}
.y2c_c00372{bottom:201.269798px;}
.y2b_c00372{bottom:232.216436px;}
.y2a_c00372{bottom:263.163073px;}
.y29_c00372{bottom:294.467611px;}
.y28_c00372{bottom:325.414248px;}
.y27_c00372{bottom:356.359536px;}
.y26_c00372{bottom:387.306174px;}
.y25_c00372{bottom:406.738666px;}
.y24_c00372{bottom:423.825459px;}
.y23_c00372{bottom:444.517651px;}
.y22_c00372{bottom:478.884137px;}
.y21_c00372{bottom:509.469125px;}
.y20_c00372{bottom:540.595762px;}
.y1f_c00372{bottom:571.902400px;}
.y1e_c00372{bottom:603.026937px;}
.y1d_c00372{bottom:633.973575px;}
.y1c_c00372{bottom:652.146068px;}
.y1b_c00372{bottom:665.102463px;}
.y1a_c00372{bottom:696.406250px;}
.y19_c00372{bottom:727.354238px;}
.y18_c00372{bottom:758.300875px;}
.y17_c00372{bottom:789.244063px;}
.y16_c00372{bottom:820.554900px;}
.y15_c00372{bottom:851.498688px;}
.y14_c00372{bottom:882.806675px;}
.y13_c00372{bottom:913.751963px;}
.y12_c00372{bottom:944.878601px;}
.y11_c00372{bottom:975.824488px;}
.y10_c00372{bottom:1006.949776px;}
.yf_c00372{bottom:1037.896413px;}
.ye_c00372{bottom:1057.322906px;}
.yd_c00372{bottom:1071.538400px;}
.yc_c00372{bottom:1085.030895px;}
.ya_c00372{bottom:1106.080386px;}
.y8_c00372{bottom:1151.494902px;}
.y7_c00372{bottom:1172.185744px;}
.y6_c00372{bottom:1192.876585px;}
.h1_c00372{height:20.152260px;}
.h9_c00372{height:24.910840px;}
.h8_c00372{height:29.062710px;}
.h6_c00372{height:38.288915px;}
.h5_c00372{height:42.440208px;}
.h2_c00372{height:50.378140px;}
.h7_c00372{height:64.484019px;}
.ha_c00372{height:64.555988px;}
.h4_c00372{height:1262.431829px;}
.h3_c00372{height:1262.879062px;}
.h0_c00372{height:1263.000000px;}
.w7_c00372{width:5.396400px;}
.w3_c00372{width:7.914600px;}
.w5_c00372{width:7.918200px;}
.w6_c00372{width:8.994600px;}
.w8_c00372{width:8.998200px;}
.w1_c00372{width:17.992980px;}
.w4_c00372{width:21.949200px;}
.w9_c00372{width:28.063800px;}
.wb_c00372{width:33.463800px;}
.w2_c00372{width:66.931200px;}
.wa_c00372{width:133.140600px;}
.wd_c00372{width:892.099575px;}
.wc_c00372{width:892.414744px;}
.w0_c00372{width:892.500000px;}
.x0_c00372{left:0.000000px;}
.xf_c00372{left:113.887229px;}
.x1_c00372{left:128.331540px;}
.x10_c00372{left:154.549813px;}
.x11_c00372{left:181.535317px;}
.xd_c00372{left:253.542308px;}
.xc_c00372{left:269.015236px;}
.x12_c00372{left:364.693896px;}
.xe_c00372{left:423.021349px;}
.x2_c00372{left:454.705200px;}
.x3_c00372{left:521.636400px;}
.x4_c00372{left:529.551000px;}
.x5_c00372{left:551.500200px;}
.x6_c00372{left:559.418400px;}
.x7_c00372{left:568.413000px;}
.x8_c00372{left:573.449400px;}
.x9_c00372{left:586.047600px;}
.xa_c00372{left:618.071400px;}
.xb_c00372{left:751.212000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws0_c00372{word-spacing:-15.993060pt;}
.ws1_c00372{word-spacing:0.000000pt;}
._4_c00372{margin-left:-3.054621pt;}
._e_c00372{margin-left:-2.113055pt;}
._3_c00372{margin-left:-0.956192pt;}
._1_c00372{width:1.001210pt;}
._0_c00372{width:2.015262pt;}
._b_c00372{width:3.201160pt;}
._6_c00372{width:4.699593pt;}
._7_c00372{width:6.188161pt;}
._8_c00372{width:7.975261pt;}
._f_c00372{width:9.578748pt;}
._9_c00372{width:10.768899pt;}
._2_c00372{width:12.208920pt;}
._a_c00372{width:13.114505pt;}
._d_c00372{width:14.745953pt;}
._c_c00372{width:17.069761pt;}
._5_c00372{width:52.955770pt;}
.fs4_c00372{font-size:34.544413pt;}
.fs3_c00372{font-size:40.301904pt;}
.fs2_c00372{font-size:53.096085pt;}
.fs1_c00372{font-size:58.852776pt;}
.fs0_c00372{font-size:63.972241pt;}
.y0_c00372{bottom:0.000000pt;}
.y5_c00372{bottom:0.107500pt;}
.y9_c00372{bottom:0.494374pt;}
.y2_c00372{bottom:3.839332pt;}
.y4_c00372{bottom:3.839998pt;}
.yb_c00372{bottom:60.080535pt;}
.y3_c00372{bottom:66.651840pt;}
.y1_c00372{bottom:66.971840pt;}
.y30_c00372{bottom:80.071860pt;}
.y2f_c00372{bottom:92.705588pt;}
.y2e_c00372{bottom:123.571443pt;}
.y2d_c00372{bottom:151.399565pt;}
.y2c_c00372{bottom:178.906487pt;}
.y2b_c00372{bottom:206.414610pt;}
.y2a_c00372{bottom:233.922732pt;}
.y29_c00372{bottom:261.748987pt;}
.y28_c00372{bottom:289.257110pt;}
.y27_c00372{bottom:316.764032pt;}
.y26_c00372{bottom:344.272154pt;}
.y25_c00372{bottom:361.545481pt;}
.y24_c00372{bottom:376.733741pt;}
.y23_c00372{bottom:395.126801pt;}
.y22_c00372{bottom:425.674788pt;}
.y21_c00372{bottom:452.861444pt;}
.y20_c00372{bottom:480.529567pt;}
.y1f_c00372{bottom:508.357689pt;}
.y1e_c00372{bottom:536.023944pt;}
.y1d_c00372{bottom:563.532067pt;}
.y1c_c00372{bottom:579.685394pt;}
.y1b_c00372{bottom:591.202189pt;}
.y1a_c00372{bottom:619.027778pt;}
.y19_c00372{bottom:646.537100pt;}
.y18_c00372{bottom:674.045222pt;}
.y17_c00372{bottom:701.550278pt;}
.y16_c00372{bottom:729.382134pt;}
.y15_c00372{bottom:756.887723pt;}
.y14_c00372{bottom:784.717045pt;}
.y13_c00372{bottom:812.223967pt;}
.y12_c00372{bottom:839.892089pt;}
.y11_c00372{bottom:867.399545pt;}
.y10_c00372{bottom:895.066467pt;}
.yf_c00372{bottom:922.574590pt;}
.ye_c00372{bottom:939.842583pt;}
.yd_c00372{bottom:952.478578pt;}
.yc_c00372{bottom:964.471906pt;}
.ya_c00372{bottom:983.182565pt;}
.y8_c00372{bottom:1023.551024pt;}
.y7_c00372{bottom:1041.942883pt;}
.y6_c00372{bottom:1060.334742pt;}
.h1_c00372{height:17.913120pt;}
.h9_c00372{height:22.142969pt;}
.h8_c00372{height:25.833520pt;}
.h6_c00372{height:34.034591pt;}
.h5_c00372{height:37.724630pt;}
.h2_c00372{height:44.780569pt;}
.h7_c00372{height:57.319128pt;}
.ha_c00372{height:57.383100pt;}
.h4_c00372{height:1122.161626pt;}
.h3_c00372{height:1122.559167pt;}
.h0_c00372{height:1122.666667pt;}
.w7_c00372{width:4.796800pt;}
.w3_c00372{width:7.035200pt;}
.w5_c00372{width:7.038400pt;}
.w6_c00372{width:7.995200pt;}
.w8_c00372{width:7.998400pt;}
.w1_c00372{width:15.993760pt;}
.w4_c00372{width:19.510400pt;}
.w9_c00372{width:24.945600pt;}
.wb_c00372{width:29.745600pt;}
.w2_c00372{width:59.494400pt;}
.wa_c00372{width:118.347200pt;}
.wd_c00372{width:792.977400pt;}
.wc_c00372{width:793.257550pt;}
.w0_c00372{width:793.333333pt;}
.x0_c00372{left:0.000000pt;}
.xf_c00372{left:101.233093pt;}
.x1_c00372{left:114.072480pt;}
.x10_c00372{left:137.377612pt;}
.x11_c00372{left:161.364727pt;}
.xd_c00372{left:225.370940pt;}
.xc_c00372{left:239.124654pt;}
.x12_c00372{left:324.172352pt;}
.xe_c00372{left:376.018977pt;}
.x2_c00372{left:404.182400pt;}
.x3_c00372{left:463.676800pt;}
.x4_c00372{left:470.712000pt;}
.x5_c00372{left:490.222400pt;}
.x6_c00372{left:497.260800pt;}
.x7_c00372{left:505.256000pt;}
.x8_c00372{left:509.732800pt;}
.x9_c00372{left:520.931200pt;}
.xa_c00372{left:549.396800pt;}
.xb_c00372{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.113000;font-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_c00373{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls0_c00373{letter-spacing:0.000000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:-17.992193px;}
.ws1_c00373{word-spacing:0.000000px;}
._e_c00373{margin-left:-11.256749px;}
._17_c00373{margin-left:-4.938260px;}
._6_c00373{margin-left:-3.038568px;}
._4_c00373{margin-left:-1.419051px;}
._1_c00373{width:1.126361px;}
._0_c00373{width:2.267170px;}
._5_c00373{width:3.611112px;}
._12_c00373{width:4.763265px;}
._3_c00373{width:5.766348px;}
._a_c00373{width:7.130015px;}
._9_c00373{width:8.646220px;}
._c_c00373{width:9.964439px;}
._b_c00373{width:11.398633px;}
._10_c00373{width:12.438612px;}
._d_c00373{width:14.170730px;}
._7_c00373{width:15.882021px;}
._11_c00373{width:16.882647px;}
._8_c00373{width:19.337778px;}
._13_c00373{width:32.940732px;}
._14_c00373{width:34.294877px;}
._16_c00373{width:35.383221px;}
._15_c00373{width:37.206804px;}
._1a_c00373{width:38.561617px;}
._18_c00373{width:40.361721px;}
._19_c00373{width:42.315557px;}
._f_c00373{width:46.555931px;}
._2_c00373{width:59.575241px;}
.fc1_c00373{color:rgb(105,148,45);}
.fc0_c00373{color:rgb(35,31,32);}
.fs3_c00373{font-size:38.862464px;}
.fs2_c00373{font-size:59.733096px;}
.fs1_c00373{font-size:66.209374px;}
.fs0_c00373{font-size:71.968771px;}
.y0_c00373{bottom:0.000000px;}
.y5_c00373{bottom:0.120938px;}
.y9_c00373{bottom:0.556171px;}
.y2_c00373{bottom:4.319248px;}
.y4_c00373{bottom:4.319998px;}
.yb_c00373{bottom:67.590602px;}
.y3_c00373{bottom:74.983320px;}
.y1_c00373{bottom:75.343320px;}
.y2d_c00373{bottom:128.584177px;}
.y2c_c00373{bottom:159.710815px;}
.y2b_c00373{bottom:190.836102px;}
.y2a_c00373{bottom:221.961990px;}
.y29_c00373{bottom:253.267277px;}
.y28_c00373{bottom:284.393915px;}
.y27_c00373{bottom:315.340552px;}
.y26_c00373{bottom:346.465840px;}
.y25_c00373{bottom:377.411728px;}
.y24_c00373{bottom:408.897015px;}
.y23_c00373{bottom:439.843653px;}
.y22_c00373{bottom:458.194645px;}
.y21_c00373{bottom:470.968340px;}
.y20_c00373{bottom:502.274228px;}
.y1f_c00373{bottom:533.220865px;}
.y1e_c00373{bottom:564.346153px;}
.y1d_c00373{bottom:595.292790px;}
.y1c_c00373{bottom:628.397327px;}
.y1b_c00373{bottom:659.343965px;}
.y1a_c00373{bottom:690.830602px;}
.y19_c00373{bottom:721.775890px;}
.y18_c00373{bottom:752.902527px;}
.y17_c00373{bottom:772.153220px;}
.y16_c00373{bottom:800.763308px;}
.y15_c00373{bottom:826.668598px;}
.y14_c00373{bottom:861.394484px;}
.y13_c00373{bottom:877.406978px;}
.y12_c00373{bottom:900.794968px;}
.y11_c00373{bottom:929.761307px;}
.y10_c00373{bottom:960.704494px;}
.yf_c00373{bottom:991.652482px;}
.ye_c00373{bottom:1022.779119px;}
.yd_c00373{bottom:1054.082907px;}
.yc_c00373{bottom:1085.030895px;}
.ya_c00373{bottom:1106.080386px;}
.y8_c00373{bottom:1151.494902px;}
.y7_c00373{bottom:1172.185744px;}
.y6_c00373{bottom:1192.876585px;}
.h1_c00373{height:20.152260px;}
.ha_c00373{height:24.910840px;}
.h6_c00373{height:38.288915px;}
.h5_c00373{height:42.440208px;}
.h2_c00373{height:50.378140px;}
.h9_c00373{height:53.580587px;}
.h7_c00373{height:64.484019px;}
.h8_c00373{height:64.555988px;}
.h4_c00373{height:1262.431829px;}
.h3_c00373{height:1262.879062px;}
.h0_c00373{height:1263.000000px;}
.w7_c00373{width:5.396400px;}
.w3_c00373{width:7.914600px;}
.w5_c00373{width:7.918200px;}
.w6_c00373{width:8.994600px;}
.w8_c00373{width:8.998200px;}
.w1_c00373{width:17.992980px;}
.w4_c00373{width:21.949200px;}
.w9_c00373{width:28.063800px;}
.wb_c00373{width:33.463800px;}
.w2_c00373{width:66.931200px;}
.wa_c00373{width:133.140600px;}
.wd_c00373{width:892.099575px;}
.wc_c00373{width:892.414744px;}
.w0_c00373{width:892.500000px;}
.x0_c00373{left:0.000000px;}
.xf_c00373{left:113.887229px;}
.x1_c00373{left:128.331540px;}
.x10_c00373{left:154.549813px;}
.x11_c00373{left:181.536817px;}
.xd_c00373{left:253.542308px;}
.xc_c00373{left:269.015236px;}
.x12_c00373{left:356.776732px;}
.xe_c00373{left:423.021349px;}
.x2_c00373{left:454.705200px;}
.x3_c00373{left:521.636400px;}
.x4_c00373{left:529.551000px;}
.x5_c00373{left:551.500200px;}
.x6_c00373{left:559.418400px;}
.x7_c00373{left:568.413000px;}
.x8_c00373{left:573.449400px;}
.x9_c00373{left:586.047600px;}
.xa_c00373{left:618.071400px;}
.xb_c00373{left:751.212000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws0_c00373{word-spacing:-15.993060pt;}
.ws1_c00373{word-spacing:0.000000pt;}
._e_c00373{margin-left:-10.005999pt;}
._17_c00373{margin-left:-4.389565pt;}
._6_c00373{margin-left:-2.700949pt;}
._4_c00373{margin-left:-1.261379pt;}
._1_c00373{width:1.001210pt;}
._0_c00373{width:2.015262pt;}
._5_c00373{width:3.209878pt;}
._12_c00373{width:4.234013pt;}
._3_c00373{width:5.125643pt;}
._a_c00373{width:6.337791pt;}
._9_c00373{width:7.685529pt;}
._c_c00373{width:8.857279pt;}
._b_c00373{width:10.132118pt;}
._10_c00373{width:11.056544pt;}
._d_c00373{width:12.596204pt;}
._7_c00373{width:14.117352pt;}
._11_c00373{width:15.006798pt;}
._8_c00373{width:17.189136pt;}
._13_c00373{width:29.280650pt;}
._14_c00373{width:30.484335pt;}
._16_c00373{width:31.451752pt;}
._15_c00373{width:33.072715pt;}
._1a_c00373{width:34.276993pt;}
._18_c00373{width:35.877086pt;}
._19_c00373{width:37.613828pt;}
._f_c00373{width:41.383049pt;}
._2_c00373{width:52.955770pt;}
.fs3_c00373{font-size:34.544413pt;}
.fs2_c00373{font-size:53.096085pt;}
.fs1_c00373{font-size:58.852776pt;}
.fs0_c00373{font-size:63.972241pt;}
.y0_c00373{bottom:0.000000pt;}
.y5_c00373{bottom:0.107500pt;}
.y9_c00373{bottom:0.494374pt;}
.y2_c00373{bottom:3.839332pt;}
.y4_c00373{bottom:3.839998pt;}
.yb_c00373{bottom:60.080535pt;}
.y3_c00373{bottom:66.651840pt;}
.y1_c00373{bottom:66.971840pt;}
.y2d_c00373{bottom:114.297046pt;}
.y2c_c00373{bottom:141.965169pt;}
.y2b_c00373{bottom:169.632091pt;}
.y2a_c00373{bottom:197.299546pt;}
.y29_c00373{bottom:225.126469pt;}
.y28_c00373{bottom:252.794591pt;}
.y27_c00373{bottom:280.302713pt;}
.y26_c00373{bottom:307.969636pt;}
.y25_c00373{bottom:335.477091pt;}
.y24_c00373{bottom:363.464013pt;}
.y23_c00373{bottom:390.972136pt;}
.y22_c00373{bottom:407.284129pt;}
.y21_c00373{bottom:418.638525pt;}
.y20_c00373{bottom:446.465980pt;}
.y1f_c00373{bottom:473.974102pt;}
.y1e_c00373{bottom:501.641025pt;}
.y1d_c00373{bottom:529.149147pt;}
.y1c_c00373{bottom:558.575402pt;}
.y1b_c00373{bottom:586.083524pt;}
.y1a_c00373{bottom:614.071646pt;}
.y19_c00373{bottom:641.578569pt;}
.y18_c00373{bottom:669.246691pt;}
.y17_c00373{bottom:686.358418pt;}
.y16_c00373{bottom:711.789607pt;}
.y15_c00373{bottom:734.816531pt;}
.y14_c00373{bottom:765.683986pt;}
.y13_c00373{bottom:779.917313pt;}
.y12_c00373{bottom:800.706638pt;}
.y11_c00373{bottom:826.454495pt;}
.y10_c00373{bottom:853.959550pt;}
.yf_c00373{bottom:881.468873pt;}
.ye_c00373{bottom:909.136995pt;}
.yd_c00373{bottom:936.962584pt;}
.yc_c00373{bottom:964.471906pt;}
.ya_c00373{bottom:983.182565pt;}
.y8_c00373{bottom:1023.551024pt;}
.y7_c00373{bottom:1041.942883pt;}
.y6_c00373{bottom:1060.334742pt;}
.h1_c00373{height:17.913120pt;}
.ha_c00373{height:22.142969pt;}
.h6_c00373{height:34.034591pt;}
.h5_c00373{height:37.724630pt;}
.h2_c00373{height:44.780569pt;}
.h9_c00373{height:47.627189pt;}
.h7_c00373{height:57.319128pt;}
.h8_c00373{height:57.383100pt;}
.h4_c00373{height:1122.161626pt;}
.h3_c00373{height:1122.559167pt;}
.h0_c00373{height:1122.666667pt;}
.w7_c00373{width:4.796800pt;}
.w3_c00373{width:7.035200pt;}
.w5_c00373{width:7.038400pt;}
.w6_c00373{width:7.995200pt;}
.w8_c00373{width:7.998400pt;}
.w1_c00373{width:15.993760pt;}
.w4_c00373{width:19.510400pt;}
.w9_c00373{width:24.945600pt;}
.wb_c00373{width:29.745600pt;}
.w2_c00373{width:59.494400pt;}
.wa_c00373{width:118.347200pt;}
.wd_c00373{width:792.977400pt;}
.wc_c00373{width:793.257550pt;}
.w0_c00373{width:793.333333pt;}
.x0_c00373{left:0.000000pt;}
.xf_c00373{left:101.233093pt;}
.x1_c00373{left:114.072480pt;}
.x10_c00373{left:137.377612pt;}
.x11_c00373{left:161.366059pt;}
.xd_c00373{left:225.370940pt;}
.xc_c00373{left:239.124654pt;}
.x12_c00373{left:317.134873pt;}
.xe_c00373{left:376.018977pt;}
.x2_c00373{left:404.182400pt;}
.x3_c00373{left:463.676800pt;}
.x4_c00373{left:470.712000pt;}
.x5_c00373{left:490.222400pt;}
.x6_c00373{left:497.260800pt;}
.x7_c00373{left:505.256000pt;}
.x8_c00373{left:509.732800pt;}
.x9_c00373{left:520.931200pt;}
.xa_c00373{left:549.396800pt;}
.xb_c00373{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.113000;font-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_c00374{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls0_c00374{letter-spacing:0.000000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:-17.992193px;}
.ws1_c00374{word-spacing:0.000000px;}
._3_c00374{margin-left:-3.244922px;}
._5_c00374{margin-left:-2.201914px;}
._4_c00374{margin-left:-1.172893px;}
._1_c00374{width:1.126361px;}
._0_c00374{width:2.267170px;}
._d_c00374{width:3.573561px;}
._c_c00374{width:4.581613px;}
._9_c00374{width:5.892149px;}
._6_c00374{width:7.151703px;}
._8_c00374{width:8.741311px;}
._7_c00374{width:10.358032px;}
._10_c00374{width:14.758856px;}
._f_c00374{width:21.549451px;}
._e_c00374{width:22.942681px;}
._a_c00374{width:32.006535px;}
._b_c00374{width:33.325473px;}
._2_c00374{width:59.575241px;}
.fc1_c00374{color:rgb(105,148,45);}
.fc0_c00374{color:rgb(35,31,32);}
.fs3_c00374{font-size:38.862464px;}
.fs2_c00374{font-size:59.733096px;}
.fs1_c00374{font-size:66.209374px;}
.fs0_c00374{font-size:71.968771px;}
.y0_c00374{bottom:0.000000px;}
.y5_c00374{bottom:0.120938px;}
.y9_c00374{bottom:0.556171px;}
.y2_c00374{bottom:4.319248px;}
.y4_c00374{bottom:4.319998px;}
.yb_c00374{bottom:67.590602px;}
.y3_c00374{bottom:74.983320px;}
.y1_c00374{bottom:75.343320px;}
.y2c_c00374{bottom:118.686431px;}
.y2b_c00374{bottom:149.812319px;}
.y2a_c00374{bottom:180.757606px;}
.y29_c00374{bottom:211.884244px;}
.y28_c00374{bottom:250.749228px;}
.y27_c00374{bottom:274.135719px;}
.y26_c00374{bottom:319.653051px;}
.y25_c00374{bottom:348.079689px;}
.y24_c00374{bottom:376.506328px;}
.y23_c00374{bottom:404.932967px;}
.y22_c00374{bottom:433.363055px;}
.y21_c00374{bottom:461.789694px;}
.y20_c00374{bottom:490.216332px;}
.y1f_c00374{bottom:518.641621px;}
.y1e_c00374{bottom:547.073210px;}
.y1d_c00374{bottom:575.676998px;}
.y1c_c00374{bottom:604.106487px;}
.y1b_c00374{bottom:632.531776px;}
.y1a_c00374{bottom:660.959164px;}
.y19_c00374{bottom:689.385803px;}
.y18_c00374{bottom:717.812441px;}
.y17_c00374{bottom:746.241930px;}
.y16_c00374{bottom:774.669319px;}
.y15_c00374{bottom:803.094607px;}
.y14_c00374{bottom:840.520492px;}
.y13_c00374{bottom:872.726979px;}
.y12_c00374{bottom:919.145661px;}
.y11_c00374{bottom:950.271548px;}
.y10_c00374{bottom:981.576836px;}
.yf_c00374{bottom:1012.523474px;}
.ye_c00374{bottom:1054.085907px;}
.yd_c00374{bottom:1072.256900px;}
.yc_c00374{bottom:1085.030895px;}
.ya_c00374{bottom:1106.080386px;}
.y8_c00374{bottom:1151.494902px;}
.y7_c00374{bottom:1172.185744px;}
.y6_c00374{bottom:1192.876585px;}
.h1_c00374{height:20.152260px;}
.h8_c00374{height:24.910840px;}
.h6_c00374{height:38.288915px;}
.h5_c00374{height:42.440208px;}
.h2_c00374{height:50.378140px;}
.h9_c00374{height:53.580587px;}
.ha_c00374{height:59.323599px;}
.h7_c00374{height:64.484019px;}
.h4_c00374{height:1262.431829px;}
.h3_c00374{height:1262.879062px;}
.h0_c00374{height:1263.000000px;}
.w7_c00374{width:5.396400px;}
.w3_c00374{width:7.914600px;}
.w5_c00374{width:7.918200px;}
.w6_c00374{width:8.994600px;}
.w8_c00374{width:8.998200px;}
.w1_c00374{width:17.992980px;}
.w4_c00374{width:21.949200px;}
.w9_c00374{width:28.063800px;}
.wb_c00374{width:33.463800px;}
.w2_c00374{width:66.931200px;}
.wa_c00374{width:133.140600px;}
.wd_c00374{width:892.099575px;}
.wc_c00374{width:892.414744px;}
.w0_c00374{width:892.500000px;}
.x0_c00374{left:0.000000px;}
.xf_c00374{left:113.887229px;}
.x1_c00374{left:128.331540px;}
.x10_c00374{left:154.549813px;}
.x12_c00374{left:167.863311px;}
.x11_c00374{left:181.533818px;}
.xd_c00374{left:253.542308px;}
.xc_c00374{left:269.015236px;}
.xe_c00374{left:423.021349px;}
.x2_c00374{left:454.705200px;}
.x3_c00374{left:521.636400px;}
.x4_c00374{left:529.551000px;}
.x5_c00374{left:551.500200px;}
.x6_c00374{left:559.418400px;}
.x7_c00374{left:568.413000px;}
.x8_c00374{left:573.449400px;}
.x9_c00374{left:586.047600px;}
.xa_c00374{left:618.071400px;}
.xb_c00374{left:751.212000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:-15.993060pt;}
.ws1_c00374{word-spacing:0.000000pt;}
._3_c00374{margin-left:-2.884375pt;}
._5_c00374{margin-left:-1.957257pt;}
._4_c00374{margin-left:-1.042571pt;}
._1_c00374{width:1.001210pt;}
._0_c00374{width:2.015262pt;}
._d_c00374{width:3.176499pt;}
._c_c00374{width:4.072545pt;}
._9_c00374{width:5.237466pt;}
._6_c00374{width:6.357069pt;}
._8_c00374{width:7.770054pt;}
._7_c00374{width:9.207140pt;}
._10_c00374{width:13.118983pt;}
._f_c00374{width:19.155067pt;}
._e_c00374{width:20.393494pt;}
._a_c00374{width:28.450253pt;}
._b_c00374{width:29.622642pt;}
._2_c00374{width:52.955770pt;}
.fs3_c00374{font-size:34.544413pt;}
.fs2_c00374{font-size:53.096085pt;}
.fs1_c00374{font-size:58.852776pt;}
.fs0_c00374{font-size:63.972241pt;}
.y0_c00374{bottom:0.000000pt;}
.y5_c00374{bottom:0.107500pt;}
.y9_c00374{bottom:0.494374pt;}
.y2_c00374{bottom:3.839332pt;}
.y4_c00374{bottom:3.839998pt;}
.yb_c00374{bottom:60.080535pt;}
.y3_c00374{bottom:66.651840pt;}
.y1_c00374{bottom:66.971840pt;}
.y2c_c00374{bottom:105.499050pt;}
.y2b_c00374{bottom:133.166505pt;}
.y2a_c00374{bottom:160.673428pt;}
.y29_c00374{bottom:188.341550pt;}
.y28_c00374{bottom:222.888203pt;}
.y27_c00374{bottom:243.676195pt;}
.y26_c00374{bottom:284.136045pt;}
.y25_c00374{bottom:309.404168pt;}
.y24_c00374{bottom:334.672292pt;}
.y23_c00374{bottom:359.940415pt;}
.y22_c00374{bottom:385.211605pt;}
.y21_c00374{bottom:410.479728pt;}
.y20_c00374{bottom:435.747851pt;}
.y1f_c00374{bottom:461.014774pt;}
.y1e_c00374{bottom:486.287298pt;}
.y1d_c00374{bottom:511.712887pt;}
.y1c_c00374{bottom:536.983544pt;}
.y1b_c00374{bottom:562.250467pt;}
.y1a_c00374{bottom:587.519257pt;}
.y19_c00374{bottom:612.787380pt;}
.y18_c00374{bottom:638.055504pt;}
.y17_c00374{bottom:663.326160pt;}
.y16_c00374{bottom:688.594950pt;}
.y15_c00374{bottom:713.861873pt;}
.y14_c00374{bottom:747.129327pt;}
.y13_c00374{bottom:775.757315pt;}
.y12_c00374{bottom:817.018365pt;}
.y11_c00374{bottom:844.685821pt;}
.y10_c00374{bottom:872.512743pt;}
.yf_c00374{bottom:900.020865pt;}
.ye_c00374{bottom:936.965251pt;}
.yd_c00374{bottom:953.117244pt;}
.yc_c00374{bottom:964.471906pt;}
.ya_c00374{bottom:983.182565pt;}
.y8_c00374{bottom:1023.551024pt;}
.y7_c00374{bottom:1041.942883pt;}
.y6_c00374{bottom:1060.334742pt;}
.h1_c00374{height:17.913120pt;}
.h8_c00374{height:22.142969pt;}
.h6_c00374{height:34.034591pt;}
.h5_c00374{height:37.724630pt;}
.h2_c00374{height:44.780569pt;}
.h9_c00374{height:47.627189pt;}
.ha_c00374{height:52.732088pt;}
.h7_c00374{height:57.319128pt;}
.h4_c00374{height:1122.161626pt;}
.h3_c00374{height:1122.559167pt;}
.h0_c00374{height:1122.666667pt;}
.w7_c00374{width:4.796800pt;}
.w3_c00374{width:7.035200pt;}
.w5_c00374{width:7.038400pt;}
.w6_c00374{width:7.995200pt;}
.w8_c00374{width:7.998400pt;}
.w1_c00374{width:15.993760pt;}
.w4_c00374{width:19.510400pt;}
.w9_c00374{width:24.945600pt;}
.wb_c00374{width:29.745600pt;}
.w2_c00374{width:59.494400pt;}
.wa_c00374{width:118.347200pt;}
.wd_c00374{width:792.977400pt;}
.wc_c00374{width:793.257550pt;}
.w0_c00374{width:793.333333pt;}
.x0_c00374{left:0.000000pt;}
.xf_c00374{left:101.233093pt;}
.x1_c00374{left:114.072480pt;}
.x10_c00374{left:137.377612pt;}
.x12_c00374{left:149.211832pt;}
.x11_c00374{left:161.363394pt;}
.xd_c00374{left:225.370940pt;}
.xc_c00374{left:239.124654pt;}
.xe_c00374{left:376.018977pt;}
.x2_c00374{left:404.182400pt;}
.x3_c00374{left:463.676800pt;}
.x4_c00374{left:470.712000pt;}
.x5_c00374{left:490.222400pt;}
.x6_c00374{left:497.260800pt;}
.x7_c00374{left:505.256000pt;}
.x8_c00374{left:509.732800pt;}
.x9_c00374{left:520.931200pt;}
.xa_c00374{left:549.396800pt;}
.xb_c00374{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00375;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.115000;font-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_c00375{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:-17.992193px;}
.ws1_c00375{word-spacing:0.000000px;}
._4_c00375{margin-left:-2.859377px;}
._2_c00375{margin-left:-1.397854px;}
._1_c00375{width:1.126361px;}
._0_c00375{width:2.267170px;}
._3_c00375{width:3.284119px;}
._15_c00375{width:4.947988px;}
._9_c00375{width:6.176052px;}
._7_c00375{width:7.818607px;}
._8_c00375{width:9.545256px;}
._a_c00375{width:11.258788px;}
._b_c00375{width:12.522504px;}
._14_c00375{width:14.007895px;}
._c_c00375{width:16.634682px;}
._5_c00375{width:19.035389px;}
._6_c00375{width:20.108520px;}
._11_c00375{width:21.300020px;}
._f_c00375{width:22.331594px;}
._10_c00375{width:23.792367px;}
._e_c00375{width:25.452408px;}
._d_c00375{width:26.689684px;}
._12_c00375{width:28.551344px;}
._13_c00375{width:29.644945px;}
._16_c00375{width:31.484044px;}
.fc1_c00375{color:rgb(105,148,45);}
.fc0_c00375{color:rgb(35,31,32);}
.fs2_c00375{font-size:59.733096px;}
.fs1_c00375{font-size:66.209374px;}
.fs0_c00375{font-size:71.968771px;}
.y0_c00375{bottom:0.000000px;}
.y5_c00375{bottom:0.120938px;}
.y9_c00375{bottom:0.556171px;}
.y2_c00375{bottom:4.319248px;}
.y4_c00375{bottom:4.319998px;}
.yb_c00375{bottom:67.590602px;}
.y3_c00375{bottom:74.983320px;}
.y1_c00375{bottom:75.343320px;}
.y2d_c00375{bottom:101.413188px;}
.y2c_c00375{bottom:132.359826px;}
.y2b_c00375{bottom:163.485113px;}
.y2a_c00375{bottom:194.431751px;}
.y29_c00375{bottom:213.866343px;}
.y28_c00375{bottom:233.656435px;}
.y27_c00375{bottom:268.561721px;}
.y26_c00375{bottom:295.187611px;}
.y25_c00375{bottom:326.314248px;}
.y24_c00375{bottom:357.259536px;}
.y23_c00375{bottom:388.386173px;}
.y22_c00375{bottom:407.635966px;}
.y21_c00375{bottom:427.608158px;}
.y20_c00375{bottom:462.870443px;}
.y1f_c00375{bottom:484.102635px;}
.y1e_c00375{bottom:520.267620px;}
.y1d_c00375{bottom:547.075010px;}
.y1c_c00375{bottom:578.018797px;}
.y1b_c00375{bottom:609.146785px;}
.y1a_c00375{bottom:640.089973px;}
.y19_c00375{bottom:671.217960px;}
.y18_c00375{bottom:702.164598px;}
.y17_c00375{bottom:733.289885px;}
.y16_c00375{bottom:764.236523px;}
.y15_c00375{bottom:783.666315px;}
.y14_c00375{bottom:803.458507px;}
.y13_c00375{bottom:838.720493px;}
.y12_c00375{bottom:867.868031px;}
.y11_c00375{bottom:898.814669px;}
.y10_c00375{bottom:929.939957px;}
.yf_c00375{bottom:960.884494px;}
.ye_c00375{bottom:992.012482px;}
.yd_c00375{bottom:1054.082907px;}
.yc_c00375{bottom:1085.030895px;}
.ya_c00375{bottom:1106.080386px;}
.y8_c00375{bottom:1151.494902px;}
.y7_c00375{bottom:1172.185744px;}
.y6_c00375{bottom:1192.876585px;}
.h1_c00375{height:20.152260px;}
.h6_c00375{height:38.288915px;}
.h5_c00375{height:42.440208px;}
.h2_c00375{height:50.378140px;}
.h8_c00375{height:53.580587px;}
.h9_c00375{height:59.522227px;}
.h7_c00375{height:64.484019px;}
.h4_c00375{height:1262.431829px;}
.h3_c00375{height:1262.879062px;}
.h0_c00375{height:1263.000000px;}
.w7_c00375{width:5.396400px;}
.w3_c00375{width:7.914600px;}
.w5_c00375{width:7.918200px;}
.w6_c00375{width:8.994600px;}
.w8_c00375{width:8.998200px;}
.w1_c00375{width:17.992980px;}
.w4_c00375{width:21.949200px;}
.w9_c00375{width:28.063800px;}
.wb_c00375{width:33.463800px;}
.w2_c00375{width:66.931200px;}
.wa_c00375{width:133.140600px;}
.wd_c00375{width:892.099575px;}
.wc_c00375{width:892.414744px;}
.w0_c00375{width:892.500000px;}
.x0_c00375{left:0.000000px;}
.xf_c00375{left:113.887229px;}
.x1_c00375{left:128.331540px;}
.x10_c00375{left:180.639961px;}
.x11_c00375{left:204.745793px;}
.xd_c00375{left:253.542308px;}
.xc_c00375{left:269.015236px;}
.xe_c00375{left:423.021349px;}
.x2_c00375{left:454.705200px;}
.x3_c00375{left:521.636400px;}
.x4_c00375{left:529.551000px;}
.x5_c00375{left:551.500200px;}
.x6_c00375{left:559.418400px;}
.x7_c00375{left:568.413000px;}
.x8_c00375{left:573.449400px;}
.x9_c00375{left:586.047600px;}
.xa_c00375{left:618.071400px;}
.xb_c00375{left:751.212000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws0_c00375{word-spacing:-15.993060pt;}
.ws1_c00375{word-spacing:0.000000pt;}
._4_c00375{margin-left:-2.541668pt;}
._2_c00375{margin-left:-1.242537pt;}
._1_c00375{width:1.001210pt;}
._0_c00375{width:2.015262pt;}
._3_c00375{width:2.919216pt;}
._15_c00375{width:4.398211pt;}
._9_c00375{width:5.489824pt;}
._7_c00375{width:6.949873pt;}
._8_c00375{width:8.484672pt;}
._a_c00375{width:10.007812pt;}
._b_c00375{width:11.131115pt;}
._14_c00375{width:12.451462pt;}
._c_c00375{width:14.786384pt;}
._5_c00375{width:16.920346pt;}
._6_c00375{width:17.874240pt;}
._11_c00375{width:18.933351pt;}
._f_c00375{width:19.850306pt;}
._10_c00375{width:21.148771pt;}
._e_c00375{width:22.624363pt;}
._d_c00375{width:23.724163pt;}
._12_c00375{width:25.378973pt;}
._13_c00375{width:26.351062pt;}
._16_c00375{width:27.985817pt;}
.fs2_c00375{font-size:53.096085pt;}
.fs1_c00375{font-size:58.852776pt;}
.fs0_c00375{font-size:63.972241pt;}
.y0_c00375{bottom:0.000000pt;}
.y5_c00375{bottom:0.107500pt;}
.y9_c00375{bottom:0.494374pt;}
.y2_c00375{bottom:3.839332pt;}
.y4_c00375{bottom:3.839998pt;}
.yb_c00375{bottom:60.080535pt;}
.y3_c00375{bottom:66.651840pt;}
.y1_c00375{bottom:66.971840pt;}
.y2d_c00375{bottom:90.145056pt;}
.y2c_c00375{bottom:117.653178pt;}
.y2b_c00375{bottom:145.320101pt;}
.y2a_c00375{bottom:172.828223pt;}
.y29_c00375{bottom:190.103416pt;}
.y28_c00375{bottom:207.694609pt;}
.y27_c00375{bottom:238.721530pt;}
.y26_c00375{bottom:262.388987pt;}
.y25_c00375{bottom:290.057109pt;}
.y24_c00375{bottom:317.564032pt;}
.y23_c00375{bottom:345.232154pt;}
.y22_c00375{bottom:362.343080pt;}
.y21_c00375{bottom:380.096140pt;}
.y20_c00375{bottom:411.440394pt;}
.y1f_c00375{bottom:430.313453pt;}
.y1e_c00375{bottom:462.460107pt;}
.y1d_c00375{bottom:486.288898pt;}
.y1c_c00375{bottom:513.794487pt;}
.y1b_c00375{bottom:541.463809pt;}
.y1a_c00375{bottom:568.968864pt;}
.y19_c00375{bottom:596.638187pt;}
.y18_c00375{bottom:624.146309pt;}
.y17_c00375{bottom:651.813231pt;}
.y16_c00375{bottom:679.321354pt;}
.y15_c00375{bottom:696.592280pt;}
.y14_c00375{bottom:714.185340pt;}
.y13_c00375{bottom:745.529327pt;}
.y12_c00375{bottom:771.438250pt;}
.y11_c00375{bottom:798.946372pt;}
.y10_c00375{bottom:826.613295pt;}
.yf_c00375{bottom:854.119550pt;}
.ye_c00375{bottom:881.788873pt;}
.yd_c00375{bottom:936.962584pt;}
.yc_c00375{bottom:964.471906pt;}
.ya_c00375{bottom:983.182565pt;}
.y8_c00375{bottom:1023.551024pt;}
.y7_c00375{bottom:1041.942883pt;}
.y6_c00375{bottom:1060.334742pt;}
.h1_c00375{height:17.913120pt;}
.h6_c00375{height:34.034591pt;}
.h5_c00375{height:37.724630pt;}
.h2_c00375{height:44.780569pt;}
.h8_c00375{height:47.627189pt;}
.h9_c00375{height:52.908646pt;}
.h7_c00375{height:57.319128pt;}
.h4_c00375{height:1122.161626pt;}
.h3_c00375{height:1122.559167pt;}
.h0_c00375{height:1122.666667pt;}
.w7_c00375{width:4.796800pt;}
.w3_c00375{width:7.035200pt;}
.w5_c00375{width:7.038400pt;}
.w6_c00375{width:7.995200pt;}
.w8_c00375{width:7.998400pt;}
.w1_c00375{width:15.993760pt;}
.w4_c00375{width:19.510400pt;}
.w9_c00375{width:24.945600pt;}
.wb_c00375{width:29.745600pt;}
.w2_c00375{width:59.494400pt;}
.wa_c00375{width:118.347200pt;}
.wd_c00375{width:792.977400pt;}
.wc_c00375{width:793.257550pt;}
.w0_c00375{width:793.333333pt;}
.x0_c00375{left:0.000000pt;}
.xf_c00375{left:101.233093pt;}
.x1_c00375{left:114.072480pt;}
.x10_c00375{left:160.568854pt;}
.x11_c00375{left:181.996261pt;}
.xd_c00375{left:225.370940pt;}
.xc_c00375{left:239.124654pt;}
.xe_c00375{left:376.018977pt;}
.x2_c00375{left:404.182400pt;}
.x3_c00375{left:463.676800pt;}
.x4_c00375{left:470.712000pt;}
.x5_c00375{left:490.222400pt;}
.x6_c00375{left:497.260800pt;}
.x7_c00375{left:505.256000pt;}
.x8_c00375{left:509.732800pt;}
.x9_c00375{left:520.931200pt;}
.xa_c00375{left:549.396800pt;}
.xb_c00375{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.113000;font-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_c00376{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls0_c00376{letter-spacing:0.000000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00376{word-spacing:-17.992193px;}
.ws1_c00376{word-spacing:0.000000px;}
._c_c00376{margin-left:-3.787908px;}
._3_c00376{margin-left:-1.688275px;}
._1_c00376{width:1.126361px;}
._0_c00376{width:2.267170px;}
._2_c00376{width:3.877365px;}
._a_c00376{width:5.104454px;}
._9_c00376{width:6.266253px;}
._12_c00376{width:7.370053px;}
._5_c00376{width:8.525347px;}
._4_c00376{width:9.640397px;}
._b_c00376{width:11.635542px;}
._7_c00376{width:13.382373px;}
._8_c00376{width:14.655616px;}
._6_c00376{width:15.963389px;}
._10_c00376{width:19.456673px;}
._11_c00376{width:20.848273px;}
._d_c00376{width:38.186239px;}
._f_c00376{width:40.033050px;}
._e_c00376{width:41.322885px;}
._15_c00376{width:50.480707px;}
._14_c00376{width:52.072335px;}
._16_c00376{width:53.210969px;}
._13_c00376{width:54.288674px;}
.fc1_c00376{color:rgb(105,148,45);}
.fc0_c00376{color:rgb(35,31,32);}
.fs2_c00376{font-size:59.733096px;}
.fs1_c00376{font-size:66.209374px;}
.fs0_c00376{font-size:71.968771px;}
.y0_c00376{bottom:0.000000px;}
.y5_c00376{bottom:0.120938px;}
.y9_c00376{bottom:0.556171px;}
.y2_c00376{bottom:4.319248px;}
.y4_c00376{bottom:4.319998px;}
.yb_c00376{bottom:67.590602px;}
.y3_c00376{bottom:74.983320px;}
.y1_c00376{bottom:75.343320px;}
.y2c_c00376{bottom:114.012283px;}
.y2b_c00376{bottom:144.956821px;}
.y2a_c00376{bottom:176.083458px;}
.y29_c00376{bottom:207.030096px;}
.y28_c00376{bottom:238.155383px;}
.y27_c00376{bottom:269.102021px;}
.y26_c00376{bottom:300.226558px;}
.y25_c00376{bottom:331.173196px;}
.y24_c00376{bottom:350.602088px;}
.y23_c00376{bottom:370.393680px;}
.y22_c00376{bottom:416.992362px;}
.y21_c00376{bottom:447.938999px;}
.y20_c00376{bottom:479.063537px;}
.y1f_c00376{bottom:510.010175px;}
.y1e_c00376{bottom:541.135462px;}
.y1d_c00376{bottom:572.082100px;}
.y1c_c00376{bottom:591.513992px;}
.y1b_c00376{bottom:611.485584px;}
.y1a_c00376{bottom:657.903965px;}
.y19_c00376{bottom:688.849253px;}
.y18_c00376{bottom:719.975891px;}
.y17_c00376{bottom:750.921178px;}
.y16_c00376{bottom:782.049166px;}
.y15_c00376{bottom:812.995053px;}
.y14_c00376{bottom:844.120341px;}
.y13_c00376{bottom:875.066979px;}
.y12_c00376{bottom:894.494371px;}
.y11_c00376{bottom:914.465963px;}
.y10_c00376{bottom:960.884494px;}
.yf_c00376{bottom:992.012482px;}
.ye_c00376{bottom:1022.959119px;}
.yd_c00376{bottom:1054.082907px;}
.yc_c00376{bottom:1085.030895px;}
.ya_c00376{bottom:1106.080386px;}
.y8_c00376{bottom:1151.494902px;}
.y7_c00376{bottom:1172.185744px;}
.y6_c00376{bottom:1192.876585px;}
.h1_c00376{height:20.152260px;}
.h6_c00376{height:38.288915px;}
.h5_c00376{height:42.440208px;}
.h2_c00376{height:50.378140px;}
.h8_c00376{height:53.580587px;}
.h7_c00376{height:64.484019px;}
.h4_c00376{height:1262.431829px;}
.h3_c00376{height:1262.879062px;}
.h0_c00376{height:1263.000000px;}
.w7_c00376{width:5.396400px;}
.w3_c00376{width:7.914600px;}
.w5_c00376{width:7.918200px;}
.w6_c00376{width:8.994600px;}
.w8_c00376{width:8.998200px;}
.w1_c00376{width:17.992980px;}
.w4_c00376{width:21.949200px;}
.w9_c00376{width:28.063800px;}
.wb_c00376{width:33.463800px;}
.w2_c00376{width:66.931200px;}
.wa_c00376{width:133.140600px;}
.wd_c00376{width:892.099575px;}
.wc_c00376{width:892.414744px;}
.w0_c00376{width:892.500000px;}
.x0_c00376{left:0.000000px;}
.xf_c00376{left:113.887229px;}
.x1_c00376{left:128.331540px;}
.x10_c00376{left:180.639303px;}
.xd_c00376{left:253.542308px;}
.xc_c00376{left:269.015236px;}
.xe_c00376{left:423.021349px;}
.x2_c00376{left:454.705200px;}
.x3_c00376{left:521.636400px;}
.x4_c00376{left:529.551000px;}
.x5_c00376{left:551.500200px;}
.x6_c00376{left:559.418400px;}
.x7_c00376{left:568.413000px;}
.x8_c00376{left:573.449400px;}
.x9_c00376{left:586.047600px;}
.xa_c00376{left:618.071400px;}
.xb_c00376{left:751.212000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws0_c00376{word-spacing:-15.993060pt;}
.ws1_c00376{word-spacing:0.000000pt;}
._c_c00376{margin-left:-3.367029pt;}
._3_c00376{margin-left:-1.500689pt;}
._1_c00376{width:1.001210pt;}
._0_c00376{width:2.015262pt;}
._2_c00376{width:3.446547pt;}
._a_c00376{width:4.537292pt;}
._9_c00376{width:5.570003pt;}
._12_c00376{width:6.551158pt;}
._5_c00376{width:7.578087pt;}
._4_c00376{width:8.569242pt;}
._b_c00376{width:10.342704pt;}
._7_c00376{width:11.895443pt;}
._8_c00376{width:13.027214pt;}
._6_c00376{width:14.189679pt;}
._10_c00376{width:17.294821pt;}
._11_c00376{width:18.531798pt;}
._d_c00376{width:33.943323pt;}
._f_c00376{width:35.584934pt;}
._e_c00376{width:36.731453pt;}
._15_c00376{width:44.871740pt;}
._14_c00376{width:46.286520pt;}
._16_c00376{width:47.298639pt;}
._13_c00376{width:48.256599pt;}
.fs2_c00376{font-size:53.096085pt;}
.fs1_c00376{font-size:58.852776pt;}
.fs0_c00376{font-size:63.972241pt;}
.y0_c00376{bottom:0.000000pt;}
.y5_c00376{bottom:0.107500pt;}
.y9_c00376{bottom:0.494374pt;}
.y2_c00376{bottom:3.839332pt;}
.y4_c00376{bottom:3.839998pt;}
.yb_c00376{bottom:60.080535pt;}
.y3_c00376{bottom:66.651840pt;}
.y1_c00376{bottom:66.971840pt;}
.y2c_c00376{bottom:101.344252pt;}
.y2b_c00376{bottom:128.850507pt;}
.y2a_c00376{bottom:156.518629pt;}
.y29_c00376{bottom:184.026752pt;}
.y28_c00376{bottom:211.693674pt;}
.y27_c00376{bottom:239.201796pt;}
.y26_c00376{bottom:266.868052pt;}
.y25_c00376{bottom:294.376174pt;}
.y24_c00376{bottom:311.646301pt;}
.y23_c00376{bottom:329.238827pt;}
.y22_c00376{bottom:370.659877pt;}
.y21_c00376{bottom:398.167999pt;}
.y20_c00376{bottom:425.834255pt;}
.y1f_c00376{bottom:453.342377pt;}
.y1e_c00376{bottom:481.009300pt;}
.y1d_c00376{bottom:508.517422pt;}
.y1c_c00376{bottom:525.790215pt;}
.y1b_c00376{bottom:543.542741pt;}
.y1a_c00376{bottom:584.803525pt;}
.y19_c00376{bottom:612.310447pt;}
.y18_c00376{bottom:639.978569pt;}
.y17_c00376{bottom:667.485492pt;}
.y16_c00376{bottom:695.154814pt;}
.y15_c00376{bottom:722.662270pt;}
.y14_c00376{bottom:750.329192pt;}
.y13_c00376{bottom:777.837314pt;}
.y12_c00376{bottom:795.106107pt;}
.y11_c00376{bottom:812.858634pt;}
.y10_c00376{bottom:854.119550pt;}
.yf_c00376{bottom:881.788873pt;}
.ye_c00376{bottom:909.296995pt;}
.yd_c00376{bottom:936.962584pt;}
.yc_c00376{bottom:964.471906pt;}
.ya_c00376{bottom:983.182565pt;}
.y8_c00376{bottom:1023.551024pt;}
.y7_c00376{bottom:1041.942883pt;}
.y6_c00376{bottom:1060.334742pt;}
.h1_c00376{height:17.913120pt;}
.h6_c00376{height:34.034591pt;}
.h5_c00376{height:37.724630pt;}
.h2_c00376{height:44.780569pt;}
.h8_c00376{height:47.627189pt;}
.h7_c00376{height:57.319128pt;}
.h4_c00376{height:1122.161626pt;}
.h3_c00376{height:1122.559167pt;}
.h0_c00376{height:1122.666667pt;}
.w7_c00376{width:4.796800pt;}
.w3_c00376{width:7.035200pt;}
.w5_c00376{width:7.038400pt;}
.w6_c00376{width:7.995200pt;}
.w8_c00376{width:7.998400pt;}
.w1_c00376{width:15.993760pt;}
.w4_c00376{width:19.510400pt;}
.w9_c00376{width:24.945600pt;}
.wb_c00376{width:29.745600pt;}
.w2_c00376{width:59.494400pt;}
.wa_c00376{width:118.347200pt;}
.wd_c00376{width:792.977400pt;}
.wc_c00376{width:793.257550pt;}
.w0_c00376{width:793.333333pt;}
.x0_c00376{left:0.000000pt;}
.xf_c00376{left:101.233093pt;}
.x1_c00376{left:114.072480pt;}
.x10_c00376{left:160.568269pt;}
.xd_c00376{left:225.370940pt;}
.xc_c00376{left:239.124654pt;}
.xe_c00376{left:376.018977pt;}
.x2_c00376{left:404.182400pt;}
.x3_c00376{left:463.676800pt;}
.x4_c00376{left:470.712000pt;}
.x5_c00376{left:490.222400pt;}
.x6_c00376{left:497.260800pt;}
.x7_c00376{left:505.256000pt;}
.x8_c00376{left:509.732800pt;}
.x9_c00376{left:520.931200pt;}
.xa_c00376{left:549.396800pt;}
.xb_c00376{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.115000;font-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_c00377{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls0_c00377{letter-spacing:0.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-17.992193px;}
.ws1_c00377{word-spacing:0.000000px;}
._5_c00377{margin-left:-2.741300px;}
._4_c00377{margin-left:-1.037918px;}
._1_c00377{width:1.126361px;}
._0_c00377{width:2.267170px;}
._8_c00377{width:3.847262px;}
._2_c00377{width:5.201472px;}
._3_c00377{width:7.098756px;}
._b_c00377{width:8.116361px;}
._9_c00377{width:9.606525px;}
._a_c00377{width:11.490951px;}
._d_c00377{width:12.530470px;}
._e_c00377{width:14.303434px;}
._f_c00377{width:15.457195px;}
._15_c00377{width:16.836336px;}
._14_c00377{width:19.082182px;}
._6_c00377{width:20.214044px;}
._7_c00377{width:21.369251px;}
._c_c00377{width:23.158575px;}
._16_c00377{width:24.415597px;}
._12_c00377{width:25.798751px;}
._10_c00377{width:26.960386px;}
._11_c00377{width:28.068610px;}
._13_c00377{width:29.081147px;}
._17_c00377{width:33.559043px;}
._18_c00377{width:35.096968px;}
.fc1_c00377{color:rgb(105,148,45);}
.fc0_c00377{color:rgb(35,31,32);}
.fs4_c00377{font-size:41.741203px;}
.fs3_c00377{font-size:48.218261px;}
.fs2_c00377{font-size:59.733096px;}
.fs1_c00377{font-size:66.209374px;}
.fs0_c00377{font-size:71.968771px;}
.y0_c00377{bottom:0.000000px;}
.y5_c00377{bottom:0.120938px;}
.y9_c00377{bottom:0.556171px;}
.y2_c00377{bottom:4.319248px;}
.y4_c00377{bottom:4.319998px;}
.yb_c00377{bottom:67.590602px;}
.y3_c00377{bottom:74.983320px;}
.y1_c00377{bottom:75.343320px;}
.y2e_c00377{bottom:112.390334px;}
.y2d_c00377{bottom:143.334871px;}
.y2c_c00377{bottom:174.461509px;}
.y2b_c00377{bottom:205.948146px;}
.y2a_c00377{bottom:236.893434px;}
.y29_c00377{bottom:268.020071px;}
.y28_c00377{bottom:299.145959px;}
.y27_c00377{bottom:330.452596px;}
.y26_c00377{bottom:361.579234px;}
.y25_c00377{bottom:392.524522px;}
.y24_c00377{bottom:423.651159px;}
.y23_c00377{bottom:442.357652px;}
.y22_c00377{bottom:458.734645px;}
.y21_c00377{bottom:496.156630px;}
.y20_c00377{bottom:515.589122px;}
.y1f_c00377{bottom:554.451107px;}
.y1e_c00377{bottom:580.358646px;}
.y1d_c00377{bottom:611.482434px;}
.y1c_c00377{bottom:642.609072px;}
.y1b_c00377{bottom:673.917059px;}
.y1a_c00377{bottom:705.040247px;}
.y19_c00377{bottom:735.988234px;}
.y18_c00377{bottom:767.112022px;}
.y17_c00377{bottom:798.061509px;}
.y16_c00377{bottom:829.183197px;}
.y15_c00377{bottom:860.133285px;}
.y14_c00377{bottom:891.259172px;}
.y13_c00377{bottom:922.202960px;}
.y12_c00377{bottom:953.330947px;}
.y11_c00377{bottom:972.581040px;}
.y10_c00377{bottom:992.552632px;}
.yf_c00377{bottom:1027.274318px;}
.yd_c00377{bottom:1054.082907px;}
.ye_c00377{bottom:1054.085907px;}
.yc_c00377{bottom:1085.030895px;}
.ya_c00377{bottom:1106.080386px;}
.y8_c00377{bottom:1151.494902px;}
.y7_c00377{bottom:1172.185744px;}
.y6_c00377{bottom:1192.876585px;}
.h1_c00377{height:20.152260px;}
.hb_c00377{height:26.756111px;}
.h9_c00377{height:30.907905px;}
.h6_c00377{height:38.288915px;}
.h5_c00377{height:42.440208px;}
.h2_c00377{height:50.378140px;}
.h8_c00377{height:53.580587px;}
.ha_c00377{height:59.522227px;}
.h7_c00377{height:64.484019px;}
.h4_c00377{height:1262.431829px;}
.h3_c00377{height:1262.879062px;}
.h0_c00377{height:1263.000000px;}
.w7_c00377{width:5.396400px;}
.w3_c00377{width:7.914600px;}
.w5_c00377{width:7.918200px;}
.w6_c00377{width:8.994600px;}
.w8_c00377{width:8.998200px;}
.w1_c00377{width:17.992980px;}
.w4_c00377{width:21.949200px;}
.w9_c00377{width:28.063800px;}
.wb_c00377{width:33.463800px;}
.w2_c00377{width:66.931200px;}
.wa_c00377{width:133.140600px;}
.wd_c00377{width:892.099575px;}
.wc_c00377{width:892.414744px;}
.w0_c00377{width:892.500000px;}
.x0_c00377{left:0.000000px;}
.xf_c00377{left:113.887229px;}
.x1_c00377{left:128.331540px;}
.x13_c00377{left:167.865308px;}
.x11_c00377{left:180.639303px;}
.xd_c00377{left:253.542308px;}
.xc_c00377{left:269.015236px;}
.x12_c00377{left:281.029763px;}
.xe_c00377{left:423.021349px;}
.x2_c00377{left:454.705200px;}
.x3_c00377{left:521.636400px;}
.x4_c00377{left:529.551000px;}
.x5_c00377{left:551.500200px;}
.x6_c00377{left:559.418400px;}
.x7_c00377{left:568.413000px;}
.x8_c00377{left:573.449400px;}
.x9_c00377{left:586.047600px;}
.xa_c00377{left:618.071400px;}
.x10_c00377{left:627.915124px;}
.xb_c00377{left:751.212000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws0_c00377{word-spacing:-15.993060pt;}
.ws1_c00377{word-spacing:0.000000pt;}
._5_c00377{margin-left:-2.436711pt;}
._4_c00377{margin-left:-0.922593pt;}
._1_c00377{width:1.001210pt;}
._0_c00377{width:2.015262pt;}
._8_c00377{width:3.419788pt;}
._2_c00377{width:4.623531pt;}
._3_c00377{width:6.310005pt;}
._b_c00377{width:7.214543pt;}
._9_c00377{width:8.539133pt;}
._a_c00377{width:10.214179pt;}
._d_c00377{width:11.138196pt;}
._e_c00377{width:12.714164pt;}
._f_c00377{width:13.739729pt;}
._15_c00377{width:14.965632pt;}
._14_c00377{width:16.961940pt;}
._6_c00377{width:17.968039pt;}
._7_c00377{width:18.994890pt;}
._c_c00377{width:20.585400pt;}
._16_c00377{width:21.702753pt;}
._12_c00377{width:22.932223pt;}
._10_c00377{width:23.964787pt;}
._11_c00377{width:24.949875pt;}
._13_c00377{width:25.849908pt;}
._17_c00377{width:29.830261pt;}
._18_c00377{width:31.197305pt;}
.fs4_c00377{font-size:37.103292pt;}
.fs3_c00377{font-size:42.860676pt;}
.fs2_c00377{font-size:53.096085pt;}
.fs1_c00377{font-size:58.852776pt;}
.fs0_c00377{font-size:63.972241pt;}
.y0_c00377{bottom:0.000000pt;}
.y5_c00377{bottom:0.107500pt;}
.y9_c00377{bottom:0.494374pt;}
.y2_c00377{bottom:3.839332pt;}
.y4_c00377{bottom:3.839998pt;}
.yb_c00377{bottom:60.080535pt;}
.y3_c00377{bottom:66.651840pt;}
.y1_c00377{bottom:66.971840pt;}
.y2e_c00377{bottom:99.902519pt;}
.y2d_c00377{bottom:127.408774pt;}
.y2c_c00377{bottom:155.076897pt;}
.y2b_c00377{bottom:183.065019pt;}
.y2a_c00377{bottom:210.571941pt;}
.y29_c00377{bottom:238.240063pt;}
.y28_c00377{bottom:265.907519pt;}
.y27_c00377{bottom:293.735641pt;}
.y26_c00377{bottom:321.403764pt;}
.y25_c00377{bottom:348.910686pt;}
.y24_c00377{bottom:376.578808pt;}
.y23_c00377{bottom:393.206801pt;}
.y22_c00377{bottom:407.764129pt;}
.y21_c00377{bottom:441.028116pt;}
.y20_c00377{bottom:458.301442pt;}
.y1f_c00377{bottom:492.845428pt;}
.y1e_c00377{bottom:515.874352pt;}
.y1d_c00377{bottom:543.539941pt;}
.y1c_c00377{bottom:571.208064pt;}
.y1b_c00377{bottom:599.037386pt;}
.y1a_c00377{bottom:626.702441pt;}
.y19_c00377{bottom:654.211764pt;}
.y18_c00377{bottom:681.877353pt;}
.y17_c00377{bottom:709.388008pt;}
.y16_c00377{bottom:737.051731pt;}
.y15_c00377{bottom:764.562920pt;}
.y14_c00377{bottom:792.230375pt;}
.y13_c00377{bottom:819.735964pt;}
.y12_c00377{bottom:847.405286pt;}
.y11_c00377{bottom:864.516480pt;}
.y10_c00377{bottom:882.269006pt;}
.yf_c00377{bottom:913.132727pt;}
.yd_c00377{bottom:936.962584pt;}
.ye_c00377{bottom:936.965251pt;}
.yc_c00377{bottom:964.471906pt;}
.ya_c00377{bottom:983.182565pt;}
.y8_c00377{bottom:1023.551024pt;}
.y7_c00377{bottom:1041.942883pt;}
.y6_c00377{bottom:1060.334742pt;}
.h1_c00377{height:17.913120pt;}
.hb_c00377{height:23.783210pt;}
.h9_c00377{height:27.473693pt;}
.h6_c00377{height:34.034591pt;}
.h5_c00377{height:37.724630pt;}
.h2_c00377{height:44.780569pt;}
.h8_c00377{height:47.627189pt;}
.ha_c00377{height:52.908646pt;}
.h7_c00377{height:57.319128pt;}
.h4_c00377{height:1122.161626pt;}
.h3_c00377{height:1122.559167pt;}
.h0_c00377{height:1122.666667pt;}
.w7_c00377{width:4.796800pt;}
.w3_c00377{width:7.035200pt;}
.w5_c00377{width:7.038400pt;}
.w6_c00377{width:7.995200pt;}
.w8_c00377{width:7.998400pt;}
.w1_c00377{width:15.993760pt;}
.w4_c00377{width:19.510400pt;}
.w9_c00377{width:24.945600pt;}
.wb_c00377{width:29.745600pt;}
.w2_c00377{width:59.494400pt;}
.wa_c00377{width:118.347200pt;}
.wd_c00377{width:792.977400pt;}
.wc_c00377{width:793.257550pt;}
.w0_c00377{width:793.333333pt;}
.x0_c00377{left:0.000000pt;}
.xf_c00377{left:101.233093pt;}
.x1_c00377{left:114.072480pt;}
.x13_c00377{left:149.213607pt;}
.x11_c00377{left:160.568269pt;}
.xd_c00377{left:225.370940pt;}
.xc_c00377{left:239.124654pt;}
.x12_c00377{left:249.804233pt;}
.xe_c00377{left:376.018977pt;}
.x2_c00377{left:404.182400pt;}
.x3_c00377{left:463.676800pt;}
.x4_c00377{left:470.712000pt;}
.x5_c00377{left:490.222400pt;}
.x6_c00377{left:497.260800pt;}
.x7_c00377{left:505.256000pt;}
.x8_c00377{left:509.732800pt;}
.x9_c00377{left:520.931200pt;}
.xa_c00377{left:549.396800pt;}
.x10_c00377{left:558.146777pt;}
.xb_c00377{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.112000;font-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_c00378{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:-17.992193px;}
.ws1_c00378{word-spacing:0.000000px;}
._5_c00378{margin-left:-1.418915px;}
._1_c00378{width:1.126361px;}
._0_c00378{width:2.267170px;}
._9_c00378{width:3.364731px;}
._13_c00378{width:4.801338px;}
._2_c00378{width:6.143266px;}
._3_c00378{width:7.185650px;}
._14_c00378{width:9.482469px;}
._a_c00378{width:11.416847px;}
._f_c00378{width:12.453936px;}
._7_c00378{width:13.625679px;}
._8_c00378{width:14.656967px;}
._b_c00378{width:15.861917px;}
._6_c00378{width:20.421111px;}
._4_c00378{width:21.989682px;}
._e_c00378{width:23.323057px;}
._10_c00378{width:24.997350px;}
._11_c00378{width:26.053476px;}
._12_c00378{width:35.320054px;}
._d_c00378{width:37.371880px;}
._c_c00378{width:38.411633px;}
.fc1_c00378{color:rgb(105,148,45);}
.fc0_c00378{color:rgb(35,31,32);}
.fs2_c00378{font-size:59.733096px;}
.fs1_c00378{font-size:66.209374px;}
.fs0_c00378{font-size:71.968771px;}
.y0_c00378{bottom:0.000000px;}
.y5_c00378{bottom:0.120938px;}
.y9_c00378{bottom:0.556171px;}
.y2_c00378{bottom:4.319248px;}
.y4_c00378{bottom:4.319998px;}
.yb_c00378{bottom:67.590602px;}
.y3_c00378{bottom:74.983320px;}
.y1_c00378{bottom:75.343320px;}
.y2b_c00378{bottom:91.159342px;}
.y2a_c00378{bottom:120.303730px;}
.y29_c00378{bottom:151.251718px;}
.y28_c00378{bottom:182.373406px;}
.y27_c00378{bottom:213.323493px;}
.y26_c00378{bottom:244.449381px;}
.y25_c00378{bottom:275.573168px;}
.y24_c00378{bottom:338.366443px;}
.y23_c00378{bottom:369.490981px;}
.y22_c00378{bottom:400.618968px;}
.y21_c00378{bottom:431.924256px;}
.y20_c00378{bottom:463.050893px;}
.y1f_c00378{bottom:493.994081px;}
.y1e_c00378{bottom:525.124169px;}
.y1d_c00378{bottom:556.068706px;}
.y1c_c00378{bottom:587.195344px;}
.y1b_c00378{bottom:618.140631px;}
.y1a_c00378{bottom:649.265919px;}
.y19_c00378{bottom:680.213906px;}
.y18_c00378{bottom:711.338444px;}
.y17_c00378{bottom:742.285082px;}
.y16_c00378{bottom:773.408869px;}
.y15_c00378{bottom:804.536857px;}
.y14_c00378{bottom:835.842744px;}
.y13_c00378{bottom:866.969382px;}
.y12_c00378{bottom:898.094669px;}
.y11_c00378{bottom:929.401307px;}
.y10_c00378{bottom:960.524494px;}
.yf_c00378{bottom:991.472482px;}
.ye_c00378{bottom:1022.599120px;}
.yd_c00378{bottom:1053.722907px;}
.yc_c00378{bottom:1085.030895px;}
.ya_c00378{bottom:1106.080386px;}
.y8_c00378{bottom:1151.494902px;}
.y7_c00378{bottom:1172.185744px;}
.y6_c00378{bottom:1192.876585px;}
.h1_c00378{height:20.152260px;}
.h6_c00378{height:38.288915px;}
.h5_c00378{height:42.440208px;}
.h2_c00378{height:50.378140px;}
.h7_c00378{height:64.484019px;}
.h4_c00378{height:1262.431829px;}
.h3_c00378{height:1262.879062px;}
.h0_c00378{height:1263.000000px;}
.w7_c00378{width:5.396400px;}
.w3_c00378{width:7.914600px;}
.w5_c00378{width:7.918200px;}
.w6_c00378{width:8.994600px;}
.w8_c00378{width:8.998200px;}
.w1_c00378{width:18.352980px;}
.w4_c00378{width:21.949200px;}
.w9_c00378{width:28.063800px;}
.wb_c00378{width:33.463800px;}
.w2_c00378{width:66.931200px;}
.wa_c00378{width:133.140600px;}
.wd_c00378{width:892.099575px;}
.wc_c00378{width:892.414744px;}
.w0_c00378{width:892.500000px;}
.x0_c00378{left:0.000000px;}
.xf_c00378{left:113.887229px;}
.x1_c00378{left:128.331540px;}
.x10_c00378{left:167.863335px;}
.xd_c00378{left:253.542308px;}
.xc_c00378{left:269.015236px;}
.xe_c00378{left:423.021349px;}
.x2_c00378{left:454.705200px;}
.x3_c00378{left:521.636400px;}
.x4_c00378{left:529.551000px;}
.x5_c00378{left:551.500200px;}
.x6_c00378{left:559.418400px;}
.x7_c00378{left:568.413000px;}
.x8_c00378{left:573.449400px;}
.x9_c00378{left:586.047600px;}
.xa_c00378{left:618.071400px;}
.xb_c00378{left:751.212000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws0_c00378{word-spacing:-15.993060pt;}
.ws1_c00378{word-spacing:0.000000pt;}
._5_c00378{margin-left:-1.261258pt;}
._1_c00378{width:1.001210pt;}
._0_c00378{width:2.015262pt;}
._9_c00378{width:2.990872pt;}
._13_c00378{width:4.267856pt;}
._2_c00378{width:5.460681pt;}
._3_c00378{width:6.387244pt;}
._14_c00378{width:8.428862pt;}
._a_c00378{width:10.148309pt;}
._f_c00378{width:11.070166pt;}
._7_c00378{width:12.111715pt;}
._8_c00378{width:13.028415pt;}
._b_c00378{width:14.099482pt;}
._6_c00378{width:18.152098pt;}
._4_c00378{width:19.546384pt;}
._e_c00378{width:20.731606pt;}
._10_c00378{width:22.219866pt;}
._11_c00378{width:23.158646pt;}
._12_c00378{width:31.395603pt;}
._d_c00378{width:33.219449pt;}
._c_c00378{width:34.143674pt;}
.fs2_c00378{font-size:53.096085pt;}
.fs1_c00378{font-size:58.852776pt;}
.fs0_c00378{font-size:63.972241pt;}
.y0_c00378{bottom:0.000000pt;}
.y5_c00378{bottom:0.107500pt;}
.y9_c00378{bottom:0.494374pt;}
.y2_c00378{bottom:3.839332pt;}
.y4_c00378{bottom:3.839998pt;}
.yb_c00378{bottom:60.080535pt;}
.y3_c00378{bottom:66.651840pt;}
.y1_c00378{bottom:66.971840pt;}
.y2b_c00378{bottom:81.030526pt;}
.y2a_c00378{bottom:106.936649pt;}
.y29_c00378{bottom:134.445972pt;}
.y28_c00378{bottom:162.109694pt;}
.y27_c00378{bottom:189.620883pt;}
.y26_c00378{bottom:217.288338pt;}
.y25_c00378{bottom:244.953927pt;}
.y24_c00378{bottom:300.770172pt;}
.y23_c00378{bottom:328.436427pt;}
.y22_c00378{bottom:356.105750pt;}
.y21_c00378{bottom:383.932672pt;}
.y20_c00378{bottom:411.600794pt;}
.y1f_c00378{bottom:439.105850pt;}
.y1e_c00378{bottom:466.777039pt;}
.y1d_c00378{bottom:494.283294pt;}
.y1c_c00378{bottom:521.951417pt;}
.y1b_c00378{bottom:549.458339pt;}
.y1a_c00378{bottom:577.125261pt;}
.y19_c00378{bottom:604.634584pt;}
.y18_c00378{bottom:632.300839pt;}
.y17_c00378{bottom:659.808961pt;}
.y16_c00378{bottom:687.474550pt;}
.y15_c00378{bottom:715.143873pt;}
.y14_c00378{bottom:742.971328pt;}
.y13_c00378{bottom:770.639450pt;}
.y12_c00378{bottom:798.306373pt;}
.y11_c00378{bottom:826.134495pt;}
.y10_c00378{bottom:853.799551pt;}
.yf_c00378{bottom:881.308873pt;}
.ye_c00378{bottom:908.976995pt;}
.yd_c00378{bottom:936.642584pt;}
.yc_c00378{bottom:964.471906pt;}
.ya_c00378{bottom:983.182565pt;}
.y8_c00378{bottom:1023.551024pt;}
.y7_c00378{bottom:1041.942883pt;}
.y6_c00378{bottom:1060.334742pt;}
.h1_c00378{height:17.913120pt;}
.h6_c00378{height:34.034591pt;}
.h5_c00378{height:37.724630pt;}
.h2_c00378{height:44.780569pt;}
.h7_c00378{height:57.319128pt;}
.h4_c00378{height:1122.161626pt;}
.h3_c00378{height:1122.559167pt;}
.h0_c00378{height:1122.666667pt;}
.w7_c00378{width:4.796800pt;}
.w3_c00378{width:7.035200pt;}
.w5_c00378{width:7.038400pt;}
.w6_c00378{width:7.995200pt;}
.w8_c00378{width:7.998400pt;}
.w1_c00378{width:16.313760pt;}
.w4_c00378{width:19.510400pt;}
.w9_c00378{width:24.945600pt;}
.wb_c00378{width:29.745600pt;}
.w2_c00378{width:59.494400pt;}
.wa_c00378{width:118.347200pt;}
.wd_c00378{width:792.977400pt;}
.wc_c00378{width:793.257550pt;}
.w0_c00378{width:793.333333pt;}
.x0_c00378{left:0.000000pt;}
.xf_c00378{left:101.233093pt;}
.x1_c00378{left:114.072480pt;}
.x10_c00378{left:149.211853pt;}
.xd_c00378{left:225.370940pt;}
.xc_c00378{left:239.124654pt;}
.xe_c00378{left:376.018977pt;}
.x2_c00378{left:404.182400pt;}
.x3_c00378{left:463.676800pt;}
.x4_c00378{left:470.712000pt;}
.x5_c00378{left:490.222400pt;}
.x6_c00378{left:497.260800pt;}
.x7_c00378{left:505.256000pt;}
.x8_c00378{left:509.732800pt;}
.x9_c00378{left:520.931200pt;}
.xa_c00378{left:549.396800pt;}
.xb_c00378{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00379{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls0_c00379{letter-spacing:0.000000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:-17.992193px;}
.ws1_c00379{word-spacing:0.000000px;}
._b_c00379{margin-left:-2.434863px;}
._2_c00379{margin-left:-1.202970px;}
._1_c00379{width:1.126361px;}
._0_c00379{width:2.267170px;}
._7_c00379{width:3.607243px;}
._a_c00379{width:4.660567px;}
._8_c00379{width:5.771608px;}
._c_c00379{width:6.944154px;}
._9_c00379{width:8.399036px;}
._13_c00379{width:9.506440px;}
._d_c00379{width:10.595785px;}
._e_c00379{width:11.710116px;}
._12_c00379{width:12.883502px;}
._11_c00379{width:14.178214px;}
._14_c00379{width:15.479284px;}
._f_c00379{width:19.681435px;}
._5_c00379{width:21.288516px;}
._3_c00379{width:22.683108px;}
._10_c00379{width:23.727393px;}
._4_c00379{width:24.883629px;}
._6_c00379{width:26.459319px;}
.fc1_c00379{color:rgb(105,148,45);}
.fc0_c00379{color:rgb(35,31,32);}
.fs4_c00379{font-size:48.218261px;}
.fs3_c00379{font-size:53.975678px;}
.fs2_c00379{font-size:59.733096px;}
.fs1_c00379{font-size:66.209374px;}
.fs0_c00379{font-size:71.968771px;}
.y0_c00379{bottom:0.000000px;}
.y5_c00379{bottom:0.120938px;}
.y9_c00379{bottom:0.556171px;}
.y2_c00379{bottom:4.319248px;}
.y4_c00379{bottom:4.319998px;}
.yb_c00379{bottom:67.590602px;}
.y3_c00379{bottom:74.983320px;}
.y1_c00379{bottom:75.343320px;}
.y2d_c00379{bottom:112.030934px;}
.y2c_c00379{bottom:143.156221px;}
.y2b_c00379{bottom:174.102109px;}
.y2a_c00379{bottom:205.048747px;}
.y29_c00379{bottom:236.174034px;}
.y28_c00379{bottom:267.120672px;}
.y27_c00379{bottom:298.247309px;}
.y26_c00379{bottom:329.193197px;}
.y25_c00379{bottom:368.053681px;}
.y24_c00379{bottom:391.626172px;}
.y23_c00379{bottom:429.046657px;}
.y22_c00379{bottom:448.480199px;}
.y21_c00379{bottom:485.542634px;}
.y20_c00379{bottom:521.524620px;}
.y1f_c00379{bottom:540.954112px;}
.y1e_c00379{bottom:590.070843px;}
.y1d_c00379{bottom:621.018830px;}
.y1c_c00379{bottom:651.964118px;}
.y1b_c00379{bottom:682.910755px;}
.y1a_c00379{bottom:713.856043px;}
.y19_c00379{bottom:744.802681px;}
.y18_c00379{bottom:775.749318px;}
.y17_c00379{bottom:806.693856px;}
.y16_c00379{bottom:837.640494px;}
.y15_c00379{bottom:876.506978px;}
.y14_c00379{bottom:899.894969px;}
.y13_c00379{bottom:939.291853px;}
.y12_c00379{bottom:963.220593px;}
.y11_c00379{bottom:999.743779px;}
.y10_c00379{bottom:1017.377472px;}
.yf_c00379{bottom:1035.188315px;}
.ye_c00379{bottom:1052.822007px;}
.yd_c00379{bottom:1070.455700px;}
.yc_c00379{bottom:1088.267893px;}
.ya_c00379{bottom:1106.080386px;}
.y8_c00379{bottom:1151.494902px;}
.y7_c00379{bottom:1172.185744px;}
.y6_c00379{bottom:1192.876585px;}
.h1_c00379{height:20.152260px;}
.hc_c00379{height:30.907905px;}
.hb_c00379{height:34.598410px;}
.h6_c00379{height:38.288915px;}
.h5_c00379{height:42.440208px;}
.h2_c00379{height:50.378140px;}
.h8_c00379{height:53.580587px;}
.h7_c00379{height:59.522227px;}
.h9_c00379{height:64.484019px;}
.ha_c00379{height:64.555988px;}
.h4_c00379{height:1262.431829px;}
.h3_c00379{height:1262.879062px;}
.h0_c00379{height:1263.000000px;}
.w7_c00379{width:5.396400px;}
.w3_c00379{width:7.914600px;}
.w5_c00379{width:7.918200px;}
.w6_c00379{width:8.994600px;}
.w8_c00379{width:8.998200px;}
.w1_c00379{width:18.352980px;}
.w4_c00379{width:21.949200px;}
.w9_c00379{width:28.063800px;}
.wb_c00379{width:33.463800px;}
.w2_c00379{width:66.931200px;}
.wa_c00379{width:133.140600px;}
.wd_c00379{width:892.099575px;}
.wc_c00379{width:892.414744px;}
.w0_c00379{width:892.500000px;}
.x0_c00379{left:0.000000px;}
.xf_c00379{left:113.887229px;}
.x1_c00379{left:128.331540px;}
.x11_c00379{left:180.639303px;}
.x10_c00379{left:227.773739px;}
.xd_c00379{left:253.542308px;}
.xc_c00379{left:269.015236px;}
.x14_c00379{left:284.809761px;}
.x15_c00379{left:316.116416px;}
.x12_c00379{left:381.246792px;}
.xe_c00379{left:423.021349px;}
.x13_c00379{left:443.679198px;}
.x2_c00379{left:454.705200px;}
.x3_c00379{left:521.636400px;}
.x4_c00379{left:529.551000px;}
.x5_c00379{left:551.500200px;}
.x6_c00379{left:559.418400px;}
.x7_c00379{left:568.413000px;}
.x8_c00379{left:573.449400px;}
.x9_c00379{left:586.047600px;}
.xa_c00379{left:618.071400px;}
.xb_c00379{left:751.212000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws0_c00379{word-spacing:-15.993060pt;}
.ws1_c00379{word-spacing:0.000000pt;}
._b_c00379{margin-left:-2.164323pt;}
._2_c00379{margin-left:-1.069307pt;}
._1_c00379{width:1.001210pt;}
._0_c00379{width:2.015262pt;}
._7_c00379{width:3.206438pt;}
._a_c00379{width:4.142726pt;}
._8_c00379{width:5.130318pt;}
._c_c00379{width:6.172582pt;}
._9_c00379{width:7.465810pt;}
._13_c00379{width:8.450169pt;}
._d_c00379{width:9.418476pt;}
._e_c00379{width:10.408992pt;}
._12_c00379{width:11.452002pt;}
._11_c00379{width:12.602857pt;}
._14_c00379{width:13.759363pt;}
._f_c00379{width:17.494609pt;}
._5_c00379{width:18.923125pt;}
._3_c00379{width:20.162763pt;}
._10_c00379{width:21.091016pt;}
._4_c00379{width:22.118781pt;}
._6_c00379{width:23.519394pt;}
.fs4_c00379{font-size:42.860676pt;}
.fs3_c00379{font-size:47.978381pt;}
.fs2_c00379{font-size:53.096085pt;}
.fs1_c00379{font-size:58.852776pt;}
.fs0_c00379{font-size:63.972241pt;}
.y0_c00379{bottom:0.000000pt;}
.y5_c00379{bottom:0.107500pt;}
.y9_c00379{bottom:0.494374pt;}
.y2_c00379{bottom:3.839332pt;}
.y4_c00379{bottom:3.839998pt;}
.yb_c00379{bottom:60.080535pt;}
.y3_c00379{bottom:66.651840pt;}
.y1_c00379{bottom:66.971840pt;}
.y2d_c00379{bottom:99.583052pt;}
.y2c_c00379{bottom:127.249975pt;}
.y2b_c00379{bottom:154.757430pt;}
.y2a_c00379{bottom:182.265552pt;}
.y29_c00379{bottom:209.932475pt;}
.y28_c00379{bottom:237.440597pt;}
.y27_c00379{bottom:265.108719pt;}
.y26_c00379{bottom:292.616175pt;}
.y25_c00379{bottom:327.158828pt;}
.y24_c00379{bottom:348.112153pt;}
.y23_c00379{bottom:381.374806pt;}
.y22_c00379{bottom:398.649066pt;}
.y21_c00379{bottom:431.593453pt;}
.y20_c00379{bottom:463.577440pt;}
.y1f_c00379{bottom:480.848100pt;}
.y1e_c00379{bottom:524.507416pt;}
.y1d_c00379{bottom:552.016738pt;}
.y1c_c00379{bottom:579.523660pt;}
.y1b_c00379{bottom:607.031783pt;}
.y1a_c00379{bottom:634.538705pt;}
.y19_c00379{bottom:662.046827pt;}
.y18_c00379{bottom:689.554950pt;}
.y17_c00379{bottom:717.061205pt;}
.y16_c00379{bottom:744.569328pt;}
.y15_c00379{bottom:779.117314pt;}
.y14_c00379{bottom:799.906639pt;}
.y13_c00379{bottom:834.926091pt;}
.y12_c00379{bottom:856.196083pt;}
.y11_c00379{bottom:888.661137pt;}
.y10_c00379{bottom:904.335530pt;}
.yf_c00379{bottom:920.167391pt;}
.ye_c00379{bottom:935.841784pt;}
.yd_c00379{bottom:951.516178pt;}
.yc_c00379{bottom:967.349238pt;}
.ya_c00379{bottom:983.182565pt;}
.y8_c00379{bottom:1023.551024pt;}
.y7_c00379{bottom:1041.942883pt;}
.y6_c00379{bottom:1060.334742pt;}
.h1_c00379{height:17.913120pt;}
.hc_c00379{height:27.473693pt;}
.hb_c00379{height:30.754142pt;}
.h6_c00379{height:34.034591pt;}
.h5_c00379{height:37.724630pt;}
.h2_c00379{height:44.780569pt;}
.h8_c00379{height:47.627189pt;}
.h7_c00379{height:52.908646pt;}
.h9_c00379{height:57.319128pt;}
.ha_c00379{height:57.383100pt;}
.h4_c00379{height:1122.161626pt;}
.h3_c00379{height:1122.559167pt;}
.h0_c00379{height:1122.666667pt;}
.w7_c00379{width:4.796800pt;}
.w3_c00379{width:7.035200pt;}
.w5_c00379{width:7.038400pt;}
.w6_c00379{width:7.995200pt;}
.w8_c00379{width:7.998400pt;}
.w1_c00379{width:16.313760pt;}
.w4_c00379{width:19.510400pt;}
.w9_c00379{width:24.945600pt;}
.wb_c00379{width:29.745600pt;}
.w2_c00379{width:59.494400pt;}
.wa_c00379{width:118.347200pt;}
.wd_c00379{width:792.977400pt;}
.wc_c00379{width:793.257550pt;}
.w0_c00379{width:793.333333pt;}
.x0_c00379{left:0.000000pt;}
.xf_c00379{left:101.233093pt;}
.x1_c00379{left:114.072480pt;}
.x11_c00379{left:160.568269pt;}
.x10_c00379{left:202.465546pt;}
.xd_c00379{left:225.370940pt;}
.xc_c00379{left:239.124654pt;}
.x14_c00379{left:253.164232pt;}
.x15_c00379{left:280.992370pt;}
.x12_c00379{left:338.886038pt;}
.xe_c00379{left:376.018977pt;}
.x13_c00379{left:394.381509pt;}
.x2_c00379{left:404.182400pt;}
.x3_c00379{left:463.676800pt;}
.x4_c00379{left:470.712000pt;}
.x5_c00379{left:490.222400pt;}
.x6_c00379{left:497.260800pt;}
.x7_c00379{left:505.256000pt;}
.x8_c00379{left:509.732800pt;}
.x9_c00379{left:520.931200pt;}
.xa_c00379{left:549.396800pt;}
.xb_c00379{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00380;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;line-height:1.115000;font-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_c00380{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls0_c00380{letter-spacing:0.000000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:-17.992193px;}
.ws1_c00380{word-spacing:0.000000px;}
._6_c00380{margin-left:-1.148562px;}
._1_c00380{width:1.126361px;}
._0_c00380{width:2.267170px;}
._2_c00380{width:4.497269px;}
._3_c00380{width:5.744217px;}
._8_c00380{width:6.855587px;}
._f_c00380{width:8.276059px;}
._e_c00380{width:9.344375px;}
._7_c00380{width:10.752420px;}
._4_c00380{width:12.628115px;}
._b_c00380{width:13.874647px;}
._a_c00380{width:14.893270px;}
._10_c00380{width:19.521530px;}
._5_c00380{width:22.374330px;}
._c_c00380{width:25.197249px;}
._d_c00380{width:26.242019px;}
._9_c00380{width:27.845103px;}
.fc1_c00380{color:rgb(105,148,45);}
.fc0_c00380{color:rgb(35,31,32);}
.fs3_c00380{font-size:48.218261px;}
.fs2_c00380{font-size:59.733096px;}
.fs1_c00380{font-size:66.209374px;}
.fs0_c00380{font-size:71.968771px;}
.y0_c00380{bottom:0.000000px;}
.y5_c00380{bottom:0.120938px;}
.y9_c00380{bottom:0.556171px;}
.y2_c00380{bottom:4.319248px;}
.y4_c00380{bottom:4.319998px;}
.yb_c00380{bottom:67.590602px;}
.y3_c00380{bottom:74.983320px;}
.y1_c00380{bottom:75.343320px;}
.y2a_c00380{bottom:113.649583px;}
.y29_c00380{bottom:144.774121px;}
.y28_c00380{bottom:175.720758px;}
.y27_c00380{bottom:210.084695px;}
.y26_c00380{bottom:236.714784px;}
.y25_c00380{bottom:267.840071px;}
.y24_c00380{bottom:298.786709px;}
.y23_c00380{bottom:329.912597px;}
.y22_c00380{bottom:360.857884px;}
.y21_c00380{bottom:391.984522px;}
.y20_c00380{bottom:422.931159px;}
.y1f_c00380{bottom:454.056447px;}
.y1e_c00380{bottom:485.002335px;}
.y1d_c00380{bottom:516.127622px;}
.y1c_c00380{bottom:547.074260px;}
.y1b_c00380{bottom:578.020897px;}
.y1a_c00380{bottom:609.145435px;}
.y19_c00380{bottom:640.092073px;}
.y18_c00380{bottom:685.072555px;}
.y17_c00380{bottom:722.496040px;}
.y16_c00380{bottom:741.925532px;}
.y15_c00380{bottom:789.963913px;}
.y14_c00380{bottom:820.911900px;}
.y13_c00380{bottom:852.037188px;}
.y12_c00380{bottom:882.982475px;}
.y11_c00380{bottom:914.111963px;}
.y10_c00380{bottom:952.970947px;}
.yf_c00380{bottom:976.540438px;}
.ye_c00380{bottom:1022.959119px;}
.yd_c00380{bottom:1054.082907px;}
.yc_c00380{bottom:1085.030895px;}
.ya_c00380{bottom:1106.080386px;}
.y8_c00380{bottom:1151.494902px;}
.y7_c00380{bottom:1172.185744px;}
.y6_c00380{bottom:1192.876585px;}
.h1_c00380{height:20.152260px;}
.ha_c00380{height:30.907905px;}
.h6_c00380{height:38.288915px;}
.h5_c00380{height:42.440208px;}
.h2_c00380{height:50.378140px;}
.h8_c00380{height:53.580587px;}
.h9_c00380{height:59.522227px;}
.h7_c00380{height:64.484019px;}
.h4_c00380{height:1262.431829px;}
.h3_c00380{height:1262.879062px;}
.h0_c00380{height:1263.000000px;}
.w7_c00380{width:5.396400px;}
.w3_c00380{width:7.914600px;}
.w5_c00380{width:7.918200px;}
.w6_c00380{width:8.994600px;}
.w8_c00380{width:8.998200px;}
.w1_c00380{width:17.992980px;}
.w4_c00380{width:21.949200px;}
.w9_c00380{width:28.063800px;}
.wb_c00380{width:33.463800px;}
.w2_c00380{width:66.931200px;}
.wa_c00380{width:133.140600px;}
.wd_c00380{width:892.099575px;}
.wc_c00380{width:892.414744px;}
.w0_c00380{width:892.500000px;}
.x0_c00380{left:0.000000px;}
.xf_c00380{left:113.887229px;}
.x1_c00380{left:128.331540px;}
.x10_c00380{left:180.639303px;}
.x11_c00380{left:218.779787px;}
.xd_c00380{left:253.542308px;}
.xc_c00380{left:269.015236px;}
.x12_c00380{left:385.385989px;}
.xe_c00380{left:423.021349px;}
.x2_c00380{left:454.705200px;}
.x3_c00380{left:521.636400px;}
.x4_c00380{left:529.551000px;}
.x5_c00380{left:551.500200px;}
.x6_c00380{left:559.418400px;}
.x7_c00380{left:568.413000px;}
.x8_c00380{left:573.449400px;}
.x9_c00380{left:586.047600px;}
.xa_c00380{left:618.071400px;}
.xb_c00380{left:751.212000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws0_c00380{word-spacing:-15.993060pt;}
.ws1_c00380{word-spacing:0.000000pt;}
._6_c00380{margin-left:-1.020944pt;}
._1_c00380{width:1.001210pt;}
._0_c00380{width:2.015262pt;}
._2_c00380{width:3.997572pt;}
._3_c00380{width:5.105971pt;}
._8_c00380{width:6.093855pt;}
._f_c00380{width:7.356497pt;}
._e_c00380{width:8.306111pt;}
._7_c00380{width:9.557707pt;}
._4_c00380{width:11.224991pt;}
._b_c00380{width:12.333019pt;}
._a_c00380{width:13.238462pt;}
._10_c00380{width:17.352471pt;}
._5_c00380{width:19.888294pt;}
._c_c00380{width:22.397554pt;}
._d_c00380{width:23.326239pt;}
._9_c00380{width:24.751203pt;}
.fs3_c00380{font-size:42.860676pt;}
.fs2_c00380{font-size:53.096085pt;}
.fs1_c00380{font-size:58.852776pt;}
.fs0_c00380{font-size:63.972241pt;}
.y0_c00380{bottom:0.000000pt;}
.y5_c00380{bottom:0.107500pt;}
.y9_c00380{bottom:0.494374pt;}
.y2_c00380{bottom:3.839332pt;}
.y4_c00380{bottom:3.839998pt;}
.yb_c00380{bottom:60.080535pt;}
.y3_c00380{bottom:66.651840pt;}
.y1_c00380{bottom:66.971840pt;}
.y2a_c00380{bottom:101.021852pt;}
.y29_c00380{bottom:128.688107pt;}
.y28_c00380{bottom:156.196230pt;}
.y27_c00380{bottom:186.741951pt;}
.y26_c00380{bottom:210.413141pt;}
.y25_c00380{bottom:238.080064pt;}
.y24_c00380{bottom:265.588186pt;}
.y23_c00380{bottom:293.255641pt;}
.y22_c00380{bottom:320.762564pt;}
.y21_c00380{bottom:348.430686pt;}
.y20_c00380{bottom:375.938808pt;}
.y1f_c00380{bottom:403.605731pt;}
.y1e_c00380{bottom:431.113186pt;}
.y1d_c00380{bottom:458.780109pt;}
.y1c_c00380{bottom:486.288231pt;}
.y1b_c00380{bottom:513.796353pt;}
.y1a_c00380{bottom:541.462609pt;}
.y19_c00380{bottom:568.970731pt;}
.y18_c00380{bottom:608.953382pt;}
.y17_c00380{bottom:642.218702pt;}
.y16_c00380{bottom:659.489362pt;}
.y15_c00380{bottom:702.190145pt;}
.y14_c00380{bottom:729.699467pt;}
.y13_c00380{bottom:757.366389pt;}
.y12_c00380{bottom:784.873311pt;}
.y11_c00380{bottom:812.543967pt;}
.y10_c00380{bottom:847.085287pt;}
.yf_c00380{bottom:868.035945pt;}
.ye_c00380{bottom:909.296995pt;}
.yd_c00380{bottom:936.962584pt;}
.yc_c00380{bottom:964.471906pt;}
.ya_c00380{bottom:983.182565pt;}
.y8_c00380{bottom:1023.551024pt;}
.y7_c00380{bottom:1041.942883pt;}
.y6_c00380{bottom:1060.334742pt;}
.h1_c00380{height:17.913120pt;}
.ha_c00380{height:27.473693pt;}
.h6_c00380{height:34.034591pt;}
.h5_c00380{height:37.724630pt;}
.h2_c00380{height:44.780569pt;}
.h8_c00380{height:47.627189pt;}
.h9_c00380{height:52.908646pt;}
.h7_c00380{height:57.319128pt;}
.h4_c00380{height:1122.161626pt;}
.h3_c00380{height:1122.559167pt;}
.h0_c00380{height:1122.666667pt;}
.w7_c00380{width:4.796800pt;}
.w3_c00380{width:7.035200pt;}
.w5_c00380{width:7.038400pt;}
.w6_c00380{width:7.995200pt;}
.w8_c00380{width:7.998400pt;}
.w1_c00380{width:15.993760pt;}
.w4_c00380{width:19.510400pt;}
.w9_c00380{width:24.945600pt;}
.wb_c00380{width:29.745600pt;}
.w2_c00380{width:59.494400pt;}
.wa_c00380{width:118.347200pt;}
.wd_c00380{width:792.977400pt;}
.wc_c00380{width:793.257550pt;}
.w0_c00380{width:793.333333pt;}
.x0_c00380{left:0.000000pt;}
.xf_c00380{left:101.233093pt;}
.x1_c00380{left:114.072480pt;}
.x10_c00380{left:160.568269pt;}
.x11_c00380{left:194.470922pt;}
.xd_c00380{left:225.370940pt;}
.xc_c00380{left:239.124654pt;}
.x12_c00380{left:342.565324pt;}
.xe_c00380{left:376.018977pt;}
.x2_c00380{left:404.182400pt;}
.x3_c00380{left:463.676800pt;}
.x4_c00380{left:470.712000pt;}
.x5_c00380{left:490.222400pt;}
.x6_c00380{left:497.260800pt;}
.x7_c00380{left:505.256000pt;}
.x8_c00380{left:509.732800pt;}
.x9_c00380{left:520.931200pt;}
.xa_c00380{left:549.396800pt;}
.xb_c00380{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00381;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;line-height:1.115000;font-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_c00381{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:-17.992193px;}
.ws1_c00381{word-spacing:0.000000px;}
._2_c00381{margin-left:-1.029546px;}
._1_c00381{width:1.126361px;}
._0_c00381{width:2.267170px;}
._b_c00381{width:4.198724px;}
._a_c00381{width:5.381972px;}
._9_c00381{width:7.535603px;}
._5_c00381{width:11.390220px;}
._4_c00381{width:12.849163px;}
._3_c00381{width:14.412898px;}
._8_c00381{width:19.330494px;}
._c_c00381{width:27.844887px;}
._d_c00381{width:28.957322px;}
._6_c00381{width:30.917662px;}
._7_c00381{width:32.300113px;}
.fc1_c00381{color:rgb(105,148,45);}
.fc0_c00381{color:rgb(35,31,32);}
.fs3_c00381{font-size:41.741203px;}
.fs4_c00381{font-size:48.218261px;}
.fs2_c00381{font-size:59.733096px;}
.fs1_c00381{font-size:66.209374px;}
.fs0_c00381{font-size:71.968771px;}
.y0_c00381{bottom:0.000000px;}
.y5_c00381{bottom:0.120938px;}
.y9_c00381{bottom:0.556171px;}
.y2_c00381{bottom:4.319248px;}
.y4_c00381{bottom:4.319998px;}
.yb_c00381{bottom:67.590602px;}
.y3_c00381{bottom:74.983320px;}
.y1_c00381{bottom:75.343320px;}
.y2c_c00381{bottom:101.953188px;}
.y2b_c00381{bottom:133.079825px;}
.y2a_c00381{bottom:164.025113px;}
.y29_c00381{bottom:195.151751px;}
.y28_c00381{bottom:231.856736px;}
.y27_c00381{bottom:251.109228px;}
.y26_c00381{bottom:286.729714px;}
.y25_c00381{bottom:355.279386px;}
.y24_c00381{bottom:386.406024px;}
.y23_c00381{bottom:417.351312px;}
.y22_c00381{bottom:448.477199px;}
.y21_c00381{bottom:479.423837px;}
.y20_c00381{bottom:510.549124px;}
.y1f_c00381{bottom:541.495762px;}
.y1e_c00381{bottom:572.622400px;}
.y1d_c00381{bottom:603.566937px;}
.y1c_c00381{bottom:634.693575px;}
.y1b_c00381{bottom:671.398560px;}
.y1a_c00381{bottom:690.648652px;}
.y19_c00381{bottom:725.554538px;}
.y18_c00381{bottom:752.180428px;}
.y17_c00381{bottom:783.307065px;}
.y16_c00381{bottom:814.253703px;}
.y15_c00381{bottom:845.378990px;}
.y14_c00381{bottom:876.326978px;}
.y13_c00381{bottom:895.574970px;}
.y12_c00381{bottom:909.791965px;}
.y11_c00381{bottom:926.164458px;}
.y10_c00381{bottom:961.604494px;}
.yf_c00381{bottom:992.012482px;}
.ye_c00381{bottom:1022.959119px;}
.yd_c00381{bottom:1054.082907px;}
.yc_c00381{bottom:1085.030895px;}
.ya_c00381{bottom:1106.080386px;}
.y8_c00381{bottom:1151.494902px;}
.y7_c00381{bottom:1172.185744px;}
.y6_c00381{bottom:1192.876585px;}
.h1_c00381{height:20.152260px;}
.ha_c00381{height:26.756111px;}
.hb_c00381{height:30.907905px;}
.h6_c00381{height:38.288915px;}
.h5_c00381{height:42.440208px;}
.h8_c00381{height:46.131982px;}
.h2_c00381{height:50.378140px;}
.h9_c00381{height:53.580587px;}
.hc_c00381{height:59.522227px;}
.h7_c00381{height:64.484019px;}
.h4_c00381{height:1262.431829px;}
.h3_c00381{height:1262.879062px;}
.h0_c00381{height:1263.000000px;}
.w7_c00381{width:5.396400px;}
.w3_c00381{width:7.914600px;}
.w5_c00381{width:7.918200px;}
.w6_c00381{width:8.994600px;}
.w8_c00381{width:8.998200px;}
.w1_c00381{width:17.992980px;}
.w4_c00381{width:21.949200px;}
.w9_c00381{width:28.063800px;}
.wb_c00381{width:33.463800px;}
.w2_c00381{width:66.931200px;}
.wa_c00381{width:133.140600px;}
.wd_c00381{width:892.099575px;}
.wc_c00381{width:892.414744px;}
.w0_c00381{width:892.500000px;}
.x0_c00381{left:0.000000px;}
.xf_c00381{left:113.887229px;}
.x1_c00381{left:128.331540px;}
.x10_c00381{left:180.633965px;}
.xd_c00381{left:253.542308px;}
.xc_c00381{left:269.015236px;}
.x11_c00381{left:299.382255px;}
.xe_c00381{left:423.021349px;}
.x2_c00381{left:454.705200px;}
.x3_c00381{left:521.636400px;}
.x4_c00381{left:529.551000px;}
.x5_c00381{left:551.500200px;}
.x6_c00381{left:559.418400px;}
.x7_c00381{left:568.413000px;}
.x8_c00381{left:573.449400px;}
.x9_c00381{left:586.047600px;}
.xa_c00381{left:618.071400px;}
.xb_c00381{left:751.212000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:-15.993060pt;}
.ws1_c00381{word-spacing:0.000000pt;}
._2_c00381{margin-left:-0.915152pt;}
._1_c00381{width:1.001210pt;}
._0_c00381{width:2.015262pt;}
._b_c00381{width:3.732199pt;}
._a_c00381{width:4.783975pt;}
._9_c00381{width:6.698313pt;}
._5_c00381{width:10.124640pt;}
._4_c00381{width:11.421478pt;}
._3_c00381{width:12.811465pt;}
._8_c00381{width:17.182661pt;}
._c_c00381{width:24.751011pt;}
._d_c00381{width:25.739842pt;}
._6_c00381{width:27.482366pt;}
._7_c00381{width:28.711211pt;}
.fs3_c00381{font-size:37.103292pt;}
.fs4_c00381{font-size:42.860676pt;}
.fs2_c00381{font-size:53.096085pt;}
.fs1_c00381{font-size:58.852776pt;}
.fs0_c00381{font-size:63.972241pt;}
.y0_c00381{bottom:0.000000pt;}
.y5_c00381{bottom:0.107500pt;}
.y9_c00381{bottom:0.494374pt;}
.y2_c00381{bottom:3.839332pt;}
.y4_c00381{bottom:3.839998pt;}
.yb_c00381{bottom:60.080535pt;}
.y3_c00381{bottom:66.651840pt;}
.y1_c00381{bottom:66.971840pt;}
.y2c_c00381{bottom:90.625056pt;}
.y2b_c00381{bottom:118.293178pt;}
.y2a_c00381{bottom:145.800100pt;}
.y29_c00381{bottom:173.468223pt;}
.y28_c00381{bottom:206.094876pt;}
.y27_c00381{bottom:223.208203pt;}
.y26_c00381{bottom:254.870857pt;}
.y25_c00381{bottom:315.803899pt;}
.y24_c00381{bottom:343.472021pt;}
.y23_c00381{bottom:370.978944pt;}
.y22_c00381{bottom:398.646399pt;}
.y21_c00381{bottom:426.154522pt;}
.y20_c00381{bottom:453.821444pt;}
.y1f_c00381{bottom:481.329566pt;}
.y1e_c00381{bottom:508.997688pt;}
.y1d_c00381{bottom:536.503944pt;}
.y1c_c00381{bottom:564.172066pt;}
.y1b_c00381{bottom:596.798720pt;}
.y1a_c00381{bottom:613.909913pt;}
.y19_c00381{bottom:644.937367pt;}
.y18_c00381{bottom:668.604825pt;}
.y17_c00381{bottom:696.272947pt;}
.y16_c00381{bottom:723.781069pt;}
.y15_c00381{bottom:751.447991pt;}
.y14_c00381{bottom:778.957314pt;}
.y13_c00381{bottom:796.066640pt;}
.y12_c00381{bottom:808.703969pt;}
.y11_c00381{bottom:823.257296pt;}
.y10_c00381{bottom:854.759550pt;}
.yf_c00381{bottom:881.788873pt;}
.ye_c00381{bottom:909.296995pt;}
.yd_c00381{bottom:936.962584pt;}
.yc_c00381{bottom:964.471906pt;}
.ya_c00381{bottom:983.182565pt;}
.y8_c00381{bottom:1023.551024pt;}
.y7_c00381{bottom:1041.942883pt;}
.y6_c00381{bottom:1060.334742pt;}
.h1_c00381{height:17.913120pt;}
.ha_c00381{height:23.783210pt;}
.hb_c00381{height:27.473693pt;}
.h6_c00381{height:34.034591pt;}
.h5_c00381{height:37.724630pt;}
.h8_c00381{height:41.006207pt;}
.h2_c00381{height:44.780569pt;}
.h9_c00381{height:47.627189pt;}
.hc_c00381{height:52.908646pt;}
.h7_c00381{height:57.319128pt;}
.h4_c00381{height:1122.161626pt;}
.h3_c00381{height:1122.559167pt;}
.h0_c00381{height:1122.666667pt;}
.w7_c00381{width:4.796800pt;}
.w3_c00381{width:7.035200pt;}
.w5_c00381{width:7.038400pt;}
.w6_c00381{width:7.995200pt;}
.w8_c00381{width:7.998400pt;}
.w1_c00381{width:15.993760pt;}
.w4_c00381{width:19.510400pt;}
.w9_c00381{width:24.945600pt;}
.wb_c00381{width:29.745600pt;}
.w2_c00381{width:59.494400pt;}
.wa_c00381{width:118.347200pt;}
.wd_c00381{width:792.977400pt;}
.wc_c00381{width:793.257550pt;}
.w0_c00381{width:793.333333pt;}
.x0_c00381{left:0.000000pt;}
.xf_c00381{left:101.233093pt;}
.x1_c00381{left:114.072480pt;}
.x10_c00381{left:160.563524pt;}
.xd_c00381{left:225.370940pt;}
.xc_c00381{left:239.124654pt;}
.x11_c00381{left:266.117560pt;}
.xe_c00381{left:376.018977pt;}
.x2_c00381{left:404.182400pt;}
.x3_c00381{left:463.676800pt;}
.x4_c00381{left:470.712000pt;}
.x5_c00381{left:490.222400pt;}
.x6_c00381{left:497.260800pt;}
.x7_c00381{left:505.256000pt;}
.x8_c00381{left:509.732800pt;}
.x9_c00381{left:520.931200pt;}
.xa_c00381{left:549.396800pt;}
.xb_c00381{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.113000;font-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_c00382{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls0_c00382{letter-spacing:0.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-17.992193px;}
.ws1_c00382{word-spacing:0.000000px;}
._4_c00382{margin-left:-1.444935px;}
._1_c00382{width:1.126361px;}
._0_c00382{width:2.267170px;}
._10_c00382{width:3.875576px;}
._9_c00382{width:4.938384px;}
._8_c00382{width:6.072371px;}
._d_c00382{width:7.909569px;}
._6_c00382{width:9.172913px;}
._5_c00382{width:10.199192px;}
._f_c00382{width:12.432745px;}
._e_c00382{width:13.439828px;}
._c_c00382{width:19.200784px;}
._2_c00382{width:20.506968px;}
._3_c00382{width:21.878657px;}
._7_c00382{width:23.263090px;}
._a_c00382{width:31.259433px;}
._b_c00382{width:32.400328px;}
._11_c00382{width:36.643540px;}
.fc1_c00382{color:rgb(105,148,45);}
.fc0_c00382{color:rgb(35,31,32);}
.fs2_c00382{font-size:59.733096px;}
.fs1_c00382{font-size:66.209374px;}
.fs0_c00382{font-size:71.968771px;}
.y0_c00382{bottom:0.000000px;}
.y5_c00382{bottom:0.120938px;}
.y9_c00382{bottom:0.556171px;}
.y2_c00382{bottom:4.319248px;}
.y4_c00382{bottom:4.319998px;}
.yb_c00382{bottom:67.590602px;}
.y3_c00382{bottom:74.983320px;}
.y1_c00382{bottom:75.343320px;}
.y28_c00382{bottom:98.537389px;}
.y27_c00382{bottom:129.664027px;}
.y26_c00382{bottom:160.609314px;}
.y25_c00382{bottom:191.735202px;}
.y24_c00382{bottom:222.681840px;}
.y23_c00382{bottom:253.807127px;}
.y22_c00382{bottom:284.753765px;}
.y21_c00382{bottom:315.699052px;}
.y20_c00382{bottom:346.825690px;}
.y1f_c00382{bottom:391.806172px;}
.y1e_c00382{bottom:438.224553px;}
.y1d_c00382{bottom:469.351191px;}
.y1c_c00382{bottom:500.296478px;}
.y1b_c00382{bottom:531.423116px;}
.y1a_c00382{bottom:576.400598px;}
.y19_c00382{bottom:622.818979px;}
.y18_c00382{bottom:653.944267px;}
.y17_c00382{bottom:684.890905px;}
.y16_c00382{bottom:715.837542px;}
.y15_c00382{bottom:760.816524px;}
.y14_c00382{bottom:807.416706px;}
.y13_c00382{bottom:838.359143px;}
.y12_c00382{bottom:869.488631px;}
.y11_c00382{bottom:900.433918px;}
.y10_c00382{bottom:931.560556px;}
.yf_c00382{bottom:962.506444px;}
.ye_c00382{bottom:1007.486926px;}
.yd_c00382{bottom:1054.082907px;}
.yc_c00382{bottom:1085.030895px;}
.ya_c00382{bottom:1106.080386px;}
.y8_c00382{bottom:1151.494902px;}
.y7_c00382{bottom:1172.185744px;}
.y6_c00382{bottom:1192.876585px;}
.h1_c00382{height:20.152260px;}
.h6_c00382{height:38.288915px;}
.h5_c00382{height:42.440208px;}
.h2_c00382{height:50.378140px;}
.h8_c00382{height:53.580587px;}
.h7_c00382{height:64.484019px;}
.h4_c00382{height:1262.431829px;}
.h3_c00382{height:1262.879062px;}
.h0_c00382{height:1263.000000px;}
.w7_c00382{width:5.396400px;}
.w3_c00382{width:7.914600px;}
.w5_c00382{width:7.918200px;}
.w6_c00382{width:8.994600px;}
.w8_c00382{width:8.998200px;}
.w1_c00382{width:17.992980px;}
.w4_c00382{width:21.949200px;}
.w9_c00382{width:28.063800px;}
.wb_c00382{width:33.463800px;}
.w2_c00382{width:66.931200px;}
.wa_c00382{width:133.140600px;}
.wd_c00382{width:892.099575px;}
.wc_c00382{width:892.414744px;}
.w0_c00382{width:892.500000px;}
.x0_c00382{left:0.000000px;}
.xf_c00382{left:113.887229px;}
.x1_c00382{left:128.331540px;}
.x10_c00382{left:180.639303px;}
.xd_c00382{left:253.542308px;}
.xc_c00382{left:269.015236px;}
.xe_c00382{left:423.021349px;}
.x2_c00382{left:454.705200px;}
.x3_c00382{left:521.636400px;}
.x4_c00382{left:529.551000px;}
.x5_c00382{left:551.500200px;}
.x6_c00382{left:559.418400px;}
.x7_c00382{left:568.413000px;}
.x8_c00382{left:573.449400px;}
.x9_c00382{left:586.047600px;}
.xa_c00382{left:618.071400px;}
.xb_c00382{left:751.212000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:-15.993060pt;}
.ws1_c00382{word-spacing:0.000000pt;}
._4_c00382{margin-left:-1.284387pt;}
._1_c00382{width:1.001210pt;}
._0_c00382{width:2.015262pt;}
._10_c00382{width:3.444956pt;}
._9_c00382{width:4.389674pt;}
._8_c00382{width:5.397663pt;}
._d_c00382{width:7.030728pt;}
._6_c00382{width:8.153701pt;}
._5_c00382{width:9.065948pt;}
._f_c00382{width:11.051329pt;}
._e_c00382{width:11.946513pt;}
._c_c00382{width:17.067363pt;}
._2_c00382{width:18.228416pt;}
._3_c00382{width:19.447695pt;}
._7_c00382{width:20.678303pt;}
._a_c00382{width:27.786163pt;}
._b_c00382{width:28.800291pt;}
._11_c00382{width:32.572036pt;}
.fs2_c00382{font-size:53.096085pt;}
.fs1_c00382{font-size:58.852776pt;}
.fs0_c00382{font-size:63.972241pt;}
.y0_c00382{bottom:0.000000pt;}
.y5_c00382{bottom:0.107500pt;}
.y9_c00382{bottom:0.494374pt;}
.y2_c00382{bottom:3.839332pt;}
.y4_c00382{bottom:3.839998pt;}
.yb_c00382{bottom:60.080535pt;}
.y3_c00382{bottom:66.651840pt;}
.y1_c00382{bottom:66.971840pt;}
.y28_c00382{bottom:87.588790pt;}
.y27_c00382{bottom:115.256913pt;}
.y26_c00382{bottom:142.763835pt;}
.y25_c00382{bottom:170.431291pt;}
.y24_c00382{bottom:197.939413pt;}
.y23_c00382{bottom:225.606335pt;}
.y22_c00382{bottom:253.114457pt;}
.y21_c00382{bottom:280.621380pt;}
.y20_c00382{bottom:308.289502pt;}
.y1f_c00382{bottom:348.272153pt;}
.y1e_c00382{bottom:389.532936pt;}
.y1d_c00382{bottom:417.201059pt;}
.y1c_c00382{bottom:444.707981pt;}
.y1b_c00382{bottom:472.376103pt;}
.y1a_c00382{bottom:512.356087pt;}
.y19_c00382{bottom:553.616871pt;}
.y18_c00382{bottom:581.283793pt;}
.y17_c00382{bottom:608.791915pt;}
.y16_c00382{bottom:636.300038pt;}
.y15_c00382{bottom:676.281355pt;}
.y14_c00382{bottom:717.703738pt;}
.y13_c00382{bottom:745.208127pt;}
.y12_c00382{bottom:772.878783pt;}
.y11_c00382{bottom:800.385705pt;}
.y10_c00382{bottom:828.053828pt;}
.yf_c00382{bottom:855.561283pt;}
.ye_c00382{bottom:895.543934pt;}
.yd_c00382{bottom:936.962584pt;}
.yc_c00382{bottom:964.471906pt;}
.ya_c00382{bottom:983.182565pt;}
.y8_c00382{bottom:1023.551024pt;}
.y7_c00382{bottom:1041.942883pt;}
.y6_c00382{bottom:1060.334742pt;}
.h1_c00382{height:17.913120pt;}
.h6_c00382{height:34.034591pt;}
.h5_c00382{height:37.724630pt;}
.h2_c00382{height:44.780569pt;}
.h8_c00382{height:47.627189pt;}
.h7_c00382{height:57.319128pt;}
.h4_c00382{height:1122.161626pt;}
.h3_c00382{height:1122.559167pt;}
.h0_c00382{height:1122.666667pt;}
.w7_c00382{width:4.796800pt;}
.w3_c00382{width:7.035200pt;}
.w5_c00382{width:7.038400pt;}
.w6_c00382{width:7.995200pt;}
.w8_c00382{width:7.998400pt;}
.w1_c00382{width:15.993760pt;}
.w4_c00382{width:19.510400pt;}
.w9_c00382{width:24.945600pt;}
.wb_c00382{width:29.745600pt;}
.w2_c00382{width:59.494400pt;}
.wa_c00382{width:118.347200pt;}
.wd_c00382{width:792.977400pt;}
.wc_c00382{width:793.257550pt;}
.w0_c00382{width:793.333333pt;}
.x0_c00382{left:0.000000pt;}
.xf_c00382{left:101.233093pt;}
.x1_c00382{left:114.072480pt;}
.x10_c00382{left:160.568269pt;}
.xd_c00382{left:225.370940pt;}
.xc_c00382{left:239.124654pt;}
.xe_c00382{left:376.018977pt;}
.x2_c00382{left:404.182400pt;}
.x3_c00382{left:463.676800pt;}
.x4_c00382{left:470.712000pt;}
.x5_c00382{left:490.222400pt;}
.x6_c00382{left:497.260800pt;}
.x7_c00382{left:505.256000pt;}
.x8_c00382{left:509.732800pt;}
.x9_c00382{left:520.931200pt;}
.xa_c00382{left:549.396800pt;}
.xb_c00382{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.113000;font-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_c00383{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:-17.992193px;}
.ws1_c00383{word-spacing:0.000000px;}
._10_c00383{margin-left:-10.622413px;}
._5_c00383{margin-left:-1.160003px;}
._1_c00383{width:1.126361px;}
._0_c00383{width:2.267170px;}
._b_c00383{width:3.291804px;}
._c_c00383{width:4.321625px;}
._d_c00383{width:5.410571px;}
._2_c00383{width:6.598716px;}
._a_c00383{width:9.879808px;}
._3_c00383{width:12.002402px;}
._4_c00383{width:13.149858px;}
._8_c00383{width:14.347261px;}
._9_c00383{width:15.864570px;}
._12_c00383{width:20.343563px;}
._11_c00383{width:22.306527px;}
._13_c00383{width:23.868165px;}
._7_c00383{width:25.675503px;}
._6_c00383{width:27.588567px;}
._e_c00383{width:28.876496px;}
._f_c00383{width:29.938217px;}
.fc1_c00383{color:rgb(105,148,45);}
.fc0_c00383{color:rgb(35,31,32);}
.fs2_c00383{font-size:59.733096px;}
.fs1_c00383{font-size:66.209374px;}
.fs0_c00383{font-size:71.968771px;}
.y0_c00383{bottom:0.000000px;}
.y5_c00383{bottom:0.120938px;}
.y9_c00383{bottom:0.556171px;}
.y2_c00383{bottom:4.319248px;}
.y4_c00383{bottom:4.319998px;}
.yb_c00383{bottom:67.590602px;}
.y3_c00383{bottom:74.983320px;}
.y1_c00383{bottom:75.343320px;}
.y2a_c00383{bottom:112.029584px;}
.y29_c00383{bottom:142.974871px;}
.y28_c00383{bottom:174.100759px;}
.y27_c00383{bottom:195.332050px;}
.y26_c00383{bottom:215.304242px;}
.y25_c00383{bottom:261.903524px;}
.y24_c00383{bottom:292.848061px;}
.y23_c00383{bottom:323.794699px;}
.y22_c00383{bottom:379.210677px;}
.y21_c00383{bottom:425.628458px;}
.y20_c00383{bottom:456.755096px;}
.y1f_c00383{bottom:487.700383px;}
.y1e_c00383{bottom:518.825671px;}
.y1d_c00383{bottom:549.770209px;}
.y1c_c00383{bottom:580.896846px;}
.y1b_c00383{bottom:611.843484px;}
.y1a_c00383{bottom:642.968771px;}
.y19_c00383{bottom:673.918259px;}
.y18_c00383{bottom:705.041447px;}
.y17_c00383{bottom:735.989434px;}
.y16_c00383{bottom:767.114722px;}
.y15_c00383{bottom:798.061359px;}
.y14_c00383{bottom:829.187997px;}
.y13_c00383{bottom:848.435914px;}
.y12_c00383{bottom:863.370283px;}
.y11_c00383{bottom:883.342475px;}
.y10_c00383{bottom:929.938607px;}
.yf_c00383{bottom:960.888094px;}
.ye_c00383{bottom:992.014732px;}
.yd_c00383{bottom:1022.957919px;}
.yc_c00383{bottom:1054.085907px;}
.ya_c00383{bottom:1106.080386px;}
.y8_c00383{bottom:1151.494902px;}
.y7_c00383{bottom:1172.185744px;}
.y6_c00383{bottom:1192.876585px;}
.h1_c00383{height:20.152260px;}
.h6_c00383{height:38.288915px;}
.h5_c00383{height:42.440208px;}
.h2_c00383{height:50.378140px;}
.h8_c00383{height:53.580587px;}
.h7_c00383{height:64.484019px;}
.h4_c00383{height:1262.431829px;}
.h3_c00383{height:1262.879062px;}
.h0_c00383{height:1263.000000px;}
.w7_c00383{width:5.396400px;}
.w3_c00383{width:7.914600px;}
.w5_c00383{width:7.918200px;}
.w6_c00383{width:8.994600px;}
.w8_c00383{width:8.998200px;}
.w1_c00383{width:17.992980px;}
.w4_c00383{width:21.949200px;}
.w9_c00383{width:28.063800px;}
.wb_c00383{width:33.463800px;}
.w2_c00383{width:66.931200px;}
.wa_c00383{width:133.140600px;}
.wd_c00383{width:892.099575px;}
.wc_c00383{width:892.414744px;}
.w0_c00383{width:892.500000px;}
.x0_c00383{left:0.000000px;}
.xf_c00383{left:113.887229px;}
.x1_c00383{left:128.331540px;}
.x10_c00383{left:180.639303px;}
.xd_c00383{left:253.542308px;}
.xc_c00383{left:269.015236px;}
.xe_c00383{left:423.021349px;}
.x2_c00383{left:454.705200px;}
.x3_c00383{left:521.636400px;}
.x4_c00383{left:529.551000px;}
.x5_c00383{left:551.500200px;}
.x6_c00383{left:559.418400px;}
.x7_c00383{left:568.413000px;}
.x8_c00383{left:573.449400px;}
.x9_c00383{left:586.047600px;}
.xa_c00383{left:618.071400px;}
.xb_c00383{left:751.212000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws0_c00383{word-spacing:-15.993060pt;}
.ws1_c00383{word-spacing:0.000000pt;}
._10_c00383{margin-left:-9.442145pt;}
._5_c00383{margin-left:-1.031114pt;}
._1_c00383{width:1.001210pt;}
._0_c00383{width:2.015262pt;}
._b_c00383{width:2.926048pt;}
._c_c00383{width:3.841445pt;}
._d_c00383{width:4.809396pt;}
._2_c00383{width:5.865526pt;}
._a_c00383{width:8.782051pt;}
._3_c00383{width:10.668801pt;}
._4_c00383{width:11.688762pt;}
._8_c00383{width:12.753120pt;}
._9_c00383{width:14.101840pt;}
._12_c00383{width:18.083167pt;}
._11_c00383{width:19.828024pt;}
._13_c00383{width:21.216147pt;}
._7_c00383{width:22.822669pt;}
._6_c00383{width:24.523170pt;}
._e_c00383{width:25.667997pt;}
._f_c00383{width:26.611749pt;}
.fs2_c00383{font-size:53.096085pt;}
.fs1_c00383{font-size:58.852776pt;}
.fs0_c00383{font-size:63.972241pt;}
.y0_c00383{bottom:0.000000pt;}
.y5_c00383{bottom:0.107500pt;}
.y9_c00383{bottom:0.494374pt;}
.y2_c00383{bottom:3.839332pt;}
.y4_c00383{bottom:3.839998pt;}
.yb_c00383{bottom:60.080535pt;}
.y3_c00383{bottom:66.651840pt;}
.y1_c00383{bottom:66.971840pt;}
.y2a_c00383{bottom:99.581852pt;}
.y29_c00383{bottom:127.088775pt;}
.y28_c00383{bottom:154.756230pt;}
.y27_c00383{bottom:173.628489pt;}
.y26_c00383{bottom:191.381549pt;}
.y25_c00383{bottom:232.803132pt;}
.y24_c00383{bottom:260.309388pt;}
.y23_c00383{bottom:287.817510pt;}
.y22_c00383{bottom:337.076157pt;}
.y21_c00383{bottom:378.336407pt;}
.y20_c00383{bottom:406.004530pt;}
.y1f_c00383{bottom:433.511452pt;}
.y1e_c00383{bottom:461.178374pt;}
.y1d_c00383{bottom:488.684630pt;}
.y1c_c00383{bottom:516.352752pt;}
.y1b_c00383{bottom:543.860875pt;}
.y1a_c00383{bottom:571.527797pt;}
.y19_c00383{bottom:599.038452pt;}
.y18_c00383{bottom:626.703508pt;}
.y17_c00383{bottom:654.212830pt;}
.y16_c00383{bottom:681.879753pt;}
.y15_c00383{bottom:709.387875pt;}
.y14_c00383{bottom:737.055997pt;}
.y13_c00383{bottom:754.165257pt;}
.y12_c00383{bottom:767.440252pt;}
.y11_c00383{bottom:785.193311pt;}
.y10_c00383{bottom:826.612095pt;}
.yf_c00383{bottom:854.122750pt;}
.ye_c00383{bottom:881.790873pt;}
.yd_c00383{bottom:909.295928pt;}
.yc_c00383{bottom:936.965251pt;}
.ya_c00383{bottom:983.182565pt;}
.y8_c00383{bottom:1023.551024pt;}
.y7_c00383{bottom:1041.942883pt;}
.y6_c00383{bottom:1060.334742pt;}
.h1_c00383{height:17.913120pt;}
.h6_c00383{height:34.034591pt;}
.h5_c00383{height:37.724630pt;}
.h2_c00383{height:44.780569pt;}
.h8_c00383{height:47.627189pt;}
.h7_c00383{height:57.319128pt;}
.h4_c00383{height:1122.161626pt;}
.h3_c00383{height:1122.559167pt;}
.h0_c00383{height:1122.666667pt;}
.w7_c00383{width:4.796800pt;}
.w3_c00383{width:7.035200pt;}
.w5_c00383{width:7.038400pt;}
.w6_c00383{width:7.995200pt;}
.w8_c00383{width:7.998400pt;}
.w1_c00383{width:15.993760pt;}
.w4_c00383{width:19.510400pt;}
.w9_c00383{width:24.945600pt;}
.wb_c00383{width:29.745600pt;}
.w2_c00383{width:59.494400pt;}
.wa_c00383{width:118.347200pt;}
.wd_c00383{width:792.977400pt;}
.wc_c00383{width:793.257550pt;}
.w0_c00383{width:793.333333pt;}
.x0_c00383{left:0.000000pt;}
.xf_c00383{left:101.233093pt;}
.x1_c00383{left:114.072480pt;}
.x10_c00383{left:160.568269pt;}
.xd_c00383{left:225.370940pt;}
.xc_c00383{left:239.124654pt;}
.xe_c00383{left:376.018977pt;}
.x2_c00383{left:404.182400pt;}
.x3_c00383{left:463.676800pt;}
.x4_c00383{left:470.712000pt;}
.x5_c00383{left:490.222400pt;}
.x6_c00383{left:497.260800pt;}
.x7_c00383{left:505.256000pt;}
.x8_c00383{left:509.732800pt;}
.x9_c00383{left:520.931200pt;}
.xa_c00383{left:549.396800pt;}
.xb_c00383{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.113000;font-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_c00384{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:-17.992193px;}
.ws1_c00384{word-spacing:0.000000px;}
._f_c00384{margin-left:-4.097265px;}
._3_c00384{margin-left:-2.586477px;}
._2_c00384{margin-left:-1.567101px;}
._1_c00384{width:1.126361px;}
._0_c00384{width:2.267170px;}
._d_c00384{width:3.504323px;}
._5_c00384{width:4.644338px;}
._4_c00384{width:5.782166px;}
._6_c00384{width:7.664749px;}
._c_c00384{width:9.077118px;}
._a_c00384{width:10.977987px;}
._b_c00384{width:12.019883px;}
._e_c00384{width:13.398377px;}
._8_c00384{width:15.285509px;}
._9_c00384{width:16.292741px;}
._7_c00384{width:22.172293px;}
.fc1_c00384{color:rgb(105,148,45);}
.fc0_c00384{color:rgb(35,31,32);}
.fs2_c00384{font-size:59.733096px;}
.fs1_c00384{font-size:66.209374px;}
.fs0_c00384{font-size:71.968771px;}
.y0_c00384{bottom:0.000000px;}
.y5_c00384{bottom:0.120938px;}
.y9_c00384{bottom:0.556171px;}
.y2_c00384{bottom:4.319248px;}
.y4_c00384{bottom:4.319998px;}
.yb_c00384{bottom:67.590602px;}
.y3_c00384{bottom:74.983320px;}
.y1_c00384{bottom:75.343320px;}
.y2d_c00384{bottom:83.601595px;}
.y2c_c00384{bottom:101.413788px;}
.y2b_c00384{bottom:119.046731px;}
.y2a_c00384{bottom:148.192919px;}
.y29_c00384{bottom:179.139557px;}
.y28_c00384{bottom:210.264094px;}
.y27_c00384{bottom:241.210732px;}
.y26_c00384{bottom:260.463524px;}
.y25_c00384{bottom:280.435716px;}
.y24_c00384{bottom:327.032898px;}
.y23_c00384{bottom:357.978185px;}
.y22_c00384{bottom:389.104073px;}
.y21_c00384{bottom:420.050711px;}
.y20_c00384{bottom:451.177348px;}
.y1f_c00384{bottom:482.122636px;}
.y1e_c00384{bottom:513.249273px;}
.y1d_c00384{bottom:544.193811px;}
.y1c_c00384{bottom:575.320448px;}
.y1b_c00384{bottom:606.265736px;}
.y1a_c00384{bottom:637.392374px;}
.y19_c00384{bottom:668.339011px;}
.y18_c00384{bottom:699.283549px;}
.y17_c00384{bottom:730.410186px;}
.y16_c00384{bottom:782.045566px;}
.y15_c00384{bottom:813.172203px;}
.y14_c00384{bottom:844.120191px;}
.y13_c00384{bottom:875.242628px;}
.y12_c00384{bottom:906.192116px;}
.y11_c00384{bottom:937.318754px;}
.y10_c00384{bottom:968.261941px;}
.yf_c00384{bottom:999.389929px;}
.ye_c00384{bottom:1018.644221px;}
.yd_c00384{bottom:1038.616413px;}
.yc_c00384{bottom:1085.030895px;}
.ya_c00384{bottom:1106.080386px;}
.y8_c00384{bottom:1151.494902px;}
.y7_c00384{bottom:1172.185744px;}
.y6_c00384{bottom:1192.876585px;}
.h1_c00384{height:20.152260px;}
.h6_c00384{height:38.288915px;}
.h5_c00384{height:42.440208px;}
.h2_c00384{height:50.378140px;}
.h8_c00384{height:53.580587px;}
.h7_c00384{height:64.484019px;}
.h4_c00384{height:1262.431829px;}
.h3_c00384{height:1262.879062px;}
.h0_c00384{height:1263.000000px;}
.w7_c00384{width:5.396400px;}
.w3_c00384{width:7.914600px;}
.w5_c00384{width:7.918200px;}
.w6_c00384{width:8.994600px;}
.w8_c00384{width:8.998200px;}
.w1_c00384{width:17.992980px;}
.w4_c00384{width:21.949200px;}
.w9_c00384{width:28.063800px;}
.wb_c00384{width:33.463800px;}
.w2_c00384{width:66.931200px;}
.wa_c00384{width:133.140600px;}
.wd_c00384{width:892.099575px;}
.wc_c00384{width:892.414744px;}
.w0_c00384{width:892.500000px;}
.x0_c00384{left:0.000000px;}
.xf_c00384{left:113.887229px;}
.x1_c00384{left:128.331540px;}
.x10_c00384{left:180.639303px;}
.xd_c00384{left:253.542308px;}
.xc_c00384{left:269.015236px;}
.xe_c00384{left:423.021349px;}
.x2_c00384{left:454.705200px;}
.x3_c00384{left:521.636400px;}
.x4_c00384{left:529.551000px;}
.x5_c00384{left:551.500200px;}
.x6_c00384{left:559.418400px;}
.x7_c00384{left:568.413000px;}
.x8_c00384{left:573.449400px;}
.x9_c00384{left:586.047600px;}
.xa_c00384{left:618.071400px;}
.xb_c00384{left:751.212000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws0_c00384{word-spacing:-15.993060pt;}
.ws1_c00384{word-spacing:0.000000pt;}
._f_c00384{margin-left:-3.642014pt;}
._3_c00384{margin-left:-2.299091pt;}
._2_c00384{margin-left:-1.392979pt;}
._1_c00384{width:1.001210pt;}
._0_c00384{width:2.015262pt;}
._d_c00384{width:3.114954pt;}
._5_c00384{width:4.128300pt;}
._4_c00384{width:5.139703pt;}
._6_c00384{width:6.813110pt;}
._c_c00384{width:8.068549pt;}
._a_c00384{width:9.758211pt;}
._b_c00384{width:10.684340pt;}
._e_c00384{width:11.909669pt;}
._8_c00384{width:13.587119pt;}
._9_c00384{width:14.482437pt;}
._7_c00384{width:19.708705pt;}
.fs2_c00384{font-size:53.096085pt;}
.fs1_c00384{font-size:58.852776pt;}
.fs0_c00384{font-size:63.972241pt;}
.y0_c00384{bottom:0.000000pt;}
.y5_c00384{bottom:0.107500pt;}
.y9_c00384{bottom:0.494374pt;}
.y2_c00384{bottom:3.839332pt;}
.y4_c00384{bottom:3.839998pt;}
.yb_c00384{bottom:60.080535pt;}
.y3_c00384{bottom:66.651840pt;}
.y1_c00384{bottom:66.971840pt;}
.y2d_c00384{bottom:74.312529pt;}
.y2c_c00384{bottom:90.145589pt;}
.y2b_c00384{bottom:105.819316pt;}
.y2a_c00384{bottom:131.727039pt;}
.y29_c00384{bottom:159.235162pt;}
.y28_c00384{bottom:186.901417pt;}
.y27_c00384{bottom:214.409540pt;}
.y26_c00384{bottom:231.523133pt;}
.y25_c00384{bottom:249.276192pt;}
.y24_c00384{bottom:290.695909pt;}
.y23_c00384{bottom:318.202831pt;}
.y22_c00384{bottom:345.870287pt;}
.y21_c00384{bottom:373.378409pt;}
.y20_c00384{bottom:401.046532pt;}
.y1f_c00384{bottom:428.553454pt;}
.y1e_c00384{bottom:456.221576pt;}
.y1d_c00384{bottom:483.727832pt;}
.y1c_c00384{bottom:511.395954pt;}
.y1b_c00384{bottom:538.902877pt;}
.y1a_c00384{bottom:566.570999pt;}
.y19_c00384{bottom:594.079121pt;}
.y18_c00384{bottom:621.585377pt;}
.y17_c00384{bottom:649.253499pt;}
.y16_c00384{bottom:695.151614pt;}
.y15_c00384{bottom:722.819736pt;}
.y14_c00384{bottom:750.329059pt;}
.y13_c00384{bottom:777.993448pt;}
.y12_c00384{bottom:805.504103pt;}
.y11_c00384{bottom:833.172225pt;}
.y10_c00384{bottom:860.677281pt;}
.yf_c00384{bottom:888.346603pt;}
.ye_c00384{bottom:905.461530pt;}
.yd_c00384{bottom:923.214589pt;}
.yc_c00384{bottom:964.471906pt;}
.ya_c00384{bottom:983.182565pt;}
.y8_c00384{bottom:1023.551024pt;}
.y7_c00384{bottom:1041.942883pt;}
.y6_c00384{bottom:1060.334742pt;}
.h1_c00384{height:17.913120pt;}
.h6_c00384{height:34.034591pt;}
.h5_c00384{height:37.724630pt;}
.h2_c00384{height:44.780569pt;}
.h8_c00384{height:47.627189pt;}
.h7_c00384{height:57.319128pt;}
.h4_c00384{height:1122.161626pt;}
.h3_c00384{height:1122.559167pt;}
.h0_c00384{height:1122.666667pt;}
.w7_c00384{width:4.796800pt;}
.w3_c00384{width:7.035200pt;}
.w5_c00384{width:7.038400pt;}
.w6_c00384{width:7.995200pt;}
.w8_c00384{width:7.998400pt;}
.w1_c00384{width:15.993760pt;}
.w4_c00384{width:19.510400pt;}
.w9_c00384{width:24.945600pt;}
.wb_c00384{width:29.745600pt;}
.w2_c00384{width:59.494400pt;}
.wa_c00384{width:118.347200pt;}
.wd_c00384{width:792.977400pt;}
.wc_c00384{width:793.257550pt;}
.w0_c00384{width:793.333333pt;}
.x0_c00384{left:0.000000pt;}
.xf_c00384{left:101.233093pt;}
.x1_c00384{left:114.072480pt;}
.x10_c00384{left:160.568269pt;}
.xd_c00384{left:225.370940pt;}
.xc_c00384{left:239.124654pt;}
.xe_c00384{left:376.018977pt;}
.x2_c00384{left:404.182400pt;}
.x3_c00384{left:463.676800pt;}
.x4_c00384{left:470.712000pt;}
.x5_c00384{left:490.222400pt;}
.x6_c00384{left:497.260800pt;}
.x7_c00384{left:505.256000pt;}
.x8_c00384{left:509.732800pt;}
.x9_c00384{left:520.931200pt;}
.xa_c00384{left:549.396800pt;}
.xb_c00384{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00385;src:url('chunks/assets/font_bc0162fe2c43e028c7f3270a.woff2')format("woff");}.ff6_c00385{font-family:ff6_c00385;line-height:0.632000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00385{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:-17.992193px;}
.ws1_c00385{word-spacing:0.000000px;}
._10_c00385{margin-left:-3.109485px;}
._15_c00385{margin-left:-2.059499px;}
._7_c00385{margin-left:-1.004567px;}
._1_c00385{width:1.126361px;}
._0_c00385{width:2.267170px;}
._6_c00385{width:4.224170px;}
._14_c00385{width:5.896611px;}
._b_c00385{width:6.961167px;}
._c_c00385{width:8.531148px;}
._5_c00385{width:9.631295px;}
._3_c00385{width:11.163411px;}
._2_c00385{width:12.292817px;}
._d_c00385{width:13.330850px;}
._4_c00385{width:14.779154px;}
._9_c00385{width:16.748494px;}
._8_c00385{width:18.999775px;}
._a_c00385{width:20.423091px;}
._f_c00385{width:22.157292px;}
._e_c00385{width:23.744308px;}
._11_c00385{width:30.310395px;}
._13_c00385{width:31.827137px;}
._12_c00385{width:33.020105px;}
.fc1_c00385{color:rgb(105,148,45);}
.fc0_c00385{color:rgb(35,31,32);}
.fs2_c00385{font-size:59.733096px;}
.fs1_c00385{font-size:66.209374px;}
.fs0_c00385{font-size:71.968771px;}
.y0_c00385{bottom:0.000000px;}
.y5_c00385{bottom:0.120938px;}
.y9_c00385{bottom:0.556171px;}
.y2_c00385{bottom:4.319248px;}
.y4_c00385{bottom:4.319998px;}
.yb_c00385{bottom:67.590602px;}
.y3_c00385{bottom:74.983320px;}
.y1_c00385{bottom:75.343320px;}
.y2b_c00385{bottom:93.499041px;}
.y2a_c00385{bottom:120.125681px;}
.y29_c00385{bottom:151.072318px;}
.y28_c00385{bottom:182.017606px;}
.y27_c00385{bottom:212.964243px;}
.y26_c00385{bottom:232.216736px;}
.y25_c00385{bottom:260.282174px;}
.y24_c00385{bottom:291.408812px;}
.y23_c00385{bottom:322.354700px;}
.y22_c00385{bottom:341.787342px;}
.y21_c00385{bottom:361.578184px;}
.y20_c00385{bottom:440.383352px;}
.y1f_c00385{bottom:471.328640px;}
.y1e_c00385{bottom:502.454528px;}
.y1d_c00385{bottom:533.401165px;}
.y1c_c00385{bottom:564.526453px;}
.y1b_c00385{bottom:595.473090px;}
.y1a_c00385{bottom:634.333575px;}
.y19_c00385{bottom:657.904565px;}
.y18_c00385{bottom:697.307450px;}
.y17_c00385{bottom:721.057540px;}
.y16_c00385{bottom:800.041359px;}
.y15_c00385{bottom:830.987996px;}
.y14_c00385{bottom:862.112534px;}
.y13_c00385{bottom:893.059171px;}
.y12_c00385{bottom:924.184459px;}
.y11_c00385{bottom:955.131097px;}
.y10_c00385{bottom:986.257734px;}
.yf_c00385{bottom:1017.202272px;}
.ye_c00385{bottom:1048.328909px;}
.yd_c00385{bottom:1067.578102px;}
.yc_c00385{bottom:1087.548194px;}
.ya_c00385{bottom:1106.080386px;}
.y8_c00385{bottom:1151.494902px;}
.y7_c00385{bottom:1172.185744px;}
.y6_c00385{bottom:1192.876585px;}
.h1_c00385{height:20.152260px;}
.ha_c00385{height:37.751317px;}
.h6_c00385{height:38.288915px;}
.h5_c00385{height:42.440208px;}
.hb_c00385{height:46.131982px;}
.h2_c00385{height:50.378140px;}
.h7_c00385{height:53.580587px;}
.h9_c00385{height:59.522227px;}
.h8_c00385{height:64.484019px;}
.h4_c00385{height:1262.431829px;}
.h3_c00385{height:1262.879062px;}
.h0_c00385{height:1263.000000px;}
.w7_c00385{width:5.396400px;}
.w3_c00385{width:7.914600px;}
.w5_c00385{width:7.918200px;}
.w6_c00385{width:8.994600px;}
.w8_c00385{width:8.998200px;}
.w1_c00385{width:17.992980px;}
.w4_c00385{width:21.949200px;}
.w9_c00385{width:28.063800px;}
.wb_c00385{width:33.463800px;}
.w2_c00385{width:66.931200px;}
.wa_c00385{width:133.140600px;}
.wd_c00385{width:892.099575px;}
.wc_c00385{width:892.414744px;}
.w0_c00385{width:892.500000px;}
.x0_c00385{left:0.000000px;}
.xf_c00385{left:113.887229px;}
.x1_c00385{left:128.331540px;}
.x10_c00385{left:180.639303px;}
.x11_c00385{left:227.778284px;}
.xd_c00385{left:253.542308px;}
.xc_c00385{left:269.015236px;}
.xe_c00385{left:423.021349px;}
.x2_c00385{left:454.705200px;}
.x3_c00385{left:521.636400px;}
.x4_c00385{left:529.551000px;}
.x5_c00385{left:551.500200px;}
.x6_c00385{left:559.418400px;}
.x7_c00385{left:568.413000px;}
.x8_c00385{left:573.449400px;}
.x9_c00385{left:586.047600px;}
.xa_c00385{left:618.071400px;}
.xb_c00385{left:751.212000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws0_c00385{word-spacing:-15.993060pt;}
.ws1_c00385{word-spacing:0.000000pt;}
._10_c00385{margin-left:-2.763986pt;}
._15_c00385{margin-left:-1.830665pt;}
._7_c00385{margin-left:-0.892948pt;}
._1_c00385{width:1.001210pt;}
._0_c00385{width:2.015262pt;}
._6_c00385{width:3.754818pt;}
._14_c00385{width:5.241432pt;}
._b_c00385{width:6.187704pt;}
._c_c00385{width:7.583243pt;}
._5_c00385{width:8.561151pt;}
._3_c00385{width:9.923032pt;}
._2_c00385{width:10.926948pt;}
._d_c00385{width:11.849645pt;}
._4_c00385{width:13.137026pt;}
._9_c00385{width:14.887550pt;}
._8_c00385{width:16.888688pt;}
._a_c00385{width:18.153858pt;}
._f_c00385{width:19.695371pt;}
._e_c00385{width:21.106052pt;}
._11_c00385{width:26.942574pt;}
._13_c00385{width:28.290788pt;}
._12_c00385{width:29.351204pt;}
.fs2_c00385{font-size:53.096085pt;}
.fs1_c00385{font-size:58.852776pt;}
.fs0_c00385{font-size:63.972241pt;}
.y0_c00385{bottom:0.000000pt;}
.y5_c00385{bottom:0.107500pt;}
.y9_c00385{bottom:0.494374pt;}
.y2_c00385{bottom:3.839332pt;}
.y4_c00385{bottom:3.839998pt;}
.yb_c00385{bottom:60.080535pt;}
.y3_c00385{bottom:66.651840pt;}
.y1_c00385{bottom:66.971840pt;}
.y2b_c00385{bottom:83.110259pt;}
.y2a_c00385{bottom:106.778383pt;}
.y29_c00385{bottom:134.286505pt;}
.y28_c00385{bottom:161.793427pt;}
.y27_c00385{bottom:189.301550pt;}
.y26_c00385{bottom:206.414876pt;}
.y25_c00385{bottom:231.361933pt;}
.y24_c00385{bottom:259.030055pt;}
.y23_c00385{bottom:286.537511pt;}
.y22_c00385{bottom:303.810971pt;}
.y21_c00385{bottom:321.402830pt;}
.y20_c00385{bottom:391.451869pt;}
.y1f_c00385{bottom:418.958791pt;}
.y1e_c00385{bottom:446.626247pt;}
.y1d_c00385{bottom:474.134369pt;}
.y1c_c00385{bottom:501.801291pt;}
.y1b_c00385{bottom:529.309414pt;}
.y1a_c00385{bottom:563.852067pt;}
.y19_c00385{bottom:584.804058pt;}
.y18_c00385{bottom:619.828844pt;}
.y17_c00385{bottom:640.940036pt;}
.y16_c00385{bottom:711.147874pt;}
.y15_c00385{bottom:738.655997pt;}
.y14_c00385{bottom:766.322252pt;}
.y13_c00385{bottom:793.830375pt;}
.y12_c00385{bottom:821.497297pt;}
.y11_c00385{bottom:849.005419pt;}
.y10_c00385{bottom:876.673541pt;}
.yf_c00385{bottom:904.179797pt;}
.ye_c00385{bottom:931.847919pt;}
.yd_c00385{bottom:948.958312pt;}
.yc_c00385{bottom:966.709505pt;}
.ya_c00385{bottom:983.182565pt;}
.y8_c00385{bottom:1023.551024pt;}
.y7_c00385{bottom:1041.942883pt;}
.y6_c00385{bottom:1060.334742pt;}
.h1_c00385{height:17.913120pt;}
.ha_c00385{height:33.556726pt;}
.h6_c00385{height:34.034591pt;}
.h5_c00385{height:37.724630pt;}
.hb_c00385{height:41.006207pt;}
.h2_c00385{height:44.780569pt;}
.h7_c00385{height:47.627189pt;}
.h9_c00385{height:52.908646pt;}
.h8_c00385{height:57.319128pt;}
.h4_c00385{height:1122.161626pt;}
.h3_c00385{height:1122.559167pt;}
.h0_c00385{height:1122.666667pt;}
.w7_c00385{width:4.796800pt;}
.w3_c00385{width:7.035200pt;}
.w5_c00385{width:7.038400pt;}
.w6_c00385{width:7.995200pt;}
.w8_c00385{width:7.998400pt;}
.w1_c00385{width:15.993760pt;}
.w4_c00385{width:19.510400pt;}
.w9_c00385{width:24.945600pt;}
.wb_c00385{width:29.745600pt;}
.w2_c00385{width:59.494400pt;}
.wa_c00385{width:118.347200pt;}
.wd_c00385{width:792.977400pt;}
.wc_c00385{width:793.257550pt;}
.w0_c00385{width:793.333333pt;}
.x0_c00385{left:0.000000pt;}
.xf_c00385{left:101.233093pt;}
.x1_c00385{left:114.072480pt;}
.x10_c00385{left:160.568269pt;}
.x11_c00385{left:202.469586pt;}
.xd_c00385{left:225.370940pt;}
.xc_c00385{left:239.124654pt;}
.xe_c00385{left:376.018977pt;}
.x2_c00385{left:404.182400pt;}
.x3_c00385{left:463.676800pt;}
.x4_c00385{left:470.712000pt;}
.x5_c00385{left:490.222400pt;}
.x6_c00385{left:497.260800pt;}
.x7_c00385{left:505.256000pt;}
.x8_c00385{left:509.732800pt;}
.x9_c00385{left:520.931200pt;}
.xa_c00385{left:549.396800pt;}
.xb_c00385{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00386{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls0_c00386{letter-spacing:0.000000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:-17.992193px;}
.ws1_c00386{word-spacing:0.000000px;}
._10_c00386{margin-left:-3.851112px;}
._7_c00386{margin-left:-2.837658px;}
._8_c00386{margin-left:-1.344563px;}
._1_c00386{width:1.126361px;}
._0_c00386{width:2.267170px;}
._d_c00386{width:4.061304px;}
._11_c00386{width:5.532186px;}
._4_c00386{width:7.490746px;}
._3_c00386{width:8.554293px;}
._2_c00386{width:10.132226px;}
._c_c00386{width:11.837208px;}
._a_c00386{width:13.293883px;}
._b_c00386{width:14.297181px;}
._e_c00386{width:16.134585px;}
._14_c00386{width:19.700071px;}
._15_c00386{width:20.742964px;}
._12_c00386{width:22.329126px;}
._13_c00386{width:23.358995px;}
._f_c00386{width:24.904071px;}
._5_c00386{width:27.115473px;}
._9_c00386{width:28.185805px;}
._6_c00386{width:29.419476px;}
.fc1_c00386{color:rgb(105,148,45);}
.fc0_c00386{color:rgb(35,31,32);}
.fs2_c00386{font-size:59.733096px;}
.fs1_c00386{font-size:66.209374px;}
.fs0_c00386{font-size:71.968771px;}
.y0_c00386{bottom:0.000000px;}
.y5_c00386{bottom:0.120938px;}
.y9_c00386{bottom:0.556171px;}
.y2_c00386{bottom:4.319248px;}
.y4_c00386{bottom:4.319998px;}
.yb_c00386{bottom:67.590602px;}
.y3_c00386{bottom:74.983320px;}
.y1_c00386{bottom:75.343320px;}
.y2a_c00386{bottom:232.035686px;}
.y29_c00386{bottom:262.981573px;}
.y28_c00386{bottom:294.108211px;}
.y27_c00386{bottom:313.359503px;}
.y26_c00386{bottom:333.331695px;}
.y25_c00386{bottom:379.750377px;}
.y24_c00386{bottom:410.698364px;}
.y23_c00386{bottom:441.645002px;}
.y22_c00386{bottom:472.590290px;}
.y21_c00386{bottom:503.536177px;}
.y20_c00386{bottom:534.481465px;}
.y1f_c00386{bottom:565.428102px;}
.y1e_c00386{bottom:584.675345px;}
.y1d_c00386{bottom:604.647537px;}
.y1c_c00386{bottom:639.372073px;}
.y1b_c00386{bottom:666.178712px;}
.y1a_c00386{bottom:697.125350px;}
.y19_c00386{bottom:728.249887px;}
.y18_c00386{bottom:759.196525px;}
.y17_c00386{bottom:778.629317px;}
.y16_c00386{bottom:798.421509px;}
.y15_c00386{bottom:833.324545px;}
.y14_c00386{bottom:859.953285px;}
.y13_c00386{bottom:891.079172px;}
.y12_c00386{bottom:922.024460px;}
.y11_c00386{bottom:952.971097px;}
.y10_c00386{bottom:986.257734px;}
.yf_c00386{bottom:1017.202272px;}
.ye_c00386{bottom:1048.328909px;}
.yd_c00386{bottom:1067.578102px;}
.yc_c00386{bottom:1087.548194px;}
.ya_c00386{bottom:1106.080386px;}
.y8_c00386{bottom:1151.494902px;}
.y7_c00386{bottom:1172.185744px;}
.y6_c00386{bottom:1192.876585px;}
.h1_c00386{height:20.152260px;}
.h6_c00386{height:38.288915px;}
.h5_c00386{height:42.440208px;}
.h9_c00386{height:46.131982px;}
.h2_c00386{height:50.378140px;}
.h7_c00386{height:53.580587px;}
.h8_c00386{height:64.484019px;}
.h4_c00386{height:1262.431829px;}
.h3_c00386{height:1262.879062px;}
.h0_c00386{height:1263.000000px;}
.w7_c00386{width:5.396400px;}
.w3_c00386{width:7.914600px;}
.w5_c00386{width:7.918200px;}
.w6_c00386{width:8.994600px;}
.w8_c00386{width:8.998200px;}
.w1_c00386{width:17.992980px;}
.w4_c00386{width:21.949200px;}
.w9_c00386{width:28.063800px;}
.wb_c00386{width:33.463800px;}
.w2_c00386{width:66.931200px;}
.wa_c00386{width:133.140600px;}
.wd_c00386{width:892.099575px;}
.wc_c00386{width:892.414744px;}
.w0_c00386{width:892.500000px;}
.x0_c00386{left:0.000000px;}
.xf_c00386{left:113.887229px;}
.x1_c00386{left:128.331540px;}
.x10_c00386{left:180.639303px;}
.xd_c00386{left:253.542308px;}
.xc_c00386{left:269.015236px;}
.xe_c00386{left:423.021349px;}
.x2_c00386{left:454.705200px;}
.x3_c00386{left:521.636400px;}
.x4_c00386{left:529.551000px;}
.x5_c00386{left:551.500200px;}
.x6_c00386{left:559.418400px;}
.x7_c00386{left:568.413000px;}
.x8_c00386{left:573.449400px;}
.x9_c00386{left:586.047600px;}
.xa_c00386{left:618.071400px;}
.xb_c00386{left:751.212000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws0_c00386{word-spacing:-15.993060pt;}
.ws1_c00386{word-spacing:0.000000pt;}
._10_c00386{margin-left:-3.423211pt;}
._7_c00386{margin-left:-2.522363pt;}
._8_c00386{margin-left:-1.195167pt;}
._1_c00386{width:1.001210pt;}
._0_c00386{width:2.015262pt;}
._d_c00386{width:3.610048pt;}
._11_c00386{width:4.917498pt;}
._4_c00386{width:6.658441pt;}
._3_c00386{width:7.603816pt;}
._2_c00386{width:9.006423pt;}
._c_c00386{width:10.521963pt;}
._a_c00386{width:11.816785pt;}
._b_c00386{width:12.708605pt;}
._e_c00386{width:14.341853pt;}
._14_c00386{width:17.511174pt;}
._15_c00386{width:18.438190pt;}
._12_c00386{width:19.848112pt;}
._13_c00386{width:20.763551pt;}
._f_c00386{width:22.136952pt;}
._5_c00386{width:24.102643pt;}
._9_c00386{width:25.054049pt;}
._6_c00386{width:26.150645pt;}
.fs2_c00386{font-size:53.096085pt;}
.fs1_c00386{font-size:58.852776pt;}
.fs0_c00386{font-size:63.972241pt;}
.y0_c00386{bottom:0.000000pt;}
.y5_c00386{bottom:0.107500pt;}
.y9_c00386{bottom:0.494374pt;}
.y2_c00386{bottom:3.839332pt;}
.y4_c00386{bottom:3.839998pt;}
.yb_c00386{bottom:60.080535pt;}
.y3_c00386{bottom:66.651840pt;}
.y1_c00386{bottom:66.971840pt;}
.y2a_c00386{bottom:206.253943pt;}
.y29_c00386{bottom:233.761399pt;}
.y28_c00386{bottom:261.429521pt;}
.y27_c00386{bottom:278.541781pt;}
.y26_c00386{bottom:296.294840pt;}
.y25_c00386{bottom:337.555890pt;}
.y24_c00386{bottom:365.065213pt;}
.y23_c00386{bottom:392.573335pt;}
.y22_c00386{bottom:420.080257pt;}
.y21_c00386{bottom:447.587713pt;}
.y20_c00386{bottom:475.094635pt;}
.y1f_c00386{bottom:502.602758pt;}
.y1e_c00386{bottom:519.711418pt;}
.y1d_c00386{bottom:537.464477pt;}
.y1c_c00386{bottom:568.330731pt;}
.y1b_c00386{bottom:592.158855pt;}
.y1a_c00386{bottom:619.666978pt;}
.y19_c00386{bottom:647.333233pt;}
.y18_c00386{bottom:674.841355pt;}
.y17_c00386{bottom:692.114949pt;}
.y16_c00386{bottom:709.708008pt;}
.y15_c00386{bottom:740.732929pt;}
.y14_c00386{bottom:764.402920pt;}
.y13_c00386{bottom:792.070375pt;}
.y12_c00386{bottom:819.577298pt;}
.y11_c00386{bottom:847.085420pt;}
.y10_c00386{bottom:876.673541pt;}
.yf_c00386{bottom:904.179797pt;}
.ye_c00386{bottom:931.847919pt;}
.yd_c00386{bottom:948.958312pt;}
.yc_c00386{bottom:966.709505pt;}
.ya_c00386{bottom:983.182565pt;}
.y8_c00386{bottom:1023.551024pt;}
.y7_c00386{bottom:1041.942883pt;}
.y6_c00386{bottom:1060.334742pt;}
.h1_c00386{height:17.913120pt;}
.h6_c00386{height:34.034591pt;}
.h5_c00386{height:37.724630pt;}
.h9_c00386{height:41.006207pt;}
.h2_c00386{height:44.780569pt;}
.h7_c00386{height:47.627189pt;}
.h8_c00386{height:57.319128pt;}
.h4_c00386{height:1122.161626pt;}
.h3_c00386{height:1122.559167pt;}
.h0_c00386{height:1122.666667pt;}
.w7_c00386{width:4.796800pt;}
.w3_c00386{width:7.035200pt;}
.w5_c00386{width:7.038400pt;}
.w6_c00386{width:7.995200pt;}
.w8_c00386{width:7.998400pt;}
.w1_c00386{width:15.993760pt;}
.w4_c00386{width:19.510400pt;}
.w9_c00386{width:24.945600pt;}
.wb_c00386{width:29.745600pt;}
.w2_c00386{width:59.494400pt;}
.wa_c00386{width:118.347200pt;}
.wd_c00386{width:792.977400pt;}
.wc_c00386{width:793.257550pt;}
.w0_c00386{width:793.333333pt;}
.x0_c00386{left:0.000000pt;}
.xf_c00386{left:101.233093pt;}
.x1_c00386{left:114.072480pt;}
.x10_c00386{left:160.568269pt;}
.xd_c00386{left:225.370940pt;}
.xc_c00386{left:239.124654pt;}
.xe_c00386{left:376.018977pt;}
.x2_c00386{left:404.182400pt;}
.x3_c00386{left:463.676800pt;}
.x4_c00386{left:470.712000pt;}
.x5_c00386{left:490.222400pt;}
.x6_c00386{left:497.260800pt;}
.x7_c00386{left:505.256000pt;}
.x8_c00386{left:509.732800pt;}
.x9_c00386{left:520.931200pt;}
.xa_c00386{left:549.396800pt;}
.xb_c00386{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00387{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.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:-17.992193px;}
.ws1_c00387{word-spacing:0.000000px;}
._e_c00387{margin-left:-3.653461px;}
._f_c00387{margin-left:-2.593462px;}
._5_c00387{margin-left:-1.106461px;}
._1_c00387{width:1.126361px;}
._0_c00387{width:2.267170px;}
._11_c00387{width:3.332951px;}
._c_c00387{width:4.386638px;}
._d_c00387{width:5.521146px;}
._12_c00387{width:7.032418px;}
._8_c00387{width:8.035913px;}
._6_c00387{width:9.068306px;}
._7_c00387{width:10.139416px;}
._3_c00387{width:11.794193px;}
._2_c00387{width:12.944829px;}
._4_c00387{width:14.682736px;}
._9_c00387{width:15.739336px;}
._b_c00387{width:20.084360px;}
._a_c00387{width:21.711964px;}
._14_c00387{width:24.453926px;}
._13_c00387{width:25.705735px;}
._15_c00387{width:26.826224px;}
._10_c00387{width:59.575241px;}
.fc1_c00387{color:rgb(105,148,45);}
.fc0_c00387{color:rgb(35,31,32);}
.fs5_c00387{font-size:38.862464px;}
.fs3_c00387{font-size:41.741203px;}
.fs4_c00387{font-size:48.218261px;}
.fs2_c00387{font-size:59.733096px;}
.fs1_c00387{font-size:66.209374px;}
.fs0_c00387{font-size:71.968771px;}
.y0_c00387{bottom:0.000000px;}
.y5_c00387{bottom:0.120938px;}
.y9_c00387{bottom:0.556171px;}
.y2_c00387{bottom:4.319248px;}
.y4_c00387{bottom:4.319998px;}
.yb_c00387{bottom:67.590602px;}
.y3_c00387{bottom:74.983320px;}
.y1_c00387{bottom:75.343320px;}
.y33_c00387{bottom:127.684148px;}
.y32_c00387{bottom:142.617107px;}
.y31_c00387{bottom:157.730800px;}
.y30_c00387{bottom:172.663760px;}
.y2f_c00387{bottom:199.291299px;}
.y2e_c00387{bottom:230.416586px;}
.y2d_c00387{bottom:261.363224px;}
.y2c_c00387{bottom:280.795716px;}
.y2b_c00387{bottom:308.860555px;}
.y2a_c00387{bottom:339.808543px;}
.y29_c00387{bottom:361.938634px;}
.y28_c00387{bottom:380.650826px;}
.y27_c00387{bottom:411.957464px;}
.y26_c00387{bottom:442.902001px;}
.y25_c00387{bottom:474.028639px;}
.y24_c00387{bottom:504.973627px;}
.y23_c00387{bottom:523.324619px;}
.y22_c00387{bottom:536.277114px;}
.y21_c00387{bottom:554.271107px;}
.y20_c00387{bottom:567.228102px;}
.y1f_c00387{bottom:586.476094px;}
.y1e_c00387{bottom:614.542883px;}
.y1d_c00387{bottom:645.667420px;}
.y1c_c00387{bottom:676.614058px;}
.y1b_c00387{bottom:695.865350px;}
.y1a_c00387{bottom:715.837542px;}
.y19_c00387{bottom:751.102528px;}
.y18_c00387{bottom:780.069167px;}
.y17_c00387{bottom:811.195804px;}
.y16_c00387{bottom:842.140342px;}
.y15_c00387{bottom:873.266979px;}
.y14_c00387{bottom:892.519772px;}
.y13_c00387{bottom:912.491964px;}
.y12_c00387{bottom:947.570950px;}
.y11_c00387{bottom:975.824488px;}
.y10_c00387{bottom:1006.769776px;}
.yf_c00387{bottom:1037.896413px;}
.ye_c00387{bottom:1057.142906px;}
.yd_c00387{bottom:1071.178400px;}
.yc_c00387{bottom:1087.548194px;}
.ya_c00387{bottom:1106.080386px;}
.y8_c00387{bottom:1151.494902px;}
.y7_c00387{bottom:1172.185744px;}
.y6_c00387{bottom:1192.876585px;}
.h1_c00387{height:20.152260px;}
.hb_c00387{height:24.910840px;}
.h8_c00387{height:26.756111px;}
.ha_c00387{height:30.907905px;}
.h6_c00387{height:38.288915px;}
.h5_c00387{height:42.440208px;}
.hc_c00387{height:46.131982px;}
.h2_c00387{height:50.378140px;}
.h7_c00387{height:53.580587px;}
.h9_c00387{height:64.484019px;}
.h4_c00387{height:1262.431829px;}
.h3_c00387{height:1262.879062px;}
.h0_c00387{height:1263.000000px;}
.w7_c00387{width:5.396400px;}
.w3_c00387{width:7.914600px;}
.w5_c00387{width:7.918200px;}
.w6_c00387{width:8.994600px;}
.w8_c00387{width:8.998200px;}
.w1_c00387{width:17.992980px;}
.w4_c00387{width:21.949200px;}
.w9_c00387{width:28.063800px;}
.wb_c00387{width:33.463800px;}
.w2_c00387{width:66.931200px;}
.wa_c00387{width:133.140600px;}
.wd_c00387{width:892.099575px;}
.wc_c00387{width:892.414744px;}
.w0_c00387{width:892.500000px;}
.x0_c00387{left:0.000000px;}
.xf_c00387{left:113.887229px;}
.x1_c00387{left:128.331540px;}
.x11_c00387{left:154.549813px;}
.x10_c00387{left:180.639303px;}
.xd_c00387{left:253.542308px;}
.xc_c00387{left:269.015236px;}
.xe_c00387{left:423.021349px;}
.x2_c00387{left:454.705200px;}
.x3_c00387{left:521.636400px;}
.x4_c00387{left:529.551000px;}
.x5_c00387{left:551.500200px;}
.x6_c00387{left:559.418400px;}
.x7_c00387{left:568.413000px;}
.x8_c00387{left:573.449400px;}
.x9_c00387{left:586.047600px;}
.xa_c00387{left:618.071400px;}
.x12_c00387{left:688.188100px;}
.xb_c00387{left:751.212000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws0_c00387{word-spacing:-15.993060pt;}
.ws1_c00387{word-spacing:0.000000pt;}
._e_c00387{margin-left:-3.247521pt;}
._f_c00387{margin-left:-2.305299pt;}
._5_c00387{margin-left:-0.983521pt;}
._1_c00387{width:1.001210pt;}
._0_c00387{width:2.015262pt;}
._11_c00387{width:2.962623pt;}
._c_c00387{width:3.899234pt;}
._d_c00387{width:4.907685pt;}
._12_c00387{width:6.251038pt;}
._8_c00387{width:7.143034pt;}
._6_c00387{width:8.060717pt;}
._7_c00387{width:9.012814pt;}
._3_c00387{width:10.483727pt;}
._2_c00387{width:11.506515pt;}
._4_c00387{width:13.051321pt;}
._9_c00387{width:13.990521pt;}
._b_c00387{width:17.852764pt;}
._a_c00387{width:19.299524pt;}
._14_c00387{width:21.736824pt;}
._13_c00387{width:22.849542pt;}
._15_c00387{width:23.845533pt;}
._10_c00387{width:52.955770pt;}
.fs5_c00387{font-size:34.544413pt;}
.fs3_c00387{font-size:37.103292pt;}
.fs4_c00387{font-size:42.860676pt;}
.fs2_c00387{font-size:53.096085pt;}
.fs1_c00387{font-size:58.852776pt;}
.fs0_c00387{font-size:63.972241pt;}
.y0_c00387{bottom:0.000000pt;}
.y5_c00387{bottom:0.107500pt;}
.y9_c00387{bottom:0.494374pt;}
.y2_c00387{bottom:3.839332pt;}
.y4_c00387{bottom:3.839998pt;}
.yb_c00387{bottom:60.080535pt;}
.y3_c00387{bottom:66.651840pt;}
.y1_c00387{bottom:66.971840pt;}
.y33_c00387{bottom:113.497020pt;}
.y32_c00387{bottom:126.770761pt;}
.y31_c00387{bottom:140.205156pt;}
.y30_c00387{bottom:153.478897pt;}
.y2f_c00387{bottom:177.147821pt;}
.y2e_c00387{bottom:204.814743pt;}
.y2d_c00387{bottom:232.322866pt;}
.y2c_c00387{bottom:249.596192pt;}
.y2b_c00387{bottom:274.542716pt;}
.y2a_c00387{bottom:302.052038pt;}
.y29_c00387{bottom:321.723230pt;}
.y28_c00387{bottom:338.356290pt;}
.y27_c00387{bottom:366.184412pt;}
.y26_c00387{bottom:393.690668pt;}
.y25_c00387{bottom:421.358790pt;}
.y24_c00387{bottom:448.865446pt;}
.y23_c00387{bottom:465.177439pt;}
.y22_c00387{bottom:476.690768pt;}
.y21_c00387{bottom:492.685428pt;}
.y20_c00387{bottom:504.202757pt;}
.y1f_c00387{bottom:521.312084pt;}
.y1e_c00387{bottom:546.260340pt;}
.y1d_c00387{bottom:573.926596pt;}
.y1c_c00387{bottom:601.434718pt;}
.y1b_c00387{bottom:618.546978pt;}
.y1a_c00387{bottom:636.300038pt;}
.y19_c00387{bottom:667.646692pt;}
.y18_c00387{bottom:693.394815pt;}
.y17_c00387{bottom:721.062937pt;}
.y16_c00387{bottom:748.569193pt;}
.y15_c00387{bottom:776.237315pt;}
.y14_c00387{bottom:793.350908pt;}
.y13_c00387{bottom:811.103968pt;}
.y12_c00387{bottom:842.285288pt;}
.y11_c00387{bottom:867.399545pt;}
.y10_c00387{bottom:894.906467pt;}
.yf_c00387{bottom:922.574590pt;}
.ye_c00387{bottom:939.682583pt;}
.yd_c00387{bottom:952.158578pt;}
.yc_c00387{bottom:966.709505pt;}
.ya_c00387{bottom:983.182565pt;}
.y8_c00387{bottom:1023.551024pt;}
.y7_c00387{bottom:1041.942883pt;}
.y6_c00387{bottom:1060.334742pt;}
.h1_c00387{height:17.913120pt;}
.hb_c00387{height:22.142969pt;}
.h8_c00387{height:23.783210pt;}
.ha_c00387{height:27.473693pt;}
.h6_c00387{height:34.034591pt;}
.h5_c00387{height:37.724630pt;}
.hc_c00387{height:41.006207pt;}
.h2_c00387{height:44.780569pt;}
.h7_c00387{height:47.627189pt;}
.h9_c00387{height:57.319128pt;}
.h4_c00387{height:1122.161626pt;}
.h3_c00387{height:1122.559167pt;}
.h0_c00387{height:1122.666667pt;}
.w7_c00387{width:4.796800pt;}
.w3_c00387{width:7.035200pt;}
.w5_c00387{width:7.038400pt;}
.w6_c00387{width:7.995200pt;}
.w8_c00387{width:7.998400pt;}
.w1_c00387{width:15.993760pt;}
.w4_c00387{width:19.510400pt;}
.w9_c00387{width:24.945600pt;}
.wb_c00387{width:29.745600pt;}
.w2_c00387{width:59.494400pt;}
.wa_c00387{width:118.347200pt;}
.wd_c00387{width:792.977400pt;}
.wc_c00387{width:793.257550pt;}
.w0_c00387{width:793.333333pt;}
.x0_c00387{left:0.000000pt;}
.xf_c00387{left:101.233093pt;}
.x1_c00387{left:114.072480pt;}
.x11_c00387{left:137.377612pt;}
.x10_c00387{left:160.568269pt;}
.xd_c00387{left:225.370940pt;}
.xc_c00387{left:239.124654pt;}
.xe_c00387{left:376.018977pt;}
.x2_c00387{left:404.182400pt;}
.x3_c00387{left:463.676800pt;}
.x4_c00387{left:470.712000pt;}
.x5_c00387{left:490.222400pt;}
.x6_c00387{left:497.260800pt;}
.x7_c00387{left:505.256000pt;}
.x8_c00387{left:509.732800pt;}
.x9_c00387{left:520.931200pt;}
.xa_c00387{left:549.396800pt;}
.x12_c00387{left:611.722755pt;}
.xb_c00387{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00388;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:1.112000;font-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_c00388{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls0_c00388{letter-spacing:0.000000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:-17.992193px;}
.ws1_c00388{word-spacing:0.000000px;}
._f_c00388{margin-left:-4.041089px;}
._d_c00388{margin-left:-2.821559px;}
._2_c00388{margin-left:-1.624130px;}
._1_c00388{width:1.126361px;}
._0_c00388{width:2.267170px;}
._5_c00388{width:4.256536px;}
._6_c00388{width:5.325559px;}
._e_c00388{width:6.489140px;}
._10_c00388{width:8.423158px;}
._c_c00388{width:10.348317px;}
._a_c00388{width:11.687167px;}
._b_c00388{width:13.004193px;}
._8_c00388{width:14.294416px;}
._7_c00388{width:15.393415px;}
._9_c00388{width:16.547017px;}
._11_c00388{width:18.994847px;}
._3_c00388{width:20.079403px;}
._4_c00388{width:21.936387px;}
._13_c00388{width:24.012858px;}
._12_c00388{width:25.512996px;}
._14_c00388{width:27.908367px;}
._16_c00388{width:29.858029px;}
._15_c00388{width:32.165749px;}
.fc1_c00388{color:rgb(105,148,45);}
.fc0_c00388{color:rgb(35,31,32);}
.fs3_c00388{font-size:45.339642px;}
.fs2_c00388{font-size:59.733096px;}
.fs1_c00388{font-size:66.209374px;}
.fs0_c00388{font-size:71.968771px;}
.y0_c00388{bottom:0.000000px;}
.y5_c00388{bottom:0.120938px;}
.y9_c00388{bottom:0.556171px;}
.y2_c00388{bottom:4.319248px;}
.y4_c00388{bottom:4.319998px;}
.yb_c00388{bottom:67.590602px;}
.y3_c00388{bottom:74.983320px;}
.y1_c00388{bottom:75.343320px;}
.y2e_c00388{bottom:89.180963px;}
.y2d_c00388{bottom:104.113922px;}
.y2c_c00388{bottom:119.046881px;}
.y2b_c00388{bottom:134.159075px;}
.y2a_c00388{bottom:160.788114px;}
.y29_c00388{bottom:191.914002px;}
.y28_c00388{bottom:222.860639px;}
.y27_c00388{bottom:287.092564px;}
.y26_c00388{bottom:318.037101px;}
.y25_c00388{bottom:349.163739px;}
.y24_c00388{bottom:380.110377px;}
.y23_c00388{bottom:411.235664px;}
.y22_c00388{bottom:442.182302px;}
.y21_c00388{bottom:473.126839px;}
.y20_c00388{bottom:506.413476px;}
.y1f_c00388{bottom:537.358764px;}
.y1e_c00388{bottom:568.483301px;}
.y1d_c00388{bottom:599.431289px;}
.y1c_c00388{bottom:630.556576px;}
.y1b_c00388{bottom:661.501864px;}
.y1a_c00388{bottom:692.629852px;}
.y19_c00388{bottom:723.574389px;}
.y18_c00388{bottom:754.701027px;}
.y17_c00388{bottom:773.949919px;}
.y16_c00388{bottom:793.921511px;}
.y15_c00388{bottom:840.520192px;}
.y14_c00388{bottom:871.463380px;}
.y13_c00388{bottom:902.411368px;}
.y12_c00388{bottom:933.538005px;}
.y11_c00388{bottom:964.483293px;}
.y10_c00388{bottom:995.609930px;}
.yf_c00388{bottom:1014.864823px;}
.ye_c00388{bottom:1034.836415px;}
.yd_c00388{bottom:1069.019901px;}
.yc_c00388{bottom:1086.110894px;}
.ya_c00388{bottom:1106.080386px;}
.y8_c00388{bottom:1151.494902px;}
.y7_c00388{bottom:1172.185744px;}
.y6_c00388{bottom:1192.876585px;}
.h1_c00388{height:20.152260px;}
.h8_c00388{height:29.062710px;}
.h6_c00388{height:38.288915px;}
.h5_c00388{height:42.440208px;}
.h2_c00388{height:50.378140px;}
.h9_c00388{height:53.580587px;}
.h7_c00388{height:59.522227px;}
.ha_c00388{height:64.484019px;}
.h4_c00388{height:1262.431829px;}
.h3_c00388{height:1262.879062px;}
.h0_c00388{height:1263.000000px;}
.w7_c00388{width:5.396400px;}
.w3_c00388{width:7.914600px;}
.w5_c00388{width:7.918200px;}
.w6_c00388{width:8.994600px;}
.w8_c00388{width:8.998200px;}
.w1_c00388{width:18.352980px;}
.w4_c00388{width:21.949200px;}
.w9_c00388{width:28.063800px;}
.wb_c00388{width:33.463800px;}
.w2_c00388{width:66.931200px;}
.wa_c00388{width:133.140600px;}
.wd_c00388{width:892.099575px;}
.wc_c00388{width:892.414744px;}
.w0_c00388{width:892.500000px;}
.x0_c00388{left:0.000000px;}
.xf_c00388{left:113.887229px;}
.x1_c00388{left:128.331540px;}
.x11_c00388{left:180.639303px;}
.xd_c00388{left:253.542308px;}
.xc_c00388{left:269.015236px;}
.x10_c00388{left:367.215228px;}
.xe_c00388{left:423.021349px;}
.x2_c00388{left:454.705200px;}
.x3_c00388{left:521.636400px;}
.x4_c00388{left:529.551000px;}
.x5_c00388{left:551.500200px;}
.x6_c00388{left:559.418400px;}
.x7_c00388{left:568.413000px;}
.x8_c00388{left:573.449400px;}
.x9_c00388{left:586.047600px;}
.xa_c00388{left:618.071400px;}
.xb_c00388{left:751.212000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws0_c00388{word-spacing:-15.993060pt;}
.ws1_c00388{word-spacing:0.000000pt;}
._f_c00388{margin-left:-3.592080pt;}
._d_c00388{margin-left:-2.508052pt;}
._2_c00388{margin-left:-1.443671pt;}
._1_c00388{width:1.001210pt;}
._0_c00388{width:2.015262pt;}
._5_c00388{width:3.783588pt;}
._6_c00388{width:4.733830pt;}
._e_c00388{width:5.768125pt;}
._10_c00388{width:7.487251pt;}
._c_c00388{width:9.198504pt;}
._a_c00388{width:10.388593pt;}
._b_c00388{width:11.559282pt;}
._8_c00388{width:12.706147pt;}
._7_c00388{width:13.683036pt;}
._9_c00388{width:14.708460pt;}
._11_c00388{width:16.884309pt;}
._3_c00388{width:17.848358pt;}
._4_c00388{width:19.499011pt;}
._13_c00388{width:21.344763pt;}
._12_c00388{width:22.678218pt;}
._14_c00388{width:24.807437pt;}
._16_c00388{width:26.540470pt;}
._15_c00388{width:28.591776pt;}
.fs3_c00388{font-size:40.301904pt;}
.fs2_c00388{font-size:53.096085pt;}
.fs1_c00388{font-size:58.852776pt;}
.fs0_c00388{font-size:63.972241pt;}
.y0_c00388{bottom:0.000000pt;}
.y5_c00388{bottom:0.107500pt;}
.y9_c00388{bottom:0.494374pt;}
.y2_c00388{bottom:3.839332pt;}
.y4_c00388{bottom:3.839998pt;}
.yb_c00388{bottom:60.080535pt;}
.y3_c00388{bottom:66.651840pt;}
.y1_c00388{bottom:66.971840pt;}
.y2e_c00388{bottom:79.271967pt;}
.y2d_c00388{bottom:92.545708pt;}
.y2c_c00388{bottom:105.819450pt;}
.y2b_c00388{bottom:119.252511pt;}
.y2a_c00388{bottom:142.922768pt;}
.y29_c00388{bottom:170.590224pt;}
.y28_c00388{bottom:198.098346pt;}
.y27_c00388{bottom:255.193390pt;}
.y26_c00388{bottom:282.699646pt;}
.y25_c00388{bottom:310.367768pt;}
.y24_c00388{bottom:337.875890pt;}
.y23_c00388{bottom:365.542813pt;}
.y22_c00388{bottom:393.050935pt;}
.y21_c00388{bottom:420.557191pt;}
.y20_c00388{bottom:450.145312pt;}
.y1f_c00388{bottom:477.652234pt;}
.y1e_c00388{bottom:505.318490pt;}
.y1d_c00388{bottom:532.827812pt;}
.y1c_c00388{bottom:560.494735pt;}
.y1b_c00388{bottom:588.001657pt;}
.y1a_c00388{bottom:615.670979pt;}
.y19_c00388{bottom:643.177235pt;}
.y18_c00388{bottom:670.845357pt;}
.y17_c00388{bottom:687.955484pt;}
.y16_c00388{bottom:705.708010pt;}
.y15_c00388{bottom:747.129060pt;}
.y14_c00388{bottom:774.634116pt;}
.y13_c00388{bottom:802.143438pt;}
.y12_c00388{bottom:829.811560pt;}
.y11_c00388{bottom:857.318482pt;}
.y10_c00388{bottom:884.986605pt;}
.yf_c00388{bottom:902.102065pt;}
.ye_c00388{bottom:919.854591pt;}
.yd_c00388{bottom:950.239912pt;}
.yc_c00388{bottom:965.431906pt;}
.ya_c00388{bottom:983.182565pt;}
.y8_c00388{bottom:1023.551024pt;}
.y7_c00388{bottom:1041.942883pt;}
.y6_c00388{bottom:1060.334742pt;}
.h1_c00388{height:17.913120pt;}
.h8_c00388{height:25.833520pt;}
.h6_c00388{height:34.034591pt;}
.h5_c00388{height:37.724630pt;}
.h2_c00388{height:44.780569pt;}
.h9_c00388{height:47.627189pt;}
.h7_c00388{height:52.908646pt;}
.ha_c00388{height:57.319128pt;}
.h4_c00388{height:1122.161626pt;}
.h3_c00388{height:1122.559167pt;}
.h0_c00388{height:1122.666667pt;}
.w7_c00388{width:4.796800pt;}
.w3_c00388{width:7.035200pt;}
.w5_c00388{width:7.038400pt;}
.w6_c00388{width:7.995200pt;}
.w8_c00388{width:7.998400pt;}
.w1_c00388{width:16.313760pt;}
.w4_c00388{width:19.510400pt;}
.w9_c00388{width:24.945600pt;}
.wb_c00388{width:29.745600pt;}
.w2_c00388{width:59.494400pt;}
.wa_c00388{width:118.347200pt;}
.wd_c00388{width:792.977400pt;}
.wc_c00388{width:793.257550pt;}
.w0_c00388{width:793.333333pt;}
.x0_c00388{left:0.000000pt;}
.xf_c00388{left:101.233093pt;}
.x1_c00388{left:114.072480pt;}
.x11_c00388{left:160.568269pt;}
.xd_c00388{left:225.370940pt;}
.xc_c00388{left:239.124654pt;}
.x10_c00388{left:326.413536pt;}
.xe_c00388{left:376.018977pt;}
.x2_c00388{left:404.182400pt;}
.x3_c00388{left:463.676800pt;}
.x4_c00388{left:470.712000pt;}
.x5_c00388{left:490.222400pt;}
.x6_c00388{left:497.260800pt;}
.x7_c00388{left:505.256000pt;}
.x8_c00388{left:509.732800pt;}
.x9_c00388{left:520.931200pt;}
.xa_c00388{left:549.396800pt;}
.xb_c00388{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00389;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;line-height:1.115000;font-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_c00389{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls0_c00389{letter-spacing:0.000000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:-17.992193px;}
.ws1_c00389{word-spacing:0.000000px;}
._7_c00389{margin-left:-3.542194px;}
._8_c00389{margin-left:-2.526608px;}
._2_c00389{margin-left:-1.488876px;}
._1_c00389{width:1.126361px;}
._0_c00389{width:2.267170px;}
._b_c00389{width:3.426741px;}
._3_c00389{width:4.441469px;}
._4_c00389{width:5.545134px;}
._5_c00389{width:6.820912px;}
._6_c00389{width:8.536745px;}
._e_c00389{width:9.753908px;}
._c_c00389{width:11.313973px;}
._d_c00389{width:12.984208px;}
._a_c00389{width:14.299750px;}
._9_c00389{width:16.047082px;}
.fc1_c00389{color:rgb(105,148,45);}
.fc0_c00389{color:rgb(35,31,32);}
.fs3_c00389{font-size:48.218261px;}
.fs4_c00389{font-size:53.975678px;}
.fs2_c00389{font-size:59.733096px;}
.fs1_c00389{font-size:66.209374px;}
.fs0_c00389{font-size:71.968771px;}
.y0_c00389{bottom:0.000000px;}
.y5_c00389{bottom:0.120938px;}
.y9_c00389{bottom:0.556171px;}
.y2_c00389{bottom:4.319248px;}
.y4_c00389{bottom:4.319998px;}
.yb_c00389{bottom:67.590602px;}
.y3_c00389{bottom:74.983320px;}
.y1_c00389{bottom:75.343320px;}
.y2e_c00389{bottom:97.097240px;}
.y2d_c00389{bottom:113.468083px;}
.y2c_c00389{bottom:129.843877px;}
.y2b_c00389{bottom:158.090815px;}
.y2a_c00389{bottom:189.037453px;}
.y29_c00389{bottom:220.164091px;}
.y28_c00389{bottom:251.109378px;}
.y27_c00389{bottom:282.235266px;}
.y26_c00389{bottom:313.180553px;}
.y25_c00389{bottom:344.307191px;}
.y24_c00389{bottom:363.558183px;}
.y23_c00389{bottom:391.624672px;}
.y22_c00389{bottom:422.571310px;}
.y21_c00389{bottom:455.675846px;}
.y20_c00389{bottom:486.802484px;}
.y1f_c00389{bottom:517.749121px;}
.y1e_c00389{bottom:537.175764px;}
.y1d_c00389{bottom:557.147956px;}
.y1c_c00389{bottom:591.874592px;}
.y1b_c00389{bottom:618.500781px;}
.y1a_c00389{bottom:649.627419px;}
.y19_c00389{bottom:680.571956px;}
.y18_c00389{bottom:711.699944px;}
.y17_c00389{bottom:742.646582px;}
.y16_c00389{bottom:773.771869px;}
.y15_c00389{bottom:804.718507px;}
.y14_c00389{bottom:841.600492px;}
.y13_c00389{bottom:860.854484px;}
.y12_c00389{bottom:896.294970px;}
.y11_c00389{bottom:932.279956px;}
.y10_c00389{bottom:951.710948px;}
.yf_c00389{bottom:997.049930px;}
.ye_c00389{bottom:1022.959119px;}
.yd_c00389{bottom:1054.082907px;}
.yc_c00389{bottom:1085.030895px;}
.ya_c00389{bottom:1106.080386px;}
.y8_c00389{bottom:1151.494902px;}
.y7_c00389{bottom:1172.185744px;}
.y6_c00389{bottom:1192.876585px;}
.h1_c00389{height:20.152260px;}
.h8_c00389{height:30.907905px;}
.ha_c00389{height:34.598410px;}
.h6_c00389{height:38.288915px;}
.h5_c00389{height:42.440208px;}
.h2_c00389{height:50.378140px;}
.hc_c00389{height:53.580587px;}
.hb_c00389{height:59.522227px;}
.h7_c00389{height:64.484019px;}
.h9_c00389{height:64.555988px;}
.h4_c00389{height:1262.431829px;}
.h3_c00389{height:1262.879062px;}
.h0_c00389{height:1263.000000px;}
.w7_c00389{width:5.396400px;}
.w3_c00389{width:7.914600px;}
.w5_c00389{width:7.918200px;}
.w6_c00389{width:8.994600px;}
.w8_c00389{width:8.998200px;}
.w1_c00389{width:18.352980px;}
.w4_c00389{width:21.949200px;}
.w9_c00389{width:28.063800px;}
.wb_c00389{width:33.463800px;}
.w2_c00389{width:66.931200px;}
.wa_c00389{width:133.140600px;}
.wd_c00389{width:892.099575px;}
.wc_c00389{width:892.414744px;}
.w0_c00389{width:892.500000px;}
.x0_c00389{left:0.000000px;}
.xf_c00389{left:113.887229px;}
.x1_c00389{left:128.331540px;}
.x10_c00389{left:180.639303px;}
.xd_c00389{left:253.542308px;}
.xc_c00389{left:269.015236px;}
.x13_c00389{left:308.199252px;}
.x11_c00389{left:383.947721px;}
.xe_c00389{left:423.021349px;}
.x12_c00389{left:443.679198px;}
.x2_c00389{left:454.705200px;}
.x3_c00389{left:521.636400px;}
.x4_c00389{left:529.551000px;}
.x5_c00389{left:551.500200px;}
.x6_c00389{left:559.418400px;}
.x7_c00389{left:568.413000px;}
.x8_c00389{left:573.449400px;}
.x9_c00389{left:586.047600px;}
.xa_c00389{left:618.071400px;}
.xb_c00389{left:751.212000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:-15.993060pt;}
.ws1_c00389{word-spacing:0.000000pt;}
._7_c00389{margin-left:-3.148617pt;}
._8_c00389{margin-left:-2.245874pt;}
._2_c00389{margin-left:-1.323445pt;}
._1_c00389{width:1.001210pt;}
._0_c00389{width:2.015262pt;}
._b_c00389{width:3.045992pt;}
._3_c00389{width:3.947973pt;}
._4_c00389{width:4.929008pt;}
._5_c00389{width:6.063033pt;}
._6_c00389{width:7.588218pt;}
._e_c00389{width:8.670141pt;}
._c_c00389{width:10.056865pt;}
._d_c00389{width:11.541518pt;}
._a_c00389{width:12.710889pt;}
._9_c00389{width:14.264073pt;}
.fs3_c00389{font-size:42.860676pt;}
.fs4_c00389{font-size:47.978381pt;}
.fs2_c00389{font-size:53.096085pt;}
.fs1_c00389{font-size:58.852776pt;}
.fs0_c00389{font-size:63.972241pt;}
.y0_c00389{bottom:0.000000pt;}
.y5_c00389{bottom:0.107500pt;}
.y9_c00389{bottom:0.494374pt;}
.y2_c00389{bottom:3.839332pt;}
.y4_c00389{bottom:3.839998pt;}
.yb_c00389{bottom:60.080535pt;}
.y3_c00389{bottom:66.651840pt;}
.y1_c00389{bottom:66.971840pt;}
.y2e_c00389{bottom:86.308658pt;}
.y2d_c00389{bottom:100.860518pt;}
.y2c_c00389{bottom:115.416779pt;}
.y2b_c00389{bottom:140.525169pt;}
.y2a_c00389{bottom:168.033292pt;}
.y29_c00389{bottom:195.701414pt;}
.y28_c00389{bottom:223.208336pt;}
.y27_c00389{bottom:250.875792pt;}
.y26_c00389{bottom:278.382714pt;}
.y25_c00389{bottom:306.050836pt;}
.y24_c00389{bottom:323.162829pt;}
.y23_c00389{bottom:348.110819pt;}
.y22_c00389{bottom:375.618942pt;}
.y21_c00389{bottom:405.045197pt;}
.y20_c00389{bottom:432.713319pt;}
.y1f_c00389{bottom:460.221441pt;}
.y1e_c00389{bottom:477.489568pt;}
.y1d_c00389{bottom:495.242627pt;}
.y1c_c00389{bottom:526.110748pt;}
.y1b_c00389{bottom:549.778472pt;}
.y1a_c00389{bottom:577.446594pt;}
.y19_c00389{bottom:604.952850pt;}
.y18_c00389{bottom:632.622172pt;}
.y17_c00389{bottom:660.130295pt;}
.y16_c00389{bottom:687.797217pt;}
.y15_c00389{bottom:715.305339pt;}
.y14_c00389{bottom:748.089326pt;}
.y13_c00389{bottom:765.203986pt;}
.y12_c00389{bottom:796.706640pt;}
.y11_c00389{bottom:828.693294pt;}
.y10_c00389{bottom:845.965287pt;}
.yf_c00389{bottom:886.266604pt;}
.ye_c00389{bottom:909.296995pt;}
.yd_c00389{bottom:936.962584pt;}
.yc_c00389{bottom:964.471906pt;}
.ya_c00389{bottom:983.182565pt;}
.y8_c00389{bottom:1023.551024pt;}
.y7_c00389{bottom:1041.942883pt;}
.y6_c00389{bottom:1060.334742pt;}
.h1_c00389{height:17.913120pt;}
.h8_c00389{height:27.473693pt;}
.ha_c00389{height:30.754142pt;}
.h6_c00389{height:34.034591pt;}
.h5_c00389{height:37.724630pt;}
.h2_c00389{height:44.780569pt;}
.hc_c00389{height:47.627189pt;}
.hb_c00389{height:52.908646pt;}
.h7_c00389{height:57.319128pt;}
.h9_c00389{height:57.383100pt;}
.h4_c00389{height:1122.161626pt;}
.h3_c00389{height:1122.559167pt;}
.h0_c00389{height:1122.666667pt;}
.w7_c00389{width:4.796800pt;}
.w3_c00389{width:7.035200pt;}
.w5_c00389{width:7.038400pt;}
.w6_c00389{width:7.995200pt;}
.w8_c00389{width:7.998400pt;}
.w1_c00389{width:16.313760pt;}
.w4_c00389{width:19.510400pt;}
.w9_c00389{width:24.945600pt;}
.wb_c00389{width:29.745600pt;}
.w2_c00389{width:59.494400pt;}
.wa_c00389{width:118.347200pt;}
.wd_c00389{width:792.977400pt;}
.wc_c00389{width:793.257550pt;}
.w0_c00389{width:793.333333pt;}
.x0_c00389{left:0.000000pt;}
.xf_c00389{left:101.233093pt;}
.x1_c00389{left:114.072480pt;}
.x10_c00389{left:160.568269pt;}
.xd_c00389{left:225.370940pt;}
.xc_c00389{left:239.124654pt;}
.x13_c00389{left:273.954890pt;}
.x11_c00389{left:341.286863pt;}
.xe_c00389{left:376.018977pt;}
.x12_c00389{left:394.381509pt;}
.x2_c00389{left:404.182400pt;}
.x3_c00389{left:463.676800pt;}
.x4_c00389{left:470.712000pt;}
.x5_c00389{left:490.222400pt;}
.x6_c00389{left:497.260800pt;}
.x7_c00389{left:505.256000pt;}
.x8_c00389{left:509.732800pt;}
.x9_c00389{left:520.931200pt;}
.xa_c00389{left:549.396800pt;}
.xb_c00389{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.113000;font-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_c00390{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00390{word-spacing:-17.992193px;}
.ws1_c00390{word-spacing:0.000000px;}
._11_c00390{margin-left:-4.330961px;}
._b_c00390{margin-left:-3.240388px;}
._6_c00390{margin-left:-1.238354px;}
._1_c00390{width:1.126361px;}
._0_c00390{width:2.267170px;}
._7_c00390{width:3.632573px;}
._5_c00390{width:5.349819px;}
._3_c00390{width:6.744084px;}
._4_c00390{width:7.994136px;}
._2_c00390{width:9.479216px;}
._d_c00390{width:11.461344px;}
._c_c00390{width:13.079814px;}
._e_c00390{width:14.995210px;}
._f_c00390{width:16.891962px;}
._8_c00390{width:19.407646px;}
._13_c00390{width:20.505653px;}
._9_c00390{width:21.909032px;}
._a_c00390{width:22.994248px;}
._10_c00390{width:24.468770px;}
._15_c00390{width:27.790758px;}
._14_c00390{width:29.102592px;}
._16_c00390{width:30.343615px;}
._12_c00390{width:59.575153px;}
.fc1_c00390{color:rgb(105,148,45);}
.fc0_c00390{color:rgb(35,31,32);}
.fs3_c00390{font-size:38.862464px;}
.fs2_c00390{font-size:59.733096px;}
.fs1_c00390{font-size:66.209374px;}
.fs0_c00390{font-size:71.968771px;}
.y0_c00390{bottom:0.000000px;}
.y5_c00390{bottom:0.120938px;}
.y9_c00390{bottom:0.556171px;}
.y2_c00390{bottom:4.319248px;}
.y4_c00390{bottom:4.319998px;}
.yb_c00390{bottom:67.590602px;}
.y3_c00390{bottom:74.983320px;}
.y1_c00390{bottom:75.343320px;}
.y2f_c00390{bottom:102.493188px;}
.y2e_c00390{bottom:133.439825px;}
.y2d_c00390{bottom:164.565113px;}
.y2c_c00390{bottom:195.511750px;}
.y2b_c00390{bottom:213.684243px;}
.y2a_c00390{bottom:226.639588px;}
.y29_c00390{bottom:257.944125px;}
.y28_c00390{bottom:288.889413px;}
.y27_c00390{bottom:319.836051px;}
.y26_c00390{bottom:350.782688px;}
.y25_c00390{bottom:369.133681px;}
.y24_c00390{bottom:402.778667px;}
.y23_c00390{bottom:420.771160px;}
.y22_c00390{bottom:433.725305px;}
.y21_c00390{bottom:495.976480px;}
.y20_c00390{bottom:526.923118px;}
.y1f_c00390{bottom:546.176060px;}
.y1e_c00390{bottom:566.148252px;}
.y1c_c00390{bottom:612.566784px;}
.y1d_c00390{bottom:612.567084px;}
.y1b_c00390{bottom:643.512071px;}
.y1a_c00390{bottom:674.458709px;}
.y19_c00390{bottom:705.405346px;}
.y18_c00390{bottom:736.349884px;}
.y17_c00390{bottom:767.296522px;}
.y16_c00390{bottom:786.546314px;}
.y15_c00390{bottom:806.518506px;}
.y14_c00390{bottom:852.934787px;}
.y13_c00390{bottom:883.879325px;}
.y12_c00390{bottom:914.825963px;}
.y11_c00390{bottom:934.258455px;}
.y10_c00390{bottom:960.884494px;}
.yf_c00390{bottom:992.012482px;}
.ye_c00390{bottom:1022.959119px;}
.yd_c00390{bottom:1054.082907px;}
.yc_c00390{bottom:1085.030895px;}
.ya_c00390{bottom:1106.080386px;}
.y8_c00390{bottom:1151.494902px;}
.y7_c00390{bottom:1172.185744px;}
.y6_c00390{bottom:1192.876585px;}
.h1_c00390{height:20.152260px;}
.h9_c00390{height:24.910840px;}
.h6_c00390{height:38.288915px;}
.h5_c00390{height:42.440208px;}
.h2_c00390{height:50.378140px;}
.h8_c00390{height:53.580587px;}
.h7_c00390{height:64.484019px;}
.ha_c00390{height:64.555988px;}
.h4_c00390{height:1262.431829px;}
.h3_c00390{height:1262.879062px;}
.h0_c00390{height:1263.000000px;}
.w7_c00390{width:5.396400px;}
.w3_c00390{width:7.914600px;}
.w5_c00390{width:7.918200px;}
.w6_c00390{width:8.994600px;}
.w8_c00390{width:8.998200px;}
.w1_c00390{width:17.992980px;}
.w4_c00390{width:21.949200px;}
.w9_c00390{width:28.063800px;}
.wb_c00390{width:33.463800px;}
.w2_c00390{width:66.931200px;}
.wa_c00390{width:133.140600px;}
.wd_c00390{width:892.099575px;}
.wc_c00390{width:892.414744px;}
.w0_c00390{width:892.500000px;}
.x0_c00390{left:0.000000px;}
.xf_c00390{left:113.887229px;}
.x1_c00390{left:128.331540px;}
.x12_c00390{left:154.547569px;}
.x10_c00390{left:180.639303px;}
.x13_c00390{left:208.525792px;}
.x14_c00390{left:235.509797px;}
.xd_c00390{left:253.542308px;}
.xc_c00390{left:269.015236px;}
.xe_c00390{left:423.021349px;}
.x2_c00390{left:454.705200px;}
.x3_c00390{left:521.636400px;}
.x4_c00390{left:529.551000px;}
.x5_c00390{left:551.500200px;}
.x6_c00390{left:559.418400px;}
.x7_c00390{left:568.413000px;}
.x8_c00390{left:573.449400px;}
.x9_c00390{left:586.047600px;}
.xa_c00390{left:618.071400px;}
.x11_c00390{left:620.541127px;}
.xb_c00390{left:751.212000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws0_c00390{word-spacing:-15.993060pt;}
.ws1_c00390{word-spacing:0.000000pt;}
._11_c00390{margin-left:-3.849743pt;}
._b_c00390{margin-left:-2.880345pt;}
._6_c00390{margin-left:-1.100759pt;}
._1_c00390{width:1.001210pt;}
._0_c00390{width:2.015262pt;}
._7_c00390{width:3.228954pt;}
._5_c00390{width:4.755394pt;}
._3_c00390{width:5.994742pt;}
._4_c00390{width:7.105899pt;}
._2_c00390{width:8.425970pt;}
._d_c00390{width:10.187862pt;}
._c_c00390{width:11.626501pt;}
._e_c00390{width:13.329076pt;}
._f_c00390{width:15.015078pt;}
._8_c00390{width:17.251241pt;}
._13_c00390{width:18.227247pt;}
._9_c00390{width:19.474695pt;}
._a_c00390{width:20.439332pt;}
._10_c00390{width:21.750017pt;}
._15_c00390{width:24.702896pt;}
._14_c00390{width:25.868970pt;}
._16_c00390{width:26.972102pt;}
._12_c00390{width:52.955691pt;}
.fs3_c00390{font-size:34.544413pt;}
.fs2_c00390{font-size:53.096085pt;}
.fs1_c00390{font-size:58.852776pt;}
.fs0_c00390{font-size:63.972241pt;}
.y0_c00390{bottom:0.000000pt;}
.y5_c00390{bottom:0.107500pt;}
.y9_c00390{bottom:0.494374pt;}
.y2_c00390{bottom:3.839332pt;}
.y4_c00390{bottom:3.839998pt;}
.yb_c00390{bottom:60.080535pt;}
.y3_c00390{bottom:66.651840pt;}
.y1_c00390{bottom:66.971840pt;}
.y2f_c00390{bottom:91.105056pt;}
.y2e_c00390{bottom:118.613178pt;}
.y2d_c00390{bottom:146.280100pt;}
.y2c_c00390{bottom:173.788223pt;}
.y2b_c00390{bottom:189.941549pt;}
.y2a_c00390{bottom:201.457411pt;}
.y29_c00390{bottom:229.283667pt;}
.y28_c00390{bottom:256.790589pt;}
.y27_c00390{bottom:284.298712pt;}
.y26_c00390{bottom:311.806834pt;}
.y25_c00390{bottom:328.118827pt;}
.y24_c00390{bottom:358.025482pt;}
.y23_c00390{bottom:374.018809pt;}
.y22_c00390{bottom:385.533605pt;}
.y21_c00390{bottom:440.867982pt;}
.y20_c00390{bottom:468.376105pt;}
.y1f_c00390{bottom:485.489831pt;}
.y1e_c00390{bottom:503.242891pt;}
.y1c_c00390{bottom:544.503808pt;}
.y1d_c00390{bottom:544.504074pt;}
.y1b_c00390{bottom:572.010730pt;}
.y1a_c00390{bottom:599.518852pt;}
.y19_c00390{bottom:627.026975pt;}
.y18_c00390{bottom:654.533230pt;}
.y17_c00390{bottom:682.041353pt;}
.y16_c00390{bottom:699.152279pt;}
.y15_c00390{bottom:716.905339pt;}
.y14_c00390{bottom:758.164255pt;}
.y13_c00390{bottom:785.670511pt;}
.y12_c00390{bottom:813.178633pt;}
.y11_c00390{bottom:830.451960pt;}
.y10_c00390{bottom:854.119550pt;}
.yf_c00390{bottom:881.788873pt;}
.ye_c00390{bottom:909.296995pt;}
.yd_c00390{bottom:936.962584pt;}
.yc_c00390{bottom:964.471906pt;}
.ya_c00390{bottom:983.182565pt;}
.y8_c00390{bottom:1023.551024pt;}
.y7_c00390{bottom:1041.942883pt;}
.y6_c00390{bottom:1060.334742pt;}
.h1_c00390{height:17.913120pt;}
.h9_c00390{height:22.142969pt;}
.h6_c00390{height:34.034591pt;}
.h5_c00390{height:37.724630pt;}
.h2_c00390{height:44.780569pt;}
.h8_c00390{height:47.627189pt;}
.h7_c00390{height:57.319128pt;}
.ha_c00390{height:57.383100pt;}
.h4_c00390{height:1122.161626pt;}
.h3_c00390{height:1122.559167pt;}
.h0_c00390{height:1122.666667pt;}
.w7_c00390{width:4.796800pt;}
.w3_c00390{width:7.035200pt;}
.w5_c00390{width:7.038400pt;}
.w6_c00390{width:7.995200pt;}
.w8_c00390{width:7.998400pt;}
.w1_c00390{width:15.993760pt;}
.w4_c00390{width:19.510400pt;}
.w9_c00390{width:24.945600pt;}
.wb_c00390{width:29.745600pt;}
.w2_c00390{width:59.494400pt;}
.wa_c00390{width:118.347200pt;}
.wd_c00390{width:792.977400pt;}
.wc_c00390{width:793.257550pt;}
.w0_c00390{width:793.333333pt;}
.x0_c00390{left:0.000000pt;}
.xf_c00390{left:101.233093pt;}
.x1_c00390{left:114.072480pt;}
.x12_c00390{left:137.375617pt;}
.x10_c00390{left:160.568269pt;}
.x13_c00390{left:185.356259pt;}
.x14_c00390{left:209.342042pt;}
.xd_c00390{left:225.370940pt;}
.xc_c00390{left:239.124654pt;}
.xe_c00390{left:376.018977pt;}
.x2_c00390{left:404.182400pt;}
.x3_c00390{left:463.676800pt;}
.x4_c00390{left:470.712000pt;}
.x5_c00390{left:490.222400pt;}
.x6_c00390{left:497.260800pt;}
.x7_c00390{left:505.256000pt;}
.x8_c00390{left:509.732800pt;}
.x9_c00390{left:520.931200pt;}
.xa_c00390{left:549.396800pt;}
.x11_c00390{left:551.592113pt;}
.xb_c00390{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.112000;font-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_c00391{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00391{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:-17.992193px;}
.ws2_c00391{word-spacing:0.000000px;}
.ws1_c00391{word-spacing:461.014062px;}
._e_c00391{margin-left:-3.897280px;}
._6_c00391{margin-left:-2.553660px;}
._8_c00391{margin-left:-1.488789px;}
._1_c00391{width:1.126361px;}
._0_c00391{width:2.267170px;}
._c_c00391{width:3.642859px;}
._d_c00391{width:4.920324px;}
._f_c00391{width:5.962566px;}
._9_c00391{width:7.891675px;}
._a_c00391{width:9.023411px;}
._5_c00391{width:10.605526px;}
._3_c00391{width:11.869317px;}
._2_c00391{width:13.015207px;}
._4_c00391{width:14.186274px;}
._b_c00391{width:15.969995px;}
._7_c00391{width:59.575153px;}
.fc1_c00391{color:rgb(105,148,45);}
.fc0_c00391{color:rgb(35,31,32);}
.fs3_c00391{font-size:38.862464px;}
.fs4_c00391{font-size:51.097060px;}
.fs2_c00391{font-size:59.733096px;}
.fs1_c00391{font-size:66.209374px;}
.fs0_c00391{font-size:71.968771px;}
.y0_c00391{bottom:0.000000px;}
.y5_c00391{bottom:0.120938px;}
.y9_c00391{bottom:0.556171px;}
.y2_c00391{bottom:4.319248px;}
.y4_c00391{bottom:4.319998px;}
.yb_c00391{bottom:67.590602px;}
.y3_c00391{bottom:74.983320px;}
.y1_c00391{bottom:75.343320px;}
.y22_c00391{bottom:509.830175px;}
.y21_c00391{bottom:524.943119px;}
.y20_c00391{bottom:539.515613px;}
.y1f_c00391{bottom:554.271107px;}
.y1e_c00391{bottom:572.262100px;}
.y1d_c00391{bottom:585.216094px;}
.y1c_c00391{bottom:603.387087px;}
.y1b_c00391{bottom:616.341982px;}
.y1a_c00391{bottom:649.445769px;}
.y19_c00391{bottom:680.393156px;}
.y18_c00391{bottom:711.698444px;}
.y17_c00391{bottom:742.645082px;}
.y16_c00391{bottom:773.946769px;}
.y15_c00391{bottom:805.076857px;}
.y14_c00391{bottom:836.202744px;}
.y13_c00391{bottom:867.329382px;}
.y12_c00391{bottom:898.274669px;}
.y11_c00391{bottom:929.221307px;}
.y10_c00391{bottom:960.704494px;}
.yf_c00391{bottom:991.652482px;}
.ye_c00391{bottom:1022.779119px;}
.yd_c00391{bottom:1054.082907px;}
.yc_c00391{bottom:1085.030895px;}
.ya_c00391{bottom:1106.080386px;}
.y8_c00391{bottom:1151.494902px;}
.y7_c00391{bottom:1172.185744px;}
.y6_c00391{bottom:1192.876585px;}
.h1_c00391{height:20.152260px;}
.h8_c00391{height:24.910840px;}
.h9_c00391{height:32.753215px;}
.h6_c00391{height:38.288915px;}
.h5_c00391{height:42.440208px;}
.h2_c00391{height:50.378140px;}
.h7_c00391{height:64.484019px;}
.h4_c00391{height:1262.431829px;}
.h3_c00391{height:1262.879062px;}
.h0_c00391{height:1263.000000px;}
.w7_c00391{width:5.396400px;}
.w3_c00391{width:7.914600px;}
.w5_c00391{width:7.918200px;}
.w6_c00391{width:8.994600px;}
.w8_c00391{width:8.998200px;}
.w1_c00391{width:17.992980px;}
.w4_c00391{width:21.949200px;}
.w9_c00391{width:28.063800px;}
.wb_c00391{width:33.463800px;}
.w2_c00391{width:66.931200px;}
.wa_c00391{width:133.140600px;}
.wd_c00391{width:892.099575px;}
.wc_c00391{width:892.414744px;}
.w0_c00391{width:892.500000px;}
.x0_c00391{left:0.000000px;}
.xf_c00391{left:113.887229px;}
.x1_c00391{left:128.331540px;}
.x12_c00391{left:154.549171px;}
.x13_c00391{left:181.539172px;}
.x11_c00391{left:208.524227px;}
.x10_c00391{left:235.510781px;}
.xd_c00391{left:253.542308px;}
.xc_c00391{left:269.015236px;}
.x14_c00391{left:293.448258px;}
.xe_c00391{left:423.021349px;}
.x2_c00391{left:454.705200px;}
.x3_c00391{left:521.636400px;}
.x4_c00391{left:529.551000px;}
.x5_c00391{left:551.500200px;}
.x15_c00391{left:557.569652px;}
.x6_c00391{left:559.418400px;}
.x7_c00391{left:568.413000px;}
.x8_c00391{left:573.449400px;}
.x9_c00391{left:586.047600px;}
.xa_c00391{left:618.071400px;}
.xb_c00391{left:751.212000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws0_c00391{word-spacing:-15.993060pt;}
.ws2_c00391{word-spacing:0.000000pt;}
.ws1_c00391{word-spacing:409.790278pt;}
._e_c00391{margin-left:-3.464249pt;}
._6_c00391{margin-left:-2.269920pt;}
._8_c00391{margin-left:-1.323368pt;}
._1_c00391{width:1.001210pt;}
._0_c00391{width:2.015262pt;}
._c_c00391{width:3.238097pt;}
._d_c00391{width:4.373621pt;}
._f_c00391{width:5.300059pt;}
._9_c00391{width:7.014822pt;}
._a_c00391{width:8.020810pt;}
._5_c00391{width:9.427134pt;}
._3_c00391{width:10.550504pt;}
._2_c00391{width:11.569073pt;}
._4_c00391{width:12.610021pt;}
._b_c00391{width:14.195552pt;}
._7_c00391{width:52.955691pt;}
.fs3_c00391{font-size:34.544413pt;}
.fs4_c00391{font-size:45.419608pt;}
.fs2_c00391{font-size:53.096085pt;}
.fs1_c00391{font-size:58.852776pt;}
.fs0_c00391{font-size:63.972241pt;}
.y0_c00391{bottom:0.000000pt;}
.y5_c00391{bottom:0.107500pt;}
.y9_c00391{bottom:0.494374pt;}
.y2_c00391{bottom:3.839332pt;}
.y4_c00391{bottom:3.839998pt;}
.yb_c00391{bottom:60.080535pt;}
.y3_c00391{bottom:66.651840pt;}
.y1_c00391{bottom:66.971840pt;}
.y22_c00391{bottom:453.182377pt;}
.y21_c00391{bottom:466.616105pt;}
.y20_c00391{bottom:479.569434pt;}
.y1f_c00391{bottom:492.685428pt;}
.y1e_c00391{bottom:508.677422pt;}
.y1d_c00391{bottom:520.192084pt;}
.y1c_c00391{bottom:536.344078pt;}
.y1b_c00391{bottom:547.859540pt;}
.y1a_c00391{bottom:577.285128pt;}
.y19_c00391{bottom:604.793917pt;}
.y18_c00391{bottom:632.620839pt;}
.y17_c00391{bottom:660.128961pt;}
.y16_c00391{bottom:687.952684pt;}
.y15_c00391{bottom:715.623872pt;}
.y14_c00391{bottom:743.291328pt;}
.y13_c00391{bottom:770.959450pt;}
.y12_c00391{bottom:798.466373pt;}
.y11_c00391{bottom:825.974495pt;}
.y10_c00391{bottom:853.959550pt;}
.yf_c00391{bottom:881.468873pt;}
.ye_c00391{bottom:909.136995pt;}
.yd_c00391{bottom:936.962584pt;}
.yc_c00391{bottom:964.471906pt;}
.ya_c00391{bottom:983.182565pt;}
.y8_c00391{bottom:1023.551024pt;}
.y7_c00391{bottom:1041.942883pt;}
.y6_c00391{bottom:1060.334742pt;}
.h1_c00391{height:17.913120pt;}
.h8_c00391{height:22.142969pt;}
.h9_c00391{height:29.113969pt;}
.h6_c00391{height:34.034591pt;}
.h5_c00391{height:37.724630pt;}
.h2_c00391{height:44.780569pt;}
.h7_c00391{height:57.319128pt;}
.h4_c00391{height:1122.161626pt;}
.h3_c00391{height:1122.559167pt;}
.h0_c00391{height:1122.666667pt;}
.w7_c00391{width:4.796800pt;}
.w3_c00391{width:7.035200pt;}
.w5_c00391{width:7.038400pt;}
.w6_c00391{width:7.995200pt;}
.w8_c00391{width:7.998400pt;}
.w1_c00391{width:15.993760pt;}
.w4_c00391{width:19.510400pt;}
.w9_c00391{width:24.945600pt;}
.wb_c00391{width:29.745600pt;}
.w2_c00391{width:59.494400pt;}
.wa_c00391{width:118.347200pt;}
.wd_c00391{width:792.977400pt;}
.wc_c00391{width:793.257550pt;}
.w0_c00391{width:793.333333pt;}
.x0_c00391{left:0.000000pt;}
.xf_c00391{left:101.233093pt;}
.x1_c00391{left:114.072480pt;}
.x12_c00391{left:137.377041pt;}
.x13_c00391{left:161.368153pt;}
.x11_c00391{left:185.354869pt;}
.x10_c00391{left:209.342916pt;}
.xd_c00391{left:225.370940pt;}
.xc_c00391{left:239.124654pt;}
.x14_c00391{left:260.842896pt;}
.xe_c00391{left:376.018977pt;}
.x2_c00391{left:404.182400pt;}
.x3_c00391{left:463.676800pt;}
.x4_c00391{left:470.712000pt;}
.x5_c00391{left:490.222400pt;}
.x15_c00391{left:495.617468pt;}
.x6_c00391{left:497.260800pt;}
.x7_c00391{left:505.256000pt;}
.x8_c00391{left:509.732800pt;}
.x9_c00391{left:520.931200pt;}
.xa_c00391{left:549.396800pt;}
.xb_c00391{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_c630e8134c36d031dee47865.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:0.886000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.113000;font-style:normal;font-weight:normal;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_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:1.115000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;line-height:1.112000;font-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_c00392{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls0_c00392{letter-spacing:0.000000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00392{word-spacing:-62.982024px;}
.ws0_c00392{word-spacing:-17.992193px;}
.ws2_c00392{word-spacing:0.000000px;}
._3_c00392{margin-left:-8.660741px;}
._4_c00392{margin-left:-3.260205px;}
._2_c00392{margin-left:-1.582438px;}
._1_c00392{width:1.126361px;}
._0_c00392{width:2.267170px;}
._6_c00392{width:3.368835px;}
._5_c00392{width:5.376245px;}
._12_c00392{width:8.118091px;}
._11_c00392{width:9.142994px;}
._f_c00392{width:10.193306px;}
._e_c00392{width:11.598660px;}
._7_c00392{width:14.473530px;}
._8_c00392{width:15.897853px;}
._10_c00392{width:19.161232px;}
._c_c00392{width:21.117816px;}
._d_c00392{width:22.562723px;}
._b_c00392{width:29.791811px;}
._a_c00392{width:54.038163px;}
._9_c00392{width:55.620938px;}
.fc1_c00392{color:rgb(105,148,45);}
.fc0_c00392{color:rgb(35,31,32);}
.fs5_c00392{font-size:48.218261px;}
.fs3_c00392{font-size:53.975678px;}
.fs2_c00392{font-size:59.733096px;}
.fs1_c00392{font-size:66.209374px;}
.fs0_c00392{font-size:71.968771px;}
.fs4_c00392{font-size:95.717362px;}
.y0_c00392{bottom:0.000000px;}
.y5_c00392{bottom:0.120938px;}
.y9_c00392{bottom:0.556171px;}
.y2_c00392{bottom:4.319248px;}
.y4_c00392{bottom:4.319998px;}
.yb_c00392{bottom:67.590602px;}
.y3_c00392{bottom:74.983320px;}
.y1_c00392{bottom:75.343320px;}
.y2b_c00392{bottom:97.634540px;}
.y2a_c00392{bottom:128.582527px;}
.y29_c00392{bottom:159.709165px;}
.y28_c00392{bottom:190.654452px;}
.y27_c00392{bottom:221.782440px;}
.y26_c00392{bottom:252.726977px;}
.y25_c00392{bottom:283.853615px;}
.y24_c00392{bottom:314.800253px;}
.y23_c00392{bottom:345.925540px;}
.y22_c00392{bottom:376.872178px;}
.y21_c00392{bottom:407.996715px;}
.y20_c00392{bottom:438.943353px;}
.y1f_c00392{bottom:470.069991px;}
.y1e_c00392{bottom:501.016628px;}
.y1d_c00392{bottom:532.141166px;}
.y1c_c00392{bottom:563.086453px;}
.y1b_c00392{bottom:594.213091px;}
.y1a_c00392{bottom:625.159729px;}
.y19_c00392{bottom:656.286366px;}
.y18_c00392{bottom:687.230904px;}
.y17_c00392{bottom:718.177541px;}
.y16_c00392{bottom:737.610034px;}
.y15_c00392{bottom:753.801027px;}
.y14_c00392{bottom:791.763012px;}
.y13_c00392{bottom:827.567998px;}
.y12_c00392{bottom:853.652687px;}
.y11_c00392{bottom:884.599325px;}
.y10_c00392{bottom:915.725962px;}
.yf_c00392{bottom:960.889444px;}
.ye_c00392{bottom:998.309929px;}
.yd_c00392{bottom:1042.568912px;}
.yc_c00392{bottom:1088.807893px;}
.ya_c00392{bottom:1106.080386px;}
.y8_c00392{bottom:1151.494902px;}
.y7_c00392{bottom:1172.185744px;}
.y6_c00392{bottom:1192.876585px;}
.h1_c00392{height:20.152260px;}
.hc_c00392{height:30.907905px;}
.h6_c00392{height:38.288915px;}
.h5_c00392{height:42.440208px;}
.h7_c00392{height:47.390646px;}
.h2_c00392{height:50.378140px;}
.ha_c00392{height:59.522227px;}
.hb_c00392{height:64.484019px;}
.h9_c00392{height:64.555988px;}
.h8_c00392{height:84.039844px;}
.h4_c00392{height:1262.431829px;}
.h3_c00392{height:1262.879062px;}
.h0_c00392{height:1263.000000px;}
.w7_c00392{width:5.396400px;}
.w3_c00392{width:7.914600px;}
.w5_c00392{width:7.918200px;}
.w6_c00392{width:8.994600px;}
.w8_c00392{width:8.998200px;}
.w1_c00392{width:17.992980px;}
.w4_c00392{width:21.949200px;}
.w9_c00392{width:28.063800px;}
.wb_c00392{width:33.463800px;}
.w2_c00392{width:66.931200px;}
.wa_c00392{width:133.140600px;}
.wd_c00392{width:892.099575px;}
.wc_c00392{width:892.414744px;}
.w0_c00392{width:892.500000px;}
.x0_c00392{left:0.000000px;}
.xf_c00392{left:113.887229px;}
.x1_c00392{left:128.331540px;}
.x14_c00392{left:167.865308px;}
.x15_c00392{left:180.639303px;}
.x16_c00392{left:207.624807px;}
.x11_c00392{left:223.998285px;}
.xd_c00392{left:253.542308px;}
.xc_c00392{left:269.015236px;}
.x13_c00392{left:326.010245px;}
.x12_c00392{left:385.207721px;}
.xe_c00392{left:423.021349px;}
.x10_c00392{left:443.679198px;}
.x2_c00392{left:454.705200px;}
.x3_c00392{left:521.636400px;}
.x4_c00392{left:529.551000px;}
.x5_c00392{left:551.500200px;}
.x6_c00392{left:559.418400px;}
.x7_c00392{left:568.413000px;}
.x8_c00392{left:573.449400px;}
.x9_c00392{left:586.047600px;}
.xa_c00392{left:618.071400px;}
.xb_c00392{left:751.212000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws1_c00392{word-spacing:-55.984021pt;}
.ws0_c00392{word-spacing:-15.993060pt;}
.ws2_c00392{word-spacing:0.000000pt;}
._3_c00392{margin-left:-7.698436pt;}
._4_c00392{margin-left:-2.897960pt;}
._2_c00392{margin-left:-1.406611pt;}
._1_c00392{width:1.001210pt;}
._0_c00392{width:2.015262pt;}
._6_c00392{width:2.994520pt;}
._5_c00392{width:4.778885pt;}
._12_c00392{width:7.216081pt;}
._11_c00392{width:8.127106pt;}
._f_c00392{width:9.060716pt;}
._e_c00392{width:10.309920pt;}
._7_c00392{width:12.865360pt;}
._8_c00392{width:14.131424pt;}
._10_c00392{width:17.032206pt;}
._c_c00392{width:18.771392pt;}
._d_c00392{width:20.055754pt;}
._b_c00392{width:26.481610pt;}
._a_c00392{width:48.033923pt;}
._9_c00392{width:49.440834pt;}
.fs5_c00392{font-size:42.860676pt;}
.fs3_c00392{font-size:47.978381pt;}
.fs2_c00392{font-size:53.096085pt;}
.fs1_c00392{font-size:58.852776pt;}
.fs0_c00392{font-size:63.972241pt;}
.fs4_c00392{font-size:85.082099pt;}
.y0_c00392{bottom:0.000000pt;}
.y5_c00392{bottom:0.107500pt;}
.y9_c00392{bottom:0.494374pt;}
.y2_c00392{bottom:3.839332pt;}
.y4_c00392{bottom:3.839998pt;}
.yb_c00392{bottom:60.080535pt;}
.y3_c00392{bottom:66.651840pt;}
.y1_c00392{bottom:66.971840pt;}
.y2b_c00392{bottom:86.786257pt;}
.y2a_c00392{bottom:114.295580pt;}
.y29_c00392{bottom:141.963702pt;}
.y28_c00392{bottom:169.470624pt;}
.y27_c00392{bottom:197.139947pt;}
.y26_c00392{bottom:224.646202pt;}
.y25_c00392{bottom:252.314324pt;}
.y24_c00392{bottom:279.822447pt;}
.y23_c00392{bottom:307.489369pt;}
.y22_c00392{bottom:334.997491pt;}
.y21_c00392{bottom:362.663747pt;}
.y20_c00392{bottom:390.171869pt;}
.y1f_c00392{bottom:417.839992pt;}
.y1e_c00392{bottom:445.348114pt;}
.y1d_c00392{bottom:473.014370pt;}
.y1c_c00392{bottom:500.521292pt;}
.y1b_c00392{bottom:528.189414pt;}
.y1a_c00392{bottom:555.697536pt;}
.y19_c00392{bottom:583.365659pt;}
.y18_c00392{bottom:610.871914pt;}
.y17_c00392{bottom:638.380037pt;}
.y16_c00392{bottom:655.653363pt;}
.y15_c00392{bottom:670.045357pt;}
.y14_c00392{bottom:703.789344pt;}
.y13_c00392{bottom:735.615998pt;}
.y12_c00392{bottom:758.802389pt;}
.y11_c00392{bottom:786.310511pt;}
.y10_c00392{bottom:813.978633pt;}
.yf_c00392{bottom:854.123950pt;}
.ye_c00392{bottom:887.386604pt;}
.yd_c00392{bottom:926.727921pt;}
.yc_c00392{bottom:967.829238pt;}
.ya_c00392{bottom:983.182565pt;}
.y8_c00392{bottom:1023.551024pt;}
.y7_c00392{bottom:1041.942883pt;}
.y6_c00392{bottom:1060.334742pt;}
.h1_c00392{height:17.913120pt;}
.hc_c00392{height:27.473693pt;}
.h6_c00392{height:34.034591pt;}
.h5_c00392{height:37.724630pt;}
.h7_c00392{height:42.125018pt;}
.h2_c00392{height:44.780569pt;}
.ha_c00392{height:52.908646pt;}
.hb_c00392{height:57.319128pt;}
.h9_c00392{height:57.383100pt;}
.h8_c00392{height:74.702083pt;}
.h4_c00392{height:1122.161626pt;}
.h3_c00392{height:1122.559167pt;}
.h0_c00392{height:1122.666667pt;}
.w7_c00392{width:4.796800pt;}
.w3_c00392{width:7.035200pt;}
.w5_c00392{width:7.038400pt;}
.w6_c00392{width:7.995200pt;}
.w8_c00392{width:7.998400pt;}
.w1_c00392{width:15.993760pt;}
.w4_c00392{width:19.510400pt;}
.w9_c00392{width:24.945600pt;}
.wb_c00392{width:29.745600pt;}
.w2_c00392{width:59.494400pt;}
.wa_c00392{width:118.347200pt;}
.wd_c00392{width:792.977400pt;}
.wc_c00392{width:793.257550pt;}
.w0_c00392{width:793.333333pt;}
.x0_c00392{left:0.000000pt;}
.xf_c00392{left:101.233093pt;}
.x1_c00392{left:114.072480pt;}
.x14_c00392{left:149.213607pt;}
.x15_c00392{left:160.568269pt;}
.x16_c00392{left:184.555384pt;}
.x11_c00392{left:199.109587pt;}
.xd_c00392{left:225.370940pt;}
.xc_c00392{left:239.124654pt;}
.x13_c00392{left:289.786884pt;}
.x12_c00392{left:342.406863pt;}
.xe_c00392{left:376.018977pt;}
.x10_c00392{left:394.381509pt;}
.x2_c00392{left:404.182400pt;}
.x3_c00392{left:463.676800pt;}
.x4_c00392{left:470.712000pt;}
.x5_c00392{left:490.222400pt;}
.x6_c00392{left:497.260800pt;}
.x7_c00392{left:505.256000pt;}
.x8_c00392{left:509.732800pt;}
.x9_c00392{left:520.931200pt;}
.xa_c00392{left:549.396800pt;}
.xb_c00392{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_6156ab1b529e4a7782d41337.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.112000;font-style:normal;font-weight:normal;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_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.115000;font-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_c00393{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:-17.992193px;}
.ws2_c00393{word-spacing:0.000000px;}
.ws1_c00393{word-spacing:36.014703px;}
._3_c00393{margin-left:-1.269369px;}
._1_c00393{width:1.126361px;}
._0_c00393{width:2.267170px;}
._2_c00393{width:3.877142px;}
._6_c00393{width:4.964049px;}
._5_c00393{width:6.058742px;}
._a_c00393{width:7.197052px;}
._c_c00393{width:8.411943px;}
._7_c00393{width:10.400934px;}
._8_c00393{width:11.526365px;}
._9_c00393{width:12.581416px;}
._b_c00393{width:14.290905px;}
._d_c00393{width:15.460556px;}
._e_c00393{width:20.073449px;}
._f_c00393{width:21.408209px;}
._4_c00393{width:54.038179px;}
.fc1_c00393{color:rgb(105,148,45);}
.fc0_c00393{color:rgb(35,31,32);}
.fs2_c00393{font-size:59.733096px;}
.fs1_c00393{font-size:66.209374px;}
.fs0_c00393{font-size:71.968771px;}
.y0_c00393{bottom:0.000000px;}
.y5_c00393{bottom:0.120938px;}
.y9_c00393{bottom:0.556171px;}
.y2_c00393{bottom:4.319248px;}
.y4_c00393{bottom:4.319998px;}
.yb_c00393{bottom:67.590602px;}
.y3_c00393{bottom:74.983320px;}
.y1_c00393{bottom:75.343320px;}
.y2b_c00393{bottom:123.001929px;}
.y2a_c00393{bottom:153.949917px;}
.y29_c00393{bottom:185.074455px;}
.y28_c00393{bottom:216.019742px;}
.y27_c00393{bottom:247.149230px;}
.y26_c00393{bottom:278.093017px;}
.y25_c00393{bottom:309.217555px;}
.y24_c00393{bottom:340.165543px;}
.y23_c00393{bottom:371.292180px;}
.y22_c00393{bottom:402.237468px;}
.y21_c00393{bottom:433.364105px;}
.y20_c00393{bottom:464.310743px;}
.y1f_c00393{bottom:495.433930px;}
.y1e_c00393{bottom:526.381918px;}
.y1d_c00393{bottom:557.508556px;}
.y1c_c00393{bottom:588.453843px;}
.y1b_c00393{bottom:619.580481px;}
.y1a_c00393{bottom:650.525018px;}
.y19_c00393{bottom:681.650306px;}
.y18_c00393{bottom:712.596944px;}
.y17_c00393{bottom:743.722231px;}
.y16_c00393{bottom:774.666769px;}
.y15_c00393{bottom:805.796856px;}
.y14_c00393{bottom:836.741394px;}
.y13_c00393{bottom:867.868031px;}
.y12_c00393{bottom:898.814669px;}
.y11_c00393{bottom:929.941307px;}
.y10_c00393{bottom:960.884494px;}
.yf_c00393{bottom:991.652482px;}
.ye_c00393{bottom:1022.959119px;}
.yd_c00393{bottom:1054.082907px;}
.yc_c00393{bottom:1085.030895px;}
.ya_c00393{bottom:1106.080386px;}
.y8_c00393{bottom:1151.494902px;}
.y7_c00393{bottom:1172.185744px;}
.y6_c00393{bottom:1192.876585px;}
.h1_c00393{height:20.152260px;}
.h6_c00393{height:38.288915px;}
.h5_c00393{height:42.440208px;}
.h2_c00393{height:50.378140px;}
.h9_c00393{height:64.484019px;}
.h7_c00393{height:64.555988px;}
.h8_c00393{height:64.699925px;}
.h4_c00393{height:1262.431829px;}
.h3_c00393{height:1262.879062px;}
.h0_c00393{height:1263.000000px;}
.w7_c00393{width:5.396400px;}
.w3_c00393{width:7.914600px;}
.w5_c00393{width:7.918200px;}
.w6_c00393{width:8.994600px;}
.w8_c00393{width:8.998200px;}
.w1_c00393{width:17.992980px;}
.w4_c00393{width:21.949200px;}
.w9_c00393{width:28.063800px;}
.wb_c00393{width:33.463800px;}
.w2_c00393{width:66.931200px;}
.wa_c00393{width:133.140600px;}
.wd_c00393{width:892.099575px;}
.wc_c00393{width:892.414744px;}
.w0_c00393{width:892.500000px;}
.x0_c00393{left:0.000000px;}
.xf_c00393{left:113.887229px;}
.x1_c00393{left:128.331540px;}
.x10_c00393{left:180.639303px;}
.x11_c00393{left:207.624507px;}
.xd_c00393{left:253.542308px;}
.xc_c00393{left:269.015236px;}
.xe_c00393{left:423.021349px;}
.x2_c00393{left:454.705200px;}
.x3_c00393{left:521.636400px;}
.x4_c00393{left:529.551000px;}
.x5_c00393{left:551.500200px;}
.x6_c00393{left:559.418400px;}
.x7_c00393{left:568.413000px;}
.x8_c00393{left:573.449400px;}
.x9_c00393{left:586.047600px;}
.xa_c00393{left:618.071400px;}
.xb_c00393{left:751.212000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:-15.993060pt;}
.ws2_c00393{word-spacing:0.000000pt;}
.ws1_c00393{word-spacing:32.013070pt;}
._3_c00393{margin-left:-1.128328pt;}
._1_c00393{width:1.001210pt;}
._0_c00393{width:2.015262pt;}
._2_c00393{width:3.446349pt;}
._6_c00393{width:4.412488pt;}
._5_c00393{width:5.385548pt;}
._a_c00393{width:6.397379pt;}
._c_c00393{width:7.477282pt;}
._7_c00393{width:9.245275pt;}
._8_c00393{width:10.245658pt;}
._9_c00393{width:11.183481pt;}
._b_c00393{width:12.703027pt;}
._d_c00393{width:13.742717pt;}
._e_c00393{width:17.843066pt;}
._f_c00393{width:19.029519pt;}
._4_c00393{width:48.033937pt;}
.fs2_c00393{font-size:53.096085pt;}
.fs1_c00393{font-size:58.852776pt;}
.fs0_c00393{font-size:63.972241pt;}
.y0_c00393{bottom:0.000000pt;}
.y5_c00393{bottom:0.107500pt;}
.y9_c00393{bottom:0.494374pt;}
.y2_c00393{bottom:3.839332pt;}
.y4_c00393{bottom:3.839998pt;}
.yb_c00393{bottom:60.080535pt;}
.y3_c00393{bottom:66.651840pt;}
.y1_c00393{bottom:66.971840pt;}
.y2b_c00393{bottom:109.335048pt;}
.y2a_c00393{bottom:136.844371pt;}
.y29_c00393{bottom:164.510626pt;}
.y28_c00393{bottom:192.017549pt;}
.y27_c00393{bottom:219.688204pt;}
.y26_c00393{bottom:247.193793pt;}
.y25_c00393{bottom:274.860049pt;}
.y24_c00393{bottom:302.369371pt;}
.y23_c00393{bottom:330.037493pt;}
.y22_c00393{bottom:357.544416pt;}
.y21_c00393{bottom:385.212538pt;}
.y20_c00393{bottom:412.720660pt;}
.y1f_c00393{bottom:440.385716pt;}
.y1e_c00393{bottom:467.895038pt;}
.y1d_c00393{bottom:495.563161pt;}
.y1c_c00393{bottom:523.070083pt;}
.y1b_c00393{bottom:550.738205pt;}
.y1a_c00393{bottom:578.244461pt;}
.y19_c00393{bottom:605.911383pt;}
.y18_c00393{bottom:633.419505pt;}
.y17_c00393{bottom:661.086428pt;}
.y16_c00393{bottom:688.592683pt;}
.y15_c00393{bottom:716.263872pt;}
.y14_c00393{bottom:743.770128pt;}
.y13_c00393{bottom:771.438250pt;}
.y12_c00393{bottom:798.946372pt;}
.y11_c00393{bottom:826.614495pt;}
.y10_c00393{bottom:854.119550pt;}
.yf_c00393{bottom:881.468873pt;}
.ye_c00393{bottom:909.296995pt;}
.yd_c00393{bottom:936.962584pt;}
.yc_c00393{bottom:964.471906pt;}
.ya_c00393{bottom:983.182565pt;}
.y8_c00393{bottom:1023.551024pt;}
.y7_c00393{bottom:1041.942883pt;}
.y6_c00393{bottom:1060.334742pt;}
.h1_c00393{height:17.913120pt;}
.h6_c00393{height:34.034591pt;}
.h5_c00393{height:37.724630pt;}
.h2_c00393{height:44.780569pt;}
.h9_c00393{height:57.319128pt;}
.h7_c00393{height:57.383100pt;}
.h8_c00393{height:57.511045pt;}
.h4_c00393{height:1122.161626pt;}
.h3_c00393{height:1122.559167pt;}
.h0_c00393{height:1122.666667pt;}
.w7_c00393{width:4.796800pt;}
.w3_c00393{width:7.035200pt;}
.w5_c00393{width:7.038400pt;}
.w6_c00393{width:7.995200pt;}
.w8_c00393{width:7.998400pt;}
.w1_c00393{width:15.993760pt;}
.w4_c00393{width:19.510400pt;}
.w9_c00393{width:24.945600pt;}
.wb_c00393{width:29.745600pt;}
.w2_c00393{width:59.494400pt;}
.wa_c00393{width:118.347200pt;}
.wd_c00393{width:792.977400pt;}
.wc_c00393{width:793.257550pt;}
.w0_c00393{width:793.333333pt;}
.x0_c00393{left:0.000000pt;}
.xf_c00393{left:101.233093pt;}
.x1_c00393{left:114.072480pt;}
.x10_c00393{left:160.568269pt;}
.x11_c00393{left:184.555118pt;}
.xd_c00393{left:225.370940pt;}
.xc_c00393{left:239.124654pt;}
.xe_c00393{left:376.018977pt;}
.x2_c00393{left:404.182400pt;}
.x3_c00393{left:463.676800pt;}
.x4_c00393{left:470.712000pt;}
.x5_c00393{left:490.222400pt;}
.x6_c00393{left:497.260800pt;}
.x7_c00393{left:505.256000pt;}
.x8_c00393{left:509.732800pt;}
.x9_c00393{left:520.931200pt;}
.xa_c00393{left:549.396800pt;}
.xb_c00393{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_6156ab1b529e4a7782d41337.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.112000;font-style:normal;font-weight:normal;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_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00394;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff6_c00394{font-family:ff6_c00394;line-height:0.360019;font-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_c00394{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls2_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.020040px;}
.ls1_c00394{letter-spacing:74.907522px;}
.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:-17.992193px;}
.ws3_c00394{word-spacing:0.000000px;}
.ws1_c00394{word-spacing:36.017967px;}
.ws2_c00394{word-spacing:36.020367px;}
._a_c00394{margin-left:-2.715328px;}
._2_c00394{margin-left:-1.453921px;}
._1_c00394{width:1.126361px;}
._0_c00394{width:2.267170px;}
._7_c00394{width:3.637379px;}
._12_c00394{width:4.715966px;}
._e_c00394{width:5.760176px;}
._f_c00394{width:6.867778px;}
._10_c00394{width:8.356805px;}
._c_c00394{width:10.122930px;}
._d_c00394{width:11.512804px;}
._3_c00394{width:12.856989px;}
._4_c00394{width:14.534173px;}
._9_c00394{width:15.737251px;}
._b_c00394{width:16.749509px;}
._14_c00394{width:19.510156px;}
._8_c00394{width:20.752538px;}
._5_c00394{width:21.821960px;}
._6_c00394{width:23.286450px;}
._11_c00394{width:25.414877px;}
._13_c00394{width:27.370762px;}
.fc1_c00394{color:rgb(105,148,45);}
.fc0_c00394{color:rgb(35,31,32);}
.fs2_c00394{font-size:59.733096px;}
.fs1_c00394{font-size:66.209374px;}
.fs0_c00394{font-size:71.968771px;}
.y0_c00394{bottom:0.000000px;}
.y5_c00394{bottom:0.120938px;}
.y9_c00394{bottom:0.556171px;}
.y2_c00394{bottom:4.319248px;}
.y4_c00394{bottom:4.319998px;}
.yb_c00394{bottom:67.590602px;}
.y3_c00394{bottom:74.983320px;}
.y1_c00394{bottom:75.343320px;}
.y2b_c00394{bottom:120.483280px;}
.y2a_c00394{bottom:151.431268px;}
.y29_c00394{bottom:182.556556px;}
.y28_c00394{bottom:213.503193px;}
.y27_c00394{bottom:244.629831px;}
.y26_c00394{bottom:275.574368px;}
.y25_c00394{bottom:306.701006px;}
.y24_c00394{bottom:338.906293px;}
.y23_c00394{bottom:370.032181px;}
.y22_c00394{bottom:402.237468px;}
.y21_c00394{bottom:433.364105px;}
.y20_c00394{bottom:464.310743px;}
.y1f_c00394{bottom:495.433930px;}
.y1e_c00394{bottom:526.381918px;}
.y1d_c00394{bottom:557.508556px;}
.y1c_c00394{bottom:588.453843px;}
.y1b_c00394{bottom:619.580481px;}
.y1a_c00394{bottom:650.525018px;}
.y19_c00394{bottom:681.650306px;}
.y18_c00394{bottom:712.596944px;}
.y17_c00394{bottom:743.722231px;}
.y16_c00394{bottom:774.666769px;}
.y15_c00394{bottom:805.796856px;}
.y14_c00394{bottom:836.741394px;}
.y13_c00394{bottom:867.508032px;}
.y12_c00394{bottom:898.814669px;}
.y11_c00394{bottom:929.941307px;}
.y10_c00394{bottom:960.884494px;}
.yf_c00394{bottom:992.012482px;}
.ye_c00394{bottom:1022.959119px;}
.yd_c00394{bottom:1054.082907px;}
.yc_c00394{bottom:1085.030895px;}
.ya_c00394{bottom:1106.080386px;}
.y8_c00394{bottom:1151.494902px;}
.y7_c00394{bottom:1172.185744px;}
.y6_c00394{bottom:1192.876585px;}
.h1_c00394{height:20.152260px;}
.h6_c00394{height:38.288915px;}
.h5_c00394{height:42.440208px;}
.h2_c00394{height:50.378140px;}
.h8_c00394{height:64.484019px;}
.h7_c00394{height:64.555988px;}
.h9_c00394{height:64.699925px;}
.h4_c00394{height:1262.431829px;}
.h3_c00394{height:1262.879062px;}
.h0_c00394{height:1263.000000px;}
.w7_c00394{width:5.396400px;}
.w3_c00394{width:7.914600px;}
.w5_c00394{width:7.918200px;}
.w6_c00394{width:8.994600px;}
.w8_c00394{width:8.998200px;}
.w1_c00394{width:17.992980px;}
.w4_c00394{width:21.949200px;}
.w9_c00394{width:28.063800px;}
.wb_c00394{width:33.463800px;}
.w2_c00394{width:66.931200px;}
.wa_c00394{width:133.140600px;}
.wd_c00394{width:892.099575px;}
.wc_c00394{width:892.414744px;}
.w0_c00394{width:892.500000px;}
.x0_c00394{left:0.000000px;}
.xf_c00394{left:113.887229px;}
.x1_c00394{left:128.331540px;}
.x14_c00394{left:180.638047px;}
.x15_c00394{left:207.625051px;}
.x10_c00394{left:230.835283px;}
.xd_c00394{left:253.542308px;}
.x11_c00394{left:257.821237px;}
.xc_c00394{left:269.015236px;}
.x12_c00394{left:302.082411px;}
.x13_c00394{left:329.069714px;}
.xe_c00394{left:423.021349px;}
.x2_c00394{left:454.705200px;}
.x3_c00394{left:521.636400px;}
.x4_c00394{left:529.551000px;}
.x5_c00394{left:551.500200px;}
.x6_c00394{left:559.418400px;}
.x7_c00394{left:568.413000px;}
.x8_c00394{left:573.449400px;}
.x9_c00394{left:586.047600px;}
.xa_c00394{left:618.071400px;}
.xb_c00394{left:751.212000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls2_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.017813pt;}
.ls1_c00394{letter-spacing:66.584464pt;}
.ws0_c00394{word-spacing:-15.993060pt;}
.ws3_c00394{word-spacing:0.000000pt;}
.ws1_c00394{word-spacing:32.015971pt;}
.ws2_c00394{word-spacing:32.018104pt;}
._a_c00394{margin-left:-2.413625pt;}
._2_c00394{margin-left:-1.292374pt;}
._1_c00394{width:1.001210pt;}
._0_c00394{width:2.015262pt;}
._7_c00394{width:3.233226pt;}
._12_c00394{width:4.191970pt;}
._e_c00394{width:5.120157pt;}
._f_c00394{width:6.104691pt;}
._10_c00394{width:7.428271pt;}
._c_c00394{width:8.998160pt;}
._d_c00394{width:10.233604pt;}
._3_c00394{width:11.428435pt;}
._4_c00394{width:12.919265pt;}
._9_c00394{width:13.988668pt;}
._b_c00394{width:14.888452pt;}
._14_c00394{width:17.342361pt;}
._8_c00394{width:18.446700pt;}
._5_c00394{width:19.397298pt;}
._6_c00394{width:20.699066pt;}
._11_c00394{width:22.591002pt;}
._13_c00394{width:24.329567pt;}
.fs2_c00394{font-size:53.096085pt;}
.fs1_c00394{font-size:58.852776pt;}
.fs0_c00394{font-size:63.972241pt;}
.y0_c00394{bottom:0.000000pt;}
.y5_c00394{bottom:0.107500pt;}
.y9_c00394{bottom:0.494374pt;}
.y2_c00394{bottom:3.839332pt;}
.y4_c00394{bottom:3.839998pt;}
.yb_c00394{bottom:60.080535pt;}
.y3_c00394{bottom:66.651840pt;}
.y1_c00394{bottom:66.971840pt;}
.y2b_c00394{bottom:107.096249pt;}
.y2a_c00394{bottom:134.605572pt;}
.y29_c00394{bottom:162.272494pt;}
.y28_c00394{bottom:189.780616pt;}
.y27_c00394{bottom:217.448738pt;}
.y26_c00394{bottom:244.954994pt;}
.y25_c00394{bottom:272.623116pt;}
.y24_c00394{bottom:301.250038pt;}
.y23_c00394{bottom:328.917494pt;}
.y22_c00394{bottom:357.544416pt;}
.y21_c00394{bottom:385.212538pt;}
.y20_c00394{bottom:412.720660pt;}
.y1f_c00394{bottom:440.385716pt;}
.y1e_c00394{bottom:467.895038pt;}
.y1d_c00394{bottom:495.563161pt;}
.y1c_c00394{bottom:523.070083pt;}
.y1b_c00394{bottom:550.738205pt;}
.y1a_c00394{bottom:578.244461pt;}
.y19_c00394{bottom:605.911383pt;}
.y18_c00394{bottom:633.419505pt;}
.y17_c00394{bottom:661.086428pt;}
.y16_c00394{bottom:688.592683pt;}
.y15_c00394{bottom:716.263872pt;}
.y14_c00394{bottom:743.770128pt;}
.y13_c00394{bottom:771.118250pt;}
.y12_c00394{bottom:798.946372pt;}
.y11_c00394{bottom:826.614495pt;}
.y10_c00394{bottom:854.119550pt;}
.yf_c00394{bottom:881.788873pt;}
.ye_c00394{bottom:909.296995pt;}
.yd_c00394{bottom:936.962584pt;}
.yc_c00394{bottom:964.471906pt;}
.ya_c00394{bottom:983.182565pt;}
.y8_c00394{bottom:1023.551024pt;}
.y7_c00394{bottom:1041.942883pt;}
.y6_c00394{bottom:1060.334742pt;}
.h1_c00394{height:17.913120pt;}
.h6_c00394{height:34.034591pt;}
.h5_c00394{height:37.724630pt;}
.h2_c00394{height:44.780569pt;}
.h8_c00394{height:57.319128pt;}
.h7_c00394{height:57.383100pt;}
.h9_c00394{height:57.511045pt;}
.h4_c00394{height:1122.161626pt;}
.h3_c00394{height:1122.559167pt;}
.h0_c00394{height:1122.666667pt;}
.w7_c00394{width:4.796800pt;}
.w3_c00394{width:7.035200pt;}
.w5_c00394{width:7.038400pt;}
.w6_c00394{width:7.995200pt;}
.w8_c00394{width:7.998400pt;}
.w1_c00394{width:15.993760pt;}
.w4_c00394{width:19.510400pt;}
.w9_c00394{width:24.945600pt;}
.wb_c00394{width:29.745600pt;}
.w2_c00394{width:59.494400pt;}
.wa_c00394{width:118.347200pt;}
.wd_c00394{width:792.977400pt;}
.wc_c00394{width:793.257550pt;}
.w0_c00394{width:793.333333pt;}
.x0_c00394{left:0.000000pt;}
.xf_c00394{left:101.233093pt;}
.x1_c00394{left:114.072480pt;}
.x14_c00394{left:160.567153pt;}
.x15_c00394{left:184.555600pt;}
.x10_c00394{left:205.186918pt;}
.xd_c00394{left:225.370940pt;}
.x11_c00394{left:229.174433pt;}
.xc_c00394{left:239.124654pt;}
.x12_c00394{left:268.517699pt;}
.x13_c00394{left:292.506413pt;}
.xe_c00394{left:376.018977pt;}
.x2_c00394{left:404.182400pt;}
.x3_c00394{left:463.676800pt;}
.x4_c00394{left:470.712000pt;}
.x5_c00394{left:490.222400pt;}
.x6_c00394{left:497.260800pt;}
.x7_c00394{left:505.256000pt;}
.x8_c00394{left:509.732800pt;}
.x9_c00394{left:520.931200pt;}
.xa_c00394{left:549.396800pt;}
.xb_c00394{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:0.360019;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00395{transform:matrix(0.242614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242614,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls2_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:74.902122px;}
.ls1_c00395{letter-spacing:74.907522px;}
.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.992193px;}
.ws1_c00395{word-spacing:0.000000px;}
._2_c00395{margin-left:-1.167177px;}
._1_c00395{width:1.126361px;}
._0_c00395{width:2.267170px;}
._7_c00395{width:5.812023px;}
._5_c00395{width:7.252241px;}
._6_c00395{width:8.911464px;}
._8_c00395{width:19.445041px;}
._4_c00395{width:52.600459px;}
._3_c00395{width:54.041202px;}
._9_c00395{width:58.066350px;}
.fc1_c00395{color:rgb(105,148,45);}
.fc0_c00395{color:rgb(35,31,32);}
.fs4_c00395{font-size:41.741203px;}
.fs3_c00395{font-size:48.218261px;}
.fs2_c00395{font-size:59.733096px;}
.fs1_c00395{font-size:66.209374px;}
.fs0_c00395{font-size:71.968771px;}
.y0_c00395{bottom:0.000000px;}
.y5_c00395{bottom:0.120938px;}
.y9_c00395{bottom:0.556171px;}
.y2_c00395{bottom:4.319248px;}
.y4_c00395{bottom:4.319998px;}
.yb_c00395{bottom:67.590602px;}
.y3_c00395{bottom:74.983320px;}
.y1_c00395{bottom:75.343320px;}
.y24_c00395{bottom:293.388211px;}
.y23_c00395{bottom:355.639686px;}
.y21_c00395{bottom:386.586024px;}
.y22_c00395{bottom:386.586174px;}
.y20_c00395{bottom:432.646356px;}
.y1f_c00395{bottom:463.591643px;}
.y1e_c00395{bottom:509.650475px;}
.y1d_c00395{bottom:540.777112px;}
.y1c_c00395{bottom:571.722400px;}
.y1b_c00395{bottom:602.849037px;}
.y1a_c00395{bottom:648.727869px;}
.y19_c00395{bottom:679.853157px;}
.y18_c00395{bottom:710.799044px;}
.y17_c00395{bottom:729.330037px;}
.y16_c00395{bottom:759.736525px;}
.y15_c00395{bottom:778.989017px;}
.y14_c00395{bottom:832.427846px;}
.y13_c00395{bottom:871.109530px;}
.y12_c00395{bottom:909.611965px;}
.y11_c00395{bottom:947.750949px;}
.y10_c00395{bottom:969.703441px;}
.yf_c00395{bottom:988.593083px;}
.ye_c00395{bottom:1019.179721px;}
.yd_c00395{bottom:1051.384258px;}
.yc_c00395{bottom:1083.770895px;}
.ya_c00395{bottom:1106.080386px;}
.y8_c00395{bottom:1151.494902px;}
.y7_c00395{bottom:1172.185744px;}
.y6_c00395{bottom:1192.876585px;}
.h1_c00395{height:20.152260px;}
.hc_c00395{height:26.756111px;}
.hb_c00395{height:30.907905px;}
.h6_c00395{height:38.288915px;}
.h5_c00395{height:42.440208px;}
.h8_c00395{height:46.131982px;}
.h2_c00395{height:50.378140px;}
.h9_c00395{height:59.522227px;}
.h7_c00395{height:64.484019px;}
.ha_c00395{height:64.699925px;}
.h4_c00395{height:1262.431829px;}
.h3_c00395{height:1262.879062px;}
.h0_c00395{height:1263.000000px;}
.w7_c00395{width:5.396400px;}
.w3_c00395{width:7.914600px;}
.w5_c00395{width:7.918200px;}
.w6_c00395{width:8.994600px;}
.w8_c00395{width:8.998200px;}
.w1_c00395{width:17.992980px;}
.w4_c00395{width:21.949200px;}
.w9_c00395{width:28.063800px;}
.wb_c00395{width:33.463800px;}
.w2_c00395{width:66.931200px;}
.wa_c00395{width:133.140600px;}
.wd_c00395{width:892.099575px;}
.wc_c00395{width:892.414744px;}
.w0_c00395{width:892.500000px;}
.x0_c00395{left:0.000000px;}
.xf_c00395{left:113.887229px;}
.x1_c00395{left:128.331540px;}
.x11_c00395{left:140.873783px;}
.x12_c00395{left:167.323335px;}
.x13_c00395{left:220.935756px;}
.x16_c00395{left:247.924776px;}
.xd_c00395{left:253.542308px;}
.xc_c00395{left:269.015236px;}
.x10_c00395{left:302.082254px;}
.x17_c00395{left:316.116249px;}
.x14_c00395{left:379.447723px;}
.xe_c00395{left:423.021349px;}
.x2_c00395{left:454.705200px;}
.x15_c00395{left:456.991692px;}
.x18_c00395{left:478.764183px;}
.x3_c00395{left:521.636400px;}
.x4_c00395{left:529.551000px;}
.x5_c00395{left:551.500200px;}
.x6_c00395{left:559.418400px;}
.x7_c00395{left:568.413000px;}
.x8_c00395{left:573.449400px;}
.x9_c00395{left:586.047600px;}
.xa_c00395{left:618.071400px;}
.x19_c00395{left:733.708581px;}
.xb_c00395{left:751.212000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls2_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:66.579664pt;}
.ls1_c00395{letter-spacing:66.584464pt;}
.ws0_c00395{word-spacing:-15.993060pt;}
.ws1_c00395{word-spacing:0.000000pt;}
._2_c00395{margin-left:-1.037491pt;}
._1_c00395{width:1.001210pt;}
._0_c00395{width:2.015262pt;}
._7_c00395{width:5.166243pt;}
._5_c00395{width:6.446436pt;}
._6_c00395{width:7.921302pt;}
._8_c00395{width:17.284481pt;}
._4_c00395{width:46.755963pt;}
._3_c00395{width:48.036624pt;}
._9_c00395{width:51.614533pt;}
.fs4_c00395{font-size:37.103292pt;}
.fs3_c00395{font-size:42.860676pt;}
.fs2_c00395{font-size:53.096085pt;}
.fs1_c00395{font-size:58.852776pt;}
.fs0_c00395{font-size:63.972241pt;}
.y0_c00395{bottom:0.000000pt;}
.y5_c00395{bottom:0.107500pt;}
.y9_c00395{bottom:0.494374pt;}
.y2_c00395{bottom:3.839332pt;}
.y4_c00395{bottom:3.839998pt;}
.yb_c00395{bottom:60.080535pt;}
.y3_c00395{bottom:66.651840pt;}
.y1_c00395{bottom:66.971840pt;}
.y24_c00395{bottom:260.789521pt;}
.y23_c00395{bottom:316.124166pt;}
.y21_c00395{bottom:343.632021pt;}
.y22_c00395{bottom:343.632155pt;}
.y20_c00395{bottom:384.574538pt;}
.y1f_c00395{bottom:412.081461pt;}
.y1e_c00395{bottom:453.022644pt;}
.y1d_c00395{bottom:480.690766pt;}
.y1c_c00395{bottom:508.197689pt;}
.y1b_c00395{bottom:535.865811pt;}
.y1a_c00395{bottom:576.646995pt;}
.y19_c00395{bottom:604.313917pt;}
.y18_c00395{bottom:631.821373pt;}
.y17_c00395{bottom:648.293366pt;}
.y16_c00395{bottom:675.321355pt;}
.y15_c00395{bottom:692.434682pt;}
.y14_c00395{bottom:739.935863pt;}
.y13_c00395{bottom:774.319582pt;}
.y12_c00395{bottom:808.543969pt;}
.y11_c00395{bottom:842.445288pt;}
.y10_c00395{bottom:861.958614pt;}
.yf_c00395{bottom:878.749407pt;}
.ye_c00395{bottom:905.937530pt;}
.yd_c00395{bottom:934.563785pt;}
.yc_c00395{bottom:963.351907pt;}
.ya_c00395{bottom:983.182565pt;}
.y8_c00395{bottom:1023.551024pt;}
.y7_c00395{bottom:1041.942883pt;}
.y6_c00395{bottom:1060.334742pt;}
.h1_c00395{height:17.913120pt;}
.hc_c00395{height:23.783210pt;}
.hb_c00395{height:27.473693pt;}
.h6_c00395{height:34.034591pt;}
.h5_c00395{height:37.724630pt;}
.h8_c00395{height:41.006207pt;}
.h2_c00395{height:44.780569pt;}
.h9_c00395{height:52.908646pt;}
.h7_c00395{height:57.319128pt;}
.ha_c00395{height:57.511045pt;}
.h4_c00395{height:1122.161626pt;}
.h3_c00395{height:1122.559167pt;}
.h0_c00395{height:1122.666667pt;}
.w7_c00395{width:4.796800pt;}
.w3_c00395{width:7.035200pt;}
.w5_c00395{width:7.038400pt;}
.w6_c00395{width:7.995200pt;}
.w8_c00395{width:7.998400pt;}
.w1_c00395{width:15.993760pt;}
.w4_c00395{width:19.510400pt;}
.w9_c00395{width:24.945600pt;}
.wb_c00395{width:29.745600pt;}
.w2_c00395{width:59.494400pt;}
.wa_c00395{width:118.347200pt;}
.wd_c00395{width:792.977400pt;}
.wc_c00395{width:793.257550pt;}
.w0_c00395{width:793.333333pt;}
.x0_c00395{left:0.000000pt;}
.xf_c00395{left:101.233093pt;}
.x1_c00395{left:114.072480pt;}
.x11_c00395{left:125.221141pt;}
.x12_c00395{left:148.731853pt;}
.x13_c00395{left:196.387338pt;}
.x16_c00395{left:220.377578pt;}
.xd_c00395{left:225.370940pt;}
.xc_c00395{left:239.124654pt;}
.x10_c00395{left:268.517559pt;}
.x17_c00395{left:280.992221pt;}
.x14_c00395{left:337.286865pt;}
.xe_c00395{left:376.018977pt;}
.x2_c00395{left:404.182400pt;}
.x15_c00395{left:406.214837pt;}
.x18_c00395{left:425.568163pt;}
.x3_c00395{left:463.676800pt;}
.x4_c00395{left:470.712000pt;}
.x5_c00395{left:490.222400pt;}
.x6_c00395{left:497.260800pt;}
.x7_c00395{left:505.256000pt;}
.x8_c00395{left:509.732800pt;}
.x9_c00395{left:520.931200pt;}
.xa_c00395{left:549.396800pt;}
.x19_c00395{left:652.185406pt;}
.xb_c00395{left:667.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_b5e09e11c11761537042e1dc.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.097000;font-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_c00396{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls0_c00396{letter-spacing:0.000000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00396{word-spacing:-29.866548px;}
.ws1_c00396{word-spacing:-17.992193px;}
.ws0_c00396{word-spacing:-16.552343px;}
.ws3_c00396{word-spacing:0.000000px;}
._e_c00396{margin-left:-4.121170px;}
._12_c00396{margin-left:-2.630064px;}
._1_c00396{margin-left:-1.176984px;}
._0_c00396{width:1.102012px;}
._5_c00396{width:2.646806px;}
._4_c00396{width:4.077848px;}
._f_c00396{width:5.760052px;}
._b_c00396{width:6.772677px;}
._c_c00396{width:7.905087px;}
._d_c00396{width:9.162430px;}
._10_c00396{width:10.252140px;}
._15_c00396{width:11.253641px;}
._11_c00396{width:12.339708px;}
._14_c00396{width:13.374226px;}
._13_c00396{width:14.607207px;}
._16_c00396{width:16.715152px;}
._17_c00396{width:19.685462px;}
._8_c00396{width:21.396932px;}
._7_c00396{width:23.127455px;}
._6_c00396{width:24.839270px;}
._3_c00396{width:25.901066px;}
._2_c00396{width:27.481988px;}
._a_c00396{width:29.170133px;}
._9_c00396{width:30.365091px;}
.fc1_c00396{color:rgb(105,148,45);}
.fc0_c00396{color:rgb(35,31,32);}
.fs3_c00396{font-size:41.741203px;}
.fs2_c00396{font-size:59.733096px;}
.fs0_c00396{font-size:66.209374px;}
.fs1_c00396{font-size:71.968771px;}
.y0_c00396{bottom:0.000000px;}
.y4_c00396{bottom:0.120938px;}
.y8_c00396{bottom:0.556171px;}
.y2_c00396{bottom:3.957898px;}
.ya_c00396{bottom:65.791352px;}
.y3_c00396{bottom:74.623320px;}
.y1_c00396{bottom:74.983320px;}
.y35_c00396{bottom:92.236492px;}
.y34_c00396{bottom:109.508685px;}
.y33_c00396{bottom:126.782378px;}
.y32_c00396{bottom:144.051871px;}
.y31_c00396{bottom:161.145564px;}
.y30_c00396{bottom:178.417757px;}
.y2f_c00396{bottom:206.848596px;}
.y2e_c00396{bottom:237.795233px;}
.y2d_c00396{bottom:257.221576px;}
.y2c_c00396{bottom:272.874519px;}
.y2b_c00396{bottom:288.709338px;}
.y2a_c00396{bottom:303.643707px;}
.y29_c00396{bottom:330.267796px;}
.y28_c00396{bottom:361.395784px;}
.y27_c00396{bottom:392.338972px;}
.y26_c00396{bottom:414.651163px;}
.y25_c00396{bottom:444.697801px;}
.y24_c00396{bottom:475.644438px;}
.y23_c00396{bottom:506.589726px;}
.y22_c00396{bottom:537.535614px;}
.y21_c00396{bottom:556.787731px;}
.y20_c00396{bottom:571.722400px;}
.y1f_c00396{bottom:586.834594px;}
.y1e_c00396{bottom:613.464383px;}
.y1d_c00396{bottom:644.412371px;}
.y1c_c00396{bottom:675.357658px;}
.y1b_c00396{bottom:706.303546px;}
.y1a_c00396{bottom:725.553278px;}
.y19_c00396{bottom:740.486582px;}
.y18_c00396{bottom:755.601026px;}
.y17_c00396{bottom:789.603013px;}
.y16_c00396{bottom:809.755505px;}
.y14_c00396{bottom:838.899143px;}
.y15_c00396{bottom:838.900493px;}
.y13_c00396{bottom:869.848631px;}
.y12_c00396{bottom:900.973918px;}
.y11_c00396{bottom:931.919806px;}
.y10_c00396{bottom:963.046443px;}
.yf_c00396{bottom:981.397436px;}
.ye_c00396{bottom:1011.802424px;}
.yd_c00396{bottom:1031.956416px;}
.yc_c00396{bottom:1066.681402px;}
.yb_c00396{bottom:1085.570894px;}
.y9_c00396{bottom:1106.080386px;}
.y7_c00396{bottom:1151.494902px;}
.y6_c00396{bottom:1172.185744px;}
.y5_c00396{bottom:1192.876585px;}
.h1_c00396{height:18.172260px;}
.hb_c00396{height:26.756111px;}
.h7_c00396{height:38.288915px;}
.h6_c00396{height:42.440208px;}
.h8_c00396{height:46.131982px;}
.h2_c00396{height:46.346561px;}
.hd_c00396{height:48.563007px;}
.h4_c00396{height:50.378140px;}
.h9_c00396{height:59.522227px;}
.hc_c00396{height:64.484019px;}
.ha_c00396{height:64.699925px;}
.h5_c00396{height:1262.431829px;}
.h3_c00396{height:1262.879062px;}
.h0_c00396{height:1263.000000px;}
.w17_c00396{width:2.700000px;}
.w12_c00396{width:4.676400px;}
.wc_c00396{width:4.680000px;}
.w6_c00396{width:5.038200px;}
.w16_c00396{width:6.474600px;}
.w9_c00396{width:6.476400px;}
.wf_c00396{width:7.376400px;}
.w13_c00396{width:7.378200px;}
.w15_c00396{width:8.094600px;}
.w14_c00396{width:8.274600px;}
.w7_c00396{width:8.276400px;}
.w8_c00396{width:8.278200px;}
.we_c00396{width:9.358200px;}
.wb_c00396{width:10.076400px;}
.w10_c00396{width:11.334600px;}
.w4_c00396{width:11.874600px;}
.w2_c00396{width:12.058200px;}
.wa_c00396{width:12.414600px;}
.w5_c00396{width:15.472800px;}
.w1_c00396{width:16.552980px;}
.w3_c00396{width:23.929200px;}
.w11_c00396{width:25.911000px;}
.wd_c00396{width:28.063800px;}
.w19_c00396{width:892.099575px;}
.w18_c00396{width:892.414744px;}
.w0_c00396{width:892.500000px;}
.x0_c00396{left:0.000000px;}
.x1e_c00396{left:113.887229px;}
.x1_c00396{left:128.331540px;}
.x21_c00396{left:166.965308px;}
.x1f_c00396{left:180.639303px;}
.x20_c00396{left:246.850776px;}
.x1c_c00396{left:253.542308px;}
.x1b_c00396{left:269.015236px;}
.x1d_c00396{left:423.021349px;}
.x2_c00396{left:496.623600px;}
.x3_c00396{left:508.681800px;}
.x4_c00396{left:532.611000px;}
.x5_c00396{left:544.485600px;}
.x6_c00396{left:559.958400px;}
.x7_c00396{left:564.636600px;}
.x8_c00396{left:576.869400px;}
.x9_c00396{left:585.147600px;}
.xa_c00396{left:590.364000px;}
.xb_c00396{left:606.555000px;}
.xc_c00396{left:616.631400px;}
.xd_c00396{left:621.309600px;}
.xe_c00396{left:625.809600px;}
.xf_c00396{left:653.873400px;}
.x10_c00396{left:661.971600px;}
.x11_c00396{left:673.126200px;}
.x12_c00396{left:684.100800px;}
.x13_c00396{left:708.931800px;}
.x14_c00396{left:713.428200px;}
.x15_c00396{left:720.806400px;}
.x16_c00396{left:725.486400px;}
.x17_c00396{left:733.761000px;}
.x18_c00396{left:741.855600px;}
.x19_c00396{left:749.233800px;}
.x1a_c00396{left:755.708400px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws2_c00396{word-spacing:-26.548043pt;}
.ws1_c00396{word-spacing:-15.993060pt;}
.ws0_c00396{word-spacing:-14.713194pt;}
.ws3_c00396{word-spacing:0.000000pt;}
._e_c00396{margin-left:-3.663262pt;}
._12_c00396{margin-left:-2.337835pt;}
._1_c00396{margin-left:-1.046208pt;}
._0_c00396{width:0.979567pt;}
._5_c00396{width:2.352716pt;}
._4_c00396{width:3.624754pt;}
._f_c00396{width:5.120046pt;}
._b_c00396{width:6.020157pt;}
._c_c00396{width:7.026744pt;}
._d_c00396{width:8.144382pt;}
._10_c00396{width:9.113013pt;}
._15_c00396{width:10.003236pt;}
._11_c00396{width:10.968630pt;}
._14_c00396{width:11.888201pt;}
._13_c00396{width:12.984184pt;}
._16_c00396{width:14.857913pt;}
._17_c00396{width:17.498188pt;}
._8_c00396{width:19.019495pt;}
._7_c00396{width:20.557738pt;}
._6_c00396{width:22.079352pt;}
._3_c00396{width:23.023170pt;}
._2_c00396{width:24.428434pt;}
._a_c00396{width:25.929007pt;}
._9_c00396{width:26.991192pt;}
.fs3_c00396{font-size:37.103292pt;}
.fs2_c00396{font-size:53.096085pt;}
.fs0_c00396{font-size:58.852776pt;}
.fs1_c00396{font-size:63.972241pt;}
.y0_c00396{bottom:0.000000pt;}
.y4_c00396{bottom:0.107500pt;}
.y8_c00396{bottom:0.494374pt;}
.y2_c00396{bottom:3.518132pt;}
.ya_c00396{bottom:58.481202pt;}
.y3_c00396{bottom:66.331840pt;}
.y1_c00396{bottom:66.651840pt;}
.y35_c00396{bottom:81.987993pt;}
.y34_c00396{bottom:97.341053pt;}
.y33_c00396{bottom:112.695447pt;}
.y32_c00396{bottom:128.046108pt;}
.y31_c00396{bottom:143.240501pt;}
.y30_c00396{bottom:158.593562pt;}
.y2f_c00396{bottom:183.865419pt;}
.y2e_c00396{bottom:211.373541pt;}
.y2d_c00396{bottom:228.641401pt;}
.y2c_c00396{bottom:242.555128pt;}
.y2b_c00396{bottom:256.630523pt;}
.y2a_c00396{bottom:269.905517pt;}
.y29_c00396{bottom:293.571375pt;}
.y28_c00396{bottom:321.240697pt;}
.y27_c00396{bottom:348.745753pt;}
.y26_c00396{bottom:368.578811pt;}
.y25_c00396{bottom:395.286934pt;}
.y24_c00396{bottom:422.795056pt;}
.y23_c00396{bottom:450.301979pt;}
.y22_c00396{bottom:477.809434pt;}
.y21_c00396{bottom:494.922427pt;}
.y20_c00396{bottom:508.197689pt;}
.y1f_c00396{bottom:521.630750pt;}
.y1e_c00396{bottom:545.301674pt;}
.y1d_c00396{bottom:572.810996pt;}
.y1c_c00396{bottom:600.317919pt;}
.y1b_c00396{bottom:627.825374pt;}
.y1a_c00396{bottom:644.936247pt;}
.y19_c00396{bottom:658.210295pt;}
.y18_c00396{bottom:671.645357pt;}
.y17_c00396{bottom:701.869345pt;}
.y16_c00396{bottom:719.782671pt;}
.y14_c00396{bottom:745.688127pt;}
.y15_c00396{bottom:745.689327pt;}
.y13_c00396{bottom:773.198783pt;}
.y12_c00396{bottom:800.865705pt;}
.y11_c00396{bottom:828.373161pt;}
.y10_c00396{bottom:856.041283pt;}
.yf_c00396{bottom:872.353276pt;}
.ye_c00396{bottom:899.379932pt;}
.yd_c00396{bottom:917.294592pt;}
.yc_c00396{bottom:948.161246pt;}
.yb_c00396{bottom:964.951906pt;}
.y9_c00396{bottom:983.182565pt;}
.y7_c00396{bottom:1023.551024pt;}
.y6_c00396{bottom:1041.942883pt;}
.y5_c00396{bottom:1060.334742pt;}
.h1_c00396{height:16.153120pt;}
.hb_c00396{height:23.783210pt;}
.h7_c00396{height:34.034591pt;}
.h6_c00396{height:37.724630pt;}
.h8_c00396{height:41.006207pt;}
.h2_c00396{height:41.196944pt;}
.hd_c00396{height:43.167117pt;}
.h4_c00396{height:44.780569pt;}
.h9_c00396{height:52.908646pt;}
.hc_c00396{height:57.319128pt;}
.ha_c00396{height:57.511045pt;}
.h5_c00396{height:1122.161626pt;}
.h3_c00396{height:1122.559167pt;}
.h0_c00396{height:1122.666667pt;}
.w17_c00396{width:2.400000pt;}
.w12_c00396{width:4.156800pt;}
.wc_c00396{width:4.160000pt;}
.w6_c00396{width:4.478400pt;}
.w16_c00396{width:5.755200pt;}
.w9_c00396{width:5.756800pt;}
.wf_c00396{width:6.556800pt;}
.w13_c00396{width:6.558400pt;}
.w15_c00396{width:7.195200pt;}
.w14_c00396{width:7.355200pt;}
.w7_c00396{width:7.356800pt;}
.w8_c00396{width:7.358400pt;}
.we_c00396{width:8.318400pt;}
.wb_c00396{width:8.956800pt;}
.w10_c00396{width:10.075200pt;}
.w4_c00396{width:10.555200pt;}
.w2_c00396{width:10.718400pt;}
.wa_c00396{width:11.035200pt;}
.w5_c00396{width:13.753600pt;}
.w1_c00396{width:14.713760pt;}
.w3_c00396{width:21.270400pt;}
.w11_c00396{width:23.032000pt;}
.wd_c00396{width:24.945600pt;}
.w19_c00396{width:792.977400pt;}
.w18_c00396{width:793.257550pt;}
.w0_c00396{width:793.333333pt;}
.x0_c00396{left:0.000000pt;}
.x1e_c00396{left:101.233093pt;}
.x1_c00396{left:114.072480pt;}
.x21_c00396{left:148.413607pt;}
.x1f_c00396{left:160.568269pt;}
.x20_c00396{left:219.422912pt;}
.x1c_c00396{left:225.370940pt;}
.x1b_c00396{left:239.124654pt;}
.x1d_c00396{left:376.018977pt;}
.x2_c00396{left:441.443200pt;}
.x3_c00396{left:452.161600pt;}
.x4_c00396{left:473.432000pt;}
.x5_c00396{left:483.987200pt;}
.x6_c00396{left:497.740800pt;}
.x7_c00396{left:501.899200pt;}
.x8_c00396{left:512.772800pt;}
.x9_c00396{left:520.131200pt;}
.xa_c00396{left:524.768000pt;}
.xb_c00396{left:539.160000pt;}
.xc_c00396{left:548.116800pt;}
.xd_c00396{left:552.275200pt;}
.xe_c00396{left:556.275200pt;}
.xf_c00396{left:581.220800pt;}
.x10_c00396{left:588.419200pt;}
.x11_c00396{left:598.334400pt;}
.x12_c00396{left:608.089600pt;}
.x13_c00396{left:630.161600pt;}
.x14_c00396{left:634.158400pt;}
.x15_c00396{left:640.716800pt;}
.x16_c00396{left:644.876800pt;}
.x17_c00396{left:652.232000pt;}
.x18_c00396{left:659.427200pt;}
.x19_c00396{left:665.985600pt;}
.x1a_c00396{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_b6ca68ab2432c258d67d5cef.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.097000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00397;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff6_c00397{font-family:ff6_c00397;line-height:0.360019;font-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_c00397{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls3_c00397{letter-spacing:0.000000px;}
.ls1_c00397{letter-spacing:23.779862px;}
.ls2_c00397{letter-spacing:23.782682px;}
.ls0_c00397{letter-spacing:23.791142px;}
.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:-29.866548px;}
.ws0_c00397{word-spacing:-16.552343px;}
.ws2_c00397{word-spacing:0.000000px;}
._4_c00397{margin-left:-1.666256px;}
._0_c00397{width:1.102012px;}
._8_c00397{width:2.105457px;}
._2_c00397{width:3.559317px;}
._1_c00397{width:4.977751px;}
._3_c00397{width:6.657478px;}
._5_c00397{width:7.864560px;}
._9_c00397{width:8.961304px;}
._7_c00397{width:16.781304px;}
._b_c00397{width:21.063664px;}
._a_c00397{width:22.466985px;}
._6_c00397{width:28.847068px;}
.fc1_c00397{color:rgb(105,148,45);}
.fc0_c00397{color:rgb(35,31,32);}
.fs3_c00397{font-size:38.862464px;}
.fs4_c00397{font-size:48.218261px;}
.fs2_c00397{font-size:59.733096px;}
.fs0_c00397{font-size:66.209374px;}
.fs1_c00397{font-size:71.968771px;}
.y0_c00397{bottom:0.000000px;}
.y4_c00397{bottom:0.120938px;}
.y8_c00397{bottom:0.556171px;}
.y2_c00397{bottom:3.957898px;}
.ya_c00397{bottom:65.791352px;}
.y3_c00397{bottom:74.623320px;}
.y1_c00397{bottom:74.983320px;}
.y2f_c00397{bottom:96.555290px;}
.y2e_c00397{bottom:115.987482px;}
.y2d_c00397{bottom:135.598324px;}
.y2c_c00397{bottom:155.030517px;}
.y2b_c00397{bottom:174.460609px;}
.y2a_c00397{bottom:194.072801px;}
.y29_c00397{bottom:213.502293px;}
.y28_c00397{bottom:232.933885px;}
.y27_c00397{bottom:252.546078px;}
.y26_c00397{bottom:280.612716px;}
.y25_c00397{bottom:338.726743px;}
.y24_c00397{bottom:400.617918px;}
.y23_c00397{bottom:431.563206px;}
.y22_c00397{bottom:462.692694px;}
.y21_c00397{bottom:493.636481px;}
.y20_c00397{bottom:551.571108px;}
.y1f_c00397{bottom:580.539096px;}
.y1e_c00397{bottom:647.109070px;}
.y1d_c00397{bottom:668.878561px;}
.y1c_c00397{bottom:687.951053px;}
.y1b_c00397{bottom:718.356941px;}
.y1a_c00397{bottom:749.302229px;}
.y19_c00397{bottom:781.505416px;}
.y18_c00397{bottom:812.455504px;}
.y17_c00397{bottom:844.660041px;}
.y16_c00397{bottom:875.605328px;}
.y15_c00397{bottom:907.811965px;}
.y14_c00397{bottom:944.695451px;}
.y13_c00397{bottom:958.909445px;}
.y12_c00397{bottom:974.380439px;}
.y11_c00397{bottom:992.731431px;}
.y10_c00397{bottom:1010.722424px;}
.yf_c00397{bottom:1023.677919px;}
.ye_c00397{bottom:1042.928866px;}
.yd_c00397{bottom:1057.864645px;}
.yc_c00397{bottom:1072.796899px;}
.yb_c00397{bottom:1088.267893px;}
.y9_c00397{bottom:1106.080386px;}
.y7_c00397{bottom:1151.494902px;}
.y6_c00397{bottom:1172.185744px;}
.y5_c00397{bottom:1192.876585px;}
.h1_c00397{height:18.172260px;}
.ha_c00397{height:24.910840px;}
.hc_c00397{height:30.907905px;}
.h7_c00397{height:38.288915px;}
.h6_c00397{height:42.440208px;}
.he_c00397{height:46.131982px;}
.h2_c00397{height:46.346561px;}
.h8_c00397{height:48.563007px;}
.h4_c00397{height:50.378140px;}
.hd_c00397{height:59.522227px;}
.h9_c00397{height:64.484019px;}
.hb_c00397{height:64.699925px;}
.h5_c00397{height:1262.431829px;}
.h3_c00397{height:1262.879062px;}
.h0_c00397{height:1263.000000px;}
.w17_c00397{width:2.700000px;}
.w12_c00397{width:4.676400px;}
.wc_c00397{width:4.680000px;}
.w6_c00397{width:5.038200px;}
.w16_c00397{width:6.474600px;}
.w9_c00397{width:6.476400px;}
.wf_c00397{width:7.376400px;}
.w13_c00397{width:7.378200px;}
.w15_c00397{width:8.094600px;}
.w14_c00397{width:8.274600px;}
.w7_c00397{width:8.276400px;}
.w8_c00397{width:8.278200px;}
.we_c00397{width:9.358200px;}
.wb_c00397{width:10.076400px;}
.w10_c00397{width:11.334600px;}
.w4_c00397{width:11.874600px;}
.w2_c00397{width:12.058200px;}
.wa_c00397{width:12.414600px;}
.w5_c00397{width:15.472800px;}
.w1_c00397{width:16.552980px;}
.w3_c00397{width:23.929200px;}
.w11_c00397{width:25.911000px;}
.wd_c00397{width:28.063800px;}
.w19_c00397{width:892.099575px;}
.w18_c00397{width:892.414744px;}
.w0_c00397{width:892.500000px;}
.x0_c00397{left:0.000000px;}
.x1e_c00397{left:113.887229px;}
.x1_c00397{left:128.331540px;}
.x1f_c00397{left:180.639303px;}
.x20_c00397{left:207.624507px;}
.x21_c00397{left:234.614209px;}
.x1c_c00397{left:253.542308px;}
.x1b_c00397{left:269.015236px;}
.x1d_c00397{left:423.021349px;}
.x2_c00397{left:496.623600px;}
.x3_c00397{left:508.681800px;}
.x4_c00397{left:532.611000px;}
.x5_c00397{left:544.485600px;}
.x6_c00397{left:559.958400px;}
.x7_c00397{left:564.636600px;}
.x8_c00397{left:576.869400px;}
.x9_c00397{left:585.147600px;}
.xa_c00397{left:590.364000px;}
.xb_c00397{left:606.555000px;}
.xc_c00397{left:616.631400px;}
.xd_c00397{left:621.309600px;}
.xe_c00397{left:625.809600px;}
.xf_c00397{left:653.873400px;}
.x10_c00397{left:661.971600px;}
.x11_c00397{left:673.126200px;}
.x12_c00397{left:684.100800px;}
.x13_c00397{left:708.931800px;}
.x14_c00397{left:713.428200px;}
.x15_c00397{left:720.806400px;}
.x16_c00397{left:725.486400px;}
.x17_c00397{left:733.761000px;}
.x18_c00397{left:741.855600px;}
.x19_c00397{left:749.233800px;}
.x1a_c00397{left:755.708400px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls3_c00397{letter-spacing:0.000000pt;}
.ls1_c00397{letter-spacing:21.137656pt;}
.ls2_c00397{letter-spacing:21.140162pt;}
.ls0_c00397{letter-spacing:21.147682pt;}
.ws1_c00397{word-spacing:-26.548043pt;}
.ws0_c00397{word-spacing:-14.713194pt;}
.ws2_c00397{word-spacing:0.000000pt;}
._4_c00397{margin-left:-1.481117pt;}
._0_c00397{width:0.979567pt;}
._8_c00397{width:1.871517pt;}
._2_c00397{width:3.163837pt;}
._1_c00397{width:4.424668pt;}
._3_c00397{width:5.917758pt;}
._5_c00397{width:6.990720pt;}
._9_c00397{width:7.965603pt;}
._7_c00397{width:14.916714pt;}
._b_c00397{width:18.723257pt;}
._a_c00397{width:19.970654pt;}
._6_c00397{width:25.641838pt;}
.fs3_c00397{font-size:34.544413pt;}
.fs4_c00397{font-size:42.860676pt;}
.fs2_c00397{font-size:53.096085pt;}
.fs0_c00397{font-size:58.852776pt;}
.fs1_c00397{font-size:63.972241pt;}
.y0_c00397{bottom:0.000000pt;}
.y4_c00397{bottom:0.107500pt;}
.y8_c00397{bottom:0.494374pt;}
.y2_c00397{bottom:3.518132pt;}
.ya_c00397{bottom:58.481202pt;}
.y3_c00397{bottom:66.331840pt;}
.y1_c00397{bottom:66.651840pt;}
.y2f_c00397{bottom:85.826924pt;}
.y2e_c00397{bottom:103.099984pt;}
.y2d_c00397{bottom:120.531844pt;}
.y2c_c00397{bottom:137.804904pt;}
.y2b_c00397{bottom:155.076097pt;}
.y2a_c00397{bottom:172.509156pt;}
.y29_c00397{bottom:189.779816pt;}
.y28_c00397{bottom:207.052343pt;}
.y27_c00397{bottom:224.485402pt;}
.y26_c00397{bottom:249.433526pt;}
.y25_c00397{bottom:301.090438pt;}
.y24_c00397{bottom:356.104816pt;}
.y23_c00397{bottom:383.611739pt;}
.y22_c00397{bottom:411.282394pt;}
.y21_c00397{bottom:438.787983pt;}
.y20_c00397{bottom:490.285429pt;}
.y1f_c00397{bottom:516.034752pt;}
.y1e_c00397{bottom:575.208062pt;}
.y1d_c00397{bottom:594.558721pt;}
.y1c_c00397{bottom:611.512047pt;}
.y1b_c00397{bottom:638.539503pt;}
.y1a_c00397{bottom:666.046426pt;}
.y19_c00397{bottom:694.671481pt;}
.y18_c00397{bottom:722.182670pt;}
.y17_c00397{bottom:750.808925pt;}
.y16_c00397{bottom:778.315847pt;}
.y15_c00397{bottom:806.943969pt;}
.y14_c00397{bottom:839.729290pt;}
.y13_c00397{bottom:852.363951pt;}
.y12_c00397{bottom:866.115946pt;}
.y11_c00397{bottom:882.427939pt;}
.y10_c00397{bottom:898.419933pt;}
.yf_c00397{bottom:909.935928pt;}
.ye_c00397{bottom:927.047881pt;}
.yd_c00397{bottom:940.324129pt;}
.yc_c00397{bottom:953.597244pt;}
.yb_c00397{bottom:967.349238pt;}
.y9_c00397{bottom:983.182565pt;}
.y7_c00397{bottom:1023.551024pt;}
.y6_c00397{bottom:1041.942883pt;}
.y5_c00397{bottom:1060.334742pt;}
.h1_c00397{height:16.153120pt;}
.ha_c00397{height:22.142969pt;}
.hc_c00397{height:27.473693pt;}
.h7_c00397{height:34.034591pt;}
.h6_c00397{height:37.724630pt;}
.he_c00397{height:41.006207pt;}
.h2_c00397{height:41.196944pt;}
.h8_c00397{height:43.167117pt;}
.h4_c00397{height:44.780569pt;}
.hd_c00397{height:52.908646pt;}
.h9_c00397{height:57.319128pt;}
.hb_c00397{height:57.511045pt;}
.h5_c00397{height:1122.161626pt;}
.h3_c00397{height:1122.559167pt;}
.h0_c00397{height:1122.666667pt;}
.w17_c00397{width:2.400000pt;}
.w12_c00397{width:4.156800pt;}
.wc_c00397{width:4.160000pt;}
.w6_c00397{width:4.478400pt;}
.w16_c00397{width:5.755200pt;}
.w9_c00397{width:5.756800pt;}
.wf_c00397{width:6.556800pt;}
.w13_c00397{width:6.558400pt;}
.w15_c00397{width:7.195200pt;}
.w14_c00397{width:7.355200pt;}
.w7_c00397{width:7.356800pt;}
.w8_c00397{width:7.358400pt;}
.we_c00397{width:8.318400pt;}
.wb_c00397{width:8.956800pt;}
.w10_c00397{width:10.075200pt;}
.w4_c00397{width:10.555200pt;}
.w2_c00397{width:10.718400pt;}
.wa_c00397{width:11.035200pt;}
.w5_c00397{width:13.753600pt;}
.w1_c00397{width:14.713760pt;}
.w3_c00397{width:21.270400pt;}
.w11_c00397{width:23.032000pt;}
.wd_c00397{width:24.945600pt;}
.w19_c00397{width:792.977400pt;}
.w18_c00397{width:793.257550pt;}
.w0_c00397{width:793.333333pt;}
.x0_c00397{left:0.000000pt;}
.x1e_c00397{left:101.233093pt;}
.x1_c00397{left:114.072480pt;}
.x1f_c00397{left:160.568269pt;}
.x20_c00397{left:184.555118pt;}
.x21_c00397{left:208.545964pt;}
.x1c_c00397{left:225.370940pt;}
.x1b_c00397{left:239.124654pt;}
.x1d_c00397{left:376.018977pt;}
.x2_c00397{left:441.443200pt;}
.x3_c00397{left:452.161600pt;}
.x4_c00397{left:473.432000pt;}
.x5_c00397{left:483.987200pt;}
.x6_c00397{left:497.740800pt;}
.x7_c00397{left:501.899200pt;}
.x8_c00397{left:512.772800pt;}
.x9_c00397{left:520.131200pt;}
.xa_c00397{left:524.768000pt;}
.xb_c00397{left:539.160000pt;}
.xc_c00397{left:548.116800pt;}
.xd_c00397{left:552.275200pt;}
.xe_c00397{left:556.275200pt;}
.xf_c00397{left:581.220800pt;}
.x10_c00397{left:588.419200pt;}
.x11_c00397{left:598.334400pt;}
.x12_c00397{left:608.089600pt;}
.x13_c00397{left:630.161600pt;}
.x14_c00397{left:634.158400pt;}
.x15_c00397{left:640.716800pt;}
.x16_c00397{left:644.876800pt;}
.x17_c00397{left:652.232000pt;}
.x18_c00397{left:659.427200pt;}
.x19_c00397{left:665.985600pt;}
.x1a_c00397{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:1.112000;font-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_c00398{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls0_c00398{letter-spacing:0.000000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00398{word-spacing:-17.992193px;}
.ws0_c00398{word-spacing:-16.552343px;}
.ws2_c00398{word-spacing:0.000000px;}
._2_c00398{margin-left:-4.031750px;}
._3_c00398{margin-left:-2.510597px;}
._1_c00398{margin-left:-1.203674px;}
._0_c00398{width:1.102012px;}
._5_c00398{width:5.521412px;}
._4_c00398{width:7.399141px;}
._9_c00398{width:8.592203px;}
._8_c00398{width:13.705978px;}
._6_c00398{width:22.105429px;}
._7_c00398{width:23.156603px;}
.fc1_c00398{color:rgb(105,148,45);}
.fc0_c00398{color:rgb(35,31,32);}
.fs2_c00398{font-size:59.733096px;}
.fs0_c00398{font-size:66.209374px;}
.fs1_c00398{font-size:71.968771px;}
.y0_c00398{bottom:0.000000px;}
.y4_c00398{bottom:0.120938px;}
.y8_c00398{bottom:0.556171px;}
.y2_c00398{bottom:3.957898px;}
.ya_c00398{bottom:65.791352px;}
.y3_c00398{bottom:74.623320px;}
.y1_c00398{bottom:74.983320px;}
.y1b_c00398{bottom:440.924552px;}
.y1a_c00398{bottom:472.229840px;}
.y19_c00398{bottom:503.355727px;}
.y18_c00398{bottom:580.359846px;}
.y17_c00398{bottom:611.486484px;}
.y16_c00398{bottom:642.433122px;}
.y15_c00398{bottom:704.505047px;}
.y14_c00398{bottom:773.410519px;}
.y13_c00398{bottom:792.301362px;}
.y12_c00398{bottom:836.380194px;}
.y11_c00398{bottom:867.505482px;}
.y10_c00398{bottom:898.452119px;}
.yf_c00398{bottom:929.398757px;}
.ye_c00398{bottom:960.523294px;}
.yd_c00398{bottom:996.869930px;}
.yc_c00398{bottom:1068.119901px;}
.yb_c00398{bottom:1087.009394px;}
.y9_c00398{bottom:1106.080386px;}
.y7_c00398{bottom:1151.494902px;}
.y6_c00398{bottom:1172.185744px;}
.y5_c00398{bottom:1192.876585px;}
.h1_c00398{height:18.172260px;}
.h7_c00398{height:38.288915px;}
.h6_c00398{height:42.440208px;}
.h8_c00398{height:46.131982px;}
.h2_c00398{height:46.346561px;}
.h4_c00398{height:50.378140px;}
.h9_c00398{height:59.522227px;}
.hb_c00398{height:64.484019px;}
.ha_c00398{height:64.555988px;}
.hc_c00398{height:64.699925px;}
.h5_c00398{height:1262.431829px;}
.h3_c00398{height:1262.879062px;}
.h0_c00398{height:1263.000000px;}
.w17_c00398{width:2.700000px;}
.w12_c00398{width:4.676400px;}
.wc_c00398{width:4.680000px;}
.w6_c00398{width:5.038200px;}
.w16_c00398{width:6.474600px;}
.w9_c00398{width:6.476400px;}
.wf_c00398{width:7.376400px;}
.w13_c00398{width:7.378200px;}
.w15_c00398{width:8.094600px;}
.w14_c00398{width:8.274600px;}
.w7_c00398{width:8.276400px;}
.w8_c00398{width:8.278200px;}
.we_c00398{width:9.358200px;}
.wb_c00398{width:10.076400px;}
.w10_c00398{width:11.334600px;}
.w4_c00398{width:11.874600px;}
.w2_c00398{width:12.058200px;}
.wa_c00398{width:12.414600px;}
.w5_c00398{width:15.472800px;}
.w1_c00398{width:16.912980px;}
.w3_c00398{width:23.929200px;}
.w11_c00398{width:25.911000px;}
.wd_c00398{width:28.063800px;}
.w19_c00398{width:892.099575px;}
.w18_c00398{width:892.414744px;}
.w0_c00398{width:892.500000px;}
.x0_c00398{left:0.000000px;}
.x1e_c00398{left:113.887229px;}
.x1_c00398{left:128.331540px;}
.x20_c00398{left:167.863875px;}
.x1f_c00398{left:180.639303px;}
.x21_c00398{left:206.185960px;}
.x1c_c00398{left:253.542308px;}
.x1b_c00398{left:269.015236px;}
.x1d_c00398{left:423.021349px;}
.x2_c00398{left:496.623600px;}
.x3_c00398{left:508.681800px;}
.x4_c00398{left:532.611000px;}
.x5_c00398{left:544.485600px;}
.x6_c00398{left:559.958400px;}
.x7_c00398{left:564.636600px;}
.x8_c00398{left:576.869400px;}
.x9_c00398{left:585.147600px;}
.xa_c00398{left:590.364000px;}
.xb_c00398{left:606.555000px;}
.xc_c00398{left:616.631400px;}
.xd_c00398{left:621.309600px;}
.xe_c00398{left:625.809600px;}
.xf_c00398{left:653.873400px;}
.x10_c00398{left:661.971600px;}
.x11_c00398{left:673.126200px;}
.x12_c00398{left:684.100800px;}
.x13_c00398{left:708.931800px;}
.x14_c00398{left:713.428200px;}
.x15_c00398{left:720.806400px;}
.x16_c00398{left:725.486400px;}
.x17_c00398{left:733.761000px;}
.x18_c00398{left:741.855600px;}
.x19_c00398{left:749.233800px;}
.x1a_c00398{left:755.708400px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws1_c00398{word-spacing:-15.993060pt;}
.ws0_c00398{word-spacing:-14.713194pt;}
.ws2_c00398{word-spacing:0.000000pt;}
._2_c00398{margin-left:-3.583778pt;}
._3_c00398{margin-left:-2.231641pt;}
._1_c00398{margin-left:-1.069932pt;}
._0_c00398{width:0.979567pt;}
._5_c00398{width:4.907922pt;}
._4_c00398{width:6.577014pt;}
._9_c00398{width:7.637514pt;}
._8_c00398{width:12.183091pt;}
._6_c00398{width:19.649270pt;}
._7_c00398{width:20.583647pt;}
.fs2_c00398{font-size:53.096085pt;}
.fs0_c00398{font-size:58.852776pt;}
.fs1_c00398{font-size:63.972241pt;}
.y0_c00398{bottom:0.000000pt;}
.y4_c00398{bottom:0.107500pt;}
.y8_c00398{bottom:0.494374pt;}
.y2_c00398{bottom:3.518132pt;}
.ya_c00398{bottom:58.481202pt;}
.y3_c00398{bottom:66.331840pt;}
.y1_c00398{bottom:66.651840pt;}
.y1b_c00398{bottom:391.932935pt;}
.y1a_c00398{bottom:419.759857pt;}
.y19_c00398{bottom:447.427313pt;}
.y18_c00398{bottom:515.875419pt;}
.y17_c00398{bottom:543.543541pt;}
.y16_c00398{bottom:571.051664pt;}
.y15_c00398{bottom:626.226708pt;}
.y14_c00398{bottom:687.476017pt;}
.y13_c00398{bottom:704.267877pt;}
.y12_c00398{bottom:743.449061pt;}
.y11_c00398{bottom:771.115984pt;}
.y10_c00398{bottom:798.624106pt;}
.yf_c00398{bottom:826.132228pt;}
.ye_c00398{bottom:853.798484pt;}
.yd_c00398{bottom:886.106604pt;}
.yc_c00398{bottom:949.439912pt;}
.yb_c00398{bottom:966.230572pt;}
.y9_c00398{bottom:983.182565pt;}
.y7_c00398{bottom:1023.551024pt;}
.y6_c00398{bottom:1041.942883pt;}
.y5_c00398{bottom:1060.334742pt;}
.h1_c00398{height:16.153120pt;}
.h7_c00398{height:34.034591pt;}
.h6_c00398{height:37.724630pt;}
.h8_c00398{height:41.006207pt;}
.h2_c00398{height:41.196944pt;}
.h4_c00398{height:44.780569pt;}
.h9_c00398{height:52.908646pt;}
.hb_c00398{height:57.319128pt;}
.ha_c00398{height:57.383100pt;}
.hc_c00398{height:57.511045pt;}
.h5_c00398{height:1122.161626pt;}
.h3_c00398{height:1122.559167pt;}
.h0_c00398{height:1122.666667pt;}
.w17_c00398{width:2.400000pt;}
.w12_c00398{width:4.156800pt;}
.wc_c00398{width:4.160000pt;}
.w6_c00398{width:4.478400pt;}
.w16_c00398{width:5.755200pt;}
.w9_c00398{width:5.756800pt;}
.wf_c00398{width:6.556800pt;}
.w13_c00398{width:6.558400pt;}
.w15_c00398{width:7.195200pt;}
.w14_c00398{width:7.355200pt;}
.w7_c00398{width:7.356800pt;}
.w8_c00398{width:7.358400pt;}
.we_c00398{width:8.318400pt;}
.wb_c00398{width:8.956800pt;}
.w10_c00398{width:10.075200pt;}
.w4_c00398{width:10.555200pt;}
.w2_c00398{width:10.718400pt;}
.wa_c00398{width:11.035200pt;}
.w5_c00398{width:13.753600pt;}
.w1_c00398{width:15.033760pt;}
.w3_c00398{width:21.270400pt;}
.w11_c00398{width:23.032000pt;}
.wd_c00398{width:24.945600pt;}
.w19_c00398{width:792.977400pt;}
.w18_c00398{width:793.257550pt;}
.w0_c00398{width:793.333333pt;}
.x0_c00398{left:0.000000pt;}
.x1e_c00398{left:101.233093pt;}
.x1_c00398{left:114.072480pt;}
.x20_c00398{left:149.212334pt;}
.x1f_c00398{left:160.568269pt;}
.x21_c00398{left:183.276409pt;}
.x1c_c00398{left:225.370940pt;}
.x1b_c00398{left:239.124654pt;}
.x1d_c00398{left:376.018977pt;}
.x2_c00398{left:441.443200pt;}
.x3_c00398{left:452.161600pt;}
.x4_c00398{left:473.432000pt;}
.x5_c00398{left:483.987200pt;}
.x6_c00398{left:497.740800pt;}
.x7_c00398{left:501.899200pt;}
.x8_c00398{left:512.772800pt;}
.x9_c00398{left:520.131200pt;}
.xa_c00398{left:524.768000pt;}
.xb_c00398{left:539.160000pt;}
.xc_c00398{left:548.116800pt;}
.xd_c00398{left:552.275200pt;}
.xe_c00398{left:556.275200pt;}
.xf_c00398{left:581.220800pt;}
.x10_c00398{left:588.419200pt;}
.x11_c00398{left:598.334400pt;}
.x12_c00398{left:608.089600pt;}
.x13_c00398{left:630.161600pt;}
.x14_c00398{left:634.158400pt;}
.x15_c00398{left:640.716800pt;}
.x16_c00398{left:644.876800pt;}
.x17_c00398{left:652.232000pt;}
.x18_c00398{left:659.427200pt;}
.x19_c00398{left:665.985600pt;}
.x1a_c00398{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_d93d7efa3b8f05eb01105d72.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.115000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.112000;font-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_c00399{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls0_c00399{letter-spacing:0.000000px;}
.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:-16.552343px;}
.ws1_c00399{word-spacing:0.000000px;}
._e_c00399{margin-left:-3.355903px;}
._3_c00399{margin-left:-2.237340px;}
._1_c00399{margin-left:-1.071407px;}
._0_c00399{width:1.102012px;}
._5_c00399{width:2.840820px;}
._6_c00399{width:3.856179px;}
._10_c00399{width:5.045021px;}
._f_c00399{width:6.553287px;}
._c_c00399{width:7.715664px;}
._b_c00399{width:10.230935px;}
._d_c00399{width:11.580480px;}
._2_c00399{width:13.355001px;}
._4_c00399{width:14.588494px;}
._8_c00399{width:20.757929px;}
._7_c00399{width:22.295515px;}
._a_c00399{width:34.441518px;}
._9_c00399{width:35.749199px;}
._11_c00399{width:40.749412px;}
._12_c00399{width:42.776848px;}
._13_c00399{width:44.386430px;}
.fc1_c00399{color:rgb(105,148,45);}
.fc0_c00399{color:rgb(35,31,32);}
.fs3_c00399{font-size:12.234535px;}
.fs2_c00399{font-size:59.733096px;}
.fs0_c00399{font-size:66.209374px;}
.fs1_c00399{font-size:71.968771px;}
.y0_c00399{bottom:0.000000px;}
.y4_c00399{bottom:0.120938px;}
.y8_c00399{bottom:0.556171px;}
.y2_c00399{bottom:3.957898px;}
.ya_c00399{bottom:65.791352px;}
.y3_c00399{bottom:74.623320px;}
.y1_c00399{bottom:74.983320px;}
.y2c_c00399{bottom:105.553636px;}
.y2b_c00399{bottom:136.678924px;}
.y2a_c00399{bottom:167.625562px;}
.y29_c00399{bottom:198.750099px;}
.y28_c00399{bottom:229.696737px;}
.y27_c00399{bottom:248.950129px;}
.y26_c00399{bottom:268.921721px;}
.y25_c00399{bottom:315.519202px;}
.y24_c00399{bottom:346.465840px;}
.y23_c00399{bottom:379.570377px;}
.y22_c00399{bottom:410.697014px;}
.y21_c00399{bottom:441.643652px;}
.y20_c00399{bottom:461.073144px;}
.y1f_c00399{bottom:489.139933px;}
.y1e_c00399{bottom:520.264470px;}
.y1d_c00399{bottom:551.211108px;}
.y1c_c00399{bottom:570.462100px;}
.y1b_c00399{bottom:590.434592px;}
.y1a_c00399{bottom:637.031474px;}
.y19_c00399{bottom:667.974661px;}
.y18_c00399{bottom:699.104149px;}
.y17_c00399{bottom:730.047937px;}
.y16_c00399{bottom:761.174574px;}
.y15_c00399{bottom:792.122562px;}
.y14_c00399{bottom:823.247099px;}
.y13_c00399{bottom:854.192387px;}
.y12_c00399{bottom:885.319024px;}
.y11_c00399{bottom:916.265662px;}
.y10_c00399{bottom:947.390950px;}
.yf_c00399{bottom:978.338937px;}
.ye_c00399{bottom:997.592330px;}
.yd_c00399{bottom:1017.563922px;}
.yc_c00399{bottom:1053.187407px;}
.yb_c00399{bottom:1089.347893px;}
.y9_c00399{bottom:1106.080386px;}
.y7_c00399{bottom:1151.494902px;}
.y6_c00399{bottom:1172.185744px;}
.y5_c00399{bottom:1192.876585px;}
.h8_c00399{height:7.842337px;}
.h1_c00399{height:18.172260px;}
.h7_c00399{height:38.288915px;}
.h6_c00399{height:42.440208px;}
.h2_c00399{height:46.346561px;}
.h4_c00399{height:50.378140px;}
.ha_c00399{height:53.580587px;}
.h9_c00399{height:59.522227px;}
.hb_c00399{height:64.484019px;}
.h5_c00399{height:1262.431829px;}
.h3_c00399{height:1262.879062px;}
.h0_c00399{height:1263.000000px;}
.w17_c00399{width:2.700000px;}
.w12_c00399{width:4.676400px;}
.wc_c00399{width:4.680000px;}
.w6_c00399{width:5.038200px;}
.w16_c00399{width:6.474600px;}
.w9_c00399{width:6.476400px;}
.wf_c00399{width:7.376400px;}
.w13_c00399{width:7.378200px;}
.w15_c00399{width:8.094600px;}
.w14_c00399{width:8.274600px;}
.w7_c00399{width:8.276400px;}
.w8_c00399{width:8.278200px;}
.we_c00399{width:9.358200px;}
.wb_c00399{width:10.076400px;}
.w10_c00399{width:11.334600px;}
.w4_c00399{width:11.874600px;}
.w2_c00399{width:12.058200px;}
.wa_c00399{width:12.414600px;}
.w5_c00399{width:15.472800px;}
.w1_c00399{width:16.912980px;}
.w3_c00399{width:23.929200px;}
.w11_c00399{width:25.911000px;}
.wd_c00399{width:28.063800px;}
.w19_c00399{width:892.099575px;}
.w18_c00399{width:892.414744px;}
.w0_c00399{width:892.500000px;}
.x0_c00399{left:0.000000px;}
.x1e_c00399{left:113.887229px;}
.x1_c00399{left:128.331540px;}
.x21_c00399{left:180.639303px;}
.x1c_c00399{left:253.542308px;}
.x1b_c00399{left:269.015236px;}
.x20_c00399{left:299.022255px;}
.x1d_c00399{left:423.021349px;}
.x1f_c00399{left:443.679198px;}
.x2_c00399{left:496.623600px;}
.x3_c00399{left:508.681800px;}
.x4_c00399{left:532.611000px;}
.x5_c00399{left:544.485600px;}
.x6_c00399{left:559.958400px;}
.x7_c00399{left:564.636600px;}
.x8_c00399{left:576.869400px;}
.x9_c00399{left:585.147600px;}
.xa_c00399{left:590.364000px;}
.xb_c00399{left:606.555000px;}
.xc_c00399{left:616.631400px;}
.xd_c00399{left:621.309600px;}
.xe_c00399{left:625.809600px;}
.xf_c00399{left:653.873400px;}
.x10_c00399{left:661.971600px;}
.x11_c00399{left:673.126200px;}
.x12_c00399{left:684.100800px;}
.x13_c00399{left:708.931800px;}
.x14_c00399{left:713.428200px;}
.x15_c00399{left:720.806400px;}
.x16_c00399{left:725.486400px;}
.x17_c00399{left:733.761000px;}
.x18_c00399{left:741.855600px;}
.x19_c00399{left:749.233800px;}
.x1a_c00399{left:755.708400px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:-14.713194pt;}
.ws1_c00399{word-spacing:0.000000pt;}
._e_c00399{margin-left:-2.983025pt;}
._3_c00399{margin-left:-1.988747pt;}
._1_c00399{margin-left:-0.952362pt;}
._0_c00399{width:0.979567pt;}
._5_c00399{width:2.525174pt;}
._6_c00399{width:3.427715pt;}
._10_c00399{width:4.484463pt;}
._f_c00399{width:5.825144pt;}
._c_c00399{width:6.858368pt;}
._b_c00399{width:9.094164pt;}
._d_c00399{width:10.293760pt;}
._2_c00399{width:11.871112pt;}
._4_c00399{width:12.967550pt;}
._8_c00399{width:18.451492pt;}
._7_c00399{width:19.818236pt;}
._a_c00399{width:30.614683pt;}
._9_c00399{width:31.777066pt;}
._11_c00399{width:36.221700pt;}
._12_c00399{width:38.023865pt;}
._13_c00399{width:39.454605pt;}
.fs3_c00399{font-size:10.875142pt;}
.fs2_c00399{font-size:53.096085pt;}
.fs0_c00399{font-size:58.852776pt;}
.fs1_c00399{font-size:63.972241pt;}
.y0_c00399{bottom:0.000000pt;}
.y4_c00399{bottom:0.107500pt;}
.y8_c00399{bottom:0.494374pt;}
.y2_c00399{bottom:3.518132pt;}
.ya_c00399{bottom:58.481202pt;}
.y3_c00399{bottom:66.331840pt;}
.y1_c00399{bottom:66.651840pt;}
.y2c_c00399{bottom:93.825455pt;}
.y2b_c00399{bottom:121.492377pt;}
.y2a_c00399{bottom:149.000499pt;}
.y29_c00399{bottom:176.666755pt;}
.y28_c00399{bottom:204.174877pt;}
.y27_c00399{bottom:221.289004pt;}
.y26_c00399{bottom:239.041530pt;}
.y25_c00399{bottom:280.461513pt;}
.y24_c00399{bottom:307.969636pt;}
.y23_c00399{bottom:337.395890pt;}
.y22_c00399{bottom:365.064013pt;}
.y21_c00399{bottom:392.572135pt;}
.y20_c00399{bottom:409.842795pt;}
.y1f_c00399{bottom:434.791051pt;}
.y1e_c00399{bottom:462.457307pt;}
.y1d_c00399{bottom:489.965429pt;}
.y1c_c00399{bottom:507.077423pt;}
.y1b_c00399{bottom:524.830749pt;}
.y1a_c00399{bottom:566.250199pt;}
.y19_c00399{bottom:593.755255pt;}
.y18_c00399{bottom:621.425910pt;}
.y17_c00399{bottom:648.931499pt;}
.y16_c00399{bottom:676.599621pt;}
.y15_c00399{bottom:704.108944pt;}
.y14_c00399{bottom:731.775199pt;}
.y13_c00399{bottom:759.282122pt;}
.y12_c00399{bottom:786.950244pt;}
.y11_c00399{bottom:814.458366pt;}
.y10_c00399{bottom:842.125289pt;}
.yf_c00399{bottom:869.634611pt;}
.ye_c00399{bottom:886.748737pt;}
.yd_c00399{bottom:904.501264pt;}
.yc_c00399{bottom:936.166584pt;}
.yb_c00399{bottom:968.309238pt;}
.y9_c00399{bottom:983.182565pt;}
.y7_c00399{bottom:1023.551024pt;}
.y6_c00399{bottom:1041.942883pt;}
.y5_c00399{bottom:1060.334742pt;}
.h8_c00399{height:6.970966pt;}
.h1_c00399{height:16.153120pt;}
.h7_c00399{height:34.034591pt;}
.h6_c00399{height:37.724630pt;}
.h2_c00399{height:41.196944pt;}
.h4_c00399{height:44.780569pt;}
.ha_c00399{height:47.627189pt;}
.h9_c00399{height:52.908646pt;}
.hb_c00399{height:57.319128pt;}
.h5_c00399{height:1122.161626pt;}
.h3_c00399{height:1122.559167pt;}
.h0_c00399{height:1122.666667pt;}
.w17_c00399{width:2.400000pt;}
.w12_c00399{width:4.156800pt;}
.wc_c00399{width:4.160000pt;}
.w6_c00399{width:4.478400pt;}
.w16_c00399{width:5.755200pt;}
.w9_c00399{width:5.756800pt;}
.wf_c00399{width:6.556800pt;}
.w13_c00399{width:6.558400pt;}
.w15_c00399{width:7.195200pt;}
.w14_c00399{width:7.355200pt;}
.w7_c00399{width:7.356800pt;}
.w8_c00399{width:7.358400pt;}
.we_c00399{width:8.318400pt;}
.wb_c00399{width:8.956800pt;}
.w10_c00399{width:10.075200pt;}
.w4_c00399{width:10.555200pt;}
.w2_c00399{width:10.718400pt;}
.wa_c00399{width:11.035200pt;}
.w5_c00399{width:13.753600pt;}
.w1_c00399{width:15.033760pt;}
.w3_c00399{width:21.270400pt;}
.w11_c00399{width:23.032000pt;}
.wd_c00399{width:24.945600pt;}
.w19_c00399{width:792.977400pt;}
.w18_c00399{width:793.257550pt;}
.w0_c00399{width:793.333333pt;}
.x0_c00399{left:0.000000pt;}
.x1e_c00399{left:101.233093pt;}
.x1_c00399{left:114.072480pt;}
.x21_c00399{left:160.568269pt;}
.x1c_c00399{left:225.370940pt;}
.x1b_c00399{left:239.124654pt;}
.x20_c00399{left:265.797560pt;}
.x1d_c00399{left:376.018977pt;}
.x1f_c00399{left:394.381509pt;}
.x2_c00399{left:441.443200pt;}
.x3_c00399{left:452.161600pt;}
.x4_c00399{left:473.432000pt;}
.x5_c00399{left:483.987200pt;}
.x6_c00399{left:497.740800pt;}
.x7_c00399{left:501.899200pt;}
.x8_c00399{left:512.772800pt;}
.x9_c00399{left:520.131200pt;}
.xa_c00399{left:524.768000pt;}
.xb_c00399{left:539.160000pt;}
.xc_c00399{left:548.116800pt;}
.xd_c00399{left:552.275200pt;}
.xe_c00399{left:556.275200pt;}
.xf_c00399{left:581.220800pt;}
.x10_c00399{left:588.419200pt;}
.x11_c00399{left:598.334400pt;}
.x12_c00399{left:608.089600pt;}
.x13_c00399{left:630.161600pt;}
.x14_c00399{left:634.158400pt;}
.x15_c00399{left:640.716800pt;}
.x16_c00399{left:644.876800pt;}
.x17_c00399{left:652.232000pt;}
.x18_c00399{left:659.427200pt;}
.x19_c00399{left:665.985600pt;}
.x1a_c00399{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.113000;font-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_c00400{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls0_c00400{letter-spacing:0.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;}
}
.ws0_c00400{word-spacing:-16.552343px;}
.ws1_c00400{word-spacing:0.000000px;}
._12_c00400{margin-left:-5.095906px;}
._6_c00400{margin-left:-3.322263px;}
._e_c00400{margin-left:-2.084715px;}
._4_c00400{margin-left:-1.013919px;}
._0_c00400{width:1.102012px;}
._c_c00400{width:2.824157px;}
._8_c00400{width:3.840285px;}
._d_c00400{width:4.919245px;}
._7_c00400{width:6.554352px;}
._3_c00400{width:8.179917px;}
._5_c00400{width:9.418255px;}
._1_c00400{width:10.806383px;}
._2_c00400{width:12.137186px;}
._18_c00400{width:13.683121px;}
._10_c00400{width:15.716067px;}
._11_c00400{width:16.794071px;}
._f_c00400{width:19.925724px;}
._13_c00400{width:20.933947px;}
._a_c00400{width:22.856147px;}
._9_c00400{width:24.985951px;}
._b_c00400{width:26.428296px;}
._16_c00400{width:30.297140px;}
._14_c00400{width:31.429434px;}
._17_c00400{width:32.649617px;}
._15_c00400{width:33.703847px;}
.fc1_c00400{color:rgb(105,148,45);}
.fc0_c00400{color:rgb(35,31,32);}
.fs2_c00400{font-size:59.733096px;}
.fs0_c00400{font-size:66.209374px;}
.fs1_c00400{font-size:71.968771px;}
.y0_c00400{bottom:0.000000px;}
.y4_c00400{bottom:0.120938px;}
.y8_c00400{bottom:0.556171px;}
.y2_c00400{bottom:3.957898px;}
.ya_c00400{bottom:65.791352px;}
.y3_c00400{bottom:74.623320px;}
.y1_c00400{bottom:74.983320px;}
.y2c_c00400{bottom:102.853037px;}
.y2b_c00400{bottom:133.798325px;}
.y2a_c00400{bottom:164.924963px;}
.y29_c00400{bottom:195.871600px;}
.y28_c00400{bottom:226.996138px;}
.y27_c00400{bottom:257.942775px;}
.y26_c00400{bottom:289.068063px;}
.y25_c00400{bottom:320.014701px;}
.y24_c00400{bottom:339.447193px;}
.y23_c00400{bottom:367.512032px;}
.y22_c00400{bottom:398.458669px;}
.y21_c00400{bottom:417.712661px;}
.y20_c00400{bottom:445.957800px;}
.y1f_c00400{bottom:476.902338px;}
.y1e_c00400{bottom:507.848975px;}
.y1d_c00400{bottom:541.130662px;}
.y1c_c00400{bottom:572.080750px;}
.y1b_c00400{bottom:603.206637px;}
.y1a_c00400{bottom:634.151925px;}
.y19_c00400{bottom:665.278562px;}
.y18_c00400{bottom:684.532855px;}
.y17_c00400{bottom:704.505047px;}
.y16_c00400{bottom:750.921028px;}
.y15_c00400{bottom:782.044216px;}
.y14_c00400{bottom:812.993703px;}
.y13_c00400{bottom:844.116141px;}
.y12_c00400{bottom:875.065629px;}
.y11_c00400{bottom:906.192266px;}
.y10_c00400{bottom:937.137554px;}
.yf_c00400{bottom:968.263441px;}
.ye_c00400{bottom:987.514734px;}
.yd_c00400{bottom:1007.486926px;}
.yc_c00400{bottom:1054.082907px;}
.yb_c00400{bottom:1085.030895px;}
.y9_c00400{bottom:1106.080386px;}
.y7_c00400{bottom:1151.494902px;}
.y6_c00400{bottom:1172.185744px;}
.y5_c00400{bottom:1192.876585px;}
.h1_c00400{height:18.172260px;}
.h7_c00400{height:38.288915px;}
.h6_c00400{height:42.440208px;}
.h2_c00400{height:46.346561px;}
.h4_c00400{height:50.378140px;}
.h9_c00400{height:53.580587px;}
.h8_c00400{height:64.484019px;}
.h5_c00400{height:1262.431829px;}
.h3_c00400{height:1262.879062px;}
.h0_c00400{height:1263.000000px;}
.w17_c00400{width:2.700000px;}
.w12_c00400{width:4.676400px;}
.wc_c00400{width:4.680000px;}
.w6_c00400{width:5.038200px;}
.w16_c00400{width:6.474600px;}
.w9_c00400{width:6.476400px;}
.wf_c00400{width:7.376400px;}
.w13_c00400{width:7.378200px;}
.w15_c00400{width:8.094600px;}
.w14_c00400{width:8.274600px;}
.w7_c00400{width:8.276400px;}
.w8_c00400{width:8.278200px;}
.we_c00400{width:9.358200px;}
.wb_c00400{width:10.076400px;}
.w10_c00400{width:11.334600px;}
.w4_c00400{width:11.874600px;}
.w2_c00400{width:12.058200px;}
.wa_c00400{width:12.414600px;}
.w5_c00400{width:15.472800px;}
.w1_c00400{width:16.552980px;}
.w3_c00400{width:23.929200px;}
.w11_c00400{width:25.911000px;}
.wd_c00400{width:28.063800px;}
.w19_c00400{width:892.099575px;}
.w18_c00400{width:892.414744px;}
.w0_c00400{width:892.500000px;}
.x0_c00400{left:0.000000px;}
.x1e_c00400{left:113.887229px;}
.x1_c00400{left:128.331540px;}
.x1f_c00400{left:180.639303px;}
.x1c_c00400{left:253.542308px;}
.x1b_c00400{left:269.015236px;}
.x1d_c00400{left:423.021349px;}
.x2_c00400{left:496.623600px;}
.x3_c00400{left:508.681800px;}
.x4_c00400{left:532.611000px;}
.x5_c00400{left:544.485600px;}
.x6_c00400{left:559.958400px;}
.x7_c00400{left:564.636600px;}
.x8_c00400{left:576.869400px;}
.x9_c00400{left:585.147600px;}
.xa_c00400{left:590.364000px;}
.xb_c00400{left:606.555000px;}
.xc_c00400{left:616.631400px;}
.xd_c00400{left:621.309600px;}
.xe_c00400{left:625.809600px;}
.xf_c00400{left:653.873400px;}
.x10_c00400{left:661.971600px;}
.x11_c00400{left:673.126200px;}
.x12_c00400{left:684.100800px;}
.x13_c00400{left:708.931800px;}
.x14_c00400{left:713.428200px;}
.x15_c00400{left:720.806400px;}
.x16_c00400{left:725.486400px;}
.x17_c00400{left:733.761000px;}
.x18_c00400{left:741.855600px;}
.x19_c00400{left:749.233800px;}
.x1a_c00400{left:755.708400px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws0_c00400{word-spacing:-14.713194pt;}
.ws1_c00400{word-spacing:0.000000pt;}
._12_c00400{margin-left:-4.529694pt;}
._6_c00400{margin-left:-2.953122pt;}
._e_c00400{margin-left:-1.853080pt;}
._4_c00400{margin-left:-0.901261pt;}
._0_c00400{width:0.979567pt;}
._c_c00400{width:2.510362pt;}
._8_c00400{width:3.413586pt;}
._d_c00400{width:4.372662pt;}
._7_c00400{width:5.826090pt;}
._3_c00400{width:7.271038pt;}
._5_c00400{width:8.371782pt;}
._1_c00400{width:9.605674pt;}
._2_c00400{width:10.788610pt;}
._18_c00400{width:12.162774pt;}
._10_c00400{width:13.969837pt;}
._11_c00400{width:14.928063pt;}
._f_c00400{width:17.711755pt;}
._13_c00400{width:18.607953pt;}
._a_c00400{width:20.316575pt;}
._9_c00400{width:22.209735pt;}
._b_c00400{width:23.491819pt;}
._16_c00400{width:26.930791pt;}
._14_c00400{width:27.937275pt;}
._17_c00400{width:29.021882pt;}
._15_c00400{width:29.958975pt;}
.fs2_c00400{font-size:53.096085pt;}
.fs0_c00400{font-size:58.852776pt;}
.fs1_c00400{font-size:63.972241pt;}
.y0_c00400{bottom:0.000000pt;}
.y4_c00400{bottom:0.107500pt;}
.y8_c00400{bottom:0.494374pt;}
.y2_c00400{bottom:3.518132pt;}
.ya_c00400{bottom:58.481202pt;}
.y3_c00400{bottom:66.331840pt;}
.y1_c00400{bottom:66.651840pt;}
.y2c_c00400{bottom:91.424922pt;}
.y2b_c00400{bottom:118.931844pt;}
.y2a_c00400{bottom:146.599967pt;}
.y29_c00400{bottom:174.108089pt;}
.y28_c00400{bottom:201.774345pt;}
.y27_c00400{bottom:229.282467pt;}
.y26_c00400{bottom:256.949389pt;}
.y25_c00400{bottom:284.457512pt;}
.y24_c00400{bottom:301.730838pt;}
.y23_c00400{bottom:326.677361pt;}
.y22_c00400{bottom:354.185484pt;}
.y21_c00400{bottom:371.300144pt;}
.y20_c00400{bottom:396.406934pt;}
.y1f_c00400{bottom:423.913189pt;}
.y1e_c00400{bottom:451.421312pt;}
.y1d_c00400{bottom:481.005033pt;}
.y1c_c00400{bottom:508.516222pt;}
.y1b_c00400{bottom:536.183678pt;}
.y1a_c00400{bottom:563.690600pt;}
.y19_c00400{bottom:591.358722pt;}
.y18_c00400{bottom:608.473649pt;}
.y17_c00400{bottom:626.226708pt;}
.y16_c00400{bottom:667.485358pt;}
.y15_c00400{bottom:695.150414pt;}
.y14_c00400{bottom:722.661070pt;}
.y13_c00400{bottom:750.325459pt;}
.y12_c00400{bottom:777.836114pt;}
.y11_c00400{bottom:805.504237pt;}
.y10_c00400{bottom:833.011159pt;}
.yf_c00400{bottom:860.678614pt;}
.ye_c00400{bottom:877.790874pt;}
.yd_c00400{bottom:895.543934pt;}
.yc_c00400{bottom:936.962584pt;}
.yb_c00400{bottom:964.471906pt;}
.y9_c00400{bottom:983.182565pt;}
.y7_c00400{bottom:1023.551024pt;}
.y6_c00400{bottom:1041.942883pt;}
.y5_c00400{bottom:1060.334742pt;}
.h1_c00400{height:16.153120pt;}
.h7_c00400{height:34.034591pt;}
.h6_c00400{height:37.724630pt;}
.h2_c00400{height:41.196944pt;}
.h4_c00400{height:44.780569pt;}
.h9_c00400{height:47.627189pt;}
.h8_c00400{height:57.319128pt;}
.h5_c00400{height:1122.161626pt;}
.h3_c00400{height:1122.559167pt;}
.h0_c00400{height:1122.666667pt;}
.w17_c00400{width:2.400000pt;}
.w12_c00400{width:4.156800pt;}
.wc_c00400{width:4.160000pt;}
.w6_c00400{width:4.478400pt;}
.w16_c00400{width:5.755200pt;}
.w9_c00400{width:5.756800pt;}
.wf_c00400{width:6.556800pt;}
.w13_c00400{width:6.558400pt;}
.w15_c00400{width:7.195200pt;}
.w14_c00400{width:7.355200pt;}
.w7_c00400{width:7.356800pt;}
.w8_c00400{width:7.358400pt;}
.we_c00400{width:8.318400pt;}
.wb_c00400{width:8.956800pt;}
.w10_c00400{width:10.075200pt;}
.w4_c00400{width:10.555200pt;}
.w2_c00400{width:10.718400pt;}
.wa_c00400{width:11.035200pt;}
.w5_c00400{width:13.753600pt;}
.w1_c00400{width:14.713760pt;}
.w3_c00400{width:21.270400pt;}
.w11_c00400{width:23.032000pt;}
.wd_c00400{width:24.945600pt;}
.w19_c00400{width:792.977400pt;}
.w18_c00400{width:793.257550pt;}
.w0_c00400{width:793.333333pt;}
.x0_c00400{left:0.000000pt;}
.x1e_c00400{left:101.233093pt;}
.x1_c00400{left:114.072480pt;}
.x1f_c00400{left:160.568269pt;}
.x1c_c00400{left:225.370940pt;}
.x1b_c00400{left:239.124654pt;}
.x1d_c00400{left:376.018977pt;}
.x2_c00400{left:441.443200pt;}
.x3_c00400{left:452.161600pt;}
.x4_c00400{left:473.432000pt;}
.x5_c00400{left:483.987200pt;}
.x6_c00400{left:497.740800pt;}
.x7_c00400{left:501.899200pt;}
.x8_c00400{left:512.772800pt;}
.x9_c00400{left:520.131200pt;}
.xa_c00400{left:524.768000pt;}
.xb_c00400{left:539.160000pt;}
.xc_c00400{left:548.116800pt;}
.xd_c00400{left:552.275200pt;}
.xe_c00400{left:556.275200pt;}
.xf_c00400{left:581.220800pt;}
.x10_c00400{left:588.419200pt;}
.x11_c00400{left:598.334400pt;}
.x12_c00400{left:608.089600pt;}
.x13_c00400{left:630.161600pt;}
.x14_c00400{left:634.158400pt;}
.x15_c00400{left:640.716800pt;}
.x16_c00400{left:644.876800pt;}
.x17_c00400{left:652.232000pt;}
.x18_c00400{left:659.427200pt;}
.x19_c00400{left:665.985600pt;}
.x1a_c00400{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:0.360019;font-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_c00401{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls2_c00401{letter-spacing:0.000000px;}
.ls1_c00401{letter-spacing:77.549045px;}
.ls0_c00401{letter-spacing:77.565845px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:-16.552343px;}
.ws1_c00401{word-spacing:0.000000px;}
._4_c00401{margin-left:-2.408760px;}
._2_c00401{margin-left:-1.400050px;}
._0_c00401{width:1.102012px;}
._5_c00401{width:2.264268px;}
._b_c00401{width:3.328100px;}
._d_c00401{width:4.340094px;}
._3_c00401{width:8.652086px;}
._6_c00401{width:11.534544px;}
._9_c00401{width:13.415728px;}
._8_c00401{width:14.609607px;}
._7_c00401{width:16.479125px;}
._c_c00401{width:91.460966px;}
._a_c00401{width:149.819075px;}
._1_c00401{width:199.476925px;}
.fc1_c00401{color:rgb(105,148,45);}
.fc0_c00401{color:rgb(35,31,32);}
.fs3_c00401{font-size:41.741203px;}
.fs2_c00401{font-size:59.733096px;}
.fs0_c00401{font-size:66.209374px;}
.fs1_c00401{font-size:71.968771px;}
.y0_c00401{bottom:0.000000px;}
.y4_c00401{bottom:0.120938px;}
.y8_c00401{bottom:0.556171px;}
.y2_c00401{bottom:3.957898px;}
.ya_c00401{bottom:65.791352px;}
.y3_c00401{bottom:74.623320px;}
.y1_c00401{bottom:74.983320px;}
.y29_c00401{bottom:118.868681px;}
.y28_c00401{bottom:162.411114px;}
.y27_c00401{bottom:190.837752px;}
.y26_c00401{bottom:234.196585px;}
.y25_c00401{bottom:262.621874px;}
.y24_c00401{bottom:291.229262px;}
.y23_c00401{bottom:335.673044px;}
.y22_c00401{bottom:364.279683px;}
.y21_c00401{bottom:408.718515px;}
.y1e_c00401{bottom:437.322154px;}
.y20_c00401{bottom:437.325154px;}
.y1f_c00401{bottom:444.877651px;}
.y1d_c00401{bottom:481.943086px;}
.y1c_c00401{bottom:510.371074px;}
.y1b_c00401{bottom:553.372007px;}
.y1a_c00401{bottom:596.911590px;}
.y19_c00401{bottom:657.902765px;}
.y18_c00401{bottom:688.849403px;}
.y17_c00401{bottom:719.974691px;}
.y16_c00401{bottom:750.921328px;}
.y15_c00401{bottom:782.049316px;}
.y14_c00401{bottom:812.993853px;}
.y13_c00401{bottom:843.940491px;}
.y12_c00401{bottom:888.559473px;}
.y11_c00401{bottom:906.731966px;}
.y10_c00401{bottom:933.536505px;}
.yf_c00401{bottom:964.481793px;}
.ye_c00401{bottom:995.606330px;}
.yd_c00401{bottom:1026.556418px;}
.yc_c00401{bottom:1071.178400px;}
.yb_c00401{bottom:1089.348943px;}
.y9_c00401{bottom:1106.080386px;}
.y7_c00401{bottom:1151.494902px;}
.y6_c00401{bottom:1172.185744px;}
.y5_c00401{bottom:1192.876585px;}
.h1_c00401{height:18.172260px;}
.hb_c00401{height:37.400118px;}
.h7_c00401{height:38.288915px;}
.h6_c00401{height:42.440208px;}
.h2_c00401{height:46.346561px;}
.h4_c00401{height:50.378140px;}
.ha_c00401{height:59.323599px;}
.h8_c00401{height:59.389808px;}
.h9_c00401{height:64.484019px;}
.h5_c00401{height:1262.431829px;}
.h3_c00401{height:1262.879062px;}
.h0_c00401{height:1263.000000px;}
.w17_c00401{width:2.700000px;}
.w12_c00401{width:4.676400px;}
.wc_c00401{width:4.680000px;}
.w6_c00401{width:5.038200px;}
.w16_c00401{width:6.474600px;}
.w9_c00401{width:6.476400px;}
.wf_c00401{width:7.376400px;}
.w13_c00401{width:7.378200px;}
.w15_c00401{width:8.094600px;}
.w14_c00401{width:8.274600px;}
.w7_c00401{width:8.276400px;}
.w8_c00401{width:8.278200px;}
.we_c00401{width:9.358200px;}
.wb_c00401{width:10.076400px;}
.w10_c00401{width:11.334600px;}
.w4_c00401{width:11.874600px;}
.w2_c00401{width:12.058200px;}
.wa_c00401{width:12.414600px;}
.w5_c00401{width:15.472800px;}
.w1_c00401{width:16.552980px;}
.w3_c00401{width:23.929200px;}
.w11_c00401{width:25.911000px;}
.wd_c00401{width:28.063800px;}
.w19_c00401{width:892.099575px;}
.w18_c00401{width:892.414744px;}
.w0_c00401{width:892.500000px;}
.x0_c00401{left:0.000000px;}
.x1e_c00401{left:113.887229px;}
.x1_c00401{left:128.331540px;}
.x20_c00401{left:167.865308px;}
.x1f_c00401{left:180.639303px;}
.x22_c00401{left:194.849510px;}
.x1c_c00401{left:253.542308px;}
.x1b_c00401{left:269.015236px;}
.x23_c00401{left:387.364241px;}
.x1d_c00401{left:423.021349px;}
.x2_c00401{left:496.623600px;}
.x3_c00401{left:508.681800px;}
.x4_c00401{left:532.611000px;}
.x5_c00401{left:544.485600px;}
.x6_c00401{left:559.958400px;}
.x7_c00401{left:564.636600px;}
.x8_c00401{left:576.869400px;}
.x9_c00401{left:585.147600px;}
.xa_c00401{left:590.364000px;}
.xb_c00401{left:606.555000px;}
.xc_c00401{left:616.631400px;}
.xd_c00401{left:621.309600px;}
.xe_c00401{left:625.809600px;}
.xf_c00401{left:653.873400px;}
.x10_c00401{left:661.971600px;}
.x11_c00401{left:673.126200px;}
.x12_c00401{left:684.100800px;}
.x13_c00401{left:708.931800px;}
.x14_c00401{left:713.428200px;}
.x15_c00401{left:720.806400px;}
.x16_c00401{left:725.486400px;}
.x17_c00401{left:733.761000px;}
.x18_c00401{left:741.855600px;}
.x21_c00401{left:745.044077px;}
.x19_c00401{left:749.233800px;}
.x1a_c00401{left:755.708400px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls2_c00401{letter-spacing:0.000000pt;}
.ls1_c00401{letter-spacing:68.932484pt;}
.ls0_c00401{letter-spacing:68.947418pt;}
.ws0_c00401{word-spacing:-14.713194pt;}
.ws1_c00401{word-spacing:0.000000pt;}
._4_c00401{margin-left:-2.141120pt;}
._2_c00401{margin-left:-1.244489pt;}
._0_c00401{width:0.979567pt;}
._5_c00401{width:2.012682pt;}
._b_c00401{width:2.958311pt;}
._d_c00401{width:3.857861pt;}
._3_c00401{width:7.690743pt;}
._6_c00401{width:10.252928pt;}
._9_c00401{width:11.925092pt;}
._8_c00401{width:12.986317pt;}
._7_c00401{width:14.648111pt;}
._c_c00401{width:81.298637pt;}
._a_c00401{width:133.172511pt;}
._1_c00401{width:177.312822pt;}
.fs3_c00401{font-size:37.103292pt;}
.fs2_c00401{font-size:53.096085pt;}
.fs0_c00401{font-size:58.852776pt;}
.fs1_c00401{font-size:63.972241pt;}
.y0_c00401{bottom:0.000000pt;}
.y4_c00401{bottom:0.107500pt;}
.y8_c00401{bottom:0.494374pt;}
.y2_c00401{bottom:3.518132pt;}
.ya_c00401{bottom:58.481202pt;}
.y3_c00401{bottom:66.331840pt;}
.y1_c00401{bottom:66.651840pt;}
.y29_c00401{bottom:105.661050pt;}
.y28_c00401{bottom:144.365434pt;}
.y27_c00401{bottom:169.633558pt;}
.y26_c00401{bottom:208.174742pt;}
.y25_c00401{bottom:233.441665pt;}
.y24_c00401{bottom:258.870455pt;}
.y23_c00401{bottom:298.376039pt;}
.y22_c00401{bottom:323.804163pt;}
.y21_c00401{bottom:363.305347pt;}
.y1e_c00401{bottom:388.730803pt;}
.y20_c00401{bottom:388.733470pt;}
.y1f_c00401{bottom:395.446801pt;}
.y1d_c00401{bottom:428.393854pt;}
.y1c_c00401{bottom:453.663177pt;}
.y1b_c00401{bottom:491.886229pt;}
.y1a_c00401{bottom:530.588080pt;}
.y19_c00401{bottom:584.802458pt;}
.y18_c00401{bottom:612.310580pt;}
.y17_c00401{bottom:639.977503pt;}
.y16_c00401{bottom:667.485625pt;}
.y15_c00401{bottom:695.154947pt;}
.y14_c00401{bottom:722.661203pt;}
.y13_c00401{bottom:750.169325pt;}
.y12_c00401{bottom:789.830643pt;}
.y11_c00401{bottom:805.983970pt;}
.y10_c00401{bottom:829.810227pt;}
.yf_c00401{bottom:857.317149pt;}
.ye_c00401{bottom:884.983405pt;}
.yd_c00401{bottom:912.494594pt;}
.yc_c00401{bottom:952.158578pt;}
.yb_c00401{bottom:968.310171pt;}
.y9_c00401{bottom:983.182565pt;}
.y7_c00401{bottom:1023.551024pt;}
.y6_c00401{bottom:1041.942883pt;}
.y5_c00401{bottom:1060.334742pt;}
.h1_c00401{height:16.153120pt;}
.hb_c00401{height:33.244549pt;}
.h7_c00401{height:34.034591pt;}
.h6_c00401{height:37.724630pt;}
.h2_c00401{height:41.196944pt;}
.h4_c00401{height:44.780569pt;}
.ha_c00401{height:52.732088pt;}
.h8_c00401{height:52.790940pt;}
.h9_c00401{height:57.319128pt;}
.h5_c00401{height:1122.161626pt;}
.h3_c00401{height:1122.559167pt;}
.h0_c00401{height:1122.666667pt;}
.w17_c00401{width:2.400000pt;}
.w12_c00401{width:4.156800pt;}
.wc_c00401{width:4.160000pt;}
.w6_c00401{width:4.478400pt;}
.w16_c00401{width:5.755200pt;}
.w9_c00401{width:5.756800pt;}
.wf_c00401{width:6.556800pt;}
.w13_c00401{width:6.558400pt;}
.w15_c00401{width:7.195200pt;}
.w14_c00401{width:7.355200pt;}
.w7_c00401{width:7.356800pt;}
.w8_c00401{width:7.358400pt;}
.we_c00401{width:8.318400pt;}
.wb_c00401{width:8.956800pt;}
.w10_c00401{width:10.075200pt;}
.w4_c00401{width:10.555200pt;}
.w2_c00401{width:10.718400pt;}
.wa_c00401{width:11.035200pt;}
.w5_c00401{width:13.753600pt;}
.w1_c00401{width:14.713760pt;}
.w3_c00401{width:21.270400pt;}
.w11_c00401{width:23.032000pt;}
.wd_c00401{width:24.945600pt;}
.w19_c00401{width:792.977400pt;}
.w18_c00401{width:793.257550pt;}
.w0_c00401{width:793.333333pt;}
.x0_c00401{left:0.000000pt;}
.x1e_c00401{left:101.233093pt;}
.x1_c00401{left:114.072480pt;}
.x20_c00401{left:149.213607pt;}
.x1f_c00401{left:160.568269pt;}
.x22_c00401{left:173.199565pt;}
.x1c_c00401{left:225.370940pt;}
.x1b_c00401{left:239.124654pt;}
.x23_c00401{left:344.323769pt;}
.x1d_c00401{left:376.018977pt;}
.x2_c00401{left:441.443200pt;}
.x3_c00401{left:452.161600pt;}
.x4_c00401{left:473.432000pt;}
.x5_c00401{left:483.987200pt;}
.x6_c00401{left:497.740800pt;}
.x7_c00401{left:501.899200pt;}
.x8_c00401{left:512.772800pt;}
.x9_c00401{left:520.131200pt;}
.xa_c00401{left:524.768000pt;}
.xb_c00401{left:539.160000pt;}
.xc_c00401{left:548.116800pt;}
.xd_c00401{left:552.275200pt;}
.xe_c00401{left:556.275200pt;}
.xf_c00401{left:581.220800pt;}
.x10_c00401{left:588.419200pt;}
.x11_c00401{left:598.334400pt;}
.x12_c00401{left:608.089600pt;}
.x13_c00401{left:630.161600pt;}
.x14_c00401{left:634.158400pt;}
.x15_c00401{left:640.716800pt;}
.x16_c00401{left:644.876800pt;}
.x17_c00401{left:652.232000pt;}
.x18_c00401{left:659.427200pt;}
.x21_c00401{left:662.261402pt;}
.x19_c00401{left:665.985600pt;}
.x1a_c00401{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.113000;font-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_c00402{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls0_c00402{letter-spacing:0.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;}
}
.ws0_c00402{word-spacing:-16.552343px;}
.ws1_c00402{word-spacing:0.000000px;}
._2_c00402{margin-left:-1.136183px;}
._0_c00402{width:1.102012px;}
._4_c00402{width:2.359457px;}
._7_c00402{width:3.478557px;}
._b_c00402{width:4.570934px;}
._a_c00402{width:5.955926px;}
._c_c00402{width:7.204541px;}
._6_c00402{width:9.158485px;}
._5_c00402{width:10.276332px;}
._9_c00402{width:12.020668px;}
._8_c00402{width:13.265271px;}
._3_c00402{width:149.819075px;}
._1_c00402{width:199.476925px;}
.fc1_c00402{color:rgb(105,148,45);}
.fc0_c00402{color:rgb(35,31,32);}
.fs2_c00402{font-size:59.733096px;}
.fs0_c00402{font-size:66.209374px;}
.fs1_c00402{font-size:71.968771px;}
.y0_c00402{bottom:0.000000px;}
.y4_c00402{bottom:0.120938px;}
.y8_c00402{bottom:0.556171px;}
.y2_c00402{bottom:3.957898px;}
.ya_c00402{bottom:65.791352px;}
.y3_c00402{bottom:74.623320px;}
.y1_c00402{bottom:74.983320px;}
.y24_c00402{bottom:106.991086px;}
.y23_c00402{bottom:135.419824px;}
.y22_c00402{bottom:178.778657px;}
.y21_c00402{bottom:207.207396px;}
.y20_c00402{bottom:250.746228px;}
.y1f_c00402{bottom:279.174967px;}
.y1e_c00402{bottom:322.532450px;}
.y1d_c00402{bottom:351.141188px;}
.y1c_c00402{bottom:379.567827px;}
.y1b_c00402{bottom:422.926659px;}
.y1a_c00402{bottom:466.469092px;}
.y19_c00402{bottom:509.830025px;}
.y18_c00402{bottom:553.190957px;}
.y17_c00402{bottom:596.729790px;}
.y16_c00402{bottom:625.158529px;}
.y15_c00402{bottom:653.583817px;}
.y14_c00402{bottom:697.127600px;}
.y13_c00402{bottom:740.485082px;}
.y12_c00402{bottom:768.912471px;}
.y11_c00402{bottom:797.339110px;}
.y10_c00402{bottom:884.241875px;}
.yf_c00402{bottom:912.669264px;}
.ye_c00402{bottom:955.848096px;}
.yd_c00402{bottom:999.569029px;}
.yc_c00402{bottom:1043.109961px;}
.yb_c00402{bottom:1086.470894px;}
.y9_c00402{bottom:1106.080386px;}
.y7_c00402{bottom:1151.494902px;}
.y6_c00402{bottom:1172.185744px;}
.y5_c00402{bottom:1192.876585px;}
.h1_c00402{height:18.172260px;}
.h7_c00402{height:38.288915px;}
.h6_c00402{height:42.440208px;}
.h2_c00402{height:46.346561px;}
.h4_c00402{height:50.378140px;}
.h8_c00402{height:59.323599px;}
.h9_c00402{height:59.389808px;}
.h5_c00402{height:1262.431829px;}
.h3_c00402{height:1262.879062px;}
.h0_c00402{height:1263.000000px;}
.w17_c00402{width:2.700000px;}
.w12_c00402{width:4.676400px;}
.wc_c00402{width:4.680000px;}
.w6_c00402{width:5.038200px;}
.w16_c00402{width:6.474600px;}
.w9_c00402{width:6.476400px;}
.wf_c00402{width:7.376400px;}
.w13_c00402{width:7.378200px;}
.w15_c00402{width:8.094600px;}
.w14_c00402{width:8.274600px;}
.w7_c00402{width:8.276400px;}
.w8_c00402{width:8.278200px;}
.we_c00402{width:9.358200px;}
.wb_c00402{width:10.076400px;}
.w10_c00402{width:11.334600px;}
.w4_c00402{width:11.874600px;}
.w2_c00402{width:12.058200px;}
.wa_c00402{width:12.414600px;}
.w5_c00402{width:15.472800px;}
.w1_c00402{width:16.552980px;}
.w3_c00402{width:23.929200px;}
.w11_c00402{width:25.911000px;}
.wd_c00402{width:28.063800px;}
.w19_c00402{width:892.099575px;}
.w18_c00402{width:892.414744px;}
.w0_c00402{width:892.500000px;}
.x0_c00402{left:0.000000px;}
.x1e_c00402{left:113.887229px;}
.x1_c00402{left:128.331540px;}
.x1f_c00402{left:156.167464px;}
.x1c_c00402{left:253.542308px;}
.x1b_c00402{left:269.015236px;}
.x1d_c00402{left:423.021349px;}
.x2_c00402{left:496.623600px;}
.x3_c00402{left:508.681800px;}
.x4_c00402{left:532.611000px;}
.x5_c00402{left:544.485600px;}
.x6_c00402{left:559.958400px;}
.x7_c00402{left:564.636600px;}
.x8_c00402{left:576.869400px;}
.x9_c00402{left:585.147600px;}
.xa_c00402{left:590.364000px;}
.xb_c00402{left:606.555000px;}
.xc_c00402{left:616.631400px;}
.xd_c00402{left:621.309600px;}
.xe_c00402{left:625.809600px;}
.xf_c00402{left:653.873400px;}
.x10_c00402{left:661.971600px;}
.x11_c00402{left:673.126200px;}
.x12_c00402{left:684.100800px;}
.x13_c00402{left:708.931800px;}
.x14_c00402{left:713.428200px;}
.x15_c00402{left:720.806400px;}
.x16_c00402{left:725.486400px;}
.x17_c00402{left:733.761000px;}
.x18_c00402{left:741.855600px;}
.x19_c00402{left:749.233800px;}
.x1a_c00402{left:755.708400px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws0_c00402{word-spacing:-14.713194pt;}
.ws1_c00402{word-spacing:0.000000pt;}
._2_c00402{margin-left:-1.009941pt;}
._0_c00402{width:0.979567pt;}
._4_c00402{width:2.097295pt;}
._7_c00402{width:3.092050pt;}
._b_c00402{width:4.063053pt;}
._a_c00402{width:5.294156pt;}
._c_c00402{width:6.404036pt;}
._6_c00402{width:8.140875pt;}
._5_c00402{width:9.134518pt;}
._9_c00402{width:10.685038pt;}
._8_c00402{width:11.791352pt;}
._3_c00402{width:133.172511pt;}
._1_c00402{width:177.312822pt;}
.fs2_c00402{font-size:53.096085pt;}
.fs0_c00402{font-size:58.852776pt;}
.fs1_c00402{font-size:63.972241pt;}
.y0_c00402{bottom:0.000000pt;}
.y4_c00402{bottom:0.107500pt;}
.y8_c00402{bottom:0.494374pt;}
.y2_c00402{bottom:3.518132pt;}
.ya_c00402{bottom:58.481202pt;}
.y3_c00402{bottom:66.331840pt;}
.y1_c00402{bottom:66.651840pt;}
.y24_c00402{bottom:95.103187pt;}
.y23_c00402{bottom:120.373177pt;}
.y22_c00402{bottom:158.914362pt;}
.y21_c00402{bottom:184.184352pt;}
.y20_c00402{bottom:222.885536pt;}
.y1f_c00402{bottom:248.155526pt;}
.y1e_c00402{bottom:286.695511pt;}
.y1d_c00402{bottom:312.125501pt;}
.y1c_c00402{bottom:337.393624pt;}
.y1b_c00402{bottom:375.934808pt;}
.y1a_c00402{bottom:414.639193pt;}
.y19_c00402{bottom:453.182244pt;}
.y18_c00402{bottom:491.725295pt;}
.y17_c00402{bottom:530.426480pt;}
.y16_c00402{bottom:555.696470pt;}
.y15_c00402{bottom:580.963393pt;}
.y14_c00402{bottom:619.668978pt;}
.y13_c00402{bottom:658.208962pt;}
.y12_c00402{bottom:683.477752pt;}
.y11_c00402{bottom:708.745875pt;}
.y10_c00402{bottom:785.992778pt;}
.yf_c00402{bottom:811.261568pt;}
.ye_c00402{bottom:849.642752pt;}
.yd_c00402{bottom:888.505803pt;}
.yc_c00402{bottom:927.208855pt;}
.yb_c00402{bottom:965.751906pt;}
.y9_c00402{bottom:983.182565pt;}
.y7_c00402{bottom:1023.551024pt;}
.y6_c00402{bottom:1041.942883pt;}
.y5_c00402{bottom:1060.334742pt;}
.h1_c00402{height:16.153120pt;}
.h7_c00402{height:34.034591pt;}
.h6_c00402{height:37.724630pt;}
.h2_c00402{height:41.196944pt;}
.h4_c00402{height:44.780569pt;}
.h8_c00402{height:52.732088pt;}
.h9_c00402{height:52.790940pt;}
.h5_c00402{height:1122.161626pt;}
.h3_c00402{height:1122.559167pt;}
.h0_c00402{height:1122.666667pt;}
.w17_c00402{width:2.400000pt;}
.w12_c00402{width:4.156800pt;}
.wc_c00402{width:4.160000pt;}
.w6_c00402{width:4.478400pt;}
.w16_c00402{width:5.755200pt;}
.w9_c00402{width:5.756800pt;}
.wf_c00402{width:6.556800pt;}
.w13_c00402{width:6.558400pt;}
.w15_c00402{width:7.195200pt;}
.w14_c00402{width:7.355200pt;}
.w7_c00402{width:7.356800pt;}
.w8_c00402{width:7.358400pt;}
.we_c00402{width:8.318400pt;}
.wb_c00402{width:8.956800pt;}
.w10_c00402{width:10.075200pt;}
.w4_c00402{width:10.555200pt;}
.w2_c00402{width:10.718400pt;}
.wa_c00402{width:11.035200pt;}
.w5_c00402{width:13.753600pt;}
.w1_c00402{width:14.713760pt;}
.w3_c00402{width:21.270400pt;}
.w11_c00402{width:23.032000pt;}
.wd_c00402{width:24.945600pt;}
.w19_c00402{width:792.977400pt;}
.w18_c00402{width:793.257550pt;}
.w0_c00402{width:793.333333pt;}
.x0_c00402{left:0.000000pt;}
.x1e_c00402{left:101.233093pt;}
.x1_c00402{left:114.072480pt;}
.x1f_c00402{left:138.815523pt;}
.x1c_c00402{left:225.370940pt;}
.x1b_c00402{left:239.124654pt;}
.x1d_c00402{left:376.018977pt;}
.x2_c00402{left:441.443200pt;}
.x3_c00402{left:452.161600pt;}
.x4_c00402{left:473.432000pt;}
.x5_c00402{left:483.987200pt;}
.x6_c00402{left:497.740800pt;}
.x7_c00402{left:501.899200pt;}
.x8_c00402{left:512.772800pt;}
.x9_c00402{left:520.131200pt;}
.xa_c00402{left:524.768000pt;}
.xb_c00402{left:539.160000pt;}
.xc_c00402{left:548.116800pt;}
.xd_c00402{left:552.275200pt;}
.xe_c00402{left:556.275200pt;}
.xf_c00402{left:581.220800pt;}
.x10_c00402{left:588.419200pt;}
.x11_c00402{left:598.334400pt;}
.x12_c00402{left:608.089600pt;}
.x13_c00402{left:630.161600pt;}
.x14_c00402{left:634.158400pt;}
.x15_c00402{left:640.716800pt;}
.x16_c00402{left:644.876800pt;}
.x17_c00402{left:652.232000pt;}
.x18_c00402{left:659.427200pt;}
.x19_c00402{left:665.985600pt;}
.x1a_c00402{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.112000;font-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_c00403{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls0_c00403{letter-spacing:0.000000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:-16.552343px;}
.ws1_c00403{word-spacing:0.000000px;}
._2_c00403{margin-left:-1.433332px;}
._0_c00403{width:1.102012px;}
._1_c00403{width:2.927747px;}
._4_c00403{width:4.605768px;}
._3_c00403{width:5.895819px;}
._8_c00403{width:9.283396px;}
._7_c00403{width:10.327625px;}
._5_c00403{width:11.568819px;}
._9_c00403{width:14.147155px;}
._6_c00403{width:17.857283px;}
._c_c00403{width:19.047824px;}
._b_c00403{width:20.362314px;}
._a_c00403{width:21.738001px;}
._e_c00403{width:26.542130px;}
._f_c00403{width:27.647524px;}
._d_c00403{width:199.476925px;}
.fc1_c00403{color:rgb(105,148,45);}
.fc0_c00403{color:rgb(35,31,32);}
.fs2_c00403{font-size:59.733096px;}
.fs0_c00403{font-size:66.209374px;}
.fs1_c00403{font-size:71.968771px;}
.y0_c00403{bottom:0.000000px;}
.y4_c00403{bottom:0.120938px;}
.y8_c00403{bottom:0.556171px;}
.y2_c00403{bottom:3.957898px;}
.ya_c00403{bottom:65.791352px;}
.y3_c00403{bottom:74.623320px;}
.y1_c00403{bottom:74.983320px;}
.y29_c00403{bottom:113.110933px;}
.y28_c00403{bottom:141.536222px;}
.y27_c00403{bottom:169.964211px;}
.y26_c00403{bottom:213.503793px;}
.y25_c00403{bottom:241.930432px;}
.y24_c00403{bottom:270.358420px;}
.y23_c00403{bottom:313.719353px;}
.y22_c00403{bottom:342.145992px;}
.y21_c00403{bottom:370.752630px;}
.y20_c00403{bottom:399.177919px;}
.y1f_c00403{bottom:427.609508px;}
.y1e_c00403{bottom:470.966990px;}
.y1d_c00403{bottom:499.394379px;}
.y1c_c00403{bottom:527.822367px;}
.y1b_c00403{bottom:556.429006px;}
.y1a_c00403{bottom:584.855645px;}
.y19_c00403{bottom:613.284383px;}
.y18_c00403{bottom:656.643216px;}
.y17_c00403{bottom:685.071955px;}
.y16_c00403{bottom:728.612887px;}
.y15_c00403{bottom:757.039526px;}
.y14_c00403{bottom:785.466164px;}
.y13_c00403{bottom:828.825747px;}
.y12_c00403{bottom:857.433736px;}
.y11_c00403{bottom:885.861724px;}
.y10_c00403{bottom:929.221307px;}
.yf_c00403{bottom:957.646596px;}
.ye_c00403{bottom:986.073234px;}
.yd_c00403{bottom:1029.614167px;}
.yc_c00403{bottom:1058.042155px;}
.yb_c00403{bottom:1086.470894px;}
.y9_c00403{bottom:1106.080386px;}
.y7_c00403{bottom:1151.494902px;}
.y6_c00403{bottom:1172.185744px;}
.y5_c00403{bottom:1192.876585px;}
.h1_c00403{height:18.172260px;}
.h7_c00403{height:38.288915px;}
.h6_c00403{height:42.440208px;}
.h2_c00403{height:46.346561px;}
.h4_c00403{height:50.378140px;}
.h8_c00403{height:59.323599px;}
.h5_c00403{height:1262.431829px;}
.h3_c00403{height:1262.879062px;}
.h0_c00403{height:1263.000000px;}
.w17_c00403{width:2.700000px;}
.w12_c00403{width:4.676400px;}
.wc_c00403{width:4.680000px;}
.w6_c00403{width:5.038200px;}
.w16_c00403{width:6.474600px;}
.w9_c00403{width:6.476400px;}
.wf_c00403{width:7.376400px;}
.w13_c00403{width:7.378200px;}
.w15_c00403{width:8.094600px;}
.w14_c00403{width:8.274600px;}
.w7_c00403{width:8.276400px;}
.w8_c00403{width:8.278200px;}
.we_c00403{width:9.358200px;}
.wb_c00403{width:10.076400px;}
.w10_c00403{width:11.334600px;}
.w4_c00403{width:11.874600px;}
.w2_c00403{width:12.058200px;}
.wa_c00403{width:12.414600px;}
.w5_c00403{width:15.472800px;}
.w1_c00403{width:16.552980px;}
.w3_c00403{width:23.929200px;}
.w11_c00403{width:25.911000px;}
.wd_c00403{width:28.063800px;}
.w19_c00403{width:892.099575px;}
.w18_c00403{width:892.414744px;}
.w0_c00403{width:892.500000px;}
.x0_c00403{left:0.000000px;}
.x1e_c00403{left:113.887229px;}
.x1_c00403{left:128.331540px;}
.x1f_c00403{left:156.166813px;}
.x1c_c00403{left:253.542308px;}
.x1b_c00403{left:269.015236px;}
.x1d_c00403{left:423.021349px;}
.x2_c00403{left:496.623600px;}
.x3_c00403{left:508.681800px;}
.x4_c00403{left:532.611000px;}
.x5_c00403{left:544.485600px;}
.x6_c00403{left:559.958400px;}
.x7_c00403{left:564.636600px;}
.x8_c00403{left:576.869400px;}
.x9_c00403{left:585.147600px;}
.xa_c00403{left:590.364000px;}
.xb_c00403{left:606.555000px;}
.xc_c00403{left:616.631400px;}
.xd_c00403{left:621.309600px;}
.xe_c00403{left:625.809600px;}
.xf_c00403{left:653.873400px;}
.x10_c00403{left:661.971600px;}
.x11_c00403{left:673.126200px;}
.x12_c00403{left:684.100800px;}
.x13_c00403{left:708.931800px;}
.x14_c00403{left:713.428200px;}
.x15_c00403{left:720.806400px;}
.x16_c00403{left:725.486400px;}
.x17_c00403{left:733.761000px;}
.x18_c00403{left:741.855600px;}
.x19_c00403{left:749.233800px;}
.x1a_c00403{left:755.708400px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:-14.713194pt;}
.ws1_c00403{word-spacing:0.000000pt;}
._2_c00403{margin-left:-1.274073pt;}
._0_c00403{width:0.979567pt;}
._1_c00403{width:2.602442pt;}
._4_c00403{width:4.094016pt;}
._3_c00403{width:5.240728pt;}
._8_c00403{width:8.251908pt;}
._7_c00403{width:9.180111pt;}
._5_c00403{width:10.283394pt;}
._9_c00403{width:12.575249pt;}
._6_c00403{width:15.873140pt;}
._c_c00403{width:16.931399pt;}
._b_c00403{width:18.099835pt;}
._a_c00403{width:19.322667pt;}
._e_c00403{width:23.593004pt;}
._f_c00403{width:24.575577pt;}
._d_c00403{width:177.312822pt;}
.fs2_c00403{font-size:53.096085pt;}
.fs0_c00403{font-size:58.852776pt;}
.fs1_c00403{font-size:63.972241pt;}
.y0_c00403{bottom:0.000000pt;}
.y4_c00403{bottom:0.107500pt;}
.y8_c00403{bottom:0.494374pt;}
.y2_c00403{bottom:3.518132pt;}
.ya_c00403{bottom:58.481202pt;}
.y3_c00403{bottom:66.331840pt;}
.y1_c00403{bottom:66.651840pt;}
.y29_c00403{bottom:100.543052pt;}
.y28_c00403{bottom:125.809975pt;}
.y27_c00403{bottom:151.079298pt;}
.y26_c00403{bottom:189.781149pt;}
.y25_c00403{bottom:215.049273pt;}
.y24_c00403{bottom:240.318596pt;}
.y23_c00403{bottom:278.861647pt;}
.y22_c00403{bottom:304.129770pt;}
.y21_c00403{bottom:329.557894pt;}
.y20_c00403{bottom:354.824817pt;}
.y1f_c00403{bottom:380.097340pt;}
.y1e_c00403{bottom:418.637325pt;}
.y1d_c00403{bottom:443.906115pt;}
.y1c_c00403{bottom:469.175438pt;}
.y1b_c00403{bottom:494.603561pt;}
.y1a_c00403{bottom:519.871684pt;}
.y19_c00403{bottom:545.141674pt;}
.y18_c00403{bottom:583.682859pt;}
.y17_c00403{bottom:608.952848pt;}
.y16_c00403{bottom:647.655900pt;}
.y15_c00403{bottom:672.924023pt;}
.y14_c00403{bottom:698.192146pt;}
.y13_c00403{bottom:736.733997pt;}
.y12_c00403{bottom:762.163321pt;}
.y11_c00403{bottom:787.432644pt;}
.y10_c00403{bottom:825.974495pt;}
.yf_c00403{bottom:851.241418pt;}
.ye_c00403{bottom:876.509541pt;}
.yd_c00403{bottom:915.212593pt;}
.yc_c00403{bottom:940.481916pt;}
.yb_c00403{bottom:965.751906pt;}
.y9_c00403{bottom:983.182565pt;}
.y7_c00403{bottom:1023.551024pt;}
.y6_c00403{bottom:1041.942883pt;}
.y5_c00403{bottom:1060.334742pt;}
.h1_c00403{height:16.153120pt;}
.h7_c00403{height:34.034591pt;}
.h6_c00403{height:37.724630pt;}
.h2_c00403{height:41.196944pt;}
.h4_c00403{height:44.780569pt;}
.h8_c00403{height:52.732088pt;}
.h5_c00403{height:1122.161626pt;}
.h3_c00403{height:1122.559167pt;}
.h0_c00403{height:1122.666667pt;}
.w17_c00403{width:2.400000pt;}
.w12_c00403{width:4.156800pt;}
.wc_c00403{width:4.160000pt;}
.w6_c00403{width:4.478400pt;}
.w16_c00403{width:5.755200pt;}
.w9_c00403{width:5.756800pt;}
.wf_c00403{width:6.556800pt;}
.w13_c00403{width:6.558400pt;}
.w15_c00403{width:7.195200pt;}
.w14_c00403{width:7.355200pt;}
.w7_c00403{width:7.356800pt;}
.w8_c00403{width:7.358400pt;}
.we_c00403{width:8.318400pt;}
.wb_c00403{width:8.956800pt;}
.w10_c00403{width:10.075200pt;}
.w4_c00403{width:10.555200pt;}
.w2_c00403{width:10.718400pt;}
.wa_c00403{width:11.035200pt;}
.w5_c00403{width:13.753600pt;}
.w1_c00403{width:14.713760pt;}
.w3_c00403{width:21.270400pt;}
.w11_c00403{width:23.032000pt;}
.wd_c00403{width:24.945600pt;}
.w19_c00403{width:792.977400pt;}
.w18_c00403{width:793.257550pt;}
.w0_c00403{width:793.333333pt;}
.x0_c00403{left:0.000000pt;}
.x1e_c00403{left:101.233093pt;}
.x1_c00403{left:114.072480pt;}
.x1f_c00403{left:138.814944pt;}
.x1c_c00403{left:225.370940pt;}
.x1b_c00403{left:239.124654pt;}
.x1d_c00403{left:376.018977pt;}
.x2_c00403{left:441.443200pt;}
.x3_c00403{left:452.161600pt;}
.x4_c00403{left:473.432000pt;}
.x5_c00403{left:483.987200pt;}
.x6_c00403{left:497.740800pt;}
.x7_c00403{left:501.899200pt;}
.x8_c00403{left:512.772800pt;}
.x9_c00403{left:520.131200pt;}
.xa_c00403{left:524.768000pt;}
.xb_c00403{left:539.160000pt;}
.xc_c00403{left:548.116800pt;}
.xd_c00403{left:552.275200pt;}
.xe_c00403{left:556.275200pt;}
.xf_c00403{left:581.220800pt;}
.x10_c00403{left:588.419200pt;}
.x11_c00403{left:598.334400pt;}
.x12_c00403{left:608.089600pt;}
.x13_c00403{left:630.161600pt;}
.x14_c00403{left:634.158400pt;}
.x15_c00403{left:640.716800pt;}
.x16_c00403{left:644.876800pt;}
.x17_c00403{left:652.232000pt;}
.x18_c00403{left:659.427200pt;}
.x19_c00403{left:665.985600pt;}
.x1a_c00403{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.113000;font-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_c00404{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls0_c00404{letter-spacing:0.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;}
}
.ws0_c00404{word-spacing:-16.552343px;}
.ws1_c00404{word-spacing:0.000000px;}
._2_c00404{margin-left:-1.320063px;}
._0_c00404{width:1.102012px;}
._7_c00404{width:2.518544px;}
._a_c00404{width:3.572238px;}
._8_c00404{width:5.183705px;}
._b_c00404{width:6.379242px;}
._d_c00404{width:7.721126px;}
._c_c00404{width:8.912634px;}
._9_c00404{width:13.944428px;}
._4_c00404{width:15.311612px;}
._3_c00404{width:19.472366px;}
._6_c00404{width:22.577640px;}
._5_c00404{width:23.797173px;}
._1_c00404{width:199.476925px;}
.fc1_c00404{color:rgb(105,148,45);}
.fc0_c00404{color:rgb(35,31,32);}
.fs2_c00404{font-size:59.733096px;}
.fs0_c00404{font-size:66.209374px;}
.fs1_c00404{font-size:71.968771px;}
.y0_c00404{bottom:0.000000px;}
.y4_c00404{bottom:0.120938px;}
.y8_c00404{bottom:0.556171px;}
.y2_c00404{bottom:3.957898px;}
.ya_c00404{bottom:65.791352px;}
.y3_c00404{bottom:74.623320px;}
.y1_c00404{bottom:74.983320px;}
.y27_c00404{bottom:155.029767px;}
.y26_c00404{bottom:183.455055px;}
.y25_c00404{bottom:211.882444px;}
.y24_c00404{bottom:240.310432px;}
.y23_c00404{bottom:283.850015px;}
.y22_c00404{bottom:327.213798px;}
.y21_c00404{bottom:355.640436px;}
.y20_c00404{bottom:399.181369px;}
.y1f_c00404{bottom:442.178852px;}
.y1e_c00404{bottom:486.081284px;}
.y1d_c00404{bottom:514.506573px;}
.y1c_c00404{bottom:542.934561px;}
.y1b_c00404{bottom:571.361950px;}
.y1a_c00404{bottom:599.789939px;}
.y19_c00404{bottom:643.149521px;}
.y18_c00404{bottom:671.756160px;}
.y17_c00404{bottom:700.181449px;}
.y16_c00404{bottom:743.545231px;}
.y15_c00404{bottom:771.971870px;}
.y14_c00404{bottom:800.398508px;}
.y13_c00404{bottom:843.938091px;}
.y12_c00404{bottom:872.366080px;}
.y11_c00404{bottom:915.727012px;}
.y10_c00404{bottom:944.153651px;}
.yf_c00404{bottom:972.760289px;}
.ye_c00404{bottom:1001.186178px;}
.yd_c00404{bottom:1029.614167px;}
.yc_c00404{bottom:1058.042155px;}
.yb_c00404{bottom:1086.470894px;}
.y9_c00404{bottom:1106.080386px;}
.y7_c00404{bottom:1151.494902px;}
.y6_c00404{bottom:1172.185744px;}
.y5_c00404{bottom:1192.876585px;}
.h1_c00404{height:18.172260px;}
.h7_c00404{height:38.288915px;}
.h6_c00404{height:42.440208px;}
.h2_c00404{height:46.346561px;}
.h4_c00404{height:50.378140px;}
.h8_c00404{height:59.323599px;}
.h9_c00404{height:59.389808px;}
.h5_c00404{height:1262.431829px;}
.h3_c00404{height:1262.879062px;}
.h0_c00404{height:1263.000000px;}
.w17_c00404{width:2.700000px;}
.w12_c00404{width:4.676400px;}
.wc_c00404{width:4.680000px;}
.w6_c00404{width:5.038200px;}
.w16_c00404{width:6.474600px;}
.w9_c00404{width:6.476400px;}
.wf_c00404{width:7.376400px;}
.w13_c00404{width:7.378200px;}
.w15_c00404{width:8.094600px;}
.w14_c00404{width:8.274600px;}
.w7_c00404{width:8.276400px;}
.w8_c00404{width:8.278200px;}
.we_c00404{width:9.358200px;}
.wb_c00404{width:10.076400px;}
.w10_c00404{width:11.334600px;}
.w4_c00404{width:11.874600px;}
.w2_c00404{width:12.058200px;}
.wa_c00404{width:12.414600px;}
.w5_c00404{width:15.472800px;}
.w1_c00404{width:16.552980px;}
.w3_c00404{width:23.929200px;}
.w11_c00404{width:25.911000px;}
.wd_c00404{width:28.063800px;}
.w19_c00404{width:892.099575px;}
.w18_c00404{width:892.414744px;}
.w0_c00404{width:892.500000px;}
.x0_c00404{left:0.000000px;}
.x1e_c00404{left:113.887229px;}
.x1_c00404{left:128.331540px;}
.x1f_c00404{left:135.119017px;}
.x1c_c00404{left:253.542308px;}
.x1b_c00404{left:269.015236px;}
.x1d_c00404{left:423.021349px;}
.x2_c00404{left:496.623600px;}
.x3_c00404{left:508.681800px;}
.x4_c00404{left:532.611000px;}
.x5_c00404{left:544.485600px;}
.x6_c00404{left:559.958400px;}
.x7_c00404{left:564.636600px;}
.x8_c00404{left:576.869400px;}
.x9_c00404{left:585.147600px;}
.xa_c00404{left:590.364000px;}
.xb_c00404{left:606.555000px;}
.xc_c00404{left:616.631400px;}
.xd_c00404{left:621.309600px;}
.xe_c00404{left:625.809600px;}
.xf_c00404{left:653.873400px;}
.x10_c00404{left:661.971600px;}
.x11_c00404{left:673.126200px;}
.x12_c00404{left:684.100800px;}
.x13_c00404{left:708.931800px;}
.x14_c00404{left:713.428200px;}
.x15_c00404{left:720.806400px;}
.x16_c00404{left:725.486400px;}
.x17_c00404{left:733.761000px;}
.x18_c00404{left:741.855600px;}
.x19_c00404{left:749.233800px;}
.x1a_c00404{left:755.708400px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:-14.713194pt;}
.ws1_c00404{word-spacing:0.000000pt;}
._2_c00404{margin-left:-1.173390pt;}
._0_c00404{width:0.979567pt;}
._7_c00404{width:2.238706pt;}
._a_c00404{width:3.175323pt;}
._8_c00404{width:4.607737pt;}
._b_c00404{width:5.670437pt;}
._d_c00404{width:6.863223pt;}
._c_c00404{width:7.922342pt;}
._9_c00404{width:12.395047pt;}
._4_c00404{width:13.610322pt;}
._3_c00404{width:17.308770pt;}
._6_c00404{width:20.069014pt;}
._5_c00404{width:21.153042pt;}
._1_c00404{width:177.312822pt;}
.fs2_c00404{font-size:53.096085pt;}
.fs0_c00404{font-size:58.852776pt;}
.fs1_c00404{font-size:63.972241pt;}
.y0_c00404{bottom:0.000000pt;}
.y4_c00404{bottom:0.107500pt;}
.y8_c00404{bottom:0.494374pt;}
.y2_c00404{bottom:3.518132pt;}
.ya_c00404{bottom:58.481202pt;}
.y3_c00404{bottom:66.331840pt;}
.y1_c00404{bottom:66.651840pt;}
.y27_c00404{bottom:137.804237pt;}
.y26_c00404{bottom:163.071160pt;}
.y25_c00404{bottom:188.339950pt;}
.y24_c00404{bottom:213.609273pt;}
.y23_c00404{bottom:252.311124pt;}
.y22_c00404{bottom:290.856709pt;}
.y21_c00404{bottom:316.124832pt;}
.y20_c00404{bottom:354.827883pt;}
.y1f_c00404{bottom:393.047868pt;}
.y1e_c00404{bottom:432.072253pt;}
.y1d_c00404{bottom:457.339176pt;}
.y1c_c00404{bottom:482.608499pt;}
.y1b_c00404{bottom:507.877289pt;}
.y1a_c00404{bottom:533.146612pt;}
.y19_c00404{bottom:571.688463pt;}
.y18_c00404{bottom:597.116587pt;}
.y17_c00404{bottom:622.383510pt;}
.y16_c00404{bottom:660.929094pt;}
.y15_c00404{bottom:686.197218pt;}
.y14_c00404{bottom:711.465341pt;}
.y13_c00404{bottom:750.167192pt;}
.y12_c00404{bottom:775.436515pt;}
.y11_c00404{bottom:813.979566pt;}
.y10_c00404{bottom:839.247690pt;}
.yf_c00404{bottom:864.675813pt;}
.ye_c00404{bottom:889.943269pt;}
.yd_c00404{bottom:915.212593pt;}
.yc_c00404{bottom:940.481916pt;}
.yb_c00404{bottom:965.751906pt;}
.y9_c00404{bottom:983.182565pt;}
.y7_c00404{bottom:1023.551024pt;}
.y6_c00404{bottom:1041.942883pt;}
.y5_c00404{bottom:1060.334742pt;}
.h1_c00404{height:16.153120pt;}
.h7_c00404{height:34.034591pt;}
.h6_c00404{height:37.724630pt;}
.h2_c00404{height:41.196944pt;}
.h4_c00404{height:44.780569pt;}
.h8_c00404{height:52.732088pt;}
.h9_c00404{height:52.790940pt;}
.h5_c00404{height:1122.161626pt;}
.h3_c00404{height:1122.559167pt;}
.h0_c00404{height:1122.666667pt;}
.w17_c00404{width:2.400000pt;}
.w12_c00404{width:4.156800pt;}
.wc_c00404{width:4.160000pt;}
.w6_c00404{width:4.478400pt;}
.w16_c00404{width:5.755200pt;}
.w9_c00404{width:5.756800pt;}
.wf_c00404{width:6.556800pt;}
.w13_c00404{width:6.558400pt;}
.w15_c00404{width:7.195200pt;}
.w14_c00404{width:7.355200pt;}
.w7_c00404{width:7.356800pt;}
.w8_c00404{width:7.358400pt;}
.we_c00404{width:8.318400pt;}
.wb_c00404{width:8.956800pt;}
.w10_c00404{width:10.075200pt;}
.w4_c00404{width:10.555200pt;}
.w2_c00404{width:10.718400pt;}
.wa_c00404{width:11.035200pt;}
.w5_c00404{width:13.753600pt;}
.w1_c00404{width:14.713760pt;}
.w3_c00404{width:21.270400pt;}
.w11_c00404{width:23.032000pt;}
.wd_c00404{width:24.945600pt;}
.w19_c00404{width:792.977400pt;}
.w18_c00404{width:793.257550pt;}
.w0_c00404{width:793.333333pt;}
.x0_c00404{left:0.000000pt;}
.x1e_c00404{left:101.233093pt;}
.x1_c00404{left:114.072480pt;}
.x1f_c00404{left:120.105793pt;}
.x1c_c00404{left:225.370940pt;}
.x1b_c00404{left:239.124654pt;}
.x1d_c00404{left:376.018977pt;}
.x2_c00404{left:441.443200pt;}
.x3_c00404{left:452.161600pt;}
.x4_c00404{left:473.432000pt;}
.x5_c00404{left:483.987200pt;}
.x6_c00404{left:497.740800pt;}
.x7_c00404{left:501.899200pt;}
.x8_c00404{left:512.772800pt;}
.x9_c00404{left:520.131200pt;}
.xa_c00404{left:524.768000pt;}
.xb_c00404{left:539.160000pt;}
.xc_c00404{left:548.116800pt;}
.xd_c00404{left:552.275200pt;}
.xe_c00404{left:556.275200pt;}
.xf_c00404{left:581.220800pt;}
.x10_c00404{left:588.419200pt;}
.x11_c00404{left:598.334400pt;}
.x12_c00404{left:608.089600pt;}
.x13_c00404{left:630.161600pt;}
.x14_c00404{left:634.158400pt;}
.x15_c00404{left:640.716800pt;}
.x16_c00404{left:644.876800pt;}
.x17_c00404{left:652.232000pt;}
.x18_c00404{left:659.427200pt;}
.x19_c00404{left:665.985600pt;}
.x1a_c00404{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.112000;font-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_c00405{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00405{word-spacing:-16.552343px;}
.ws1_c00405{word-spacing:0.000000px;}
._1_c00405{margin-left:-1.218446px;}
._0_c00405{width:1.102012px;}
._2_c00405{width:2.383591px;}
._5_c00405{width:3.499069px;}
._8_c00405{width:4.814645px;}
._4_c00405{width:6.027680px;}
._3_c00405{width:7.204882px;}
._7_c00405{width:10.395291px;}
._6_c00405{width:11.676395px;}
._a_c00405{width:18.073372px;}
._9_c00405{width:19.637698px;}
.fc1_c00405{color:rgb(105,148,45);}
.fc0_c00405{color:rgb(35,31,32);}
.fs2_c00405{font-size:59.733096px;}
.fs0_c00405{font-size:66.209374px;}
.fs1_c00405{font-size:71.968771px;}
.y0_c00405{bottom:0.000000px;}
.y4_c00405{bottom:0.120938px;}
.y8_c00405{bottom:0.556171px;}
.y2_c00405{bottom:3.957898px;}
.ya_c00405{bottom:65.791352px;}
.y3_c00405{bottom:74.623320px;}
.y1_c00405{bottom:74.983320px;}
.y26_c00405{bottom:108.430785px;}
.y25_c00405{bottom:151.973218px;}
.y24_c00405{bottom:180.398506px;}
.y23_c00405{bottom:223.758089px;}
.y22_c00405{bottom:267.299022px;}
.y21_c00405{bottom:295.725660px;}
.y20_c00405{bottom:324.152299px;}
.y1f_c00405{bottom:352.581788px;}
.y1e_c00405{bottom:396.121370px;}
.y1d_c00405{bottom:439.480953px;}
.y1c_c00405{bottom:467.907591px;}
.y1b_c00405{bottom:511.448524px;}
.y1a_c00405{bottom:539.878013px;}
.y19_c00405{bottom:568.303301px;}
.y18_c00405{bottom:611.662884px;}
.y17_c00405{bottom:640.089523px;}
.y16_c00405{bottom:668.516161px;}
.y15_c00405{bottom:712.059944px;}
.y14_c00405{bottom:755.419526px;}
.y13_c00405{bottom:783.844815px;}
.y12_c00405{bottom:827.385748px;}
.y11_c00405{bottom:855.813736px;}
.y10_c00405{bottom:884.241725px;}
.yf_c00405{bottom:927.421308px;}
.ye_c00405{bottom:971.140890px;}
.yd_c00405{bottom:999.567529px;}
.yc_c00405{bottom:1043.108461px;}
.yb_c00405{bottom:1086.110894px;}
.y9_c00405{bottom:1106.080386px;}
.y7_c00405{bottom:1151.494902px;}
.y6_c00405{bottom:1172.185744px;}
.y5_c00405{bottom:1192.876585px;}
.h1_c00405{height:18.172260px;}
.h7_c00405{height:38.288915px;}
.h6_c00405{height:42.440208px;}
.h2_c00405{height:46.346561px;}
.h4_c00405{height:50.378140px;}
.h9_c00405{height:59.323599px;}
.h8_c00405{height:59.389808px;}
.h5_c00405{height:1262.431829px;}
.h3_c00405{height:1262.879062px;}
.h0_c00405{height:1263.000000px;}
.w17_c00405{width:2.700000px;}
.w12_c00405{width:4.676400px;}
.wc_c00405{width:4.680000px;}
.w6_c00405{width:5.038200px;}
.w16_c00405{width:6.474600px;}
.w9_c00405{width:6.476400px;}
.wf_c00405{width:7.376400px;}
.w13_c00405{width:7.378200px;}
.w15_c00405{width:8.094600px;}
.w14_c00405{width:8.274600px;}
.w7_c00405{width:8.276400px;}
.w8_c00405{width:8.278200px;}
.we_c00405{width:9.358200px;}
.wb_c00405{width:10.076400px;}
.w10_c00405{width:11.334600px;}
.w4_c00405{width:11.874600px;}
.w2_c00405{width:12.058200px;}
.wa_c00405{width:12.414600px;}
.w5_c00405{width:15.472800px;}
.w1_c00405{width:16.552980px;}
.w3_c00405{width:23.929200px;}
.w11_c00405{width:25.911000px;}
.wd_c00405{width:28.063800px;}
.w19_c00405{width:892.099575px;}
.w18_c00405{width:892.414744px;}
.w0_c00405{width:892.500000px;}
.x0_c00405{left:0.000000px;}
.x1e_c00405{left:113.887229px;}
.x1_c00405{left:128.331540px;}
.x1f_c00405{left:135.117321px;}
.x1c_c00405{left:253.542308px;}
.x1b_c00405{left:269.015236px;}
.x1d_c00405{left:423.021349px;}
.x2_c00405{left:496.623600px;}
.x3_c00405{left:508.681800px;}
.x4_c00405{left:532.611000px;}
.x5_c00405{left:544.485600px;}
.x6_c00405{left:559.958400px;}
.x7_c00405{left:564.636600px;}
.x8_c00405{left:576.869400px;}
.x9_c00405{left:585.147600px;}
.xa_c00405{left:590.364000px;}
.xb_c00405{left:606.555000px;}
.xc_c00405{left:616.631400px;}
.xd_c00405{left:621.309600px;}
.xe_c00405{left:625.809600px;}
.xf_c00405{left:653.873400px;}
.x10_c00405{left:661.971600px;}
.x11_c00405{left:673.126200px;}
.x12_c00405{left:684.100800px;}
.x13_c00405{left:708.931800px;}
.x14_c00405{left:713.428200px;}
.x15_c00405{left:720.806400px;}
.x16_c00405{left:725.486400px;}
.x17_c00405{left:733.761000px;}
.x18_c00405{left:741.855600px;}
.x19_c00405{left:749.233800px;}
.x1a_c00405{left:755.708400px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:-14.713194pt;}
.ws1_c00405{word-spacing:0.000000pt;}
._1_c00405{margin-left:-1.083063pt;}
._0_c00405{width:0.979567pt;}
._2_c00405{width:2.118748pt;}
._5_c00405{width:3.110284pt;}
._8_c00405{width:4.279685pt;}
._4_c00405{width:5.357938pt;}
._3_c00405{width:6.404340pt;}
._7_c00405{width:9.240258pt;}
._6_c00405{width:10.379018pt;}
._a_c00405{width:16.065220pt;}
._9_c00405{width:17.455731pt;}
.fs2_c00405{font-size:53.096085pt;}
.fs0_c00405{font-size:58.852776pt;}
.fs1_c00405{font-size:63.972241pt;}
.y0_c00405{bottom:0.000000pt;}
.y4_c00405{bottom:0.107500pt;}
.y8_c00405{bottom:0.494374pt;}
.y2_c00405{bottom:3.518132pt;}
.ya_c00405{bottom:58.481202pt;}
.y3_c00405{bottom:66.331840pt;}
.y1_c00405{bottom:66.651840pt;}
.y26_c00405{bottom:96.382920pt;}
.y25_c00405{bottom:135.087305pt;}
.y24_c00405{bottom:160.354228pt;}
.y23_c00405{bottom:198.896079pt;}
.y22_c00405{bottom:237.599130pt;}
.y21_c00405{bottom:262.867254pt;}
.y20_c00405{bottom:288.135377pt;}
.y1f_c00405{bottom:313.406033pt;}
.y1e_c00405{bottom:352.107885pt;}
.y1d_c00405{bottom:390.649736pt;}
.y1c_c00405{bottom:415.917859pt;}
.y1b_c00405{bottom:454.620910pt;}
.y1a_c00405{bottom:479.891567pt;}
.y19_c00405{bottom:505.158490pt;}
.y18_c00405{bottom:543.700341pt;}
.y17_c00405{bottom:568.968464pt;}
.y16_c00405{bottom:594.236588pt;}
.y15_c00405{bottom:632.942172pt;}
.y14_c00405{bottom:671.484023pt;}
.y13_c00405{bottom:696.750947pt;}
.y12_c00405{bottom:735.453998pt;}
.y11_c00405{bottom:760.723321pt;}
.y10_c00405{bottom:785.992644pt;}
.yf_c00405{bottom:824.374496pt;}
.ye_c00405{bottom:863.236347pt;}
.yd_c00405{bottom:888.504470pt;}
.yc_c00405{bottom:927.207521pt;}
.yb_c00405{bottom:965.431906pt;}
.y9_c00405{bottom:983.182565pt;}
.y7_c00405{bottom:1023.551024pt;}
.y6_c00405{bottom:1041.942883pt;}
.y5_c00405{bottom:1060.334742pt;}
.h1_c00405{height:16.153120pt;}
.h7_c00405{height:34.034591pt;}
.h6_c00405{height:37.724630pt;}
.h2_c00405{height:41.196944pt;}
.h4_c00405{height:44.780569pt;}
.h9_c00405{height:52.732088pt;}
.h8_c00405{height:52.790940pt;}
.h5_c00405{height:1122.161626pt;}
.h3_c00405{height:1122.559167pt;}
.h0_c00405{height:1122.666667pt;}
.w17_c00405{width:2.400000pt;}
.w12_c00405{width:4.156800pt;}
.wc_c00405{width:4.160000pt;}
.w6_c00405{width:4.478400pt;}
.w16_c00405{width:5.755200pt;}
.w9_c00405{width:5.756800pt;}
.wf_c00405{width:6.556800pt;}
.w13_c00405{width:6.558400pt;}
.w15_c00405{width:7.195200pt;}
.w14_c00405{width:7.355200pt;}
.w7_c00405{width:7.356800pt;}
.w8_c00405{width:7.358400pt;}
.we_c00405{width:8.318400pt;}
.wb_c00405{width:8.956800pt;}
.w10_c00405{width:10.075200pt;}
.w4_c00405{width:10.555200pt;}
.w2_c00405{width:10.718400pt;}
.wa_c00405{width:11.035200pt;}
.w5_c00405{width:13.753600pt;}
.w1_c00405{width:14.713760pt;}
.w3_c00405{width:21.270400pt;}
.w11_c00405{width:23.032000pt;}
.wd_c00405{width:24.945600pt;}
.w19_c00405{width:792.977400pt;}
.w18_c00405{width:793.257550pt;}
.w0_c00405{width:793.333333pt;}
.x0_c00405{left:0.000000pt;}
.x1e_c00405{left:101.233093pt;}
.x1_c00405{left:114.072480pt;}
.x1f_c00405{left:120.104285pt;}
.x1c_c00405{left:225.370940pt;}
.x1b_c00405{left:239.124654pt;}
.x1d_c00405{left:376.018977pt;}
.x2_c00405{left:441.443200pt;}
.x3_c00405{left:452.161600pt;}
.x4_c00405{left:473.432000pt;}
.x5_c00405{left:483.987200pt;}
.x6_c00405{left:497.740800pt;}
.x7_c00405{left:501.899200pt;}
.x8_c00405{left:512.772800pt;}
.x9_c00405{left:520.131200pt;}
.xa_c00405{left:524.768000pt;}
.xb_c00405{left:539.160000pt;}
.xc_c00405{left:548.116800pt;}
.xd_c00405{left:552.275200pt;}
.xe_c00405{left:556.275200pt;}
.xf_c00405{left:581.220800pt;}
.x10_c00405{left:588.419200pt;}
.x11_c00405{left:598.334400pt;}
.x12_c00405{left:608.089600pt;}
.x13_c00405{left:630.161600pt;}
.x14_c00405{left:634.158400pt;}
.x15_c00405{left:640.716800pt;}
.x16_c00405{left:644.876800pt;}
.x17_c00405{left:652.232000pt;}
.x18_c00405{left:659.427200pt;}
.x19_c00405{left:665.985600pt;}
.x1a_c00405{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.113000;font-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_c00406{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls0_c00406{letter-spacing:0.000000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:-16.552343px;}
.ws1_c00406{word-spacing:0.000000px;}
._3_c00406{margin-left:-1.018744px;}
._0_c00406{width:1.102012px;}
._7_c00406{width:2.327524px;}
._b_c00406{width:3.558391px;}
._a_c00406{width:4.559305px;}
._6_c00406{width:8.601499px;}
._1_c00406{width:9.785106px;}
._2_c00406{width:10.859084px;}
._4_c00406{width:11.918408px;}
._5_c00406{width:18.049899px;}
._8_c00406{width:28.588699px;}
._9_c00406{width:29.598214px;}
.fc1_c00406{color:rgb(105,148,45);}
.fc0_c00406{color:rgb(35,31,32);}
.fs2_c00406{font-size:59.733096px;}
.fs0_c00406{font-size:66.209374px;}
.fs1_c00406{font-size:71.968771px;}
.y0_c00406{bottom:0.000000px;}
.y4_c00406{bottom:0.120938px;}
.y8_c00406{bottom:0.556171px;}
.y2_c00406{bottom:3.957898px;}
.ya_c00406{bottom:65.791352px;}
.y3_c00406{bottom:74.623320px;}
.y1_c00406{bottom:74.983320px;}
.y25_c00406{bottom:151.973518px;}
.y24_c00406{bottom:180.400156px;}
.y23_c00406{bottom:223.759739px;}
.y22_c00406{bottom:266.940672px;}
.y21_c00406{bottom:310.661004px;}
.y20_c00406{bottom:339.088393px;}
.y1f_c00406{bottom:382.629326px;}
.y1e_c00406{bottom:411.054614px;}
.y1d_c00406{bottom:454.054947px;}
.y1c_c00406{bottom:497.955879px;}
.y1b_c00406{bottom:526.382518px;}
.y1a_c00406{bottom:554.809157px;}
.y19_c00406{bottom:598.170089px;}
.y18_c00406{bottom:626.775378px;}
.y17_c00406{bottom:670.136311px;}
.y16_c00406{bottom:698.562949px;}
.y15_c00406{bottom:726.993038px;}
.y14_c00406{bottom:770.531870px;}
.y13_c00406{bottom:798.960609px;}
.y12_c00406{bottom:827.384398px;}
.y11_c00406{bottom:870.748180px;}
.y10_c00406{bottom:899.174819px;}
.yf_c00406{bottom:942.713651px;}
.ye_c00406{bottom:985.714584px;}
.yd_c00406{bottom:1029.614167px;}
.yc_c00406{bottom:1058.042155px;}
.yb_c00406{bottom:1086.470894px;}
.y9_c00406{bottom:1106.080386px;}
.y7_c00406{bottom:1151.494902px;}
.y6_c00406{bottom:1172.185744px;}
.y5_c00406{bottom:1192.876585px;}
.h1_c00406{height:18.172260px;}
.h7_c00406{height:38.288915px;}
.h6_c00406{height:42.440208px;}
.h2_c00406{height:46.346561px;}
.h4_c00406{height:50.378140px;}
.h8_c00406{height:59.323599px;}
.h9_c00406{height:59.389808px;}
.h5_c00406{height:1262.431829px;}
.h3_c00406{height:1262.879062px;}
.h0_c00406{height:1263.000000px;}
.w17_c00406{width:2.700000px;}
.w12_c00406{width:4.676400px;}
.wc_c00406{width:4.680000px;}
.w6_c00406{width:5.038200px;}
.w16_c00406{width:6.474600px;}
.w9_c00406{width:6.476400px;}
.wf_c00406{width:7.376400px;}
.w13_c00406{width:7.378200px;}
.w15_c00406{width:8.094600px;}
.w14_c00406{width:8.274600px;}
.w7_c00406{width:8.276400px;}
.w8_c00406{width:8.278200px;}
.we_c00406{width:9.358200px;}
.wb_c00406{width:10.076400px;}
.w10_c00406{width:11.334600px;}
.w4_c00406{width:11.874600px;}
.w2_c00406{width:12.058200px;}
.wa_c00406{width:12.414600px;}
.w5_c00406{width:15.472800px;}
.w1_c00406{width:16.552980px;}
.w3_c00406{width:23.929200px;}
.w11_c00406{width:25.911000px;}
.wd_c00406{width:28.063800px;}
.w19_c00406{width:892.099575px;}
.w18_c00406{width:892.414744px;}
.w0_c00406{width:892.500000px;}
.x0_c00406{left:0.000000px;}
.x1e_c00406{left:113.887229px;}
.x1_c00406{left:128.331540px;}
.x1f_c00406{left:135.117518px;}
.x20_c00406{left:156.170912px;}
.x1c_c00406{left:253.542308px;}
.x1b_c00406{left:269.015236px;}
.x1d_c00406{left:423.021349px;}
.x2_c00406{left:496.623600px;}
.x3_c00406{left:508.681800px;}
.x4_c00406{left:532.611000px;}
.x5_c00406{left:544.485600px;}
.x6_c00406{left:559.958400px;}
.x7_c00406{left:564.636600px;}
.x8_c00406{left:576.869400px;}
.x9_c00406{left:585.147600px;}
.xa_c00406{left:590.364000px;}
.xb_c00406{left:606.555000px;}
.xc_c00406{left:616.631400px;}
.xd_c00406{left:621.309600px;}
.xe_c00406{left:625.809600px;}
.xf_c00406{left:653.873400px;}
.x10_c00406{left:661.971600px;}
.x11_c00406{left:673.126200px;}
.x12_c00406{left:684.100800px;}
.x13_c00406{left:708.931800px;}
.x14_c00406{left:713.428200px;}
.x15_c00406{left:720.806400px;}
.x16_c00406{left:725.486400px;}
.x17_c00406{left:733.761000px;}
.x18_c00406{left:741.855600px;}
.x19_c00406{left:749.233800px;}
.x1a_c00406{left:755.708400px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:-14.713194pt;}
.ws1_c00406{word-spacing:0.000000pt;}
._3_c00406{margin-left:-0.905550pt;}
._0_c00406{width:0.979567pt;}
._7_c00406{width:2.068910pt;}
._b_c00406{width:3.163014pt;}
._a_c00406{width:4.052715pt;}
._6_c00406{width:7.645777pt;}
._1_c00406{width:8.697872pt;}
._2_c00406{width:9.652519pt;}
._4_c00406{width:10.594140pt;}
._5_c00406{width:16.044355pt;}
._8_c00406{width:25.412177pt;}
._9_c00406{width:26.309523pt;}
.fs2_c00406{font-size:53.096085pt;}
.fs0_c00406{font-size:58.852776pt;}
.fs1_c00406{font-size:63.972241pt;}
.y0_c00406{bottom:0.000000pt;}
.y4_c00406{bottom:0.107500pt;}
.y8_c00406{bottom:0.494374pt;}
.y2_c00406{bottom:3.518132pt;}
.ya_c00406{bottom:58.481202pt;}
.y3_c00406{bottom:66.331840pt;}
.y1_c00406{bottom:66.651840pt;}
.y25_c00406{bottom:135.087571pt;}
.y24_c00406{bottom:160.355695pt;}
.y23_c00406{bottom:198.897546pt;}
.y22_c00406{bottom:237.280597pt;}
.y21_c00406{bottom:276.143115pt;}
.y20_c00406{bottom:301.411905pt;}
.y1f_c00406{bottom:340.114956pt;}
.y1e_c00406{bottom:365.381879pt;}
.y1d_c00406{bottom:403.604397pt;}
.y1c_c00406{bottom:442.627448pt;}
.y1b_c00406{bottom:467.895572pt;}
.y1a_c00406{bottom:493.163695pt;}
.y19_c00406{bottom:531.706746pt;}
.y18_c00406{bottom:557.133669pt;}
.y17_c00406{bottom:595.676720pt;}
.y16_c00406{bottom:620.944844pt;}
.y15_c00406{bottom:646.216034pt;}
.y14_c00406{bottom:684.917218pt;}
.y13_c00406{bottom:710.187208pt;}
.y12_c00406{bottom:735.452798pt;}
.y11_c00406{bottom:773.998382pt;}
.y10_c00406{bottom:799.266506pt;}
.yf_c00406{bottom:837.967690pt;}
.ye_c00406{bottom:876.190742pt;}
.yd_c00406{bottom:915.212593pt;}
.yc_c00406{bottom:940.481916pt;}
.yb_c00406{bottom:965.751906pt;}
.y9_c00406{bottom:983.182565pt;}
.y7_c00406{bottom:1023.551024pt;}
.y6_c00406{bottom:1041.942883pt;}
.y5_c00406{bottom:1060.334742pt;}
.h1_c00406{height:16.153120pt;}
.h7_c00406{height:34.034591pt;}
.h6_c00406{height:37.724630pt;}
.h2_c00406{height:41.196944pt;}
.h4_c00406{height:44.780569pt;}
.h8_c00406{height:52.732088pt;}
.h9_c00406{height:52.790940pt;}
.h5_c00406{height:1122.161626pt;}
.h3_c00406{height:1122.559167pt;}
.h0_c00406{height:1122.666667pt;}
.w17_c00406{width:2.400000pt;}
.w12_c00406{width:4.156800pt;}
.wc_c00406{width:4.160000pt;}
.w6_c00406{width:4.478400pt;}
.w16_c00406{width:5.755200pt;}
.w9_c00406{width:5.756800pt;}
.wf_c00406{width:6.556800pt;}
.w13_c00406{width:6.558400pt;}
.w15_c00406{width:7.195200pt;}
.w14_c00406{width:7.355200pt;}
.w7_c00406{width:7.356800pt;}
.w8_c00406{width:7.358400pt;}
.we_c00406{width:8.318400pt;}
.wb_c00406{width:8.956800pt;}
.w10_c00406{width:10.075200pt;}
.w4_c00406{width:10.555200pt;}
.w2_c00406{width:10.718400pt;}
.wa_c00406{width:11.035200pt;}
.w5_c00406{width:13.753600pt;}
.w1_c00406{width:14.713760pt;}
.w3_c00406{width:21.270400pt;}
.w11_c00406{width:23.032000pt;}
.wd_c00406{width:24.945600pt;}
.w19_c00406{width:792.977400pt;}
.w18_c00406{width:793.257550pt;}
.w0_c00406{width:793.333333pt;}
.x0_c00406{left:0.000000pt;}
.x1e_c00406{left:101.233093pt;}
.x1_c00406{left:114.072480pt;}
.x1f_c00406{left:120.104460pt;}
.x20_c00406{left:138.818588pt;}
.x1c_c00406{left:225.370940pt;}
.x1b_c00406{left:239.124654pt;}
.x1d_c00406{left:376.018977pt;}
.x2_c00406{left:441.443200pt;}
.x3_c00406{left:452.161600pt;}
.x4_c00406{left:473.432000pt;}
.x5_c00406{left:483.987200pt;}
.x6_c00406{left:497.740800pt;}
.x7_c00406{left:501.899200pt;}
.x8_c00406{left:512.772800pt;}
.x9_c00406{left:520.131200pt;}
.xa_c00406{left:524.768000pt;}
.xb_c00406{left:539.160000pt;}
.xc_c00406{left:548.116800pt;}
.xd_c00406{left:552.275200pt;}
.xe_c00406{left:556.275200pt;}
.xf_c00406{left:581.220800pt;}
.x10_c00406{left:588.419200pt;}
.x11_c00406{left:598.334400pt;}
.x12_c00406{left:608.089600pt;}
.x13_c00406{left:630.161600pt;}
.x14_c00406{left:634.158400pt;}
.x15_c00406{left:640.716800pt;}
.x16_c00406{left:644.876800pt;}
.x17_c00406{left:652.232000pt;}
.x18_c00406{left:659.427200pt;}
.x19_c00406{left:665.985600pt;}
.x1a_c00406{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.112000;font-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_c00407{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:-16.552343px;}
.ws1_c00407{word-spacing:0.000000px;}
._e_c00407{margin-left:-2.768406px;}
._1_c00407{margin-left:-1.299137px;}
._0_c00407{width:1.102012px;}
._6_c00407{width:3.005885px;}
._7_c00407{width:4.114887px;}
._3_c00407{width:5.808187px;}
._9_c00407{width:6.818453px;}
._8_c00407{width:8.759096px;}
._2_c00407{width:10.848682px;}
._d_c00407{width:12.094733px;}
._c_c00407{width:13.974444px;}
._b_c00407{width:14.984407px;}
._a_c00407{width:16.000473px;}
._5_c00407{width:18.593211px;}
._4_c00407{width:199.476925px;}
.fc1_c00407{color:rgb(105,148,45);}
.fc0_c00407{color:rgb(35,31,32);}
.fs3_c00407{font-size:41.741203px;}
.fs4_c00407{font-size:48.218261px;}
.fs2_c00407{font-size:59.733096px;}
.fs0_c00407{font-size:66.209374px;}
.fs1_c00407{font-size:71.968771px;}
.y0_c00407{bottom:0.000000px;}
.y4_c00407{bottom:0.120938px;}
.y8_c00407{bottom:0.556171px;}
.y2_c00407{bottom:3.957898px;}
.ya_c00407{bottom:65.791352px;}
.y3_c00407{bottom:74.623320px;}
.y1_c00407{bottom:74.983320px;}
.y28_c00407{bottom:143.335171px;}
.y27_c00407{bottom:174.281809px;}
.y26_c00407{bottom:207.387096px;}
.y25_c00407{bottom:238.333733px;}
.y24_c00407{bottom:257.583226px;}
.y23_c00407{bottom:284.393615px;}
.y22_c00407{bottom:315.337402px;}
.y21_c00407{bottom:346.465390px;}
.y20_c00407{bottom:377.411278px;}
.y1f_c00407{bottom:408.536565px;}
.y1e_c00407{bottom:439.483203px;}
.y1d_c00407{bottom:470.608490px;}
.y1c_c00407{bottom:501.555128px;}
.y1b_c00407{bottom:520.984620px;}
.y1a_c00407{bottom:535.018615px;}
.y19_c00407{bottom:551.211108px;}
.y18_c00407{bottom:596.732190px;}
.y17_c00407{bottom:625.160179px;}
.y16_c00407{bottom:653.588167px;}
.y15_c00407{bottom:682.013456px;}
.y14_c00407{bottom:725.554388px;}
.y13_c00407{bottom:753.982377px;}
.y12_c00407{bottom:796.981960px;}
.y11_c00407{bottom:840.882892px;}
.y10_c00407{bottom:869.308181px;}
.yf_c00407{bottom:912.309114px;}
.ye_c00407{bottom:956.207946px;}
.yd_c00407{bottom:999.207529px;}
.yc_c00407{bottom:1043.108461px;}
.yb_c00407{bottom:1086.110894px;}
.y9_c00407{bottom:1106.080386px;}
.y7_c00407{bottom:1151.494902px;}
.y6_c00407{bottom:1172.185744px;}
.y5_c00407{bottom:1192.876585px;}
.h1_c00407{height:18.172260px;}
.hb_c00407{height:26.756111px;}
.hd_c00407{height:30.907905px;}
.h7_c00407{height:38.288915px;}
.h6_c00407{height:42.440208px;}
.h2_c00407{height:46.346561px;}
.h4_c00407{height:50.378140px;}
.ha_c00407{height:53.580587px;}
.h9_c00407{height:59.323599px;}
.h8_c00407{height:59.389808px;}
.hc_c00407{height:64.484019px;}
.h5_c00407{height:1262.431829px;}
.h3_c00407{height:1262.879062px;}
.h0_c00407{height:1263.000000px;}
.w17_c00407{width:2.700000px;}
.w12_c00407{width:4.676400px;}
.wc_c00407{width:4.680000px;}
.w6_c00407{width:5.038200px;}
.w16_c00407{width:6.474600px;}
.w9_c00407{width:6.476400px;}
.wf_c00407{width:7.376400px;}
.w13_c00407{width:7.378200px;}
.w15_c00407{width:8.094600px;}
.w14_c00407{width:8.274600px;}
.w7_c00407{width:8.276400px;}
.w8_c00407{width:8.278200px;}
.we_c00407{width:9.358200px;}
.wb_c00407{width:10.076400px;}
.w10_c00407{width:11.334600px;}
.w4_c00407{width:11.874600px;}
.w2_c00407{width:12.058200px;}
.wa_c00407{width:12.414600px;}
.w5_c00407{width:15.472800px;}
.w1_c00407{width:16.552980px;}
.w3_c00407{width:23.929200px;}
.w11_c00407{width:25.911000px;}
.wd_c00407{width:28.063800px;}
.w19_c00407{width:892.099575px;}
.w18_c00407{width:892.414744px;}
.w0_c00407{width:892.500000px;}
.x0_c00407{left:0.000000px;}
.x1e_c00407{left:113.887229px;}
.x1_c00407{left:128.331540px;}
.x1f_c00407{left:135.117321px;}
.x20_c00407{left:167.861915px;}
.x21_c00407{left:180.639303px;}
.x1c_c00407{left:253.542308px;}
.x1b_c00407{left:269.015236px;}
.x1d_c00407{left:423.021349px;}
.x2_c00407{left:496.623600px;}
.x3_c00407{left:508.681800px;}
.x4_c00407{left:532.611000px;}
.x5_c00407{left:544.485600px;}
.x6_c00407{left:559.958400px;}
.x7_c00407{left:564.636600px;}
.x8_c00407{left:576.869400px;}
.x9_c00407{left:585.147600px;}
.xa_c00407{left:590.364000px;}
.xb_c00407{left:606.555000px;}
.xc_c00407{left:616.631400px;}
.xd_c00407{left:621.309600px;}
.xe_c00407{left:625.809600px;}
.xf_c00407{left:653.873400px;}
.x10_c00407{left:661.971600px;}
.x11_c00407{left:673.126200px;}
.x12_c00407{left:684.100800px;}
.x13_c00407{left:708.931800px;}
.x14_c00407{left:713.428200px;}
.x15_c00407{left:720.806400px;}
.x16_c00407{left:725.486400px;}
.x17_c00407{left:733.761000px;}
.x18_c00407{left:741.855600px;}
.x19_c00407{left:749.233800px;}
.x1a_c00407{left:755.708400px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws0_c00407{word-spacing:-14.713194pt;}
.ws1_c00407{word-spacing:0.000000pt;}
._e_c00407{margin-left:-2.460806pt;}
._1_c00407{margin-left:-1.154789pt;}
._0_c00407{width:0.979567pt;}
._6_c00407{width:2.671898pt;}
._7_c00407{width:3.657677pt;}
._3_c00407{width:5.162833pt;}
._9_c00407{width:6.060847pt;}
._8_c00407{width:7.785864pt;}
._2_c00407{width:9.643273pt;}
._d_c00407{width:10.750874pt;}
._c_c00407{width:12.421728pt;}
._b_c00407{width:13.319473pt;}
._a_c00407{width:14.222643pt;}
._5_c00407{width:16.527298pt;}
._4_c00407{width:177.312822pt;}
.fs3_c00407{font-size:37.103292pt;}
.fs4_c00407{font-size:42.860676pt;}
.fs2_c00407{font-size:53.096085pt;}
.fs0_c00407{font-size:58.852776pt;}
.fs1_c00407{font-size:63.972241pt;}
.y0_c00407{bottom:0.000000pt;}
.y4_c00407{bottom:0.107500pt;}
.y8_c00407{bottom:0.494374pt;}
.y2_c00407{bottom:3.518132pt;}
.ya_c00407{bottom:58.481202pt;}
.y3_c00407{bottom:66.331840pt;}
.y1_c00407{bottom:66.651840pt;}
.y28_c00407{bottom:127.409041pt;}
.y27_c00407{bottom:154.917163pt;}
.y26_c00407{bottom:184.344085pt;}
.y25_c00407{bottom:211.852207pt;}
.y24_c00407{bottom:228.962867pt;}
.y23_c00407{bottom:252.794324pt;}
.y22_c00407{bottom:280.299913pt;}
.y21_c00407{bottom:307.969236pt;}
.y20_c00407{bottom:335.476691pt;}
.y1f_c00407{bottom:363.143613pt;}
.y1e_c00407{bottom:390.651736pt;}
.y1d_c00407{bottom:418.318658pt;}
.y1c_c00407{bottom:445.826780pt;}
.y1b_c00407{bottom:463.097440pt;}
.y1a_c00407{bottom:475.572102pt;}
.y19_c00407{bottom:489.965429pt;}
.y18_c00407{bottom:530.428613pt;}
.y17_c00407{bottom:555.697936pt;}
.y16_c00407{bottom:580.967260pt;}
.y15_c00407{bottom:606.234183pt;}
.y14_c00407{bottom:644.937234pt;}
.y13_c00407{bottom:670.206557pt;}
.y12_c00407{bottom:708.428409pt;}
.y11_c00407{bottom:747.451460pt;}
.y10_c00407{bottom:772.718383pt;}
.yf_c00407{bottom:810.941434pt;}
.ye_c00407{bottom:849.962619pt;}
.yd_c00407{bottom:888.184470pt;}
.yc_c00407{bottom:927.207521pt;}
.yb_c00407{bottom:965.431906pt;}
.y9_c00407{bottom:983.182565pt;}
.y7_c00407{bottom:1023.551024pt;}
.y6_c00407{bottom:1041.942883pt;}
.y5_c00407{bottom:1060.334742pt;}
.h1_c00407{height:16.153120pt;}
.hb_c00407{height:23.783210pt;}
.hd_c00407{height:27.473693pt;}
.h7_c00407{height:34.034591pt;}
.h6_c00407{height:37.724630pt;}
.h2_c00407{height:41.196944pt;}
.h4_c00407{height:44.780569pt;}
.ha_c00407{height:47.627189pt;}
.h9_c00407{height:52.732088pt;}
.h8_c00407{height:52.790940pt;}
.hc_c00407{height:57.319128pt;}
.h5_c00407{height:1122.161626pt;}
.h3_c00407{height:1122.559167pt;}
.h0_c00407{height:1122.666667pt;}
.w17_c00407{width:2.400000pt;}
.w12_c00407{width:4.156800pt;}
.wc_c00407{width:4.160000pt;}
.w6_c00407{width:4.478400pt;}
.w16_c00407{width:5.755200pt;}
.w9_c00407{width:5.756800pt;}
.wf_c00407{width:6.556800pt;}
.w13_c00407{width:6.558400pt;}
.w15_c00407{width:7.195200pt;}
.w14_c00407{width:7.355200pt;}
.w7_c00407{width:7.356800pt;}
.w8_c00407{width:7.358400pt;}
.we_c00407{width:8.318400pt;}
.wb_c00407{width:8.956800pt;}
.w10_c00407{width:10.075200pt;}
.w4_c00407{width:10.555200pt;}
.w2_c00407{width:10.718400pt;}
.wa_c00407{width:11.035200pt;}
.w5_c00407{width:13.753600pt;}
.w1_c00407{width:14.713760pt;}
.w3_c00407{width:21.270400pt;}
.w11_c00407{width:23.032000pt;}
.wd_c00407{width:24.945600pt;}
.w19_c00407{width:792.977400pt;}
.w18_c00407{width:793.257550pt;}
.w0_c00407{width:793.333333pt;}
.x0_c00407{left:0.000000pt;}
.x1e_c00407{left:101.233093pt;}
.x1_c00407{left:114.072480pt;}
.x1f_c00407{left:120.104285pt;}
.x20_c00407{left:149.210591pt;}
.x21_c00407{left:160.568269pt;}
.x1c_c00407{left:225.370940pt;}
.x1b_c00407{left:239.124654pt;}
.x1d_c00407{left:376.018977pt;}
.x2_c00407{left:441.443200pt;}
.x3_c00407{left:452.161600pt;}
.x4_c00407{left:473.432000pt;}
.x5_c00407{left:483.987200pt;}
.x6_c00407{left:497.740800pt;}
.x7_c00407{left:501.899200pt;}
.x8_c00407{left:512.772800pt;}
.x9_c00407{left:520.131200pt;}
.xa_c00407{left:524.768000pt;}
.xb_c00407{left:539.160000pt;}
.xc_c00407{left:548.116800pt;}
.xd_c00407{left:552.275200pt;}
.xe_c00407{left:556.275200pt;}
.xf_c00407{left:581.220800pt;}
.x10_c00407{left:588.419200pt;}
.x11_c00407{left:598.334400pt;}
.x12_c00407{left:608.089600pt;}
.x13_c00407{left:630.161600pt;}
.x14_c00407{left:634.158400pt;}
.x15_c00407{left:640.716800pt;}
.x16_c00407{left:644.876800pt;}
.x17_c00407{left:652.232000pt;}
.x18_c00407{left:659.427200pt;}
.x19_c00407{left:665.985600pt;}
.x1a_c00407{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00408;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.112000;font-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_c00408{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls0_c00408{letter-spacing:0.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;}
}
.ws0_c00408{word-spacing:-16.552343px;}
.ws1_c00408{word-spacing:0.000000px;}
._12_c00408{margin-left:-3.436463px;}
._9_c00408{margin-left:-2.138948px;}
._5_c00408{margin-left:-1.114414px;}
._0_c00408{width:1.102012px;}
._17_c00408{width:2.133047px;}
._11_c00408{width:3.178831px;}
._13_c00408{width:4.218866px;}
._d_c00408{width:5.255916px;}
._c_c00408{width:6.534843px;}
._e_c00408{width:7.554444px;}
._2_c00408{width:8.706631px;}
._1_c00408{width:10.132226px;}
._3_c00408{width:11.333601px;}
._7_c00408{width:12.805192px;}
._4_c00408{width:13.882400px;}
._6_c00408{width:15.103428px;}
._b_c00408{width:16.884042px;}
._10_c00408{width:19.078226px;}
._a_c00408{width:20.173134px;}
._8_c00408{width:21.514863px;}
._f_c00408{width:23.094262px;}
._14_c00408{width:24.259926px;}
._15_c00408{width:25.705455px;}
._16_c00408{width:26.917711px;}
.fc1_c00408{color:rgb(105,148,45);}
.fc0_c00408{color:rgb(35,31,32);}
.fs2_c00408{font-size:59.733096px;}
.fs0_c00408{font-size:66.209374px;}
.fs1_c00408{font-size:71.968771px;}
.y0_c00408{bottom:0.000000px;}
.y4_c00408{bottom:0.120938px;}
.y8_c00408{bottom:0.556171px;}
.y2_c00408{bottom:3.957898px;}
.ya_c00408{bottom:65.791352px;}
.y3_c00408{bottom:74.623320px;}
.y1_c00408{bottom:74.983320px;}
.y29_c00408{bottom:108.971835px;}
.y28_c00408{bottom:140.098473px;}
.y27_c00408{bottom:171.045110px;}
.y26_c00408{bottom:202.170398px;}
.y25_c00408{bottom:233.117035px;}
.y24_c00408{bottom:264.061573px;}
.y23_c00408{bottom:295.188211px;}
.y22_c00408{bottom:334.411695px;}
.y21_c00408{bottom:380.830826px;}
.y20_c00408{bottom:411.777464px;}
.y1f_c00408{bottom:442.722751px;}
.y1e_c00408{bottom:473.668639px;}
.y1d_c00408{bottom:512.889273px;}
.y1c_c00408{bottom:559.308105px;}
.y1b_c00408{bottom:559.308255px;}
.y1a_c00408{bottom:590.254892px;}
.y19_c00408{bottom:621.199430px;}
.y18_c00408{bottom:652.146068px;}
.y17_c00408{bottom:691.371052px;}
.y16_c00408{bottom:737.969433px;}
.y15_c00408{bottom:768.914721px;}
.y14_c00408{bottom:800.041359px;}
.y13_c00408{bottom:830.987996px;}
.y12_c00408{bottom:862.112534px;}
.y11_c00408{bottom:893.059171px;}
.y10_c00408{bottom:924.184459px;}
.yf_c00408{bottom:955.131097px;}
.ye_c00408{bottom:986.257734px;}
.yd_c00408{bottom:1017.202272px;}
.yc_c00408{bottom:1048.328909px;}
.yb_c00408{bottom:1087.548944px;}
.y9_c00408{bottom:1106.080386px;}
.y7_c00408{bottom:1151.494902px;}
.y6_c00408{bottom:1172.185744px;}
.y5_c00408{bottom:1192.876585px;}
.h1_c00408{height:18.172260px;}
.h7_c00408{height:38.288915px;}
.h6_c00408{height:42.440208px;}
.h2_c00408{height:46.346561px;}
.h4_c00408{height:50.378140px;}
.h8_c00408{height:53.580587px;}
.h9_c00408{height:64.484019px;}
.h5_c00408{height:1262.431829px;}
.h3_c00408{height:1262.879062px;}
.h0_c00408{height:1263.000000px;}
.w17_c00408{width:2.700000px;}
.w12_c00408{width:4.676400px;}
.wc_c00408{width:4.680000px;}
.w6_c00408{width:5.038200px;}
.w16_c00408{width:6.474600px;}
.w9_c00408{width:6.476400px;}
.wf_c00408{width:7.376400px;}
.w13_c00408{width:7.378200px;}
.w15_c00408{width:8.094600px;}
.w14_c00408{width:8.274600px;}
.w7_c00408{width:8.276400px;}
.w8_c00408{width:8.278200px;}
.we_c00408{width:9.358200px;}
.wb_c00408{width:10.076400px;}
.w10_c00408{width:11.334600px;}
.w4_c00408{width:11.874600px;}
.w2_c00408{width:12.058200px;}
.wa_c00408{width:12.414600px;}
.w5_c00408{width:15.472800px;}
.w1_c00408{width:16.912980px;}
.w3_c00408{width:23.929200px;}
.w11_c00408{width:25.911000px;}
.wd_c00408{width:28.063800px;}
.w19_c00408{width:892.099575px;}
.w18_c00408{width:892.414744px;}
.w0_c00408{width:892.500000px;}
.x0_c00408{left:0.000000px;}
.x1e_c00408{left:113.887229px;}
.x1_c00408{left:128.331540px;}
.x1f_c00408{left:180.639303px;}
.x1c_c00408{left:253.542308px;}
.x1b_c00408{left:269.015236px;}
.x1d_c00408{left:423.021349px;}
.x2_c00408{left:496.623600px;}
.x3_c00408{left:508.681800px;}
.x4_c00408{left:532.611000px;}
.x5_c00408{left:544.485600px;}
.x6_c00408{left:559.958400px;}
.x7_c00408{left:564.636600px;}
.x8_c00408{left:576.869400px;}
.x9_c00408{left:585.147600px;}
.xa_c00408{left:590.364000px;}
.xb_c00408{left:606.555000px;}
.xc_c00408{left:616.631400px;}
.xd_c00408{left:621.309600px;}
.xe_c00408{left:625.809600px;}
.xf_c00408{left:653.873400px;}
.x10_c00408{left:661.971600px;}
.x11_c00408{left:673.126200px;}
.x12_c00408{left:684.100800px;}
.x13_c00408{left:708.931800px;}
.x14_c00408{left:713.428200px;}
.x15_c00408{left:720.806400px;}
.x16_c00408{left:725.486400px;}
.x17_c00408{left:733.761000px;}
.x18_c00408{left:741.855600px;}
.x19_c00408{left:749.233800px;}
.x1a_c00408{left:755.708400px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:-14.713194pt;}
.ws1_c00408{word-spacing:0.000000pt;}
._12_c00408{margin-left:-3.054634pt;}
._9_c00408{margin-left:-1.901287pt;}
._5_c00408{margin-left:-0.990590pt;}
._0_c00408{width:0.979567pt;}
._17_c00408{width:1.896042pt;}
._11_c00408{width:2.825627pt;}
._13_c00408{width:3.750103pt;}
._d_c00408{width:4.671926pt;}
._c_c00408{width:5.808749pt;}
._e_c00408{width:6.715061pt;}
._2_c00408{width:7.739227pt;}
._1_c00408{width:9.006423pt;}
._3_c00408{width:10.074312pt;}
._7_c00408{width:11.382393pt;}
._4_c00408{width:12.339911pt;}
._6_c00408{width:13.425270pt;}
._b_c00408{width:15.008037pt;}
._10_c00408{width:16.958423pt;}
._a_c00408{width:17.931675pt;}
._8_c00408{width:19.124322pt;}
._f_c00408{width:20.528233pt;}
._14_c00408{width:21.564379pt;}
._15_c00408{width:22.849293pt;}
._16_c00408{width:23.926854pt;}
.fs2_c00408{font-size:53.096085pt;}
.fs0_c00408{font-size:58.852776pt;}
.fs1_c00408{font-size:63.972241pt;}
.y0_c00408{bottom:0.000000pt;}
.y4_c00408{bottom:0.107500pt;}
.y8_c00408{bottom:0.494374pt;}
.y2_c00408{bottom:3.518132pt;}
.ya_c00408{bottom:58.481202pt;}
.y3_c00408{bottom:66.331840pt;}
.y1_c00408{bottom:66.651840pt;}
.y29_c00408{bottom:96.863853pt;}
.y28_c00408{bottom:124.531976pt;}
.y27_c00408{bottom:152.040098pt;}
.y26_c00408{bottom:179.707020pt;}
.y25_c00408{bottom:207.215143pt;}
.y24_c00408{bottom:234.721398pt;}
.y23_c00408{bottom:262.389520pt;}
.y22_c00408{bottom:297.254840pt;}
.y21_c00408{bottom:338.516290pt;}
.y20_c00408{bottom:366.024412pt;}
.y1f_c00408{bottom:393.531335pt;}
.y1e_c00408{bottom:421.038790pt;}
.y1d_c00408{bottom:455.901576pt;}
.y1c_c00408{bottom:497.162760pt;}
.y1b_c00408{bottom:497.162893pt;}
.y1a_c00408{bottom:524.671016pt;}
.y19_c00408{bottom:552.177271pt;}
.y18_c00408{bottom:579.685394pt;}
.y17_c00408{bottom:614.552046pt;}
.y16_c00408{bottom:655.972830pt;}
.y15_c00408{bottom:683.479752pt;}
.y14_c00408{bottom:711.147874pt;}
.y13_c00408{bottom:738.655997pt;}
.y12_c00408{bottom:766.322252pt;}
.y11_c00408{bottom:793.830375pt;}
.y10_c00408{bottom:821.497297pt;}
.yf_c00408{bottom:849.005419pt;}
.ye_c00408{bottom:876.673541pt;}
.yd_c00408{bottom:904.179797pt;}
.yc_c00408{bottom:931.847919pt;}
.yb_c00408{bottom:966.710172pt;}
.y9_c00408{bottom:983.182565pt;}
.y7_c00408{bottom:1023.551024pt;}
.y6_c00408{bottom:1041.942883pt;}
.y5_c00408{bottom:1060.334742pt;}
.h1_c00408{height:16.153120pt;}
.h7_c00408{height:34.034591pt;}
.h6_c00408{height:37.724630pt;}
.h2_c00408{height:41.196944pt;}
.h4_c00408{height:44.780569pt;}
.h8_c00408{height:47.627189pt;}
.h9_c00408{height:57.319128pt;}
.h5_c00408{height:1122.161626pt;}
.h3_c00408{height:1122.559167pt;}
.h0_c00408{height:1122.666667pt;}
.w17_c00408{width:2.400000pt;}
.w12_c00408{width:4.156800pt;}
.wc_c00408{width:4.160000pt;}
.w6_c00408{width:4.478400pt;}
.w16_c00408{width:5.755200pt;}
.w9_c00408{width:5.756800pt;}
.wf_c00408{width:6.556800pt;}
.w13_c00408{width:6.558400pt;}
.w15_c00408{width:7.195200pt;}
.w14_c00408{width:7.355200pt;}
.w7_c00408{width:7.356800pt;}
.w8_c00408{width:7.358400pt;}
.we_c00408{width:8.318400pt;}
.wb_c00408{width:8.956800pt;}
.w10_c00408{width:10.075200pt;}
.w4_c00408{width:10.555200pt;}
.w2_c00408{width:10.718400pt;}
.wa_c00408{width:11.035200pt;}
.w5_c00408{width:13.753600pt;}
.w1_c00408{width:15.033760pt;}
.w3_c00408{width:21.270400pt;}
.w11_c00408{width:23.032000pt;}
.wd_c00408{width:24.945600pt;}
.w19_c00408{width:792.977400pt;}
.w18_c00408{width:793.257550pt;}
.w0_c00408{width:793.333333pt;}
.x0_c00408{left:0.000000pt;}
.x1e_c00408{left:101.233093pt;}
.x1_c00408{left:114.072480pt;}
.x1f_c00408{left:160.568269pt;}
.x1c_c00408{left:225.370940pt;}
.x1b_c00408{left:239.124654pt;}
.x1d_c00408{left:376.018977pt;}
.x2_c00408{left:441.443200pt;}
.x3_c00408{left:452.161600pt;}
.x4_c00408{left:473.432000pt;}
.x5_c00408{left:483.987200pt;}
.x6_c00408{left:497.740800pt;}
.x7_c00408{left:501.899200pt;}
.x8_c00408{left:512.772800pt;}
.x9_c00408{left:520.131200pt;}
.xa_c00408{left:524.768000pt;}
.xb_c00408{left:539.160000pt;}
.xc_c00408{left:548.116800pt;}
.xd_c00408{left:552.275200pt;}
.xe_c00408{left:556.275200pt;}
.xf_c00408{left:581.220800pt;}
.x10_c00408{left:588.419200pt;}
.x11_c00408{left:598.334400pt;}
.x12_c00408{left:608.089600pt;}
.x13_c00408{left:630.161600pt;}
.x14_c00408{left:634.158400pt;}
.x15_c00408{left:640.716800pt;}
.x16_c00408{left:644.876800pt;}
.x17_c00408{left:652.232000pt;}
.x18_c00408{left:659.427200pt;}
.x19_c00408{left:665.985600pt;}
.x1a_c00408{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.112000;font-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_c00409{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls0_c00409{letter-spacing:0.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:-16.552343px;}
.ws1_c00409{word-spacing:0.000000px;}
._9_c00409{margin-left:-2.821301px;}
._3_c00409{margin-left:-1.266107px;}
._0_c00409{width:1.102012px;}
._5_c00409{width:2.767873px;}
._4_c00409{width:4.058882px;}
._11_c00409{width:5.213204px;}
._d_c00409{width:6.315566px;}
._12_c00409{width:8.531996px;}
._2_c00409{width:10.260315px;}
._1_c00409{width:12.292657px;}
._b_c00409{width:16.720117px;}
._a_c00409{width:19.095846px;}
._6_c00409{width:20.340358px;}
._7_c00409{width:22.062420px;}
._8_c00409{width:23.811000px;}
._e_c00409{width:49.153335px;}
._c_c00409{width:52.862459px;}
._13_c00409{width:56.568368px;}
._f_c00409{width:135.960643px;}
._10_c00409{width:156.271336px;}
.fc1_c00409{color:rgb(105,148,45);}
.fc0_c00409{color:rgb(35,31,32);}
.fs3_c00409{font-size:48.218261px;}
.fs2_c00409{font-size:59.733096px;}
.fs0_c00409{font-size:66.209374px;}
.fs1_c00409{font-size:71.968771px;}
.y0_c00409{bottom:0.000000px;}
.y4_c00409{bottom:0.120938px;}
.y8_c00409{bottom:0.556171px;}
.y2_c00409{bottom:3.957898px;}
.ya_c00409{bottom:65.791352px;}
.y3_c00409{bottom:74.623320px;}
.y1_c00409{bottom:74.983320px;}
.y2b_c00409{bottom:100.154089px;}
.y2a_c00409{bottom:143.512921px;}
.y29_c00409{bottom:171.939560px;}
.y28_c00409{bottom:200.549648px;}
.y27_c00409{bottom:228.616287px;}
.y26_c00409{bottom:272.335870px;}
.y25_c00409{bottom:300.763858px;}
.y24_c00409{bottom:344.304791px;}
.y23_c00409{bottom:372.730079px;}
.y22_c00409{bottom:401.156718px;}
.y21_c00409{bottom:444.517651px;}
.y20_c00409{bottom:472.947139px;}
.y1f_c00409{bottom:501.550928px;}
.y1e_c00409{bottom:529.978317px;}
.y1d_c00409{bottom:558.047805px;}
.y1c_c00409{bottom:601.767388px;}
.y1b_c00409{bottom:630.194026px;}
.y1a_c00409{bottom:658.620665px;}
.y19_c00409{bottom:687.230154px;}
.y18_c00409{bottom:715.297542px;}
.y17_c00409{bottom:751.102528px;}
.y16_c00409{bottom:770.176521px;}
.y15_c00409{bottom:808.675505px;}
.y14_c00409{bottom:826.847998px;}
.y13_c00409{bottom:853.475087px;}
.y12_c00409{bottom:884.600975px;}
.y11_c00409{bottom:915.546262px;}
.y10_c00409{bottom:946.672900px;}
.yf_c00409{bottom:977.619538px;}
.ye_c00409{bottom:1008.744825px;}
.yd_c00409{bottom:1030.876416px;}
.yc_c00409{bottom:1053.007407px;}
.yb_c00409{bottom:1088.267893px;}
.y9_c00409{bottom:1106.080386px;}
.y7_c00409{bottom:1151.494902px;}
.y6_c00409{bottom:1172.185744px;}
.y5_c00409{bottom:1192.876585px;}
.h1_c00409{height:18.172260px;}
.h8_c00409{height:30.907905px;}
.h7_c00409{height:38.288915px;}
.h6_c00409{height:42.440208px;}
.ha_c00409{height:46.131982px;}
.h2_c00409{height:46.346561px;}
.h4_c00409{height:50.378140px;}
.h9_c00409{height:53.580587px;}
.hd_c00409{height:59.323599px;}
.hc_c00409{height:59.389808px;}
.hb_c00409{height:64.484019px;}
.h5_c00409{height:1262.431829px;}
.h3_c00409{height:1262.879062px;}
.h0_c00409{height:1263.000000px;}
.w17_c00409{width:2.700000px;}
.w12_c00409{width:4.676400px;}
.wc_c00409{width:4.680000px;}
.w6_c00409{width:5.038200px;}
.w16_c00409{width:6.474600px;}
.w9_c00409{width:6.476400px;}
.wf_c00409{width:7.376400px;}
.w13_c00409{width:7.378200px;}
.w15_c00409{width:8.094600px;}
.w14_c00409{width:8.274600px;}
.w7_c00409{width:8.276400px;}
.w8_c00409{width:8.278200px;}
.we_c00409{width:9.358200px;}
.wb_c00409{width:10.076400px;}
.w10_c00409{width:11.334600px;}
.w4_c00409{width:11.874600px;}
.w2_c00409{width:12.058200px;}
.wa_c00409{width:12.414600px;}
.w5_c00409{width:15.472800px;}
.w1_c00409{width:16.912980px;}
.w3_c00409{width:23.929200px;}
.w11_c00409{width:25.911000px;}
.wd_c00409{width:28.063800px;}
.w19_c00409{width:892.099575px;}
.w18_c00409{width:892.414744px;}
.w0_c00409{width:892.500000px;}
.x0_c00409{left:0.000000px;}
.x1e_c00409{left:113.887229px;}
.x1_c00409{left:128.331540px;}
.x21_c00409{left:140.874619px;}
.x1f_c00409{left:180.639062px;}
.x1c_c00409{left:253.542308px;}
.x1b_c00409{left:269.015236px;}
.x20_c00409{left:372.253726px;}
.x1d_c00409{left:423.021349px;}
.x2_c00409{left:496.623600px;}
.x3_c00409{left:508.681800px;}
.x4_c00409{left:532.611000px;}
.x5_c00409{left:544.485600px;}
.x6_c00409{left:559.958400px;}
.x7_c00409{left:564.636600px;}
.x8_c00409{left:576.869400px;}
.x9_c00409{left:585.147600px;}
.xa_c00409{left:590.364000px;}
.xb_c00409{left:606.555000px;}
.xc_c00409{left:616.631400px;}
.xd_c00409{left:621.309600px;}
.xe_c00409{left:625.809600px;}
.xf_c00409{left:653.873400px;}
.x10_c00409{left:661.971600px;}
.x11_c00409{left:673.126200px;}
.x12_c00409{left:684.100800px;}
.x13_c00409{left:708.931800px;}
.x14_c00409{left:713.428200px;}
.x15_c00409{left:720.806400px;}
.x16_c00409{left:725.486400px;}
.x17_c00409{left:733.761000px;}
.x18_c00409{left:741.855600px;}
.x19_c00409{left:749.233800px;}
.x1a_c00409{left:755.708400px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:-14.713194pt;}
.ws1_c00409{word-spacing:0.000000pt;}
._9_c00409{margin-left:-2.507823pt;}
._3_c00409{margin-left:-1.125429pt;}
._0_c00409{width:0.979567pt;}
._5_c00409{width:2.460331pt;}
._4_c00409{width:3.607895pt;}
._11_c00409{width:4.633959pt;}
._d_c00409{width:5.613837pt;}
._12_c00409{width:7.583996pt;}
._2_c00409{width:9.120280pt;}
._1_c00409{width:10.926806pt;}
._b_c00409{width:14.862326pt;}
._a_c00409{width:16.974086pt;}
._6_c00409{width:18.080318pt;}
._7_c00409{width:19.611040pt;}
._8_c00409{width:21.165333pt;}
._e_c00409{width:43.691853pt;}
._c_c00409{width:46.988852pt;}
._13_c00409{width:50.282994pt;}
._f_c00409{width:120.853905pt;}
._10_c00409{width:138.907854pt;}
.fs3_c00409{font-size:42.860676pt;}
.fs2_c00409{font-size:53.096085pt;}
.fs0_c00409{font-size:58.852776pt;}
.fs1_c00409{font-size:63.972241pt;}
.y0_c00409{bottom:0.000000pt;}
.y4_c00409{bottom:0.107500pt;}
.y8_c00409{bottom:0.494374pt;}
.y2_c00409{bottom:3.518132pt;}
.ya_c00409{bottom:58.481202pt;}
.y3_c00409{bottom:66.331840pt;}
.y1_c00409{bottom:66.651840pt;}
.y2b_c00409{bottom:89.025856pt;}
.y2a_c00409{bottom:127.567041pt;}
.y29_c00409{bottom:152.835164pt;}
.y28_c00409{bottom:178.266354pt;}
.y27_c00409{bottom:203.214477pt;}
.y26_c00409{bottom:242.076329pt;}
.y25_c00409{bottom:267.345652pt;}
.y24_c00409{bottom:306.048703pt;}
.y23_c00409{bottom:331.315626pt;}
.y22_c00409{bottom:356.583749pt;}
.y21_c00409{bottom:395.126801pt;}
.y20_c00409{bottom:420.397457pt;}
.y1f_c00409{bottom:445.823047pt;}
.y1e_c00409{bottom:471.091837pt;}
.y1d_c00409{bottom:496.042494pt;}
.y1c_c00409{bottom:534.904345pt;}
.y1b_c00409{bottom:560.172468pt;}
.y1a_c00409{bottom:585.440591pt;}
.y19_c00409{bottom:610.871248pt;}
.y18_c00409{bottom:635.820038pt;}
.y17_c00409{bottom:667.646692pt;}
.y16_c00409{bottom:684.601352pt;}
.y15_c00409{bottom:718.822671pt;}
.y14_c00409{bottom:734.975998pt;}
.y13_c00409{bottom:758.644522pt;}
.y12_c00409{bottom:786.311978pt;}
.y11_c00409{bottom:813.818900pt;}
.y10_c00409{bottom:841.487022pt;}
.yf_c00409{bottom:868.995144pt;}
.ye_c00409{bottom:896.662067pt;}
.yd_c00409{bottom:916.334592pt;}
.yc_c00409{bottom:936.006584pt;}
.yb_c00409{bottom:967.349238pt;}
.y9_c00409{bottom:983.182565pt;}
.y7_c00409{bottom:1023.551024pt;}
.y6_c00409{bottom:1041.942883pt;}
.y5_c00409{bottom:1060.334742pt;}
.h1_c00409{height:16.153120pt;}
.h8_c00409{height:27.473693pt;}
.h7_c00409{height:34.034591pt;}
.h6_c00409{height:37.724630pt;}
.ha_c00409{height:41.006207pt;}
.h2_c00409{height:41.196944pt;}
.h4_c00409{height:44.780569pt;}
.h9_c00409{height:47.627189pt;}
.hd_c00409{height:52.732088pt;}
.hc_c00409{height:52.790940pt;}
.hb_c00409{height:57.319128pt;}
.h5_c00409{height:1122.161626pt;}
.h3_c00409{height:1122.559167pt;}
.h0_c00409{height:1122.666667pt;}
.w17_c00409{width:2.400000pt;}
.w12_c00409{width:4.156800pt;}
.wc_c00409{width:4.160000pt;}
.w6_c00409{width:4.478400pt;}
.w16_c00409{width:5.755200pt;}
.w9_c00409{width:5.756800pt;}
.wf_c00409{width:6.556800pt;}
.w13_c00409{width:6.558400pt;}
.w15_c00409{width:7.195200pt;}
.w14_c00409{width:7.355200pt;}
.w7_c00409{width:7.356800pt;}
.w8_c00409{width:7.358400pt;}
.we_c00409{width:8.318400pt;}
.wb_c00409{width:8.956800pt;}
.w10_c00409{width:10.075200pt;}
.w4_c00409{width:10.555200pt;}
.w2_c00409{width:10.718400pt;}
.wa_c00409{width:11.035200pt;}
.w5_c00409{width:13.753600pt;}
.w1_c00409{width:15.033760pt;}
.w3_c00409{width:21.270400pt;}
.w11_c00409{width:23.032000pt;}
.wd_c00409{width:24.945600pt;}
.w19_c00409{width:792.977400pt;}
.w18_c00409{width:793.257550pt;}
.w0_c00409{width:793.333333pt;}
.x0_c00409{left:0.000000pt;}
.x1e_c00409{left:101.233093pt;}
.x1_c00409{left:114.072480pt;}
.x21_c00409{left:125.221883pt;}
.x1f_c00409{left:160.568055pt;}
.x1c_c00409{left:225.370940pt;}
.x1b_c00409{left:239.124654pt;}
.x20_c00409{left:330.892201pt;}
.x1d_c00409{left:376.018977pt;}
.x2_c00409{left:441.443200pt;}
.x3_c00409{left:452.161600pt;}
.x4_c00409{left:473.432000pt;}
.x5_c00409{left:483.987200pt;}
.x6_c00409{left:497.740800pt;}
.x7_c00409{left:501.899200pt;}
.x8_c00409{left:512.772800pt;}
.x9_c00409{left:520.131200pt;}
.xa_c00409{left:524.768000pt;}
.xb_c00409{left:539.160000pt;}
.xc_c00409{left:548.116800pt;}
.xd_c00409{left:552.275200pt;}
.xe_c00409{left:556.275200pt;}
.xf_c00409{left:581.220800pt;}
.x10_c00409{left:588.419200pt;}
.x11_c00409{left:598.334400pt;}
.x12_c00409{left:608.089600pt;}
.x13_c00409{left:630.161600pt;}
.x14_c00409{left:634.158400pt;}
.x15_c00409{left:640.716800pt;}
.x16_c00409{left:644.876800pt;}
.x17_c00409{left:652.232000pt;}
.x18_c00409{left:659.427200pt;}
.x19_c00409{left:665.985600pt;}
.x1a_c00409{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.113000;font-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_c00410{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls0_c00410{letter-spacing:0.000000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:-16.552343px;}
.ws1_c00410{word-spacing:0.000000px;}
._2_c00410{margin-left:-1.158426px;}
._0_c00410{width:1.102012px;}
._f_c00410{width:2.293945px;}
._b_c00410{width:3.394724px;}
._c_c00410{width:6.326061px;}
._4_c00410{width:7.348462px;}
._3_c00410{width:8.391882px;}
._5_c00410{width:9.485268px;}
._7_c00410{width:10.571316px;}
._6_c00410{width:11.733715px;}
._a_c00410{width:14.481093px;}
._9_c00410{width:15.552146px;}
._d_c00410{width:17.619413px;}
._10_c00410{width:133.267488px;}
._e_c00410{width:149.819075px;}
._1_c00410{width:156.271336px;}
._8_c00410{width:199.476925px;}
.fc1_c00410{color:rgb(105,148,45);}
.fc0_c00410{color:rgb(35,31,32);}
.fs2_c00410{font-size:59.733096px;}
.fs0_c00410{font-size:66.209374px;}
.fs1_c00410{font-size:71.968771px;}
.y0_c00410{bottom:0.000000px;}
.y4_c00410{bottom:0.120938px;}
.y8_c00410{bottom:0.556171px;}
.y2_c00410{bottom:3.957898px;}
.ya_c00410{bottom:65.791352px;}
.y3_c00410{bottom:74.623320px;}
.y1_c00410{bottom:74.983320px;}
.y27_c00410{bottom:100.336338px;}
.y26_c00410{bottom:128.764327px;}
.y25_c00410{bottom:157.190966px;}
.y24_c00410{bottom:200.190549px;}
.y23_c00410{bottom:244.091481px;}
.y22_c00410{bottom:272.518120px;}
.y21_c00410{bottom:300.947608px;}
.y20_c00410{bottom:343.947191px;}
.y1f_c00410{bottom:387.485424px;}
.y1e_c00410{bottom:431.207106px;}
.y1d_c00410{bottom:459.634495px;}
.y1c_c00410{bottom:488.242483px;}
.y1b_c00410{bottom:516.669122px;}
.y1a_c00410{bottom:559.668705px;}
.y19_c00410{bottom:603.569637px;}
.y18_c00410{bottom:631.996276px;}
.y17_c00410{bottom:660.422914px;}
.y16_c00410{bottom:688.850903px;}
.y15_c00410{bottom:717.277542px;}
.y14_c00410{bottom:745.703430px;}
.y13_c00410{bottom:774.132919px;}
.y12_c00410{bottom:802.559558px;}
.y11_c00410{bottom:845.740490px;}
.y10_c00410{bottom:912.311964px;}
.yf_c00410{bottom:957.647946px;}
.ye_c00410{bottom:986.073234px;}
.yd_c00410{bottom:1014.501223px;}
.yc_c00410{bottom:1058.042155px;}
.yb_c00410{bottom:1086.470894px;}
.y9_c00410{bottom:1106.080386px;}
.y7_c00410{bottom:1151.494902px;}
.y6_c00410{bottom:1172.185744px;}
.y5_c00410{bottom:1192.876585px;}
.h1_c00410{height:18.172260px;}
.h7_c00410{height:38.288915px;}
.h6_c00410{height:42.440208px;}
.h2_c00410{height:46.346561px;}
.h4_c00410{height:50.378140px;}
.h9_c00410{height:53.580587px;}
.h8_c00410{height:59.323599px;}
.ha_c00410{height:59.389808px;}
.h5_c00410{height:1262.431829px;}
.h3_c00410{height:1262.879062px;}
.h0_c00410{height:1263.000000px;}
.w17_c00410{width:2.700000px;}
.w12_c00410{width:4.676400px;}
.wc_c00410{width:4.680000px;}
.w6_c00410{width:5.038200px;}
.w16_c00410{width:6.474600px;}
.w9_c00410{width:6.476400px;}
.wf_c00410{width:7.376400px;}
.w13_c00410{width:7.378200px;}
.w15_c00410{width:8.094600px;}
.w14_c00410{width:8.274600px;}
.w7_c00410{width:8.276400px;}
.w8_c00410{width:8.278200px;}
.we_c00410{width:9.358200px;}
.wb_c00410{width:10.076400px;}
.w10_c00410{width:11.334600px;}
.w4_c00410{width:11.874600px;}
.w2_c00410{width:12.058200px;}
.wa_c00410{width:12.414600px;}
.w5_c00410{width:15.472800px;}
.w1_c00410{width:16.552980px;}
.w3_c00410{width:23.929200px;}
.w11_c00410{width:25.911000px;}
.wd_c00410{width:28.063800px;}
.w19_c00410{width:892.099575px;}
.w18_c00410{width:892.414744px;}
.w0_c00410{width:892.500000px;}
.x0_c00410{left:0.000000px;}
.x1e_c00410{left:113.887229px;}
.x1_c00410{left:128.331540px;}
.x1c_c00410{left:253.542308px;}
.x1b_c00410{left:269.015236px;}
.x1d_c00410{left:423.021349px;}
.x2_c00410{left:496.623600px;}
.x3_c00410{left:508.681800px;}
.x4_c00410{left:532.611000px;}
.x5_c00410{left:544.485600px;}
.x6_c00410{left:559.958400px;}
.x7_c00410{left:564.636600px;}
.x8_c00410{left:576.869400px;}
.x9_c00410{left:585.147600px;}
.xa_c00410{left:590.364000px;}
.xb_c00410{left:606.555000px;}
.xc_c00410{left:616.631400px;}
.xd_c00410{left:621.309600px;}
.xe_c00410{left:625.809600px;}
.xf_c00410{left:653.873400px;}
.x10_c00410{left:661.971600px;}
.x11_c00410{left:673.126200px;}
.x12_c00410{left:684.100800px;}
.x13_c00410{left:708.931800px;}
.x14_c00410{left:713.428200px;}
.x15_c00410{left:720.806400px;}
.x16_c00410{left:725.486400px;}
.x17_c00410{left:733.761000px;}
.x18_c00410{left:741.855600px;}
.x19_c00410{left:749.233800px;}
.x1a_c00410{left:755.708400px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws0_c00410{word-spacing:-14.713194pt;}
.ws1_c00410{word-spacing:0.000000pt;}
._2_c00410{margin-left:-1.029712pt;}
._0_c00410{width:0.979567pt;}
._f_c00410{width:2.039062pt;}
._b_c00410{width:3.017532pt;}
._c_c00410{width:5.623165pt;}
._4_c00410{width:6.531967pt;}
._3_c00410{width:7.459450pt;}
._5_c00410{width:8.431349pt;}
._7_c00410{width:9.396726pt;}
._6_c00410{width:10.429969pt;}
._a_c00410{width:12.872082pt;}
._9_c00410{width:13.824129pt;}
._d_c00410{width:15.661700pt;}
._10_c00410{width:118.459989pt;}
._e_c00410{width:133.172511pt;}
._1_c00410{width:138.907854pt;}
._8_c00410{width:177.312822pt;}
.fs2_c00410{font-size:53.096085pt;}
.fs0_c00410{font-size:58.852776pt;}
.fs1_c00410{font-size:63.972241pt;}
.y0_c00410{bottom:0.000000pt;}
.y4_c00410{bottom:0.107500pt;}
.y8_c00410{bottom:0.494374pt;}
.y2_c00410{bottom:3.518132pt;}
.ya_c00410{bottom:58.481202pt;}
.y3_c00410{bottom:66.331840pt;}
.y1_c00410{bottom:66.651840pt;}
.y27_c00410{bottom:89.187856pt;}
.y26_c00410{bottom:114.457180pt;}
.y25_c00410{bottom:139.725303pt;}
.y24_c00410{bottom:177.947154pt;}
.y23_c00410{bottom:216.970205pt;}
.y22_c00410{bottom:242.238329pt;}
.y21_c00410{bottom:267.508985pt;}
.y20_c00410{bottom:305.730836pt;}
.y1f_c00410{bottom:344.431488pt;}
.y1e_c00410{bottom:383.295205pt;}
.y1d_c00410{bottom:408.563995pt;}
.y1c_c00410{bottom:433.993318pt;}
.y1b_c00410{bottom:459.261442pt;}
.y1a_c00410{bottom:497.483293pt;}
.y19_c00410{bottom:536.506344pt;}
.y18_c00410{bottom:561.774467pt;}
.y17_c00410{bottom:587.042591pt;}
.y16_c00410{bottom:612.311914pt;}
.y15_c00410{bottom:637.580037pt;}
.y14_c00410{bottom:662.847494pt;}
.y13_c00410{bottom:688.118150pt;}
.y12_c00410{bottom:713.386273pt;}
.y11_c00410{bottom:751.769325pt;}
.y10_c00410{bottom:810.943968pt;}
.yf_c00410{bottom:851.242618pt;}
.ye_c00410{bottom:876.509541pt;}
.yd_c00410{bottom:901.778865pt;}
.yc_c00410{bottom:940.481916pt;}
.yb_c00410{bottom:965.751906pt;}
.y9_c00410{bottom:983.182565pt;}
.y7_c00410{bottom:1023.551024pt;}
.y6_c00410{bottom:1041.942883pt;}
.y5_c00410{bottom:1060.334742pt;}
.h1_c00410{height:16.153120pt;}
.h7_c00410{height:34.034591pt;}
.h6_c00410{height:37.724630pt;}
.h2_c00410{height:41.196944pt;}
.h4_c00410{height:44.780569pt;}
.h9_c00410{height:47.627189pt;}
.h8_c00410{height:52.732088pt;}
.ha_c00410{height:52.790940pt;}
.h5_c00410{height:1122.161626pt;}
.h3_c00410{height:1122.559167pt;}
.h0_c00410{height:1122.666667pt;}
.w17_c00410{width:2.400000pt;}
.w12_c00410{width:4.156800pt;}
.wc_c00410{width:4.160000pt;}
.w6_c00410{width:4.478400pt;}
.w16_c00410{width:5.755200pt;}
.w9_c00410{width:5.756800pt;}
.wf_c00410{width:6.556800pt;}
.w13_c00410{width:6.558400pt;}
.w15_c00410{width:7.195200pt;}
.w14_c00410{width:7.355200pt;}
.w7_c00410{width:7.356800pt;}
.w8_c00410{width:7.358400pt;}
.we_c00410{width:8.318400pt;}
.wb_c00410{width:8.956800pt;}
.w10_c00410{width:10.075200pt;}
.w4_c00410{width:10.555200pt;}
.w2_c00410{width:10.718400pt;}
.wa_c00410{width:11.035200pt;}
.w5_c00410{width:13.753600pt;}
.w1_c00410{width:14.713760pt;}
.w3_c00410{width:21.270400pt;}
.w11_c00410{width:23.032000pt;}
.wd_c00410{width:24.945600pt;}
.w19_c00410{width:792.977400pt;}
.w18_c00410{width:793.257550pt;}
.w0_c00410{width:793.333333pt;}
.x0_c00410{left:0.000000pt;}
.x1e_c00410{left:101.233093pt;}
.x1_c00410{left:114.072480pt;}
.x1c_c00410{left:225.370940pt;}
.x1b_c00410{left:239.124654pt;}
.x1d_c00410{left:376.018977pt;}
.x2_c00410{left:441.443200pt;}
.x3_c00410{left:452.161600pt;}
.x4_c00410{left:473.432000pt;}
.x5_c00410{left:483.987200pt;}
.x6_c00410{left:497.740800pt;}
.x7_c00410{left:501.899200pt;}
.x8_c00410{left:512.772800pt;}
.x9_c00410{left:520.131200pt;}
.xa_c00410{left:524.768000pt;}
.xb_c00410{left:539.160000pt;}
.xc_c00410{left:548.116800pt;}
.xd_c00410{left:552.275200pt;}
.xe_c00410{left:556.275200pt;}
.xf_c00410{left:581.220800pt;}
.x10_c00410{left:588.419200pt;}
.x11_c00410{left:598.334400pt;}
.x12_c00410{left:608.089600pt;}
.x13_c00410{left:630.161600pt;}
.x14_c00410{left:634.158400pt;}
.x15_c00410{left:640.716800pt;}
.x16_c00410{left:644.876800pt;}
.x17_c00410{left:652.232000pt;}
.x18_c00410{left:659.427200pt;}
.x19_c00410{left:665.985600pt;}
.x1a_c00410{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.113000;font-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_c00411{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls0_c00411{letter-spacing:0.000000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00411{word-spacing:-16.552343px;}
.ws1_c00411{word-spacing:0.000000px;}
._4_c00411{margin-left:-1.104121px;}
._0_c00411{width:1.102012px;}
._a_c00411{width:2.130083px;}
._5_c00411{width:3.385139px;}
._6_c00411{width:4.482770px;}
._8_c00411{width:6.171828px;}
._7_c00411{width:7.177336px;}
._2_c00411{width:8.372314px;}
._3_c00411{width:9.408809px;}
._e_c00411{width:10.953046px;}
._d_c00411{width:11.977860px;}
._c_c00411{width:13.162748px;}
._b_c00411{width:14.556635px;}
._f_c00411{width:144.321561px;}
._9_c00411{width:149.819075px;}
._1_c00411{width:199.476925px;}
.fc1_c00411{color:rgb(105,148,45);}
.fc0_c00411{color:rgb(35,31,32);}
.fs2_c00411{font-size:59.733096px;}
.fs0_c00411{font-size:66.209374px;}
.fs1_c00411{font-size:71.968771px;}
.y0_c00411{bottom:0.000000px;}
.y4_c00411{bottom:0.120938px;}
.y8_c00411{bottom:0.556171px;}
.y2_c00411{bottom:3.957898px;}
.ya_c00411{bottom:65.791352px;}
.y3_c00411{bottom:74.623320px;}
.y1_c00411{bottom:74.983320px;}
.y25_c00411{bottom:160.969764px;}
.y24_c00411{bottom:189.397753px;}
.y23_c00411{bottom:232.755235px;}
.y22_c00411{bottom:275.934818px;}
.y21_c00411{bottom:313.720703px;}
.y20_c00411{bottom:337.107194px;}
.y1f_c00411{bottom:382.628576px;}
.y1e_c00411{bottom:411.053864px;}
.y1d_c00411{bottom:439.481853px;}
.y1c_c00411{bottom:467.908491px;}
.y1b_c00411{bottom:496.338580px;}
.y1a_c00411{bottom:524.763869px;}
.y19_c00411{bottom:567.943451px;}
.y18_c00411{bottom:611.664384px;}
.y17_c00411{bottom:640.092373px;}
.y16_c00411{bottom:683.271955px;}
.y15_c00411{bottom:726.992888px;}
.y14_c00411{bottom:755.419526px;}
.y13_c00411{bottom:783.844815px;}
.y12_c00411{bottom:827.024398px;}
.y11_c00411{bottom:870.748180px;}
.y10_c00411{bottom:899.174819px;}
.yf_c00411{bottom:942.713651px;}
.ye_c00411{bottom:986.073234px;}
.yd_c00411{bottom:1029.614167px;}
.yc_c00411{bottom:1058.042155px;}
.yb_c00411{bottom:1086.470894px;}
.y9_c00411{bottom:1106.080386px;}
.y7_c00411{bottom:1151.494902px;}
.y6_c00411{bottom:1172.185744px;}
.y5_c00411{bottom:1192.876585px;}
.h1_c00411{height:18.172260px;}
.h7_c00411{height:38.288915px;}
.h6_c00411{height:42.440208px;}
.h2_c00411{height:46.346561px;}
.h4_c00411{height:50.378140px;}
.ha_c00411{height:53.580587px;}
.h8_c00411{height:59.323599px;}
.h9_c00411{height:59.389808px;}
.h5_c00411{height:1262.431829px;}
.h3_c00411{height:1262.879062px;}
.h0_c00411{height:1263.000000px;}
.w17_c00411{width:2.700000px;}
.w12_c00411{width:4.676400px;}
.wc_c00411{width:4.680000px;}
.w6_c00411{width:5.038200px;}
.w16_c00411{width:6.474600px;}
.w9_c00411{width:6.476400px;}
.wf_c00411{width:7.376400px;}
.w13_c00411{width:7.378200px;}
.w15_c00411{width:8.094600px;}
.w14_c00411{width:8.274600px;}
.w7_c00411{width:8.276400px;}
.w8_c00411{width:8.278200px;}
.we_c00411{width:9.358200px;}
.wb_c00411{width:10.076400px;}
.w10_c00411{width:11.334600px;}
.w4_c00411{width:11.874600px;}
.w2_c00411{width:12.058200px;}
.wa_c00411{width:12.414600px;}
.w5_c00411{width:15.472800px;}
.w1_c00411{width:16.552980px;}
.w3_c00411{width:23.929200px;}
.w11_c00411{width:25.911000px;}
.wd_c00411{width:28.063800px;}
.w19_c00411{width:892.099575px;}
.w18_c00411{width:892.414744px;}
.w0_c00411{width:892.500000px;}
.x0_c00411{left:0.000000px;}
.x1e_c00411{left:113.887229px;}
.x1_c00411{left:128.331540px;}
.x1f_c00411{left:167.863311px;}
.x1c_c00411{left:253.542308px;}
.x1b_c00411{left:269.015236px;}
.x1d_c00411{left:423.021349px;}
.x2_c00411{left:496.623600px;}
.x3_c00411{left:508.681800px;}
.x4_c00411{left:532.611000px;}
.x5_c00411{left:544.485600px;}
.x6_c00411{left:559.958400px;}
.x7_c00411{left:564.636600px;}
.x8_c00411{left:576.869400px;}
.x9_c00411{left:585.147600px;}
.xa_c00411{left:590.364000px;}
.xb_c00411{left:606.555000px;}
.xc_c00411{left:616.631400px;}
.xd_c00411{left:621.309600px;}
.xe_c00411{left:625.809600px;}
.xf_c00411{left:653.873400px;}
.x10_c00411{left:661.971600px;}
.x11_c00411{left:673.126200px;}
.x12_c00411{left:684.100800px;}
.x13_c00411{left:708.931800px;}
.x14_c00411{left:713.428200px;}
.x15_c00411{left:720.806400px;}
.x16_c00411{left:725.486400px;}
.x17_c00411{left:733.761000px;}
.x18_c00411{left:741.855600px;}
.x19_c00411{left:749.233800px;}
.x1a_c00411{left:755.708400px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:-14.713194pt;}
.ws1_c00411{word-spacing:0.000000pt;}
._4_c00411{margin-left:-0.981441pt;}
._0_c00411{width:0.979567pt;}
._a_c00411{width:1.893407pt;}
._5_c00411{width:3.009013pt;}
._6_c00411{width:3.984684pt;}
._8_c00411{width:5.486070pt;}
._7_c00411{width:6.379854pt;}
._2_c00411{width:7.442057pt;}
._3_c00411{width:8.363386pt;}
._e_c00411{width:9.736041pt;}
._d_c00411{width:10.646987pt;}
._c_c00411{width:11.700221pt;}
._b_c00411{width:12.939231pt;}
._f_c00411{width:128.285832pt;}
._9_c00411{width:133.172511pt;}
._1_c00411{width:177.312822pt;}
.fs2_c00411{font-size:53.096085pt;}
.fs0_c00411{font-size:58.852776pt;}
.fs1_c00411{font-size:63.972241pt;}
.y0_c00411{bottom:0.000000pt;}
.y4_c00411{bottom:0.107500pt;}
.y8_c00411{bottom:0.494374pt;}
.y2_c00411{bottom:3.518132pt;}
.ya_c00411{bottom:58.481202pt;}
.y3_c00411{bottom:66.331840pt;}
.y1_c00411{bottom:66.651840pt;}
.y25_c00411{bottom:143.084235pt;}
.y24_c00411{bottom:168.353558pt;}
.y23_c00411{bottom:206.893543pt;}
.y22_c00411{bottom:245.275394pt;}
.y21_c00411{bottom:278.862847pt;}
.y20_c00411{bottom:299.650839pt;}
.y1f_c00411{bottom:340.114289pt;}
.y1e_c00411{bottom:365.381213pt;}
.y1d_c00411{bottom:390.650536pt;}
.y1c_c00411{bottom:415.918659pt;}
.y1b_c00411{bottom:441.189849pt;}
.y1a_c00411{bottom:466.456772pt;}
.y19_c00411{bottom:504.838623pt;}
.y18_c00411{bottom:543.701675pt;}
.y17_c00411{bottom:568.970998pt;}
.y16_c00411{bottom:607.352849pt;}
.y15_c00411{bottom:646.215900pt;}
.y14_c00411{bottom:671.484023pt;}
.y13_c00411{bottom:696.750947pt;}
.y12_c00411{bottom:735.132798pt;}
.y11_c00411{bottom:773.998382pt;}
.y10_c00411{bottom:799.266506pt;}
.yf_c00411{bottom:837.967690pt;}
.ye_c00411{bottom:876.509541pt;}
.yd_c00411{bottom:915.212593pt;}
.yc_c00411{bottom:940.481916pt;}
.yb_c00411{bottom:965.751906pt;}
.y9_c00411{bottom:983.182565pt;}
.y7_c00411{bottom:1023.551024pt;}
.y6_c00411{bottom:1041.942883pt;}
.y5_c00411{bottom:1060.334742pt;}
.h1_c00411{height:16.153120pt;}
.h7_c00411{height:34.034591pt;}
.h6_c00411{height:37.724630pt;}
.h2_c00411{height:41.196944pt;}
.h4_c00411{height:44.780569pt;}
.ha_c00411{height:47.627189pt;}
.h8_c00411{height:52.732088pt;}
.h9_c00411{height:52.790940pt;}
.h5_c00411{height:1122.161626pt;}
.h3_c00411{height:1122.559167pt;}
.h0_c00411{height:1122.666667pt;}
.w17_c00411{width:2.400000pt;}
.w12_c00411{width:4.156800pt;}
.wc_c00411{width:4.160000pt;}
.w6_c00411{width:4.478400pt;}
.w16_c00411{width:5.755200pt;}
.w9_c00411{width:5.756800pt;}
.wf_c00411{width:6.556800pt;}
.w13_c00411{width:6.558400pt;}
.w15_c00411{width:7.195200pt;}
.w14_c00411{width:7.355200pt;}
.w7_c00411{width:7.356800pt;}
.w8_c00411{width:7.358400pt;}
.we_c00411{width:8.318400pt;}
.wb_c00411{width:8.956800pt;}
.w10_c00411{width:10.075200pt;}
.w4_c00411{width:10.555200pt;}
.w2_c00411{width:10.718400pt;}
.wa_c00411{width:11.035200pt;}
.w5_c00411{width:13.753600pt;}
.w1_c00411{width:14.713760pt;}
.w3_c00411{width:21.270400pt;}
.w11_c00411{width:23.032000pt;}
.wd_c00411{width:24.945600pt;}
.w19_c00411{width:792.977400pt;}
.w18_c00411{width:793.257550pt;}
.w0_c00411{width:793.333333pt;}
.x0_c00411{left:0.000000pt;}
.x1e_c00411{left:101.233093pt;}
.x1_c00411{left:114.072480pt;}
.x1f_c00411{left:149.211832pt;}
.x1c_c00411{left:225.370940pt;}
.x1b_c00411{left:239.124654pt;}
.x1d_c00411{left:376.018977pt;}
.x2_c00411{left:441.443200pt;}
.x3_c00411{left:452.161600pt;}
.x4_c00411{left:473.432000pt;}
.x5_c00411{left:483.987200pt;}
.x6_c00411{left:497.740800pt;}
.x7_c00411{left:501.899200pt;}
.x8_c00411{left:512.772800pt;}
.x9_c00411{left:520.131200pt;}
.xa_c00411{left:524.768000pt;}
.xb_c00411{left:539.160000pt;}
.xc_c00411{left:548.116800pt;}
.xd_c00411{left:552.275200pt;}
.xe_c00411{left:556.275200pt;}
.xf_c00411{left:581.220800pt;}
.x10_c00411{left:588.419200pt;}
.x11_c00411{left:598.334400pt;}
.x12_c00411{left:608.089600pt;}
.x13_c00411{left:630.161600pt;}
.x14_c00411{left:634.158400pt;}
.x15_c00411{left:640.716800pt;}
.x16_c00411{left:644.876800pt;}
.x17_c00411{left:652.232000pt;}
.x18_c00411{left:659.427200pt;}
.x19_c00411{left:665.985600pt;}
.x1a_c00411{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.112000;font-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_c00412{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls0_c00412{letter-spacing:0.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:-16.552343px;}
.ws1_c00412{word-spacing:0.000000px;}
._3_c00412{margin-left:-1.560843px;}
._0_c00412{width:1.102012px;}
._8_c00412{width:2.720332px;}
._5_c00412{width:3.755291px;}
._9_c00412{width:5.548703px;}
._4_c00412{width:6.704223px;}
._2_c00412{width:7.819510px;}
._b_c00412{width:11.747835px;}
._a_c00412{width:12.962791px;}
._6_c00412{width:20.366888px;}
._7_c00412{width:21.641467px;}
._c_c00412{width:28.851254px;}
._1_c00412{width:199.476925px;}
.fc1_c00412{color:rgb(105,148,45);}
.fc0_c00412{color:rgb(35,31,32);}
.fs2_c00412{font-size:59.733096px;}
.fs0_c00412{font-size:66.209374px;}
.fs1_c00412{font-size:71.968771px;}
.y0_c00412{bottom:0.000000px;}
.y4_c00412{bottom:0.120938px;}
.y8_c00412{bottom:0.556171px;}
.y2_c00412{bottom:3.957898px;}
.ya_c00412{bottom:65.791352px;}
.y3_c00412{bottom:74.623320px;}
.y1_c00412{bottom:74.983320px;}
.y28_c00412{bottom:100.512888px;}
.y27_c00412{bottom:134.518175px;}
.y26_c00412{bottom:168.522711px;}
.y25_c00412{bottom:211.883644px;}
.y24_c00412{bottom:240.311632px;}
.y23_c00412{bottom:268.736921px;}
.y22_c00412{bottom:312.277854px;}
.y21_c00412{bottom:340.705842px;}
.y20_c00412{bottom:384.065425px;}
.y1f_c00412{bottom:427.606358px;}
.y1e_c00412{bottom:470.965190px;}
.y1d_c00412{bottom:499.393929px;}
.y1c_c00412{bottom:527.819217px;}
.y1b_c00412{bottom:571.360150px;}
.y1a_c00412{bottom:599.788139px;}
.y19_c00412{bottom:643.149071px;}
.y18_c00412{bottom:671.754360px;}
.y17_c00412{bottom:700.180999px;}
.y16_c00412{bottom:728.610487px;}
.y15_c00412{bottom:771.971420px;}
.y14_c00412{bottom:800.398058px;}
.y13_c00412{bottom:828.823347px;}
.y12_c00412{bottom:857.432086px;}
.y11_c00412{bottom:885.861574px;}
.y10_c00412{bottom:914.286863px;}
.yf_c00412{bottom:957.646446px;}
.ye_c00412{bottom:986.073084px;}
.yd_c00412{bottom:1014.499723px;}
.yc_c00412{bottom:1043.108461px;}
.yb_c00412{bottom:1086.110894px;}
.y9_c00412{bottom:1106.080386px;}
.y7_c00412{bottom:1151.494902px;}
.y6_c00412{bottom:1172.185744px;}
.y5_c00412{bottom:1192.876585px;}
.h1_c00412{height:18.172260px;}
.h7_c00412{height:38.288915px;}
.h6_c00412{height:42.440208px;}
.h2_c00412{height:46.346561px;}
.h4_c00412{height:50.378140px;}
.h9_c00412{height:59.323599px;}
.h8_c00412{height:59.389808px;}
.h5_c00412{height:1262.431829px;}
.h3_c00412{height:1262.879062px;}
.h0_c00412{height:1263.000000px;}
.w17_c00412{width:2.700000px;}
.w12_c00412{width:4.676400px;}
.wc_c00412{width:4.680000px;}
.w6_c00412{width:5.038200px;}
.w16_c00412{width:6.474600px;}
.w9_c00412{width:6.476400px;}
.wf_c00412{width:7.376400px;}
.w13_c00412{width:7.378200px;}
.w15_c00412{width:8.094600px;}
.w14_c00412{width:8.274600px;}
.w7_c00412{width:8.276400px;}
.w8_c00412{width:8.278200px;}
.we_c00412{width:9.358200px;}
.wb_c00412{width:10.076400px;}
.w10_c00412{width:11.334600px;}
.w4_c00412{width:11.874600px;}
.w2_c00412{width:12.058200px;}
.wa_c00412{width:12.414600px;}
.w5_c00412{width:15.472800px;}
.w1_c00412{width:16.552980px;}
.w3_c00412{width:23.929200px;}
.w11_c00412{width:25.911000px;}
.wd_c00412{width:28.063800px;}
.w19_c00412{width:892.099575px;}
.w18_c00412{width:892.414744px;}
.w0_c00412{width:892.500000px;}
.x0_c00412{left:0.000000px;}
.x1e_c00412{left:113.887229px;}
.x1_c00412{left:128.331540px;}
.x1f_c00412{left:167.863311px;}
.x1c_c00412{left:253.542308px;}
.x1b_c00412{left:269.015236px;}
.x1d_c00412{left:423.021349px;}
.x2_c00412{left:496.623600px;}
.x3_c00412{left:508.681800px;}
.x4_c00412{left:532.611000px;}
.x5_c00412{left:544.485600px;}
.x6_c00412{left:559.958400px;}
.x7_c00412{left:564.636600px;}
.x8_c00412{left:576.869400px;}
.x9_c00412{left:585.147600px;}
.xa_c00412{left:590.364000px;}
.xb_c00412{left:606.555000px;}
.xc_c00412{left:616.631400px;}
.xd_c00412{left:621.309600px;}
.xe_c00412{left:625.809600px;}
.xf_c00412{left:653.873400px;}
.x10_c00412{left:661.971600px;}
.x11_c00412{left:673.126200px;}
.x12_c00412{left:684.100800px;}
.x13_c00412{left:708.931800px;}
.x14_c00412{left:713.428200px;}
.x15_c00412{left:720.806400px;}
.x16_c00412{left:725.486400px;}
.x17_c00412{left:733.761000px;}
.x18_c00412{left:741.855600px;}
.x19_c00412{left:749.233800px;}
.x1a_c00412{left:755.708400px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws0_c00412{word-spacing:-14.713194pt;}
.ws1_c00412{word-spacing:0.000000pt;}
._3_c00412{margin-left:-1.387416pt;}
._0_c00412{width:0.979567pt;}
._8_c00412{width:2.418073pt;}
._5_c00412{width:3.338037pt;}
._9_c00412{width:4.932181pt;}
._4_c00412{width:5.959309pt;}
._2_c00412{width:6.950675pt;}
._b_c00412{width:10.442520pt;}
._a_c00412{width:11.522481pt;}
._6_c00412{width:18.103900pt;}
._7_c00412{width:19.236859pt;}
._c_c00412{width:25.645559pt;}
._1_c00412{width:177.312822pt;}
.fs2_c00412{font-size:53.096085pt;}
.fs0_c00412{font-size:58.852776pt;}
.fs1_c00412{font-size:63.972241pt;}
.y0_c00412{bottom:0.000000pt;}
.y4_c00412{bottom:0.107500pt;}
.y8_c00412{bottom:0.494374pt;}
.y2_c00412{bottom:3.518132pt;}
.ya_c00412{bottom:58.481202pt;}
.y3_c00412{bottom:66.331840pt;}
.y1_c00412{bottom:66.651840pt;}
.y28_c00412{bottom:89.344790pt;}
.y27_c00412{bottom:119.571711pt;}
.y26_c00412{bottom:149.797965pt;}
.y25_c00412{bottom:188.341017pt;}
.y24_c00412{bottom:213.610340pt;}
.y23_c00412{bottom:238.877263pt;}
.y22_c00412{bottom:277.580314pt;}
.y21_c00412{bottom:302.849638pt;}
.y20_c00412{bottom:341.391489pt;}
.y1f_c00412{bottom:380.094540pt;}
.y1e_c00412{bottom:418.635725pt;}
.y1d_c00412{bottom:443.905715pt;}
.y1c_c00412{bottom:469.172638pt;}
.y1b_c00412{bottom:507.875689pt;}
.y1a_c00412{bottom:533.145012pt;}
.y19_c00412{bottom:571.688063pt;}
.y18_c00412{bottom:597.114987pt;}
.y17_c00412{bottom:622.383110pt;}
.y16_c00412{bottom:647.653766pt;}
.y15_c00412{bottom:686.196818pt;}
.y14_c00412{bottom:711.464941pt;}
.y13_c00412{bottom:736.731864pt;}
.y12_c00412{bottom:762.161854pt;}
.y11_c00412{bottom:787.432510pt;}
.y10_c00412{bottom:812.699434pt;}
.yf_c00412{bottom:851.241285pt;}
.ye_c00412{bottom:876.509408pt;}
.yd_c00412{bottom:901.777531pt;}
.yc_c00412{bottom:927.207521pt;}
.yb_c00412{bottom:965.431906pt;}
.y9_c00412{bottom:983.182565pt;}
.y7_c00412{bottom:1023.551024pt;}
.y6_c00412{bottom:1041.942883pt;}
.y5_c00412{bottom:1060.334742pt;}
.h1_c00412{height:16.153120pt;}
.h7_c00412{height:34.034591pt;}
.h6_c00412{height:37.724630pt;}
.h2_c00412{height:41.196944pt;}
.h4_c00412{height:44.780569pt;}
.h9_c00412{height:52.732088pt;}
.h8_c00412{height:52.790940pt;}
.h5_c00412{height:1122.161626pt;}
.h3_c00412{height:1122.559167pt;}
.h0_c00412{height:1122.666667pt;}
.w17_c00412{width:2.400000pt;}
.w12_c00412{width:4.156800pt;}
.wc_c00412{width:4.160000pt;}
.w6_c00412{width:4.478400pt;}
.w16_c00412{width:5.755200pt;}
.w9_c00412{width:5.756800pt;}
.wf_c00412{width:6.556800pt;}
.w13_c00412{width:6.558400pt;}
.w15_c00412{width:7.195200pt;}
.w14_c00412{width:7.355200pt;}
.w7_c00412{width:7.356800pt;}
.w8_c00412{width:7.358400pt;}
.we_c00412{width:8.318400pt;}
.wb_c00412{width:8.956800pt;}
.w10_c00412{width:10.075200pt;}
.w4_c00412{width:10.555200pt;}
.w2_c00412{width:10.718400pt;}
.wa_c00412{width:11.035200pt;}
.w5_c00412{width:13.753600pt;}
.w1_c00412{width:14.713760pt;}
.w3_c00412{width:21.270400pt;}
.w11_c00412{width:23.032000pt;}
.wd_c00412{width:24.945600pt;}
.w19_c00412{width:792.977400pt;}
.w18_c00412{width:793.257550pt;}
.w0_c00412{width:793.333333pt;}
.x0_c00412{left:0.000000pt;}
.x1e_c00412{left:101.233093pt;}
.x1_c00412{left:114.072480pt;}
.x1f_c00412{left:149.211832pt;}
.x1c_c00412{left:225.370940pt;}
.x1b_c00412{left:239.124654pt;}
.x1d_c00412{left:376.018977pt;}
.x2_c00412{left:441.443200pt;}
.x3_c00412{left:452.161600pt;}
.x4_c00412{left:473.432000pt;}
.x5_c00412{left:483.987200pt;}
.x6_c00412{left:497.740800pt;}
.x7_c00412{left:501.899200pt;}
.x8_c00412{left:512.772800pt;}
.x9_c00412{left:520.131200pt;}
.xa_c00412{left:524.768000pt;}
.xb_c00412{left:539.160000pt;}
.xc_c00412{left:548.116800pt;}
.xd_c00412{left:552.275200pt;}
.xe_c00412{left:556.275200pt;}
.xf_c00412{left:581.220800pt;}
.x10_c00412{left:588.419200pt;}
.x11_c00412{left:598.334400pt;}
.x12_c00412{left:608.089600pt;}
.x13_c00412{left:630.161600pt;}
.x14_c00412{left:634.158400pt;}
.x15_c00412{left:640.716800pt;}
.x16_c00412{left:644.876800pt;}
.x17_c00412{left:652.232000pt;}
.x18_c00412{left:659.427200pt;}
.x19_c00412{left:665.985600pt;}
.x1a_c00412{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.112000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.113000;font-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_c00413{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls0_c00413{letter-spacing:0.000000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:-16.552343px;}
.ws1_c00413{word-spacing:0.000000px;}
._2_c00413{margin-left:-1.259162px;}
._0_c00413{width:1.102012px;}
._3_c00413{width:2.131298px;}
._7_c00413{width:3.587182px;}
._6_c00413{width:4.691524px;}
._e_c00413{width:7.000377px;}
._c_c00413{width:8.031603px;}
._d_c00413{width:9.151547px;}
._b_c00413{width:11.244674px;}
._5_c00413{width:12.410115px;}
._4_c00413{width:13.854042px;}
._a_c00413{width:19.972194px;}
._9_c00413{width:20.989417px;}
._8_c00413{width:149.819075px;}
._1_c00413{width:199.476925px;}
.fc1_c00413{color:rgb(105,148,45);}
.fc0_c00413{color:rgb(35,31,32);}
.fs2_c00413{font-size:59.733096px;}
.fs0_c00413{font-size:66.209374px;}
.fs1_c00413{font-size:71.968771px;}
.y0_c00413{bottom:0.000000px;}
.y4_c00413{bottom:0.120938px;}
.y8_c00413{bottom:0.556171px;}
.y2_c00413{bottom:3.957898px;}
.ya_c00413{bottom:65.791352px;}
.y3_c00413{bottom:74.623320px;}
.y1_c00413{bottom:74.983320px;}
.y26_c00413{bottom:108.430785px;}
.y25_c00413{bottom:136.859524px;}
.y24_c00413{bottom:165.469012px;}
.y23_c00413{bottom:193.894301px;}
.y22_c00413{bottom:222.320940px;}
.y21_c00413{bottom:250.748328px;}
.y20_c00413{bottom:279.174967px;}
.y1f_c00413{bottom:322.178750px;}
.y1e_c00413{bottom:365.717582px;}
.y1d_c00413{bottom:409.435815px;}
.y1c_c00413{bottom:452.976747px;}
.y1b_c00413{bottom:496.337080px;}
.y1a_c00413{bottom:539.879513px;}
.y19_c00413{bottom:583.239095px;}
.y18_c00413{bottom:611.664384px;}
.y17_c00413{bottom:655.203966px;}
.y16_c00413{bottom:683.631955px;}
.y15_c00413{bottom:726.632888px;}
.y14_c00413{bottom:770.531720px;}
.y13_c00413{bottom:798.960459px;}
.y12_c00413{bottom:841.962892px;}
.y11_c00413{bottom:885.501724px;}
.y10_c00413{bottom:929.221307px;}
.yf_c00413{bottom:957.646596px;}
.ye_c00413{bottom:986.073234px;}
.yd_c00413{bottom:1029.614167px;}
.yc_c00413{bottom:1058.042155px;}
.yb_c00413{bottom:1086.470894px;}
.y9_c00413{bottom:1106.080386px;}
.y7_c00413{bottom:1151.494902px;}
.y6_c00413{bottom:1172.185744px;}
.y5_c00413{bottom:1192.876585px;}
.h1_c00413{height:18.172260px;}
.h7_c00413{height:38.288915px;}
.h6_c00413{height:42.440208px;}
.h2_c00413{height:46.346561px;}
.h4_c00413{height:50.378140px;}
.h8_c00413{height:59.323599px;}
.h9_c00413{height:59.389808px;}
.h5_c00413{height:1262.431829px;}
.h3_c00413{height:1262.879062px;}
.h0_c00413{height:1263.000000px;}
.w17_c00413{width:2.700000px;}
.w12_c00413{width:4.676400px;}
.wc_c00413{width:4.680000px;}
.w6_c00413{width:5.038200px;}
.w16_c00413{width:6.474600px;}
.w9_c00413{width:6.476400px;}
.wf_c00413{width:7.376400px;}
.w13_c00413{width:7.378200px;}
.w15_c00413{width:8.094600px;}
.w14_c00413{width:8.274600px;}
.w7_c00413{width:8.276400px;}
.w8_c00413{width:8.278200px;}
.we_c00413{width:9.358200px;}
.wb_c00413{width:10.076400px;}
.w10_c00413{width:11.334600px;}
.w4_c00413{width:11.874600px;}
.w2_c00413{width:12.058200px;}
.wa_c00413{width:12.414600px;}
.w5_c00413{width:15.472800px;}
.w1_c00413{width:16.552980px;}
.w3_c00413{width:23.929200px;}
.w11_c00413{width:25.911000px;}
.wd_c00413{width:28.063800px;}
.w19_c00413{width:892.099575px;}
.w18_c00413{width:892.414744px;}
.w0_c00413{width:892.500000px;}
.x0_c00413{left:0.000000px;}
.x1e_c00413{left:113.887229px;}
.x1_c00413{left:128.331540px;}
.x1c_c00413{left:253.542308px;}
.x1b_c00413{left:269.015236px;}
.x1d_c00413{left:423.021349px;}
.x2_c00413{left:496.623600px;}
.x3_c00413{left:508.681800px;}
.x4_c00413{left:532.611000px;}
.x5_c00413{left:544.485600px;}
.x6_c00413{left:559.958400px;}
.x7_c00413{left:564.636600px;}
.x8_c00413{left:576.869400px;}
.x9_c00413{left:585.147600px;}
.xa_c00413{left:590.364000px;}
.xb_c00413{left:606.555000px;}
.xc_c00413{left:616.631400px;}
.xd_c00413{left:621.309600px;}
.xe_c00413{left:625.809600px;}
.xf_c00413{left:653.873400px;}
.x10_c00413{left:661.971600px;}
.x11_c00413{left:673.126200px;}
.x12_c00413{left:684.100800px;}
.x13_c00413{left:708.931800px;}
.x14_c00413{left:713.428200px;}
.x15_c00413{left:720.806400px;}
.x16_c00413{left:725.486400px;}
.x17_c00413{left:733.761000px;}
.x18_c00413{left:741.855600px;}
.x19_c00413{left:749.233800px;}
.x1a_c00413{left:755.708400px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws0_c00413{word-spacing:-14.713194pt;}
.ws1_c00413{word-spacing:0.000000pt;}
._2_c00413{margin-left:-1.119255pt;}
._0_c00413{width:0.979567pt;}
._3_c00413{width:1.894487pt;}
._7_c00413{width:3.188607pt;}
._6_c00413{width:4.170243pt;}
._e_c00413{width:6.222557pt;}
._c_c00413{width:7.139202pt;}
._d_c00413{width:8.134708pt;}
._b_c00413{width:9.995266pt;}
._5_c00413{width:11.031214pt;}
._4_c00413{width:12.314704pt;}
._a_c00413{width:17.753061pt;}
._9_c00413{width:18.657259pt;}
._8_c00413{width:133.172511pt;}
._1_c00413{width:177.312822pt;}
.fs2_c00413{font-size:53.096085pt;}
.fs0_c00413{font-size:58.852776pt;}
.fs1_c00413{font-size:63.972241pt;}
.y0_c00413{bottom:0.000000pt;}
.y4_c00413{bottom:0.107500pt;}
.y8_c00413{bottom:0.494374pt;}
.y2_c00413{bottom:3.518132pt;}
.ya_c00413{bottom:58.481202pt;}
.y3_c00413{bottom:66.331840pt;}
.y1_c00413{bottom:66.651840pt;}
.y26_c00413{bottom:96.382920pt;}
.y25_c00413{bottom:121.652910pt;}
.y24_c00413{bottom:147.083567pt;}
.y23_c00413{bottom:172.350490pt;}
.y22_c00413{bottom:197.618613pt;}
.y21_c00413{bottom:222.887403pt;}
.y20_c00413{bottom:248.155526pt;}
.y1f_c00413{bottom:286.381111pt;}
.y1e_c00413{bottom:325.082295pt;}
.y1d_c00413{bottom:363.942946pt;}
.y1c_c00413{bottom:402.645998pt;}
.y1b_c00413{bottom:441.188516pt;}
.y1a_c00413{bottom:479.892900pt;}
.y19_c00413{bottom:518.434751pt;}
.y18_c00413{bottom:543.701675pt;}
.y17_c00413{bottom:582.403526pt;}
.y16_c00413{bottom:607.672849pt;}
.y15_c00413{bottom:645.895900pt;}
.y14_c00413{bottom:684.917085pt;}
.y13_c00413{bottom:710.187075pt;}
.y12_c00413{bottom:748.411459pt;}
.y11_c00413{bottom:787.112644pt;}
.y10_c00413{bottom:825.974495pt;}
.yf_c00413{bottom:851.241418pt;}
.ye_c00413{bottom:876.509541pt;}
.yd_c00413{bottom:915.212593pt;}
.yc_c00413{bottom:940.481916pt;}
.yb_c00413{bottom:965.751906pt;}
.y9_c00413{bottom:983.182565pt;}
.y7_c00413{bottom:1023.551024pt;}
.y6_c00413{bottom:1041.942883pt;}
.y5_c00413{bottom:1060.334742pt;}
.h1_c00413{height:16.153120pt;}
.h7_c00413{height:34.034591pt;}
.h6_c00413{height:37.724630pt;}
.h2_c00413{height:41.196944pt;}
.h4_c00413{height:44.780569pt;}
.h8_c00413{height:52.732088pt;}
.h9_c00413{height:52.790940pt;}
.h5_c00413{height:1122.161626pt;}
.h3_c00413{height:1122.559167pt;}
.h0_c00413{height:1122.666667pt;}
.w17_c00413{width:2.400000pt;}
.w12_c00413{width:4.156800pt;}
.wc_c00413{width:4.160000pt;}
.w6_c00413{width:4.478400pt;}
.w16_c00413{width:5.755200pt;}
.w9_c00413{width:5.756800pt;}
.wf_c00413{width:6.556800pt;}
.w13_c00413{width:6.558400pt;}
.w15_c00413{width:7.195200pt;}
.w14_c00413{width:7.355200pt;}
.w7_c00413{width:7.356800pt;}
.w8_c00413{width:7.358400pt;}
.we_c00413{width:8.318400pt;}
.wb_c00413{width:8.956800pt;}
.w10_c00413{width:10.075200pt;}
.w4_c00413{width:10.555200pt;}
.w2_c00413{width:10.718400pt;}
.wa_c00413{width:11.035200pt;}
.w5_c00413{width:13.753600pt;}
.w1_c00413{width:14.713760pt;}
.w3_c00413{width:21.270400pt;}
.w11_c00413{width:23.032000pt;}
.wd_c00413{width:24.945600pt;}
.w19_c00413{width:792.977400pt;}
.w18_c00413{width:793.257550pt;}
.w0_c00413{width:793.333333pt;}
.x0_c00413{left:0.000000pt;}
.x1e_c00413{left:101.233093pt;}
.x1_c00413{left:114.072480pt;}
.x1c_c00413{left:225.370940pt;}
.x1b_c00413{left:239.124654pt;}
.x1d_c00413{left:376.018977pt;}
.x2_c00413{left:441.443200pt;}
.x3_c00413{left:452.161600pt;}
.x4_c00413{left:473.432000pt;}
.x5_c00413{left:483.987200pt;}
.x6_c00413{left:497.740800pt;}
.x7_c00413{left:501.899200pt;}
.x8_c00413{left:512.772800pt;}
.x9_c00413{left:520.131200pt;}
.xa_c00413{left:524.768000pt;}
.xb_c00413{left:539.160000pt;}
.xc_c00413{left:548.116800pt;}
.xd_c00413{left:552.275200pt;}
.xe_c00413{left:556.275200pt;}
.xf_c00413{left:581.220800pt;}
.x10_c00413{left:588.419200pt;}
.x11_c00413{left:598.334400pt;}
.x12_c00413{left:608.089600pt;}
.x13_c00413{left:630.161600pt;}
.x14_c00413{left:634.158400pt;}
.x15_c00413{left:640.716800pt;}
.x16_c00413{left:644.876800pt;}
.x17_c00413{left:652.232000pt;}
.x18_c00413{left:659.427200pt;}
.x19_c00413{left:665.985600pt;}
.x1a_c00413{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.112000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.113000;font-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_c00414{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls0_c00414{letter-spacing:0.000000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00414{word-spacing:-16.552343px;}
.ws1_c00414{word-spacing:0.000000px;}
._2_c00414{margin-left:-1.064726px;}
._0_c00414{width:1.102012px;}
._1_c00414{width:2.103326px;}
._a_c00414{width:3.282439px;}
._5_c00414{width:4.702345px;}
._3_c00414{width:5.810295px;}
._9_c00414{width:6.914264px;}
._7_c00414{width:8.886760px;}
._6_c00414{width:10.148532px;}
._8_c00414{width:15.118540px;}
._b_c00414{width:149.819075px;}
._4_c00414{width:199.476925px;}
.fc1_c00414{color:rgb(105,148,45);}
.fc0_c00414{color:rgb(35,31,32);}
.fs2_c00414{font-size:59.733096px;}
.fs0_c00414{font-size:66.209374px;}
.fs1_c00414{font-size:71.968771px;}
.y0_c00414{bottom:0.000000px;}
.y4_c00414{bottom:0.120938px;}
.y8_c00414{bottom:0.556171px;}
.y2_c00414{bottom:3.957898px;}
.ya_c00414{bottom:65.791352px;}
.y3_c00414{bottom:74.623320px;}
.y1_c00414{bottom:74.983320px;}
.y28_c00414{bottom:126.604328px;}
.y27_c00414{bottom:155.028117px;}
.y26_c00414{bottom:183.454755px;}
.y25_c00414{bottom:211.882144px;}
.y24_c00414{bottom:240.310132px;}
.y23_c00414{bottom:283.491065px;}
.y22_c00414{bottom:327.213498px;}
.y21_c00414{bottom:355.638786px;}
.y20_c00414{bottom:384.065425px;}
.y1f_c00414{bottom:427.247858px;}
.y1e_c00414{bottom:470.966690px;}
.y1d_c00414{bottom:499.394079px;}
.y1c_c00414{bottom:527.822067px;}
.y1b_c00414{bottom:556.427356px;}
.y1a_c00414{bottom:584.855345px;}
.y19_c00414{bottom:613.284083px;}
.y18_c00414{bottom:641.709372px;}
.y17_c00414{bottom:670.136011px;}
.y16_c00414{bottom:713.138443px;}
.y15_c00414{bottom:757.039376px;}
.y14_c00414{bottom:785.466014px;}
.y13_c00414{bottom:813.891303px;}
.y12_c00414{bottom:842.322892px;}
.y11_c00414{bottom:870.748180px;}
.y10_c00414{bottom:913.927013px;}
.yf_c00414{bottom:957.646596px;}
.ye_c00414{bottom:986.073234px;}
.yd_c00414{bottom:1029.614167px;}
.yc_c00414{bottom:1058.042155px;}
.yb_c00414{bottom:1086.470894px;}
.y9_c00414{bottom:1106.080386px;}
.y7_c00414{bottom:1151.494902px;}
.y6_c00414{bottom:1172.185744px;}
.y5_c00414{bottom:1192.876585px;}
.h1_c00414{height:18.172260px;}
.h7_c00414{height:38.288915px;}
.h6_c00414{height:42.440208px;}
.h2_c00414{height:46.346561px;}
.h4_c00414{height:50.378140px;}
.h8_c00414{height:59.323599px;}
.h9_c00414{height:59.389808px;}
.h5_c00414{height:1262.431829px;}
.h3_c00414{height:1262.879062px;}
.h0_c00414{height:1263.000000px;}
.w17_c00414{width:2.700000px;}
.w12_c00414{width:4.676400px;}
.wc_c00414{width:4.680000px;}
.w6_c00414{width:5.038200px;}
.w16_c00414{width:6.474600px;}
.w9_c00414{width:6.476400px;}
.wf_c00414{width:7.376400px;}
.w13_c00414{width:7.378200px;}
.w15_c00414{width:8.094600px;}
.w14_c00414{width:8.274600px;}
.w7_c00414{width:8.276400px;}
.w8_c00414{width:8.278200px;}
.we_c00414{width:9.358200px;}
.wb_c00414{width:10.076400px;}
.w10_c00414{width:11.334600px;}
.w4_c00414{width:11.874600px;}
.w2_c00414{width:12.058200px;}
.wa_c00414{width:12.414600px;}
.w5_c00414{width:15.472800px;}
.w1_c00414{width:16.552980px;}
.w3_c00414{width:23.929200px;}
.w11_c00414{width:25.911000px;}
.wd_c00414{width:28.063800px;}
.w19_c00414{width:892.099575px;}
.w18_c00414{width:892.414744px;}
.w0_c00414{width:892.500000px;}
.x0_c00414{left:0.000000px;}
.x1e_c00414{left:113.887229px;}
.x1_c00414{left:128.331540px;}
.x1c_c00414{left:253.542308px;}
.x1b_c00414{left:269.015236px;}
.x1d_c00414{left:423.021349px;}
.x2_c00414{left:496.623600px;}
.x3_c00414{left:508.681800px;}
.x4_c00414{left:532.611000px;}
.x5_c00414{left:544.485600px;}
.x6_c00414{left:559.958400px;}
.x7_c00414{left:564.636600px;}
.x8_c00414{left:576.869400px;}
.x9_c00414{left:585.147600px;}
.xa_c00414{left:590.364000px;}
.xb_c00414{left:606.555000px;}
.xc_c00414{left:616.631400px;}
.xd_c00414{left:621.309600px;}
.xe_c00414{left:625.809600px;}
.xf_c00414{left:653.873400px;}
.x10_c00414{left:661.971600px;}
.x11_c00414{left:673.126200px;}
.x12_c00414{left:684.100800px;}
.x13_c00414{left:708.931800px;}
.x14_c00414{left:713.428200px;}
.x15_c00414{left:720.806400px;}
.x16_c00414{left:725.486400px;}
.x17_c00414{left:733.761000px;}
.x18_c00414{left:741.855600px;}
.x19_c00414{left:749.233800px;}
.x1a_c00414{left:755.708400px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws0_c00414{word-spacing:-14.713194pt;}
.ws1_c00414{word-spacing:0.000000pt;}
._2_c00414{margin-left:-0.946423pt;}
._0_c00414{width:0.979567pt;}
._1_c00414{width:1.869623pt;}
._a_c00414{width:2.917723pt;}
._5_c00414{width:4.179862pt;}
._3_c00414{width:5.164706pt;}
._9_c00414{width:6.146012pt;}
._7_c00414{width:7.899343pt;}
._6_c00414{width:9.020917pt;}
._8_c00414{width:13.438702pt;}
._b_c00414{width:133.172511pt;}
._4_c00414{width:177.312822pt;}
.fs2_c00414{font-size:53.096085pt;}
.fs0_c00414{font-size:58.852776pt;}
.fs1_c00414{font-size:63.972241pt;}
.y0_c00414{bottom:0.000000pt;}
.y4_c00414{bottom:0.107500pt;}
.y8_c00414{bottom:0.494374pt;}
.y2_c00414{bottom:3.518132pt;}
.ya_c00414{bottom:58.481202pt;}
.y3_c00414{bottom:66.331840pt;}
.y1_c00414{bottom:66.651840pt;}
.y28_c00414{bottom:112.537180pt;}
.y27_c00414{bottom:137.802770pt;}
.y26_c00414{bottom:163.070894pt;}
.y25_c00414{bottom:188.339683pt;}
.y24_c00414{bottom:213.609007pt;}
.y23_c00414{bottom:251.992058pt;}
.y22_c00414{bottom:290.856442pt;}
.y21_c00414{bottom:316.123366pt;}
.y20_c00414{bottom:341.391489pt;}
.y1f_c00414{bottom:379.775873pt;}
.y1e_c00414{bottom:418.637058pt;}
.y1d_c00414{bottom:443.905848pt;}
.y1c_c00414{bottom:469.175171pt;}
.y1b_c00414{bottom:494.602094pt;}
.y1a_c00414{bottom:519.871417pt;}
.y19_c00414{bottom:545.141407pt;}
.y18_c00414{bottom:570.408331pt;}
.y17_c00414{bottom:595.676454pt;}
.y16_c00414{bottom:633.900839pt;}
.y15_c00414{bottom:672.923890pt;}
.y14_c00414{bottom:698.192013pt;}
.y13_c00414{bottom:723.458936pt;}
.y12_c00414{bottom:748.731459pt;}
.y11_c00414{bottom:773.998382pt;}
.y10_c00414{bottom:812.379567pt;}
.yf_c00414{bottom:851.241418pt;}
.ye_c00414{bottom:876.509541pt;}
.yd_c00414{bottom:915.212593pt;}
.yc_c00414{bottom:940.481916pt;}
.yb_c00414{bottom:965.751906pt;}
.y9_c00414{bottom:983.182565pt;}
.y7_c00414{bottom:1023.551024pt;}
.y6_c00414{bottom:1041.942883pt;}
.y5_c00414{bottom:1060.334742pt;}
.h1_c00414{height:16.153120pt;}
.h7_c00414{height:34.034591pt;}
.h6_c00414{height:37.724630pt;}
.h2_c00414{height:41.196944pt;}
.h4_c00414{height:44.780569pt;}
.h8_c00414{height:52.732088pt;}
.h9_c00414{height:52.790940pt;}
.h5_c00414{height:1122.161626pt;}
.h3_c00414{height:1122.559167pt;}
.h0_c00414{height:1122.666667pt;}
.w17_c00414{width:2.400000pt;}
.w12_c00414{width:4.156800pt;}
.wc_c00414{width:4.160000pt;}
.w6_c00414{width:4.478400pt;}
.w16_c00414{width:5.755200pt;}
.w9_c00414{width:5.756800pt;}
.wf_c00414{width:6.556800pt;}
.w13_c00414{width:6.558400pt;}
.w15_c00414{width:7.195200pt;}
.w14_c00414{width:7.355200pt;}
.w7_c00414{width:7.356800pt;}
.w8_c00414{width:7.358400pt;}
.we_c00414{width:8.318400pt;}
.wb_c00414{width:8.956800pt;}
.w10_c00414{width:10.075200pt;}
.w4_c00414{width:10.555200pt;}
.w2_c00414{width:10.718400pt;}
.wa_c00414{width:11.035200pt;}
.w5_c00414{width:13.753600pt;}
.w1_c00414{width:14.713760pt;}
.w3_c00414{width:21.270400pt;}
.w11_c00414{width:23.032000pt;}
.wd_c00414{width:24.945600pt;}
.w19_c00414{width:792.977400pt;}
.w18_c00414{width:793.257550pt;}
.w0_c00414{width:793.333333pt;}
.x0_c00414{left:0.000000pt;}
.x1e_c00414{left:101.233093pt;}
.x1_c00414{left:114.072480pt;}
.x1c_c00414{left:225.370940pt;}
.x1b_c00414{left:239.124654pt;}
.x1d_c00414{left:376.018977pt;}
.x2_c00414{left:441.443200pt;}
.x3_c00414{left:452.161600pt;}
.x4_c00414{left:473.432000pt;}
.x5_c00414{left:483.987200pt;}
.x6_c00414{left:497.740800pt;}
.x7_c00414{left:501.899200pt;}
.x8_c00414{left:512.772800pt;}
.x9_c00414{left:520.131200pt;}
.xa_c00414{left:524.768000pt;}
.xb_c00414{left:539.160000pt;}
.xc_c00414{left:548.116800pt;}
.xd_c00414{left:552.275200pt;}
.xe_c00414{left:556.275200pt;}
.xf_c00414{left:581.220800pt;}
.x10_c00414{left:588.419200pt;}
.x11_c00414{left:598.334400pt;}
.x12_c00414{left:608.089600pt;}
.x13_c00414{left:630.161600pt;}
.x14_c00414{left:634.158400pt;}
.x15_c00414{left:640.716800pt;}
.x16_c00414{left:644.876800pt;}
.x17_c00414{left:652.232000pt;}
.x18_c00414{left:659.427200pt;}
.x19_c00414{left:665.985600pt;}
.x1a_c00414{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.112000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.113000;font-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_c00415{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:-16.552343px;}
.ws1_c00415{word-spacing:0.000000px;}
._2_c00415{margin-left:-1.478936px;}
._0_c00415{width:1.102012px;}
._a_c00415{width:2.130277px;}
._4_c00415{width:3.476338px;}
._3_c00415{width:5.483149px;}
._6_c00415{width:7.019985px;}
._7_c00415{width:8.193279px;}
._b_c00415{width:12.484364px;}
._f_c00415{width:13.779250px;}
._e_c00415{width:14.959123px;}
._5_c00415{width:18.453865px;}
._d_c00415{width:20.862153px;}
._8_c00415{width:22.027633px;}
._9_c00415{width:23.319960px;}
._11_c00415{width:27.085966px;}
._10_c00415{width:28.422888px;}
._c_c00415{width:149.819075px;}
._1_c00415{width:199.476925px;}
.fc1_c00415{color:rgb(105,148,45);}
.fc0_c00415{color:rgb(35,31,32);}
.fs2_c00415{font-size:59.733096px;}
.fs0_c00415{font-size:66.209374px;}
.fs1_c00415{font-size:71.968771px;}
.y0_c00415{bottom:0.000000px;}
.y4_c00415{bottom:0.120938px;}
.y8_c00415{bottom:0.556171px;}
.y2_c00415{bottom:3.957898px;}
.ya_c00415{bottom:65.791352px;}
.y3_c00415{bottom:74.623320px;}
.y1_c00415{bottom:74.983320px;}
.y29_c00415{bottom:143.156071px;}
.y28_c00415{bottom:171.582710px;}
.y27_c00415{bottom:200.009349px;}
.y26_c00415{bottom:228.435987px;}
.y25_c00415{bottom:256.863976px;}
.y24_c00415{bottom:285.292714px;}
.y23_c00415{bottom:313.719353px;}
.y22_c00415{bottom:342.144642px;}
.y21_c00415{bottom:370.751280px;}
.y20_c00415{bottom:414.112213px;}
.y1f_c00415{bottom:442.538852px;}
.y1e_c00415{bottom:470.966840px;}
.y1d_c00415{bottom:514.146423px;}
.y1c_c00415{bottom:557.866005px;}
.y1b_c00415{bottom:586.292644px;}
.y1a_c00415{bottom:629.835077px;}
.y19_c00415{bottom:658.263065px;}
.y18_c00415{bottom:686.689704px;}
.y17_c00415{bottom:715.115593px;}
.y16_c00415{bottom:758.475925px;}
.y15_c00415{bottom:787.082564px;}
.y14_c00415{bottom:815.511302px;}
.y13_c00415{bottom:843.937941px;}
.y12_c00415{bottom:872.364580px;}
.y11_c00415{bottom:900.791218px;}
.y10_c00415{bottom:929.221307px;}
.yf_c00415{bottom:957.646596px;}
.ye_c00415{bottom:986.073234px;}
.yd_c00415{bottom:1029.614167px;}
.yc_c00415{bottom:1058.042155px;}
.yb_c00415{bottom:1086.470894px;}
.y9_c00415{bottom:1106.080386px;}
.y7_c00415{bottom:1151.494902px;}
.y6_c00415{bottom:1172.185744px;}
.y5_c00415{bottom:1192.876585px;}
.h1_c00415{height:18.172260px;}
.h7_c00415{height:38.288915px;}
.h6_c00415{height:42.440208px;}
.h2_c00415{height:46.346561px;}
.h4_c00415{height:50.378140px;}
.h8_c00415{height:59.323599px;}
.h9_c00415{height:59.389808px;}
.h5_c00415{height:1262.431829px;}
.h3_c00415{height:1262.879062px;}
.h0_c00415{height:1263.000000px;}
.w17_c00415{width:2.700000px;}
.w12_c00415{width:4.676400px;}
.wc_c00415{width:4.680000px;}
.w6_c00415{width:5.038200px;}
.w16_c00415{width:6.474600px;}
.w9_c00415{width:6.476400px;}
.wf_c00415{width:7.376400px;}
.w13_c00415{width:7.378200px;}
.w15_c00415{width:8.094600px;}
.w14_c00415{width:8.274600px;}
.w7_c00415{width:8.276400px;}
.w8_c00415{width:8.278200px;}
.we_c00415{width:9.358200px;}
.wb_c00415{width:10.076400px;}
.w10_c00415{width:11.334600px;}
.w4_c00415{width:11.874600px;}
.w2_c00415{width:12.058200px;}
.wa_c00415{width:12.414600px;}
.w5_c00415{width:15.472800px;}
.w1_c00415{width:16.552980px;}
.w3_c00415{width:23.929200px;}
.w11_c00415{width:25.911000px;}
.wd_c00415{width:28.063800px;}
.w19_c00415{width:892.099575px;}
.w18_c00415{width:892.414744px;}
.w0_c00415{width:892.500000px;}
.x0_c00415{left:0.000000px;}
.x1e_c00415{left:113.887229px;}
.x1_c00415{left:128.331540px;}
.x1c_c00415{left:253.542308px;}
.x1b_c00415{left:269.015236px;}
.x1d_c00415{left:423.021349px;}
.x2_c00415{left:496.623600px;}
.x3_c00415{left:508.681800px;}
.x4_c00415{left:532.611000px;}
.x5_c00415{left:544.485600px;}
.x6_c00415{left:559.958400px;}
.x7_c00415{left:564.636600px;}
.x8_c00415{left:576.869400px;}
.x9_c00415{left:585.147600px;}
.xa_c00415{left:590.364000px;}
.xb_c00415{left:606.555000px;}
.xc_c00415{left:616.631400px;}
.xd_c00415{left:621.309600px;}
.xe_c00415{left:625.809600px;}
.xf_c00415{left:653.873400px;}
.x10_c00415{left:661.971600px;}
.x11_c00415{left:673.126200px;}
.x12_c00415{left:684.100800px;}
.x13_c00415{left:708.931800px;}
.x14_c00415{left:713.428200px;}
.x15_c00415{left:720.806400px;}
.x16_c00415{left:725.486400px;}
.x17_c00415{left:733.761000px;}
.x18_c00415{left:741.855600px;}
.x19_c00415{left:749.233800px;}
.x1a_c00415{left:755.708400px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:-14.713194pt;}
.ws1_c00415{word-spacing:0.000000pt;}
._2_c00415{margin-left:-1.314609pt;}
._0_c00415{width:0.979567pt;}
._a_c00415{width:1.893580pt;}
._4_c00415{width:3.090078pt;}
._3_c00415{width:4.873910pt;}
._6_c00415{width:6.239986pt;}
._7_c00415{width:7.282915pt;}
._b_c00415{width:11.097213pt;}
._f_c00415{width:12.248222pt;}
._e_c00415{width:13.296998pt;}
._5_c00415{width:16.403436pt;}
._d_c00415{width:18.544136pt;}
._8_c00415{width:19.580118pt;}
._9_c00415{width:20.728853pt;}
._11_c00415{width:24.076414pt;}
._10_c00415{width:25.264789pt;}
._c_c00415{width:133.172511pt;}
._1_c00415{width:177.312822pt;}
.fs2_c00415{font-size:53.096085pt;}
.fs0_c00415{font-size:58.852776pt;}
.fs1_c00415{font-size:63.972241pt;}
.y0_c00415{bottom:0.000000pt;}
.y4_c00415{bottom:0.107500pt;}
.y8_c00415{bottom:0.494374pt;}
.y2_c00415{bottom:3.518132pt;}
.ya_c00415{bottom:58.481202pt;}
.y3_c00415{bottom:66.331840pt;}
.y1_c00415{bottom:66.651840pt;}
.y29_c00415{bottom:127.249841pt;}
.y28_c00415{bottom:152.517964pt;}
.y27_c00415{bottom:177.786088pt;}
.y26_c00415{bottom:203.054211pt;}
.y25_c00415{bottom:228.323534pt;}
.y24_c00415{bottom:253.593524pt;}
.y23_c00415{bottom:278.861647pt;}
.y22_c00415{bottom:304.128570pt;}
.y21_c00415{bottom:329.556694pt;}
.y20_c00415{bottom:368.099745pt;}
.y1f_c00415{bottom:393.367868pt;}
.y1e_c00415{bottom:418.637191pt;}
.y1d_c00415{bottom:457.019043pt;}
.y1c_c00415{bottom:495.880894pt;}
.y1b_c00415{bottom:521.149017pt;}
.y1a_c00415{bottom:559.853401pt;}
.y19_c00415{bottom:585.122725pt;}
.y18_c00415{bottom:610.390848pt;}
.y17_c00415{bottom:635.658304pt;}
.y16_c00415{bottom:674.200822pt;}
.y15_c00415{bottom:699.628946pt;}
.y14_c00415{bottom:724.898935pt;}
.y13_c00415{bottom:750.167059pt;}
.y12_c00415{bottom:775.435182pt;}
.y11_c00415{bottom:800.703305pt;}
.y10_c00415{bottom:825.974495pt;}
.yf_c00415{bottom:851.241418pt;}
.ye_c00415{bottom:876.509541pt;}
.yd_c00415{bottom:915.212593pt;}
.yc_c00415{bottom:940.481916pt;}
.yb_c00415{bottom:965.751906pt;}
.y9_c00415{bottom:983.182565pt;}
.y7_c00415{bottom:1023.551024pt;}
.y6_c00415{bottom:1041.942883pt;}
.y5_c00415{bottom:1060.334742pt;}
.h1_c00415{height:16.153120pt;}
.h7_c00415{height:34.034591pt;}
.h6_c00415{height:37.724630pt;}
.h2_c00415{height:41.196944pt;}
.h4_c00415{height:44.780569pt;}
.h8_c00415{height:52.732088pt;}
.h9_c00415{height:52.790940pt;}
.h5_c00415{height:1122.161626pt;}
.h3_c00415{height:1122.559167pt;}
.h0_c00415{height:1122.666667pt;}
.w17_c00415{width:2.400000pt;}
.w12_c00415{width:4.156800pt;}
.wc_c00415{width:4.160000pt;}
.w6_c00415{width:4.478400pt;}
.w16_c00415{width:5.755200pt;}
.w9_c00415{width:5.756800pt;}
.wf_c00415{width:6.556800pt;}
.w13_c00415{width:6.558400pt;}
.w15_c00415{width:7.195200pt;}
.w14_c00415{width:7.355200pt;}
.w7_c00415{width:7.356800pt;}
.w8_c00415{width:7.358400pt;}
.we_c00415{width:8.318400pt;}
.wb_c00415{width:8.956800pt;}
.w10_c00415{width:10.075200pt;}
.w4_c00415{width:10.555200pt;}
.w2_c00415{width:10.718400pt;}
.wa_c00415{width:11.035200pt;}
.w5_c00415{width:13.753600pt;}
.w1_c00415{width:14.713760pt;}
.w3_c00415{width:21.270400pt;}
.w11_c00415{width:23.032000pt;}
.wd_c00415{width:24.945600pt;}
.w19_c00415{width:792.977400pt;}
.w18_c00415{width:793.257550pt;}
.w0_c00415{width:793.333333pt;}
.x0_c00415{left:0.000000pt;}
.x1e_c00415{left:101.233093pt;}
.x1_c00415{left:114.072480pt;}
.x1c_c00415{left:225.370940pt;}
.x1b_c00415{left:239.124654pt;}
.x1d_c00415{left:376.018977pt;}
.x2_c00415{left:441.443200pt;}
.x3_c00415{left:452.161600pt;}
.x4_c00415{left:473.432000pt;}
.x5_c00415{left:483.987200pt;}
.x6_c00415{left:497.740800pt;}
.x7_c00415{left:501.899200pt;}
.x8_c00415{left:512.772800pt;}
.x9_c00415{left:520.131200pt;}
.xa_c00415{left:524.768000pt;}
.xb_c00415{left:539.160000pt;}
.xc_c00415{left:548.116800pt;}
.xd_c00415{left:552.275200pt;}
.xe_c00415{left:556.275200pt;}
.xf_c00415{left:581.220800pt;}
.x10_c00415{left:588.419200pt;}
.x11_c00415{left:598.334400pt;}
.x12_c00415{left:608.089600pt;}
.x13_c00415{left:630.161600pt;}
.x14_c00415{left:634.158400pt;}
.x15_c00415{left:640.716800pt;}
.x16_c00415{left:644.876800pt;}
.x17_c00415{left:652.232000pt;}
.x18_c00415{left:659.427200pt;}
.x19_c00415{left:665.985600pt;}
.x1a_c00415{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.112000;font-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_c00416{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls0_c00416{letter-spacing:0.000000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:-16.552343px;}
.ws1_c00416{word-spacing:0.000000px;}
._2_c00416{margin-left:-1.195806px;}
._0_c00416{width:1.102012px;}
._6_c00416{width:2.263908px;}
._e_c00416{width:3.381707px;}
._b_c00416{width:4.673150px;}
._8_c00416{width:6.087664px;}
._7_c00416{width:7.196318px;}
._4_c00416{width:9.259828px;}
._5_c00416{width:10.299151px;}
._a_c00416{width:11.755006px;}
._9_c00416{width:12.860250px;}
._d_c00416{width:14.358746px;}
._c_c00416{width:15.405817px;}
._1_c00416{width:149.819075px;}
._3_c00416{width:199.476925px;}
.fc1_c00416{color:rgb(105,148,45);}
.fc0_c00416{color:rgb(35,31,32);}
.fs2_c00416{font-size:59.733096px;}
.fs0_c00416{font-size:66.209374px;}
.fs1_c00416{font-size:71.968771px;}
.y0_c00416{bottom:0.000000px;}
.y4_c00416{bottom:0.120938px;}
.y8_c00416{bottom:0.556171px;}
.y2_c00416{bottom:3.957898px;}
.ya_c00416{bottom:65.791352px;}
.y3_c00416{bottom:74.623320px;}
.y1_c00416{bottom:74.983320px;}
.y28_c00416{bottom:111.489434px;}
.y27_c00416{bottom:140.094723px;}
.y26_c00416{bottom:168.521361px;}
.y25_c00416{bottom:211.523794px;}
.y24_c00416{bottom:255.424726px;}
.y23_c00416{bottom:283.851365px;}
.y22_c00416{bottom:312.278004px;}
.y21_c00416{bottom:340.708092px;}
.y20_c00416{bottom:384.066925px;}
.y1f_c00416{bottom:412.493564px;}
.y1e_c00416{bottom:441.100952px;}
.y1d_c00416{bottom:484.099785px;}
.y1c_c00416{bottom:527.820717px;}
.y1b_c00416{bottom:556.427356px;}
.y1a_c00416{bottom:584.855345px;}
.y19_c00416{bottom:613.282733px;}
.y18_c00416{bottom:656.281566px;}
.y17_c00416{bottom:700.181149px;}
.y16_c00416{bottom:728.610637px;}
.y15_c00416{bottom:757.039376px;}
.y14_c00416{bottom:800.398208px;}
.y13_c00416{bottom:828.823497px;}
.y12_c00416{bottom:857.432236px;}
.y11_c00416{bottom:900.791068px;}
.y10_c00416{bottom:929.221157px;}
.yf_c00416{bottom:957.646446px;}
.ye_c00416{bottom:986.073084px;}
.yd_c00416{bottom:1014.499723px;}
.yc_c00416{bottom:1043.108461px;}
.yb_c00416{bottom:1086.110894px;}
.y9_c00416{bottom:1106.080386px;}
.y7_c00416{bottom:1151.494902px;}
.y6_c00416{bottom:1172.185744px;}
.y5_c00416{bottom:1192.876585px;}
.h1_c00416{height:18.172260px;}
.h7_c00416{height:38.288915px;}
.h6_c00416{height:42.440208px;}
.h2_c00416{height:46.346561px;}
.h4_c00416{height:50.378140px;}
.h9_c00416{height:59.323599px;}
.h8_c00416{height:59.389808px;}
.h5_c00416{height:1262.431829px;}
.h3_c00416{height:1262.879062px;}
.h0_c00416{height:1263.000000px;}
.w17_c00416{width:2.700000px;}
.w12_c00416{width:4.676400px;}
.wc_c00416{width:4.680000px;}
.w6_c00416{width:5.038200px;}
.w16_c00416{width:6.474600px;}
.w9_c00416{width:6.476400px;}
.wf_c00416{width:7.376400px;}
.w13_c00416{width:7.378200px;}
.w15_c00416{width:8.094600px;}
.w14_c00416{width:8.274600px;}
.w7_c00416{width:8.276400px;}
.w8_c00416{width:8.278200px;}
.we_c00416{width:9.358200px;}
.wb_c00416{width:10.076400px;}
.w10_c00416{width:11.334600px;}
.w4_c00416{width:11.874600px;}
.w2_c00416{width:12.058200px;}
.wa_c00416{width:12.414600px;}
.w5_c00416{width:15.472800px;}
.w1_c00416{width:16.552980px;}
.w3_c00416{width:23.929200px;}
.w11_c00416{width:25.911000px;}
.wd_c00416{width:28.063800px;}
.w19_c00416{width:892.099575px;}
.w18_c00416{width:892.414744px;}
.w0_c00416{width:892.500000px;}
.x0_c00416{left:0.000000px;}
.x1e_c00416{left:113.887229px;}
.x1_c00416{left:128.331540px;}
.x1c_c00416{left:253.542308px;}
.x1b_c00416{left:269.015236px;}
.x1d_c00416{left:423.021349px;}
.x2_c00416{left:496.623600px;}
.x3_c00416{left:508.681800px;}
.x4_c00416{left:532.611000px;}
.x5_c00416{left:544.485600px;}
.x6_c00416{left:559.958400px;}
.x7_c00416{left:564.636600px;}
.x8_c00416{left:576.869400px;}
.x9_c00416{left:585.147600px;}
.xa_c00416{left:590.364000px;}
.xb_c00416{left:606.555000px;}
.xc_c00416{left:616.631400px;}
.xd_c00416{left:621.309600px;}
.xe_c00416{left:625.809600px;}
.xf_c00416{left:653.873400px;}
.x10_c00416{left:661.971600px;}
.x11_c00416{left:673.126200px;}
.x12_c00416{left:684.100800px;}
.x13_c00416{left:708.931800px;}
.x14_c00416{left:713.428200px;}
.x15_c00416{left:720.806400px;}
.x16_c00416{left:725.486400px;}
.x17_c00416{left:733.761000px;}
.x18_c00416{left:741.855600px;}
.x19_c00416{left:749.233800px;}
.x1a_c00416{left:755.708400px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:-14.713194pt;}
.ws1_c00416{word-spacing:0.000000pt;}
._2_c00416{margin-left:-1.062939pt;}
._0_c00416{width:0.979567pt;}
._6_c00416{width:2.012363pt;}
._e_c00416{width:3.005962pt;}
._b_c00416{width:4.153911pt;}
._8_c00416{width:5.411257pt;}
._7_c00416{width:6.396727pt;}
._4_c00416{width:8.230958pt;}
._5_c00416{width:9.154801pt;}
._a_c00416{width:10.448894pt;}
._9_c00416{width:11.431334pt;}
._d_c00416{width:12.763329pt;}
._c_c00416{width:13.694059pt;}
._1_c00416{width:133.172511pt;}
._3_c00416{width:177.312822pt;}
.fs2_c00416{font-size:53.096085pt;}
.fs0_c00416{font-size:58.852776pt;}
.fs1_c00416{font-size:63.972241pt;}
.y0_c00416{bottom:0.000000pt;}
.y4_c00416{bottom:0.107500pt;}
.y8_c00416{bottom:0.494374pt;}
.y2_c00416{bottom:3.518132pt;}
.ya_c00416{bottom:58.481202pt;}
.y3_c00416{bottom:66.331840pt;}
.y1_c00416{bottom:66.651840pt;}
.y28_c00416{bottom:99.101719pt;}
.y27_c00416{bottom:124.528642pt;}
.y26_c00416{bottom:149.796765pt;}
.y25_c00416{bottom:188.021150pt;}
.y24_c00416{bottom:227.044201pt;}
.y23_c00416{bottom:252.312324pt;}
.y22_c00416{bottom:277.580448pt;}
.y21_c00416{bottom:302.851638pt;}
.y20_c00416{bottom:341.392822pt;}
.y1f_c00416{bottom:366.660945pt;}
.y1e_c00416{bottom:392.089735pt;}
.y1d_c00416{bottom:430.310920pt;}
.y1c_c00416{bottom:469.173971pt;}
.y1b_c00416{bottom:494.602094pt;}
.y1a_c00416{bottom:519.871417pt;}
.y19_c00416{bottom:545.140207pt;}
.y18_c00416{bottom:583.361392pt;}
.y17_c00416{bottom:622.383243pt;}
.y16_c00416{bottom:647.653900pt;}
.y15_c00416{bottom:672.923890pt;}
.y14_c00416{bottom:711.465074pt;}
.y13_c00416{bottom:736.731997pt;}
.y12_c00416{bottom:762.161987pt;}
.y11_c00416{bottom:800.703172pt;}
.y10_c00416{bottom:825.974362pt;}
.yf_c00416{bottom:851.241285pt;}
.ye_c00416{bottom:876.509408pt;}
.yd_c00416{bottom:901.777531pt;}
.yc_c00416{bottom:927.207521pt;}
.yb_c00416{bottom:965.431906pt;}
.y9_c00416{bottom:983.182565pt;}
.y7_c00416{bottom:1023.551024pt;}
.y6_c00416{bottom:1041.942883pt;}
.y5_c00416{bottom:1060.334742pt;}
.h1_c00416{height:16.153120pt;}
.h7_c00416{height:34.034591pt;}
.h6_c00416{height:37.724630pt;}
.h2_c00416{height:41.196944pt;}
.h4_c00416{height:44.780569pt;}
.h9_c00416{height:52.732088pt;}
.h8_c00416{height:52.790940pt;}
.h5_c00416{height:1122.161626pt;}
.h3_c00416{height:1122.559167pt;}
.h0_c00416{height:1122.666667pt;}
.w17_c00416{width:2.400000pt;}
.w12_c00416{width:4.156800pt;}
.wc_c00416{width:4.160000pt;}
.w6_c00416{width:4.478400pt;}
.w16_c00416{width:5.755200pt;}
.w9_c00416{width:5.756800pt;}
.wf_c00416{width:6.556800pt;}
.w13_c00416{width:6.558400pt;}
.w15_c00416{width:7.195200pt;}
.w14_c00416{width:7.355200pt;}
.w7_c00416{width:7.356800pt;}
.w8_c00416{width:7.358400pt;}
.we_c00416{width:8.318400pt;}
.wb_c00416{width:8.956800pt;}
.w10_c00416{width:10.075200pt;}
.w4_c00416{width:10.555200pt;}
.w2_c00416{width:10.718400pt;}
.wa_c00416{width:11.035200pt;}
.w5_c00416{width:13.753600pt;}
.w1_c00416{width:14.713760pt;}
.w3_c00416{width:21.270400pt;}
.w11_c00416{width:23.032000pt;}
.wd_c00416{width:24.945600pt;}
.w19_c00416{width:792.977400pt;}
.w18_c00416{width:793.257550pt;}
.w0_c00416{width:793.333333pt;}
.x0_c00416{left:0.000000pt;}
.x1e_c00416{left:101.233093pt;}
.x1_c00416{left:114.072480pt;}
.x1c_c00416{left:225.370940pt;}
.x1b_c00416{left:239.124654pt;}
.x1d_c00416{left:376.018977pt;}
.x2_c00416{left:441.443200pt;}
.x3_c00416{left:452.161600pt;}
.x4_c00416{left:473.432000pt;}
.x5_c00416{left:483.987200pt;}
.x6_c00416{left:497.740800pt;}
.x7_c00416{left:501.899200pt;}
.x8_c00416{left:512.772800pt;}
.x9_c00416{left:520.131200pt;}
.xa_c00416{left:524.768000pt;}
.xb_c00416{left:539.160000pt;}
.xc_c00416{left:548.116800pt;}
.xd_c00416{left:552.275200pt;}
.xe_c00416{left:556.275200pt;}
.xf_c00416{left:581.220800pt;}
.x10_c00416{left:588.419200pt;}
.x11_c00416{left:598.334400pt;}
.x12_c00416{left:608.089600pt;}
.x13_c00416{left:630.161600pt;}
.x14_c00416{left:634.158400pt;}
.x15_c00416{left:640.716800pt;}
.x16_c00416{left:644.876800pt;}
.x17_c00416{left:652.232000pt;}
.x18_c00416{left:659.427200pt;}
.x19_c00416{left:665.985600pt;}
.x1a_c00416{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.112000;font-style:normal;font-weight:normal;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_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:0.360019;font-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_c00417{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls1_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:0.165983px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:-16.552343px;}
.ws1_c00417{word-spacing:0.000000px;}
._3_c00417{margin-left:-1.181626px;}
._0_c00417{width:1.102012px;}
._5_c00417{width:2.276028px;}
._9_c00417{width:4.005445px;}
._8_c00417{width:5.082557px;}
._c_c00417{width:6.434304px;}
._6_c00417{width:8.815679px;}
._a_c00417{width:11.333901px;}
._b_c00417{width:12.825882px;}
._d_c00417{width:21.320407px;}
._2_c00417{width:26.095802px;}
._4_c00417{width:27.234767px;}
._7_c00417{width:58.358963px;}
._1_c00417{width:199.476925px;}
.fc1_c00417{color:rgb(105,148,45);}
.fc0_c00417{color:rgb(35,31,32);}
.fs3_c00417{font-size:48.218261px;}
.fs2_c00417{font-size:59.733096px;}
.fs0_c00417{font-size:66.209374px;}
.fs1_c00417{font-size:71.968771px;}
.y0_c00417{bottom:0.000000px;}
.y4_c00417{bottom:0.120938px;}
.y8_c00417{bottom:0.556171px;}
.y2_c00417{bottom:3.957898px;}
.ya_c00417{bottom:65.791352px;}
.y3_c00417{bottom:74.623320px;}
.y1_c00417{bottom:74.983320px;}
.y28_c00417{bottom:124.626279px;}
.y27_c00417{bottom:153.051567px;}
.y26_c00417{bottom:181.481056px;}
.y25_c00417{bottom:230.958536px;}
.y24_c00417{bottom:259.386525px;}
.y23_c00417{bottom:287.813913px;}
.y22_c00417{bottom:316.240552px;}
.y21_c00417{bottom:344.667191px;}
.y20_c00417{bottom:372.732329px;}
.y1f_c00417{bottom:422.751159px;}
.y1e_c00417{bottom:450.997648px;}
.y1d_c00417{bottom:479.424137px;}
.y1c_c00417{bottom:507.850625px;}
.y1b_c00417{bottom:557.508856px;}
.y1a_c00417{bottom:606.987686px;}
.y19_c00417{bottom:635.235674px;}
.y18_c00417{bottom:663.662313px;}
.y17_c00417{bottom:692.091052px;}
.y16_c00417{bottom:720.157541px;}
.y15_c00417{bottom:755.961026px;}
.y14_c00417{bottom:775.210518px;}
.y13_c00417{bottom:813.531153px;}
.y12_c00417{bottom:857.432086px;}
.y11_c00417{bottom:885.861574px;}
.y10_c00417{bottom:914.286863px;}
.yf_c00417{bottom:942.713501px;}
.ye_c00417{bottom:971.140890px;}
.yd_c00417{bottom:1014.499723px;}
.yc_c00417{bottom:1043.108461px;}
.yb_c00417{bottom:1086.110894px;}
.y9_c00417{bottom:1106.080386px;}
.y7_c00417{bottom:1151.494902px;}
.y6_c00417{bottom:1172.185744px;}
.y5_c00417{bottom:1192.876585px;}
.h1_c00417{height:18.172260px;}
.hc_c00417{height:28.253754px;}
.hb_c00417{height:30.907905px;}
.h7_c00417{height:38.288915px;}
.h6_c00417{height:42.440208px;}
.h2_c00417{height:46.346561px;}
.h4_c00417{height:50.378140px;}
.ha_c00417{height:53.580587px;}
.h9_c00417{height:59.323599px;}
.h8_c00417{height:59.389808px;}
.h5_c00417{height:1262.431829px;}
.h3_c00417{height:1262.879062px;}
.h0_c00417{height:1263.000000px;}
.w17_c00417{width:2.700000px;}
.w12_c00417{width:4.676400px;}
.wc_c00417{width:4.680000px;}
.w6_c00417{width:5.038200px;}
.w16_c00417{width:6.474600px;}
.w9_c00417{width:6.476400px;}
.wf_c00417{width:7.376400px;}
.w13_c00417{width:7.378200px;}
.w15_c00417{width:8.094600px;}
.w14_c00417{width:8.274600px;}
.w7_c00417{width:8.276400px;}
.w8_c00417{width:8.278200px;}
.we_c00417{width:9.358200px;}
.wb_c00417{width:10.076400px;}
.w10_c00417{width:11.334600px;}
.w4_c00417{width:11.874600px;}
.w2_c00417{width:12.058200px;}
.wa_c00417{width:12.414600px;}
.w5_c00417{width:15.472800px;}
.w1_c00417{width:16.552980px;}
.w3_c00417{width:23.929200px;}
.w11_c00417{width:25.911000px;}
.wd_c00417{width:28.063800px;}
.w19_c00417{width:892.099575px;}
.w18_c00417{width:892.414744px;}
.w0_c00417{width:892.500000px;}
.x0_c00417{left:0.000000px;}
.x1e_c00417{left:113.887229px;}
.x1_c00417{left:128.331540px;}
.x20_c00417{left:140.874619px;}
.x22_c00417{left:141.955260px;}
.x21_c00417{left:181.357802px;}
.x23_c00417{left:207.265792px;}
.x24_c00417{left:221.838286px;}
.x1c_c00417{left:253.542308px;}
.x1b_c00417{left:269.015236px;}
.x1f_c00417{left:315.035290px;}
.x1d_c00417{left:423.021349px;}
.x2_c00417{left:496.623600px;}
.x3_c00417{left:508.681800px;}
.x4_c00417{left:532.611000px;}
.x5_c00417{left:544.485600px;}
.x6_c00417{left:559.958400px;}
.x7_c00417{left:564.636600px;}
.x8_c00417{left:576.869400px;}
.x9_c00417{left:585.147600px;}
.xa_c00417{left:590.364000px;}
.xb_c00417{left:606.555000px;}
.xc_c00417{left:616.631400px;}
.xd_c00417{left:621.309600px;}
.xe_c00417{left:625.809600px;}
.xf_c00417{left:653.873400px;}
.x10_c00417{left:661.971600px;}
.x11_c00417{left:673.126200px;}
.x12_c00417{left:684.100800px;}
.x13_c00417{left:708.931800px;}
.x14_c00417{left:713.428200px;}
.x15_c00417{left:720.806400px;}
.x16_c00417{left:725.486400px;}
.x17_c00417{left:733.761000px;}
.x18_c00417{left:741.855600px;}
.x19_c00417{left:749.233800px;}
.x1a_c00417{left:755.708400px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls1_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:0.147541pt;}
.ws0_c00417{word-spacing:-14.713194pt;}
.ws1_c00417{word-spacing:0.000000pt;}
._3_c00417{margin-left:-1.050334pt;}
._0_c00417{width:0.979567pt;}
._5_c00417{width:2.023136pt;}
._9_c00417{width:3.560395pt;}
._8_c00417{width:4.517829pt;}
._c_c00417{width:5.719382pt;}
._6_c00417{width:7.836159pt;}
._a_c00417{width:10.074579pt;}
._b_c00417{width:11.400784pt;}
._d_c00417{width:18.951472pt;}
._2_c00417{width:23.196269pt;}
._4_c00417{width:24.208682pt;}
._7_c00417{width:51.874633pt;}
._1_c00417{width:177.312822pt;}
.fs3_c00417{font-size:42.860676pt;}
.fs2_c00417{font-size:53.096085pt;}
.fs0_c00417{font-size:58.852776pt;}
.fs1_c00417{font-size:63.972241pt;}
.y0_c00417{bottom:0.000000pt;}
.y4_c00417{bottom:0.107500pt;}
.y8_c00417{bottom:0.494374pt;}
.y2_c00417{bottom:3.518132pt;}
.ya_c00417{bottom:58.481202pt;}
.y3_c00417{bottom:66.331840pt;}
.y1_c00417{bottom:66.651840pt;}
.y28_c00417{bottom:110.778914pt;}
.y27_c00417{bottom:136.045838pt;}
.y26_c00417{bottom:161.316494pt;}
.y25_c00417{bottom:205.296477pt;}
.y24_c00417{bottom:230.565800pt;}
.y23_c00417{bottom:255.834590pt;}
.y22_c00417{bottom:281.102713pt;}
.y21_c00417{bottom:306.370836pt;}
.y20_c00417{bottom:331.317626pt;}
.y1f_c00417{bottom:375.778808pt;}
.y1e_c00417{bottom:400.886798pt;}
.y1d_c00417{bottom:426.154788pt;}
.y1c_c00417{bottom:451.422778pt;}
.y1b_c00417{bottom:495.563427pt;}
.y1a_c00417{bottom:539.544610pt;}
.y19_c00417{bottom:564.653933pt;}
.y18_c00417{bottom:589.922056pt;}
.y17_c00417{bottom:615.192046pt;}
.y16_c00417{bottom:640.140036pt;}
.y15_c00417{bottom:671.965357pt;}
.y14_c00417{bottom:689.076016pt;}
.y13_c00417{bottom:723.138803pt;}
.y12_c00417{bottom:762.161854pt;}
.y11_c00417{bottom:787.432510pt;}
.y10_c00417{bottom:812.699434pt;}
.yf_c00417{bottom:837.967557pt;}
.ye_c00417{bottom:863.236347pt;}
.yd_c00417{bottom:901.777531pt;}
.yc_c00417{bottom:927.207521pt;}
.yb_c00417{bottom:965.431906pt;}
.y9_c00417{bottom:983.182565pt;}
.y7_c00417{bottom:1023.551024pt;}
.y6_c00417{bottom:1041.942883pt;}
.y5_c00417{bottom:1060.334742pt;}
.h1_c00417{height:16.153120pt;}
.hc_c00417{height:25.114448pt;}
.hb_c00417{height:27.473693pt;}
.h7_c00417{height:34.034591pt;}
.h6_c00417{height:37.724630pt;}
.h2_c00417{height:41.196944pt;}
.h4_c00417{height:44.780569pt;}
.ha_c00417{height:47.627189pt;}
.h9_c00417{height:52.732088pt;}
.h8_c00417{height:52.790940pt;}
.h5_c00417{height:1122.161626pt;}
.h3_c00417{height:1122.559167pt;}
.h0_c00417{height:1122.666667pt;}
.w17_c00417{width:2.400000pt;}
.w12_c00417{width:4.156800pt;}
.wc_c00417{width:4.160000pt;}
.w6_c00417{width:4.478400pt;}
.w16_c00417{width:5.755200pt;}
.w9_c00417{width:5.756800pt;}
.wf_c00417{width:6.556800pt;}
.w13_c00417{width:6.558400pt;}
.w15_c00417{width:7.195200pt;}
.w14_c00417{width:7.355200pt;}
.w7_c00417{width:7.356800pt;}
.w8_c00417{width:7.358400pt;}
.we_c00417{width:8.318400pt;}
.wb_c00417{width:8.956800pt;}
.w10_c00417{width:10.075200pt;}
.w4_c00417{width:10.555200pt;}
.w2_c00417{width:10.718400pt;}
.wa_c00417{width:11.035200pt;}
.w5_c00417{width:13.753600pt;}
.w1_c00417{width:14.713760pt;}
.w3_c00417{width:21.270400pt;}
.w11_c00417{width:23.032000pt;}
.wd_c00417{width:24.945600pt;}
.w19_c00417{width:792.977400pt;}
.w18_c00417{width:793.257550pt;}
.w0_c00417{width:793.333333pt;}
.x0_c00417{left:0.000000pt;}
.x1e_c00417{left:101.233093pt;}
.x1_c00417{left:114.072480pt;}
.x20_c00417{left:125.221883pt;}
.x22_c00417{left:126.182453pt;}
.x21_c00417{left:161.206935pt;}
.x23_c00417{left:184.236260pt;}
.x24_c00417{left:197.189588pt;}
.x1c_c00417{left:225.370940pt;}
.x1b_c00417{left:239.124654pt;}
.x1f_c00417{left:280.031369pt;}
.x1d_c00417{left:376.018977pt;}
.x2_c00417{left:441.443200pt;}
.x3_c00417{left:452.161600pt;}
.x4_c00417{left:473.432000pt;}
.x5_c00417{left:483.987200pt;}
.x6_c00417{left:497.740800pt;}
.x7_c00417{left:501.899200pt;}
.x8_c00417{left:512.772800pt;}
.x9_c00417{left:520.131200pt;}
.xa_c00417{left:524.768000pt;}
.xb_c00417{left:539.160000pt;}
.xc_c00417{left:548.116800pt;}
.xd_c00417{left:552.275200pt;}
.xe_c00417{left:556.275200pt;}
.xf_c00417{left:581.220800pt;}
.x10_c00417{left:588.419200pt;}
.x11_c00417{left:598.334400pt;}
.x12_c00417{left:608.089600pt;}
.x13_c00417{left:630.161600pt;}
.x14_c00417{left:634.158400pt;}
.x15_c00417{left:640.716800pt;}
.x16_c00417{left:644.876800pt;}
.x17_c00417{left:652.232000pt;}
.x18_c00417{left:659.427200pt;}
.x19_c00417{left:665.985600pt;}
.x1a_c00417{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.112000;font-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_c00418{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls1_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:0.582456px;}
.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;}
}
.ws0_c00418{word-spacing:-16.552343px;}
.ws1_c00418{word-spacing:0.000000px;}
._2_c00418{margin-left:-1.487551px;}
._0_c00418{width:1.102012px;}
._6_c00418{width:3.073775px;}
._7_c00418{width:4.090124px;}
._9_c00418{width:5.702878px;}
._3_c00418{width:7.161347px;}
._4_c00418{width:9.173865px;}
._5_c00418{width:10.354450px;}
._8_c00418{width:12.299796px;}
._c_c00418{width:13.509693px;}
._11_c00418{width:15.264859px;}
._e_c00418{width:18.321934px;}
._d_c00418{width:19.416948px;}
._b_c00418{width:22.780283px;}
._a_c00418{width:24.224259px;}
._10_c00418{width:29.618095px;}
._f_c00418{width:31.441237px;}
._1_c00418{width:58.358875px;}
.fc1_c00418{color:rgb(105,148,45);}
.fc0_c00418{color:rgb(35,31,32);}
.fs2_c00418{font-size:59.733096px;}
.fs0_c00418{font-size:66.209374px;}
.fs1_c00418{font-size:71.968771px;}
.y0_c00418{bottom:0.000000px;}
.y4_c00418{bottom:0.120938px;}
.y8_c00418{bottom:0.556171px;}
.y2_c00418{bottom:3.957898px;}
.ya_c00418{bottom:65.791352px;}
.y3_c00418{bottom:74.623320px;}
.y1_c00418{bottom:74.983320px;}
.y29_c00418{bottom:107.348836px;}
.y28_c00418{bottom:135.597574px;}
.y27_c00418{bottom:164.025563px;}
.y26_c00418{bottom:192.450852px;}
.y25_c00418{bottom:220.877490px;}
.y24_c00418{bottom:270.536320px;}
.y23_c00418{bottom:298.782959px;}
.y22_c00418{bottom:348.440439px;}
.y21_c00418{bottom:376.687078px;}
.y20_c00418{bottom:405.115067px;}
.y1f_c00418{bottom:433.545155px;}
.y1e_c00418{bottom:483.197685px;}
.y1d_c00418{bottom:511.447774px;}
.y1c_c00418{bottom:539.875763px;}
.y1b_c00418{bottom:568.301051px;}
.y1a_c00418{bottom:596.727690px;}
.y19_c00418{bottom:646.386520px;}
.y18_c00418{bottom:674.633159px;}
.y17_c00418{bottom:703.058447px;}
.y16_c00418{bottom:752.717277px;}
.y15_c00418{bottom:780.963916px;}
.y14_c00418{bottom:809.392655px;}
.y13_c00418{bottom:837.820643px;}
.y12_c00418{bottom:866.427282px;}
.y11_c00418{bottom:894.853921px;}
.y10_c00418{bottom:923.281309px;}
.yf_c00418{bottom:951.709298px;}
.ye_c00418{bottom:1001.365428px;}
.yd_c00418{bottom:1029.613417px;}
.yc_c00418{bottom:1058.042905px;}
.yb_c00418{bottom:1086.110894px;}
.y9_c00418{bottom:1106.080386px;}
.y7_c00418{bottom:1151.494902px;}
.y6_c00418{bottom:1172.185744px;}
.y5_c00418{bottom:1192.876585px;}
.h1_c00418{height:18.172260px;}
.h7_c00418{height:38.288915px;}
.h6_c00418{height:42.440208px;}
.h2_c00418{height:46.346561px;}
.h4_c00418{height:50.378140px;}
.h9_c00418{height:59.323599px;}
.h8_c00418{height:59.389808px;}
.h5_c00418{height:1262.431829px;}
.h3_c00418{height:1262.879062px;}
.h0_c00418{height:1263.000000px;}
.w17_c00418{width:2.700000px;}
.w12_c00418{width:4.676400px;}
.wc_c00418{width:4.680000px;}
.w6_c00418{width:5.038200px;}
.w16_c00418{width:6.474600px;}
.w9_c00418{width:6.476400px;}
.wf_c00418{width:7.376400px;}
.w13_c00418{width:7.378200px;}
.w15_c00418{width:8.094600px;}
.w14_c00418{width:8.274600px;}
.w7_c00418{width:8.276400px;}
.w8_c00418{width:8.278200px;}
.we_c00418{width:9.358200px;}
.wb_c00418{width:10.076400px;}
.w10_c00418{width:11.334600px;}
.w4_c00418{width:11.874600px;}
.w2_c00418{width:12.058200px;}
.wa_c00418{width:12.414600px;}
.w5_c00418{width:15.472800px;}
.w1_c00418{width:16.912980px;}
.w3_c00418{width:23.929200px;}
.w11_c00418{width:25.911000px;}
.wd_c00418{width:28.063800px;}
.w19_c00418{width:892.099575px;}
.w18_c00418{width:892.414744px;}
.w0_c00418{width:892.500000px;}
.x0_c00418{left:0.000000px;}
.x1e_c00418{left:113.887229px;}
.x1_c00418{left:128.331540px;}
.x21_c00418{left:141.954840px;}
.x20_c00418{left:181.357802px;}
.x1f_c00418{left:194.851797px;}
.x1c_c00418{left:253.542308px;}
.x1b_c00418{left:269.015236px;}
.x1d_c00418{left:423.021349px;}
.x2_c00418{left:496.623600px;}
.x3_c00418{left:508.681800px;}
.x4_c00418{left:532.611000px;}
.x5_c00418{left:544.485600px;}
.x6_c00418{left:559.958400px;}
.x7_c00418{left:564.636600px;}
.x8_c00418{left:576.869400px;}
.x9_c00418{left:585.147600px;}
.xa_c00418{left:590.364000px;}
.xb_c00418{left:606.555000px;}
.xc_c00418{left:616.631400px;}
.xd_c00418{left:621.309600px;}
.xe_c00418{left:625.809600px;}
.xf_c00418{left:653.873400px;}
.x10_c00418{left:661.971600px;}
.x11_c00418{left:673.126200px;}
.x12_c00418{left:684.100800px;}
.x13_c00418{left:708.931800px;}
.x14_c00418{left:713.428200px;}
.x15_c00418{left:720.806400px;}
.x16_c00418{left:725.486400px;}
.x17_c00418{left:733.761000px;}
.x18_c00418{left:741.855600px;}
.x19_c00418{left:749.233800px;}
.x1a_c00418{left:755.708400px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls1_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:0.517739pt;}
.ws0_c00418{word-spacing:-14.713194pt;}
.ws1_c00418{word-spacing:0.000000pt;}
._2_c00418{margin-left:-1.322268pt;}
._0_c00418{width:0.979567pt;}
._6_c00418{width:2.732244pt;}
._7_c00418{width:3.635666pt;}
._9_c00418{width:5.069225pt;}
._3_c00418{width:6.365642pt;}
._4_c00418{width:8.154547pt;}
._5_c00418{width:9.203956pt;}
._8_c00418{width:10.933152pt;}
._c_c00418{width:12.008616pt;}
._11_c00418{width:13.568763pt;}
._e_c00418{width:16.286164pt;}
._d_c00418{width:17.259510pt;}
._b_c00418{width:20.249140pt;}
._a_c00418{width:21.532675pt;}
._10_c00418{width:26.327195pt;}
._f_c00418{width:27.947766pt;}
._1_c00418{width:51.874556pt;}
.fs2_c00418{font-size:53.096085pt;}
.fs0_c00418{font-size:58.852776pt;}
.fs1_c00418{font-size:63.972241pt;}
.y0_c00418{bottom:0.000000pt;}
.y4_c00418{bottom:0.107500pt;}
.y8_c00418{bottom:0.494374pt;}
.y2_c00418{bottom:3.518132pt;}
.ya_c00418{bottom:58.481202pt;}
.y3_c00418{bottom:66.331840pt;}
.y1_c00418{bottom:66.651840pt;}
.y29_c00418{bottom:95.421187pt;}
.y28_c00418{bottom:120.531177pt;}
.y27_c00418{bottom:145.800500pt;}
.y26_c00418{bottom:171.067424pt;}
.y25_c00418{bottom:196.335547pt;}
.y24_c00418{bottom:240.476729pt;}
.y23_c00418{bottom:265.584853pt;}
.y22_c00418{bottom:309.724835pt;}
.y21_c00418{bottom:334.832958pt;}
.y20_c00418{bottom:360.102281pt;}
.y1f_c00418{bottom:385.373471pt;}
.y1e_c00418{bottom:429.509054pt;}
.y1d_c00418{bottom:454.620244pt;}
.y1c_c00418{bottom:479.889567pt;}
.y1b_c00418{bottom:505.156490pt;}
.y1a_c00418{bottom:530.424613pt;}
.y19_c00418{bottom:574.565796pt;}
.y18_c00418{bottom:599.673919pt;}
.y17_c00418{bottom:624.940842pt;}
.y16_c00418{bottom:669.082024pt;}
.y15_c00418{bottom:694.190148pt;}
.y14_c00418{bottom:719.460138pt;}
.y13_c00418{bottom:744.729461pt;}
.y12_c00418{bottom:770.157584pt;}
.y11_c00418{bottom:795.425707pt;}
.y10_c00418{bottom:820.694497pt;}
.yf_c00418{bottom:845.963820pt;}
.ye_c00418{bottom:890.102603pt;}
.yd_c00418{bottom:915.211926pt;}
.yc_c00418{bottom:940.482583pt;}
.yb_c00418{bottom:965.431906pt;}
.y9_c00418{bottom:983.182565pt;}
.y7_c00418{bottom:1023.551024pt;}
.y6_c00418{bottom:1041.942883pt;}
.y5_c00418{bottom:1060.334742pt;}
.h1_c00418{height:16.153120pt;}
.h7_c00418{height:34.034591pt;}
.h6_c00418{height:37.724630pt;}
.h2_c00418{height:41.196944pt;}
.h4_c00418{height:44.780569pt;}
.h9_c00418{height:52.732088pt;}
.h8_c00418{height:52.790940pt;}
.h5_c00418{height:1122.161626pt;}
.h3_c00418{height:1122.559167pt;}
.h0_c00418{height:1122.666667pt;}
.w17_c00418{width:2.400000pt;}
.w12_c00418{width:4.156800pt;}
.wc_c00418{width:4.160000pt;}
.w6_c00418{width:4.478400pt;}
.w16_c00418{width:5.755200pt;}
.w9_c00418{width:5.756800pt;}
.wf_c00418{width:6.556800pt;}
.w13_c00418{width:6.558400pt;}
.w15_c00418{width:7.195200pt;}
.w14_c00418{width:7.355200pt;}
.w7_c00418{width:7.356800pt;}
.w8_c00418{width:7.358400pt;}
.we_c00418{width:8.318400pt;}
.wb_c00418{width:8.956800pt;}
.w10_c00418{width:10.075200pt;}
.w4_c00418{width:10.555200pt;}
.w2_c00418{width:10.718400pt;}
.wa_c00418{width:11.035200pt;}
.w5_c00418{width:13.753600pt;}
.w1_c00418{width:15.033760pt;}
.w3_c00418{width:21.270400pt;}
.w11_c00418{width:23.032000pt;}
.wd_c00418{width:24.945600pt;}
.w19_c00418{width:792.977400pt;}
.w18_c00418{width:793.257550pt;}
.w0_c00418{width:793.333333pt;}
.x0_c00418{left:0.000000pt;}
.x1e_c00418{left:101.233093pt;}
.x1_c00418{left:114.072480pt;}
.x21_c00418{left:126.182080pt;}
.x20_c00418{left:161.206935pt;}
.x1f_c00418{left:173.201597pt;}
.x1c_c00418{left:225.370940pt;}
.x1b_c00418{left:239.124654pt;}
.x1d_c00418{left:376.018977pt;}
.x2_c00418{left:441.443200pt;}
.x3_c00418{left:452.161600pt;}
.x4_c00418{left:473.432000pt;}
.x5_c00418{left:483.987200pt;}
.x6_c00418{left:497.740800pt;}
.x7_c00418{left:501.899200pt;}
.x8_c00418{left:512.772800pt;}
.x9_c00418{left:520.131200pt;}
.xa_c00418{left:524.768000pt;}
.xb_c00418{left:539.160000pt;}
.xc_c00418{left:548.116800pt;}
.xd_c00418{left:552.275200pt;}
.xe_c00418{left:556.275200pt;}
.xf_c00418{left:581.220800pt;}
.x10_c00418{left:588.419200pt;}
.x11_c00418{left:598.334400pt;}
.x12_c00418{left:608.089600pt;}
.x13_c00418{left:630.161600pt;}
.x14_c00418{left:634.158400pt;}
.x15_c00418{left:640.716800pt;}
.x16_c00418{left:644.876800pt;}
.x17_c00418{left:652.232000pt;}
.x18_c00418{left:659.427200pt;}
.x19_c00418{left:665.985600pt;}
.x1a_c00418{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.113000;font-style:normal;font-weight:normal;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_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.112000;font-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_c00419{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.v1_c00419{vertical-align:56.861977px;}
.ls0_c00419{letter-spacing:0.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:-16.552343px;}
.ws1_c00419{word-spacing:0.000000px;}
._2_c00419{margin-left:-1.185469px;}
._0_c00419{width:1.102012px;}
._a_c00419{width:2.857657px;}
._3_c00419{width:3.963058px;}
._4_c00419{width:4.979403px;}
._b_c00419{width:7.354452px;}
._9_c00419{width:8.440483px;}
._8_c00419{width:9.444074px;}
._10_c00419{width:10.568933px;}
._11_c00419{width:11.806977px;}
._f_c00419{width:12.871266px;}
._12_c00419{width:14.820504px;}
._7_c00419{width:21.691719px;}
._6_c00419{width:23.003197px;}
._1_c00419{width:54.651097px;}
._5_c00419{width:62.066152px;}
._c_c00419{width:184.293622px;}
._d_c00419{width:185.537834px;}
._e_c00419{width:311.561653px;}
.fc1_c00419{color:rgb(105,148,45);}
.fc0_c00419{color:rgb(35,31,32);}
.fs3_c00419{font-size:41.741203px;}
.fs2_c00419{font-size:59.733096px;}
.fs0_c00419{font-size:66.209374px;}
.fs1_c00419{font-size:71.968771px;}
.y0_c00419{bottom:0.000000px;}
.y4_c00419{bottom:0.120938px;}
.y8_c00419{bottom:0.556171px;}
.y2_c00419{bottom:3.957898px;}
.ya_c00419{bottom:65.791352px;}
.y3_c00419{bottom:74.623320px;}
.y1_c00419{bottom:74.983320px;}
.y29_c00419{bottom:98.713789px;}
.y28_c00419{bottom:127.140428px;}
.y27_c00419{bottom:155.565716px;}
.y26_c00419{bottom:205.224546px;}
.y25_c00419{bottom:233.474035px;}
.y24_c00419{bottom:261.901424px;}
.y23_c00419{bottom:290.328062px;}
.y22_c00419{bottom:318.754701px;}
.y21_c00419{bottom:346.822690px;}
.y20_c00419{bottom:396.841520px;}
.y1f_c00419{bottom:425.088159px;}
.y1e_c00419{bottom:472.947139px;}
.y1c_c00419{bottom:522.321354px;}
.y1d_c00419{bottom:536.095614px;}
.y1b_c00419{bottom:536.530848px;}
.y1a_c00419{bottom:604.467237px;}
.y19_c00419{bottom:653.946067px;}
.y18_c00419{bottom:682.192706px;}
.y17_c00419{bottom:710.619344px;}
.y16_c00419{bottom:739.046733px;}
.y15_c00419{bottom:767.476222px;}
.y14_c00419{bottom:817.133702px;}
.y13_c00419{bottom:845.380340px;}
.y12_c00419{bottom:895.036471px;}
.y11_c00419{bottom:923.285959px;}
.y10_c00419{bottom:951.350798px;}
.yf_c00419{bottom:1001.365428px;}
.ye_c00419{bottom:1029.613417px;}
.yd_c00419{bottom:1055.704406px;}
.yc_c00419{bottom:1058.042905px;}
.yb_c00419{bottom:1086.110894px;}
.y9_c00419{bottom:1106.080386px;}
.y7_c00419{bottom:1151.494902px;}
.y6_c00419{bottom:1172.185744px;}
.y5_c00419{bottom:1192.876585px;}
.h1_c00419{height:18.172260px;}
.h9_c00419{height:37.400118px;}
.h7_c00419{height:38.288915px;}
.h6_c00419{height:42.440208px;}
.h2_c00419{height:46.346561px;}
.h4_c00419{height:50.378140px;}
.ha_c00419{height:59.323599px;}
.h8_c00419{height:59.389808px;}
.hb_c00419{height:116.185576px;}
.h5_c00419{height:1262.431829px;}
.h3_c00419{height:1262.879062px;}
.h0_c00419{height:1263.000000px;}
.w17_c00419{width:2.700000px;}
.w12_c00419{width:4.676400px;}
.wc_c00419{width:4.680000px;}
.w6_c00419{width:5.038200px;}
.w16_c00419{width:6.474600px;}
.w9_c00419{width:6.476400px;}
.wf_c00419{width:7.376400px;}
.w13_c00419{width:7.378200px;}
.w15_c00419{width:8.094600px;}
.w14_c00419{width:8.274600px;}
.w7_c00419{width:8.276400px;}
.w8_c00419{width:8.278200px;}
.we_c00419{width:9.358200px;}
.wb_c00419{width:10.076400px;}
.w10_c00419{width:11.334600px;}
.w4_c00419{width:11.874600px;}
.w2_c00419{width:12.058200px;}
.wa_c00419{width:12.414600px;}
.w5_c00419{width:15.472800px;}
.w1_c00419{width:16.912980px;}
.w3_c00419{width:23.929200px;}
.w11_c00419{width:25.911000px;}
.wd_c00419{width:28.063800px;}
.w19_c00419{width:892.099575px;}
.w18_c00419{width:892.414744px;}
.w0_c00419{width:892.500000px;}
.x0_c00419{left:0.000000px;}
.x1e_c00419{left:113.887229px;}
.x1_c00419{left:128.331540px;}
.x22_c00419{left:141.953703px;}
.x23_c00419{left:168.045308px;}
.x20_c00419{left:181.357802px;}
.x1f_c00419{left:194.851797px;}
.x1c_c00419{left:253.542308px;}
.x1b_c00419{left:269.015236px;}
.x24_c00419{left:275.495234px;}
.x27_c00419{left:277.612764px;}
.x25_c00419{left:341.522207px;}
.x1d_c00419{left:423.021349px;}
.x26_c00419{left:480.919683px;}
.x2_c00419{left:496.623600px;}
.x3_c00419{left:508.681800px;}
.x4_c00419{left:532.611000px;}
.x5_c00419{left:544.485600px;}
.x6_c00419{left:559.958400px;}
.x7_c00419{left:564.636600px;}
.x8_c00419{left:576.869400px;}
.x9_c00419{left:585.147600px;}
.xa_c00419{left:590.364000px;}
.xb_c00419{left:606.555000px;}
.xc_c00419{left:616.631400px;}
.xd_c00419{left:621.309600px;}
.xe_c00419{left:625.809600px;}
.xf_c00419{left:653.873400px;}
.x10_c00419{left:661.971600px;}
.x11_c00419{left:673.126200px;}
.x21_c00419{left:677.394104px;}
.x12_c00419{left:684.100800px;}
.x13_c00419{left:708.931800px;}
.x14_c00419{left:713.428200px;}
.x15_c00419{left:720.806400px;}
.x16_c00419{left:725.486400px;}
.x17_c00419{left:733.761000px;}
.x18_c00419{left:741.855600px;}
.x19_c00419{left:749.233800px;}
.x1a_c00419{left:755.708400px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:50.543980pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws0_c00419{word-spacing:-14.713194pt;}
.ws1_c00419{word-spacing:0.000000pt;}
._2_c00419{margin-left:-1.053750pt;}
._0_c00419{width:0.979567pt;}
._a_c00419{width:2.540139pt;}
._3_c00419{width:3.522719pt;}
._4_c00419{width:4.426136pt;}
._b_c00419{width:6.537290pt;}
._9_c00419{width:7.502652pt;}
._8_c00419{width:8.394733pt;}
._10_c00419{width:9.394607pt;}
._11_c00419{width:10.495091pt;}
._f_c00419{width:11.441125pt;}
._12_c00419{width:13.173782pt;}
._7_c00419{width:19.281528pt;}
._6_c00419{width:20.447287pt;}
._1_c00419{width:48.578753pt;}
._5_c00419{width:55.169913pt;}
._c_c00419{width:163.816553pt;}
._d_c00419{width:164.922519pt;}
._e_c00419{width:276.943691pt;}
.fs3_c00419{font-size:37.103292pt;}
.fs2_c00419{font-size:53.096085pt;}
.fs0_c00419{font-size:58.852776pt;}
.fs1_c00419{font-size:63.972241pt;}
.y0_c00419{bottom:0.000000pt;}
.y4_c00419{bottom:0.107500pt;}
.y8_c00419{bottom:0.494374pt;}
.y2_c00419{bottom:3.518132pt;}
.ya_c00419{bottom:58.481202pt;}
.y3_c00419{bottom:66.331840pt;}
.y1_c00419{bottom:66.651840pt;}
.y29_c00419{bottom:87.745590pt;}
.y28_c00419{bottom:113.013714pt;}
.y27_c00419{bottom:138.280637pt;}
.y26_c00419{bottom:182.421819pt;}
.y25_c00419{bottom:207.532476pt;}
.y24_c00419{bottom:232.801266pt;}
.y23_c00419{bottom:258.069389pt;}
.y22_c00419{bottom:283.337512pt;}
.y21_c00419{bottom:308.286835pt;}
.y20_c00419{bottom:352.748018pt;}
.y1f_c00419{bottom:377.856141pt;}
.y1e_c00419{bottom:420.397457pt;}
.y1c_c00419{bottom:464.285648pt;}
.y1d_c00419{bottom:476.529435pt;}
.y1b_c00419{bottom:476.916309pt;}
.y1a_c00419{bottom:537.304210pt;}
.y19_c00419{bottom:581.285393pt;}
.y18_c00419{bottom:606.393516pt;}
.y17_c00419{bottom:631.661639pt;}
.y16_c00419{bottom:656.930429pt;}
.y15_c00419{bottom:682.201086pt;}
.y14_c00419{bottom:726.341068pt;}
.y13_c00419{bottom:751.449191pt;}
.y12_c00419{bottom:795.587974pt;}
.y11_c00419{bottom:820.698630pt;}
.y10_c00419{bottom:845.645154pt;}
.yf_c00419{bottom:890.102603pt;}
.ye_c00419{bottom:915.211926pt;}
.yd_c00419{bottom:938.403917pt;}
.yc_c00419{bottom:940.482583pt;}
.yb_c00419{bottom:965.431906pt;}
.y9_c00419{bottom:983.182565pt;}
.y7_c00419{bottom:1023.551024pt;}
.y6_c00419{bottom:1041.942883pt;}
.y5_c00419{bottom:1060.334742pt;}
.h1_c00419{height:16.153120pt;}
.h9_c00419{height:33.244549pt;}
.h7_c00419{height:34.034591pt;}
.h6_c00419{height:37.724630pt;}
.h2_c00419{height:41.196944pt;}
.h4_c00419{height:44.780569pt;}
.ha_c00419{height:52.732088pt;}
.h8_c00419{height:52.790940pt;}
.hb_c00419{height:103.276067pt;}
.h5_c00419{height:1122.161626pt;}
.h3_c00419{height:1122.559167pt;}
.h0_c00419{height:1122.666667pt;}
.w17_c00419{width:2.400000pt;}
.w12_c00419{width:4.156800pt;}
.wc_c00419{width:4.160000pt;}
.w6_c00419{width:4.478400pt;}
.w16_c00419{width:5.755200pt;}
.w9_c00419{width:5.756800pt;}
.wf_c00419{width:6.556800pt;}
.w13_c00419{width:6.558400pt;}
.w15_c00419{width:7.195200pt;}
.w14_c00419{width:7.355200pt;}
.w7_c00419{width:7.356800pt;}
.w8_c00419{width:7.358400pt;}
.we_c00419{width:8.318400pt;}
.wb_c00419{width:8.956800pt;}
.w10_c00419{width:10.075200pt;}
.w4_c00419{width:10.555200pt;}
.w2_c00419{width:10.718400pt;}
.wa_c00419{width:11.035200pt;}
.w5_c00419{width:13.753600pt;}
.w1_c00419{width:15.033760pt;}
.w3_c00419{width:21.270400pt;}
.w11_c00419{width:23.032000pt;}
.wd_c00419{width:24.945600pt;}
.w19_c00419{width:792.977400pt;}
.w18_c00419{width:793.257550pt;}
.w0_c00419{width:793.333333pt;}
.x0_c00419{left:0.000000pt;}
.x1e_c00419{left:101.233093pt;}
.x1_c00419{left:114.072480pt;}
.x22_c00419{left:126.181070pt;}
.x23_c00419{left:149.373607pt;}
.x20_c00419{left:161.206935pt;}
.x1f_c00419{left:173.201597pt;}
.x1c_c00419{left:225.370940pt;}
.x1b_c00419{left:239.124654pt;}
.x24_c00419{left:244.884652pt;}
.x27_c00419{left:246.766901pt;}
.x25_c00419{left:303.575295pt;}
.x1d_c00419{left:376.018977pt;}
.x26_c00419{left:427.484162pt;}
.x2_c00419{left:441.443200pt;}
.x3_c00419{left:452.161600pt;}
.x4_c00419{left:473.432000pt;}
.x5_c00419{left:483.987200pt;}
.x6_c00419{left:497.740800pt;}
.x7_c00419{left:501.899200pt;}
.x8_c00419{left:512.772800pt;}
.x9_c00419{left:520.131200pt;}
.xa_c00419{left:524.768000pt;}
.xb_c00419{left:539.160000pt;}
.xc_c00419{left:548.116800pt;}
.xd_c00419{left:552.275200pt;}
.xe_c00419{left:556.275200pt;}
.xf_c00419{left:581.220800pt;}
.x10_c00419{left:588.419200pt;}
.x11_c00419{left:598.334400pt;}
.x21_c00419{left:602.128092pt;}
.x12_c00419{left:608.089600pt;}
.x13_c00419{left:630.161600pt;}
.x14_c00419{left:634.158400pt;}
.x15_c00419{left:640.716800pt;}
.x16_c00419{left:644.876800pt;}
.x17_c00419{left:652.232000pt;}
.x18_c00419{left:659.427200pt;}
.x19_c00419{left:665.985600pt;}
.x1a_c00419{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.112000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:1.113000;font-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_c00420{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:0.593736px;}
.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:-16.552343px;}
.ws1_c00420{word-spacing:0.000000px;}
._2_c00420{margin-left:-1.295374px;}
._0_c00420{width:1.102012px;}
._a_c00420{width:2.354093px;}
._7_c00420{width:3.413059px;}
._5_c00420{width:4.550872px;}
._4_c00420{width:5.849248px;}
._1_c00420{width:7.629558px;}
._9_c00420{width:9.183143px;}
._8_c00420{width:10.236209px;}
._b_c00420{width:13.836608px;}
._d_c00420{width:58.358743px;}
._3_c00420{width:62.066152px;}
._c_c00420{width:69.414673px;}
._6_c00420{width:405.462654px;}
.fc1_c00420{color:rgb(105,148,45);}
.fc0_c00420{color:rgb(35,31,32);}
.fs2_c00420{font-size:59.733096px;}
.fs0_c00420{font-size:66.209374px;}
.fs1_c00420{font-size:71.968771px;}
.y0_c00420{bottom:0.000000px;}
.y4_c00420{bottom:0.120938px;}
.y8_c00420{bottom:0.556171px;}
.y2_c00420{bottom:3.957898px;}
.ya_c00420{bottom:65.791352px;}
.y3_c00420{bottom:74.623320px;}
.y1_c00420{bottom:74.983320px;}
.y28_c00420{bottom:99.075889px;}
.y27_c00420{bottom:127.503878px;}
.y26_c00420{bottom:155.931266px;}
.y25_c00420{bottom:183.997605px;}
.y24_c00420{bottom:234.015835px;}
.y23_c00420{bottom:262.263224px;}
.y22_c00420{bottom:290.330162px;}
.y21_c00420{bottom:340.347642px;}
.y20_c00420{bottom:368.592931px;}
.y1f_c00420{bottom:397.020920px;}
.y1e_c00420{bottom:425.448908px;}
.y1d_c00420{bottom:454.057647px;}
.y1c_c00420{bottom:482.482936px;}
.y1b_c00420{bottom:531.961166px;}
.y1a_c00420{bottom:560.388554px;}
.y19_c00420{bottom:588.815193px;}
.y18_c00420{bottom:617.241832px;}
.y17_c00420{bottom:645.669820px;}
.y16_c00420{bottom:674.098559px;}
.y15_c00420{bottom:721.957540px;}
.y14_c00420{bottom:771.072020px;}
.y13_c00420{bottom:771.507254px;}
.y12_c00420{bottom:820.267734px;}
.y11_c00420{bottom:873.983829px;}
.y10_c00420{bottom:902.230468px;}
.yf_c00420{bottom:951.887948px;}
.ye_c00420{bottom:980.137437px;}
.yd_c00420{bottom:1008.205425px;}
.yc_c00420{bottom:1058.222155px;}
.yb_c00420{bottom:1086.470894px;}
.y9_c00420{bottom:1106.080386px;}
.y7_c00420{bottom:1151.494902px;}
.y6_c00420{bottom:1172.185744px;}
.y5_c00420{bottom:1192.876585px;}
.h1_c00420{height:18.172260px;}
.h7_c00420{height:38.288915px;}
.h6_c00420{height:42.440208px;}
.h2_c00420{height:46.346561px;}
.h4_c00420{height:50.378140px;}
.h8_c00420{height:59.323599px;}
.h9_c00420{height:59.389808px;}
.h5_c00420{height:1262.431829px;}
.h3_c00420{height:1262.879062px;}
.h0_c00420{height:1263.000000px;}
.w17_c00420{width:2.700000px;}
.w12_c00420{width:4.676400px;}
.wc_c00420{width:4.680000px;}
.w6_c00420{width:5.038200px;}
.w16_c00420{width:6.474600px;}
.w9_c00420{width:6.476400px;}
.wf_c00420{width:7.376400px;}
.w13_c00420{width:7.378200px;}
.w15_c00420{width:8.094600px;}
.w14_c00420{width:8.274600px;}
.w7_c00420{width:8.276400px;}
.w8_c00420{width:8.278200px;}
.we_c00420{width:9.358200px;}
.wb_c00420{width:10.076400px;}
.w10_c00420{width:11.334600px;}
.w4_c00420{width:11.874600px;}
.w2_c00420{width:12.058200px;}
.wa_c00420{width:12.414600px;}
.w5_c00420{width:15.472800px;}
.w1_c00420{width:16.552980px;}
.w3_c00420{width:23.929200px;}
.w11_c00420{width:25.911000px;}
.wd_c00420{width:28.063800px;}
.w19_c00420{width:892.099575px;}
.w18_c00420{width:892.414744px;}
.w0_c00420{width:892.500000px;}
.x0_c00420{left:0.000000px;}
.x1e_c00420{left:113.887229px;}
.x1_c00420{left:128.331540px;}
.x22_c00420{left:129.897560px;}
.x1f_c00420{left:141.953868px;}
.x21_c00420{left:181.357802px;}
.x28_c00420{left:185.496301px;}
.x20_c00420{left:194.851345px;}
.x1c_c00420{left:253.542308px;}
.x1b_c00420{left:269.015236px;}
.x23_c00420{left:311.255970px;}
.x24_c00420{left:324.611214px;}
.x25_c00420{left:335.586710px;}
.x27_c00420{left:357.496732px;}
.x1d_c00420{left:423.021349px;}
.x26_c00420{left:432.165202px;}
.x2_c00420{left:496.623600px;}
.x3_c00420{left:508.681800px;}
.x4_c00420{left:532.611000px;}
.x5_c00420{left:544.485600px;}
.x6_c00420{left:559.958400px;}
.x7_c00420{left:564.636600px;}
.x8_c00420{left:576.869400px;}
.x9_c00420{left:585.147600px;}
.xa_c00420{left:590.364000px;}
.xb_c00420{left:606.555000px;}
.xc_c00420{left:616.631400px;}
.xd_c00420{left:621.309600px;}
.xe_c00420{left:625.809600px;}
.xf_c00420{left:653.873400px;}
.x10_c00420{left:661.971600px;}
.x11_c00420{left:673.126200px;}
.x12_c00420{left:684.100800px;}
.x13_c00420{left:708.931800px;}
.x14_c00420{left:713.428200px;}
.x15_c00420{left:720.806400px;}
.x16_c00420{left:725.486400px;}
.x17_c00420{left:733.761000px;}
.x18_c00420{left:741.855600px;}
.x19_c00420{left:749.233800px;}
.x1a_c00420{left:755.708400px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:0.527766pt;}
.ws0_c00420{word-spacing:-14.713194pt;}
.ws1_c00420{word-spacing:0.000000pt;}
._2_c00420{margin-left:-1.151444pt;}
._0_c00420{width:0.979567pt;}
._a_c00420{width:2.092527pt;}
._7_c00420{width:3.033830pt;}
._5_c00420{width:4.045220pt;}
._4_c00420{width:5.199332pt;}
._1_c00420{width:6.781829pt;}
._9_c00420{width:8.162793pt;}
._8_c00420{width:9.098852pt;}
._b_c00420{width:12.299207pt;}
._d_c00420{width:51.874438pt;}
._3_c00420{width:55.169913pt;}
._c_c00420{width:61.701932pt;}
._6_c00420{width:360.411248pt;}
.fs2_c00420{font-size:53.096085pt;}
.fs0_c00420{font-size:58.852776pt;}
.fs1_c00420{font-size:63.972241pt;}
.y0_c00420{bottom:0.000000pt;}
.y4_c00420{bottom:0.107500pt;}
.y8_c00420{bottom:0.494374pt;}
.y2_c00420{bottom:3.518132pt;}
.ya_c00420{bottom:58.481202pt;}
.y3_c00420{bottom:66.331840pt;}
.y1_c00420{bottom:66.651840pt;}
.y28_c00420{bottom:88.067457pt;}
.y27_c00420{bottom:113.336780pt;}
.y26_c00420{bottom:138.605570pt;}
.y25_c00420{bottom:163.553427pt;}
.y24_c00420{bottom:208.014076pt;}
.y23_c00420{bottom:233.122865pt;}
.y22_c00420{bottom:258.071256pt;}
.y21_c00420{bottom:302.531238pt;}
.y20_c00420{bottom:327.638161pt;}
.y1f_c00420{bottom:352.907484pt;}
.y1e_c00420{bottom:378.176807pt;}
.y1d_c00420{bottom:403.606797pt;}
.y1c_c00420{bottom:428.873721pt;}
.y1b_c00420{bottom:472.854370pt;}
.y1a_c00420{bottom:498.123159pt;}
.y19_c00420{bottom:523.391283pt;}
.y18_c00420{bottom:548.659406pt;}
.y17_c00420{bottom:573.928729pt;}
.y16_c00420{bottom:599.198719pt;}
.y15_c00420{bottom:641.740035pt;}
.y14_c00420{bottom:685.397351pt;}
.y13_c00420{bottom:685.784226pt;}
.y12_c00420{bottom:729.126875pt;}
.y11_c00420{bottom:776.874515pt;}
.y10_c00420{bottom:801.982638pt;}
.yf_c00420{bottom:846.122620pt;}
.ye_c00420{bottom:871.233277pt;}
.yd_c00420{bottom:896.182600pt;}
.yc_c00420{bottom:940.641916pt;}
.yb_c00420{bottom:965.751906pt;}
.y9_c00420{bottom:983.182565pt;}
.y7_c00420{bottom:1023.551024pt;}
.y6_c00420{bottom:1041.942883pt;}
.y5_c00420{bottom:1060.334742pt;}
.h1_c00420{height:16.153120pt;}
.h7_c00420{height:34.034591pt;}
.h6_c00420{height:37.724630pt;}
.h2_c00420{height:41.196944pt;}
.h4_c00420{height:44.780569pt;}
.h8_c00420{height:52.732088pt;}
.h9_c00420{height:52.790940pt;}
.h5_c00420{height:1122.161626pt;}
.h3_c00420{height:1122.559167pt;}
.h0_c00420{height:1122.666667pt;}
.w17_c00420{width:2.400000pt;}
.w12_c00420{width:4.156800pt;}
.wc_c00420{width:4.160000pt;}
.w6_c00420{width:4.478400pt;}
.w16_c00420{width:5.755200pt;}
.w9_c00420{width:5.756800pt;}
.wf_c00420{width:6.556800pt;}
.w13_c00420{width:6.558400pt;}
.w15_c00420{width:7.195200pt;}
.w14_c00420{width:7.355200pt;}
.w7_c00420{width:7.356800pt;}
.w8_c00420{width:7.358400pt;}
.we_c00420{width:8.318400pt;}
.wb_c00420{width:8.956800pt;}
.w10_c00420{width:10.075200pt;}
.w4_c00420{width:10.555200pt;}
.w2_c00420{width:10.718400pt;}
.wa_c00420{width:11.035200pt;}
.w5_c00420{width:13.753600pt;}
.w1_c00420{width:14.713760pt;}
.w3_c00420{width:21.270400pt;}
.w11_c00420{width:23.032000pt;}
.wd_c00420{width:24.945600pt;}
.w19_c00420{width:792.977400pt;}
.w18_c00420{width:793.257550pt;}
.w0_c00420{width:793.333333pt;}
.x0_c00420{left:0.000000pt;}
.x1e_c00420{left:101.233093pt;}
.x1_c00420{left:114.072480pt;}
.x22_c00420{left:115.464497pt;}
.x1f_c00420{left:126.181216pt;}
.x21_c00420{left:161.206935pt;}
.x28_c00420{left:164.885601pt;}
.x20_c00420{left:173.201196pt;}
.x1c_c00420{left:225.370940pt;}
.x1b_c00420{left:239.124654pt;}
.x23_c00420{left:276.671973pt;}
.x24_c00420{left:288.543301pt;}
.x25_c00420{left:298.299297pt;}
.x27_c00420{left:317.774873pt;}
.x1d_c00420{left:376.018977pt;}
.x26_c00420{left:384.146846pt;}
.x2_c00420{left:441.443200pt;}
.x3_c00420{left:452.161600pt;}
.x4_c00420{left:473.432000pt;}
.x5_c00420{left:483.987200pt;}
.x6_c00420{left:497.740800pt;}
.x7_c00420{left:501.899200pt;}
.x8_c00420{left:512.772800pt;}
.x9_c00420{left:520.131200pt;}
.xa_c00420{left:524.768000pt;}
.xb_c00420{left:539.160000pt;}
.xc_c00420{left:548.116800pt;}
.xd_c00420{left:552.275200pt;}
.xe_c00420{left:556.275200pt;}
.xf_c00420{left:581.220800pt;}
.x10_c00420{left:588.419200pt;}
.x11_c00420{left:598.334400pt;}
.x12_c00420{left:608.089600pt;}
.x13_c00420{left:630.161600pt;}
.x14_c00420{left:634.158400pt;}
.x15_c00420{left:640.716800pt;}
.x16_c00420{left:644.876800pt;}
.x17_c00420{left:652.232000pt;}
.x18_c00420{left:659.427200pt;}
.x19_c00420{left:665.985600pt;}
.x1a_c00420{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.113000;font-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_c00421{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.v1_c00421{vertical-align:16.547993px;}
.ls0_c00421{letter-spacing:0.000000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:-16.552343px;}
.ws2_c00421{word-spacing:0.000000px;}
.ws1_c00421{word-spacing:22.633666px;}
._9_c00421{margin-left:-1916.925698px;}
._8_c00421{margin-left:-2.084419px;}
._2_c00421{margin-left:-1.053646px;}
._0_c00421{width:1.102012px;}
._3_c00421{width:2.240972px;}
._1_c00421{width:3.378850px;}
._7_c00421{width:4.753936px;}
._6_c00421{width:5.824099px;}
._5_c00421{width:17.920734px;}
._e_c00421{width:21.692898px;}
._12_c00421{width:24.040550px;}
._22_c00421{width:32.616603px;}
._21_c00421{width:33.919236px;}
._19_c00421{width:37.154590px;}
._10_c00421{width:38.508280px;}
._11_c00421{width:40.599695px;}
._16_c00421{width:49.035803px;}
._13_c00421{width:50.593269px;}
._23_c00421{width:51.964823px;}
._1f_c00421{width:53.403541px;}
._4_c00421{width:58.358963px;}
._d_c00421{width:66.981577px;}
._1d_c00421{width:68.422438px;}
._18_c00421{width:70.846995px;}
._1a_c00421{width:82.847703px;}
._15_c00421{width:88.134905px;}
._1b_c00421{width:93.671720px;}
._a_c00421{width:99.746775px;}
._1c_c00421{width:110.223611px;}
._b_c00421{width:126.067079px;}
._c_c00421{width:127.490833px;}
._1e_c00421{width:134.221576px;}
._f_c00421{width:152.224521px;}
._17_c00421{width:167.068403px;}
._20_c00421{width:173.106341px;}
._14_c00421{width:191.109286px;}
.fc1_c00421{color:rgb(105,148,45);}
.fc0_c00421{color:rgb(35,31,32);}
.fs2_c00421{font-size:59.733096px;}
.fs0_c00421{font-size:66.209374px;}
.fs1_c00421{font-size:71.968771px;}
.y0_c00421{bottom:0.000000px;}
.y4_c00421{bottom:0.120938px;}
.y1e_c00421{bottom:0.485156px;}
.y8_c00421{bottom:0.556171px;}
.y2_c00421{bottom:3.957898px;}
.ya_c00421{bottom:65.791352px;}
.y3_c00421{bottom:74.623320px;}
.y1_c00421{bottom:74.983320px;}
.y29_c00421{bottom:99.614539px;}
.y28_c00421{bottom:127.865377px;}
.y27_c00421{bottom:175.720758px;}
.y26_c00421{bottom:224.836739px;}
.y25_c00421{bottom:273.775719px;}
.y22_c00421{bottom:322.969933px;}
.y24_c00421{bottom:326.673198px;}
.y23_c00421{bottom:326.744213px;}
.y21_c00421{bottom:351.576422px;}
.y1f_c00421{bottom:379.640192px;}
.y20_c00421{bottom:380.004410px;}
.y1d_c00421{bottom:433.544855px;}
.y1c_c00421{bottom:461.970144px;}
.y1b_c00421{bottom:511.448974px;}
.y1a_c00421{bottom:539.695613px;}
.y19_c00421{bottom:587.734593px;}
.y18_c00421{bottom:636.672074px;}
.y17_c00421{bottom:685.612554px;}
.y15_c00421{bottom:734.985268px;}
.y16_c00421{bottom:738.687033px;}
.y14_c00421{bottom:763.411757px;}
.y13_c00421{bottom:791.838246px;}
.y12_c00421{bottom:845.555840px;}
.y11_c00421{bottom:873.803829px;}
.y10_c00421{bottom:923.461309px;}
.yf_c00421{bottom:951.707948px;}
.ye_c00421{bottom:980.137437px;}
.yd_c00421{bottom:1008.205425px;}
.yc_c00421{bottom:1058.222155px;}
.yb_c00421{bottom:1086.470894px;}
.y9_c00421{bottom:1106.080386px;}
.y7_c00421{bottom:1151.494902px;}
.y6_c00421{bottom:1172.185744px;}
.y5_c00421{bottom:1192.876585px;}
.h1_c00421{height:18.172260px;}
.h7_c00421{height:38.288915px;}
.h6_c00421{height:42.440208px;}
.h2_c00421{height:46.346561px;}
.h4_c00421{height:50.378140px;}
.h8_c00421{height:59.323599px;}
.h9_c00421{height:59.389808px;}
.ha_c00421{height:75.871592px;}
.hc_c00421{height:75.877592px;}
.h5_c00421{height:1262.431829px;}
.hb_c00421{height:1262.514600px;}
.h3_c00421{height:1262.879062px;}
.h0_c00421{height:1263.000000px;}
.w17_c00421{width:2.700000px;}
.w12_c00421{width:4.676400px;}
.wc_c00421{width:4.680000px;}
.w6_c00421{width:5.038200px;}
.w16_c00421{width:6.474600px;}
.w9_c00421{width:6.476400px;}
.wf_c00421{width:7.376400px;}
.w13_c00421{width:7.378200px;}
.w15_c00421{width:8.094600px;}
.w14_c00421{width:8.274600px;}
.w7_c00421{width:8.276400px;}
.w8_c00421{width:8.278200px;}
.we_c00421{width:9.358200px;}
.wb_c00421{width:10.076400px;}
.w10_c00421{width:11.334600px;}
.w4_c00421{width:11.874600px;}
.w2_c00421{width:12.058200px;}
.wa_c00421{width:12.414600px;}
.w5_c00421{width:15.472800px;}
.w1_c00421{width:16.552980px;}
.w3_c00421{width:23.929200px;}
.w11_c00421{width:25.911000px;}
.wd_c00421{width:28.063800px;}
.w19_c00421{width:892.099575px;}
.w1a_c00421{width:892.161000px;}
.w18_c00421{width:892.414744px;}
.w0_c00421{width:892.500000px;}
.x0_c00421{left:0.000000px;}
.x1e_c00421{left:113.887229px;}
.x1_c00421{left:128.331540px;}
.x29_c00421{left:135.476274px;}
.x20_c00421{left:140.873868px;}
.x1f_c00421{left:141.953868px;}
.x2d_c00421{left:176.537273px;}
.x21_c00421{left:181.357802px;}
.x2c_c00421{left:187.871269px;}
.x25_c00421{left:190.751267px;}
.x2b_c00421{left:196.329765px;}
.x24_c00421{left:206.403761px;}
.x2f_c00421{left:208.345792px;}
.x28_c00421{left:220.938287px;}
.x27_c00421{left:226.878284px;}
.x1c_c00421{left:253.542308px;}
.x1b_c00421{left:269.015236px;}
.x2a_c00421{left:309.639251px;}
.x23_c00421{left:314.174218px;}
.x22_c00421{left:322.056433px;}
.x1d_c00421{left:423.021349px;}
.x2_c00421{left:496.623600px;}
.x3_c00421{left:508.681800px;}
.x4_c00421{left:532.611000px;}
.x5_c00421{left:544.485600px;}
.x6_c00421{left:559.958400px;}
.x7_c00421{left:564.636600px;}
.x8_c00421{left:576.869400px;}
.x9_c00421{left:585.147600px;}
.xa_c00421{left:590.364000px;}
.xb_c00421{left:606.555000px;}
.xc_c00421{left:616.631400px;}
.xd_c00421{left:621.309600px;}
.xe_c00421{left:625.809600px;}
.x2e_c00421{left:631.153623px;}
.xf_c00421{left:653.873400px;}
.x26_c00421{left:659.580111px;}
.x10_c00421{left:661.971600px;}
.x11_c00421{left:673.126200px;}
.x12_c00421{left:684.100800px;}
.x13_c00421{left:708.931800px;}
.x14_c00421{left:713.428200px;}
.x15_c00421{left:720.806400px;}
.x16_c00421{left:725.486400px;}
.x17_c00421{left:733.761000px;}
.x18_c00421{left:741.855600px;}
.x19_c00421{left:749.233800px;}
.x1a_c00421{left:755.708400px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.v1_c00421{vertical-align:14.709327pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws0_c00421{word-spacing:-14.713194pt;}
.ws2_c00421{word-spacing:0.000000pt;}
.ws1_c00421{word-spacing:20.118814pt;}
._9_c00421{margin-left:-1703.933954pt;}
._8_c00421{margin-left:-1.852817pt;}
._2_c00421{margin-left:-0.936574pt;}
._0_c00421{width:0.979567pt;}
._3_c00421{width:1.991975pt;}
._1_c00421{width:3.003422pt;}
._7_c00421{width:4.225721pt;}
._6_c00421{width:5.176977pt;}
._5_c00421{width:15.929542pt;}
._e_c00421{width:19.282576pt;}
._12_c00421{width:21.369378pt;}
._22_c00421{width:28.992536pt;}
._21_c00421{width:30.150432pt;}
._19_c00421{width:33.026302pt;}
._10_c00421{width:34.229582pt;}
._11_c00421{width:36.088618pt;}
._16_c00421{width:43.587380pt;}
._13_c00421{width:44.971795pt;}
._23_c00421{width:46.190953pt;}
._1f_c00421{width:47.469815pt;}
._4_c00421{width:51.874633pt;}
._d_c00421{width:59.539179pt;}
._1d_c00421{width:60.819945pt;}
._18_c00421{width:62.975107pt;}
._1a_c00421{width:73.642403pt;}
._15_c00421{width:78.342138pt;}
._1b_c00421{width:83.263751pt;}
._a_c00421{width:88.663800pt;}
._1c_c00421{width:97.976543pt;}
._b_c00421{width:112.059626pt;}
._c_c00421{width:113.325185pt;}
._1e_c00421{width:119.308067pt;}
._f_c00421{width:135.310685pt;}
._17_c00421{width:148.505247pt;}
._20_c00421{width:153.872303pt;}
._14_c00421{width:169.874921pt;}
.fs2_c00421{font-size:53.096085pt;}
.fs0_c00421{font-size:58.852776pt;}
.fs1_c00421{font-size:63.972241pt;}
.y0_c00421{bottom:0.000000pt;}
.y4_c00421{bottom:0.107500pt;}
.y1e_c00421{bottom:0.431250pt;}
.y8_c00421{bottom:0.494374pt;}
.y2_c00421{bottom:3.518132pt;}
.ya_c00421{bottom:58.481202pt;}
.y3_c00421{bottom:66.331840pt;}
.y1_c00421{bottom:66.651840pt;}
.y29_c00421{bottom:88.546257pt;}
.y28_c00421{bottom:113.658113pt;}
.y27_c00421{bottom:156.196230pt;}
.y26_c00421{bottom:199.854879pt;}
.y25_c00421{bottom:243.356195pt;}
.y22_c00421{bottom:287.084385pt;}
.y24_c00421{bottom:290.376176pt;}
.y23_c00421{bottom:290.439301pt;}
.y21_c00421{bottom:312.512375pt;}
.y1f_c00421{bottom:337.457949pt;}
.y20_c00421{bottom:337.781698pt;}
.y1d_c00421{bottom:385.373205pt;}
.y1c_c00421{bottom:410.640128pt;}
.y1b_c00421{bottom:454.621310pt;}
.y1a_c00421{bottom:479.729434pt;}
.y19_c00421{bottom:522.430750pt;}
.y18_c00421{bottom:565.930732pt;}
.y17_c00421{bottom:609.433382pt;}
.y15_c00421{bottom:653.320239pt;}
.y16_c00421{bottom:656.610696pt;}
.y14_c00421{bottom:678.588229pt;}
.y13_c00421{bottom:703.856218pt;}
.y12_c00421{bottom:751.605191pt;}
.y11_c00421{bottom:776.714515pt;}
.y10_c00421{bottom:820.854497pt;}
.yf_c00421{bottom:845.962620pt;}
.ye_c00421{bottom:871.233277pt;}
.yd_c00421{bottom:896.182600pt;}
.yc_c00421{bottom:940.641916pt;}
.yb_c00421{bottom:965.751906pt;}
.y9_c00421{bottom:983.182565pt;}
.y7_c00421{bottom:1023.551024pt;}
.y6_c00421{bottom:1041.942883pt;}
.y5_c00421{bottom:1060.334742pt;}
.h1_c00421{height:16.153120pt;}
.h7_c00421{height:34.034591pt;}
.h6_c00421{height:37.724630pt;}
.h2_c00421{height:41.196944pt;}
.h4_c00421{height:44.780569pt;}
.h8_c00421{height:52.732088pt;}
.h9_c00421{height:52.790940pt;}
.ha_c00421{height:67.441415pt;}
.hc_c00421{height:67.446748pt;}
.h5_c00421{height:1122.161626pt;}
.hb_c00421{height:1122.235200pt;}
.h3_c00421{height:1122.559167pt;}
.h0_c00421{height:1122.666667pt;}
.w17_c00421{width:2.400000pt;}
.w12_c00421{width:4.156800pt;}
.wc_c00421{width:4.160000pt;}
.w6_c00421{width:4.478400pt;}
.w16_c00421{width:5.755200pt;}
.w9_c00421{width:5.756800pt;}
.wf_c00421{width:6.556800pt;}
.w13_c00421{width:6.558400pt;}
.w15_c00421{width:7.195200pt;}
.w14_c00421{width:7.355200pt;}
.w7_c00421{width:7.356800pt;}
.w8_c00421{width:7.358400pt;}
.we_c00421{width:8.318400pt;}
.wb_c00421{width:8.956800pt;}
.w10_c00421{width:10.075200pt;}
.w4_c00421{width:10.555200pt;}
.w2_c00421{width:10.718400pt;}
.wa_c00421{width:11.035200pt;}
.w5_c00421{width:13.753600pt;}
.w1_c00421{width:14.713760pt;}
.w3_c00421{width:21.270400pt;}
.w11_c00421{width:23.032000pt;}
.wd_c00421{width:24.945600pt;}
.w19_c00421{width:792.977400pt;}
.w1a_c00421{width:793.032000pt;}
.w18_c00421{width:793.257550pt;}
.w0_c00421{width:793.333333pt;}
.x0_c00421{left:0.000000pt;}
.x1e_c00421{left:101.233093pt;}
.x1_c00421{left:114.072480pt;}
.x29_c00421{left:120.423355pt;}
.x20_c00421{left:125.221216pt;}
.x1f_c00421{left:126.181216pt;}
.x2d_c00421{left:156.922021pt;}
.x21_c00421{left:161.206935pt;}
.x2c_c00421{left:166.996683pt;}
.x25_c00421{left:169.556682pt;}
.x2b_c00421{left:174.515347pt;}
.x24_c00421{left:183.470010pt;}
.x2f_c00421{left:185.196259pt;}
.x28_c00421{left:196.389588pt;}
.x27_c00421{left:201.669586pt;}
.x1c_c00421{left:225.370940pt;}
.x1b_c00421{left:239.124654pt;}
.x2a_c00421{left:275.234890pt;}
.x23_c00421{left:279.265972pt;}
.x22_c00421{left:286.272385pt;}
.x1d_c00421{left:376.018977pt;}
.x2_c00421{left:441.443200pt;}
.x3_c00421{left:452.161600pt;}
.x4_c00421{left:473.432000pt;}
.x5_c00421{left:483.987200pt;}
.x6_c00421{left:497.740800pt;}
.x7_c00421{left:501.899200pt;}
.x8_c00421{left:512.772800pt;}
.x9_c00421{left:520.131200pt;}
.xa_c00421{left:524.768000pt;}
.xb_c00421{left:539.160000pt;}
.xc_c00421{left:548.116800pt;}
.xd_c00421{left:552.275200pt;}
.xe_c00421{left:556.275200pt;}
.x2e_c00421{left:561.025442pt;}
.xf_c00421{left:581.220800pt;}
.x26_c00421{left:586.293432pt;}
.x10_c00421{left:588.419200pt;}
.x11_c00421{left:598.334400pt;}
.x12_c00421{left:608.089600pt;}
.x13_c00421{left:630.161600pt;}
.x14_c00421{left:634.158400pt;}
.x15_c00421{left:640.716800pt;}
.x16_c00421{left:644.876800pt;}
.x17_c00421{left:652.232000pt;}
.x18_c00421{left:659.427200pt;}
.x19_c00421{left:665.985600pt;}
.x1a_c00421{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.112000;font-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_c00422{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls0_c00422{letter-spacing:0.000000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00422{word-spacing:-16.552343px;}
.ws1_c00422{word-spacing:0.000000px;}
._2_c00422{margin-left:-1.182974px;}
._0_c00422{width:1.102012px;}
._5_c00422{width:2.581466px;}
._4_c00422{width:3.642232px;}
._1_c00422{width:4.832365px;}
._c_c00422{width:5.882017px;}
._9_c00422{width:8.960076px;}
._8_c00422{width:10.255621px;}
._6_c00422{width:11.268212px;}
._d_c00422{width:12.295564px;}
._7_c00422{width:13.331949px;}
._a_c00422{width:14.919448px;}
._b_c00422{width:20.433906px;}
._3_c00422{width:58.358963px;}
.fc1_c00422{color:rgb(105,148,45);}
.fc0_c00422{color:rgb(35,31,32);}
.fs3_c00422{font-size:41.741203px;}
.fs2_c00422{font-size:59.733096px;}
.fs0_c00422{font-size:66.209374px;}
.fs1_c00422{font-size:71.968771px;}
.y0_c00422{bottom:0.000000px;}
.y4_c00422{bottom:0.120938px;}
.y8_c00422{bottom:0.556171px;}
.y2_c00422{bottom:3.957898px;}
.ya_c00422{bottom:65.791352px;}
.y3_c00422{bottom:74.623320px;}
.y1_c00422{bottom:74.983320px;}
.y28_c00422{bottom:192.631752px;}
.y26_c00422{bottom:192.632352px;}
.y27_c00422{bottom:200.191749px;}
.y25_c00422{bottom:220.878990px;}
.y24_c00422{bottom:249.306379px;}
.y23_c00422{bottom:277.733017px;}
.y22_c00422{bottom:306.159656px;}
.y21_c00422{bottom:334.769145px;}
.y20_c00422{bottom:384.246625px;}
.y1f_c00422{bottom:412.493264px;}
.y1e_c00422{bottom:441.100652px;}
.y1d_c00422{bottom:469.527291px;}
.y1c_c00422{bottom:497.955279px;}
.y1b_c00422{bottom:526.379068px;}
.y1a_c00422{bottom:576.037898px;}
.y19_c00422{bottom:604.287387px;}
.y18_c00422{bottom:632.714775px;}
.y17_c00422{bottom:682.370156px;}
.y16_c00422{bottom:710.619644px;}
.y15_c00422{bottom:739.047033px;}
.y14_c00422{bottom:767.113072px;}
.y13_c00422{bottom:817.128452px;}
.y12_c00422{bottom:845.375840px;}
.y11_c00422{bottom:873.803829px;}
.y10_c00422{bottom:923.461309px;}
.yf_c00422{bottom:951.707948px;}
.ye_c00422{bottom:980.137437px;}
.yd_c00422{bottom:1008.205425px;}
.yc_c00422{bottom:1058.222155px;}
.yb_c00422{bottom:1086.470894px;}
.y9_c00422{bottom:1106.080386px;}
.y7_c00422{bottom:1151.494902px;}
.y6_c00422{bottom:1172.185744px;}
.y5_c00422{bottom:1192.876585px;}
.h1_c00422{height:18.172260px;}
.ha_c00422{height:37.400118px;}
.h7_c00422{height:38.288915px;}
.h6_c00422{height:42.440208px;}
.h2_c00422{height:46.346561px;}
.h4_c00422{height:50.378140px;}
.h9_c00422{height:59.323599px;}
.h8_c00422{height:59.389808px;}
.h5_c00422{height:1262.431829px;}
.h3_c00422{height:1262.879062px;}
.h0_c00422{height:1263.000000px;}
.w17_c00422{width:2.700000px;}
.w12_c00422{width:4.676400px;}
.wc_c00422{width:4.680000px;}
.w6_c00422{width:5.038200px;}
.w16_c00422{width:6.474600px;}
.w9_c00422{width:6.476400px;}
.wf_c00422{width:7.376400px;}
.w13_c00422{width:7.378200px;}
.w15_c00422{width:8.094600px;}
.w14_c00422{width:8.274600px;}
.w7_c00422{width:8.276400px;}
.w8_c00422{width:8.278200px;}
.we_c00422{width:9.358200px;}
.wb_c00422{width:10.076400px;}
.w10_c00422{width:11.334600px;}
.w4_c00422{width:11.874600px;}
.w2_c00422{width:12.058200px;}
.wa_c00422{width:12.414600px;}
.w5_c00422{width:15.472800px;}
.w1_c00422{width:16.552980px;}
.w3_c00422{width:23.929200px;}
.w11_c00422{width:25.911000px;}
.wd_c00422{width:28.063800px;}
.w19_c00422{width:892.099575px;}
.w18_c00422{width:892.414744px;}
.w0_c00422{width:892.500000px;}
.x0_c00422{left:0.000000px;}
.x1e_c00422{left:113.887229px;}
.x1_c00422{left:128.331540px;}
.x21_c00422{left:140.876986px;}
.x20_c00422{left:141.956339px;}
.x1f_c00422{left:181.357802px;}
.x22_c00422{left:194.848465px;}
.x1c_c00422{left:253.542308px;}
.x1b_c00422{left:269.015236px;}
.x23_c00422{left:280.672763px;}
.x24_c00422{left:285.889761px;}
.x1d_c00422{left:423.021349px;}
.x2_c00422{left:496.623600px;}
.x3_c00422{left:508.681800px;}
.x4_c00422{left:532.611000px;}
.x5_c00422{left:544.485600px;}
.x6_c00422{left:559.958400px;}
.x7_c00422{left:564.636600px;}
.x8_c00422{left:576.869400px;}
.x9_c00422{left:585.147600px;}
.xa_c00422{left:590.364000px;}
.xb_c00422{left:606.555000px;}
.xc_c00422{left:616.631400px;}
.xd_c00422{left:621.309600px;}
.xe_c00422{left:625.809600px;}
.xf_c00422{left:653.873400px;}
.x10_c00422{left:661.971600px;}
.x11_c00422{left:673.126200px;}
.x12_c00422{left:684.100800px;}
.x13_c00422{left:708.931800px;}
.x14_c00422{left:713.428200px;}
.x15_c00422{left:720.806400px;}
.x16_c00422{left:725.486400px;}
.x17_c00422{left:733.761000px;}
.x18_c00422{left:741.855600px;}
.x19_c00422{left:749.233800px;}
.x1a_c00422{left:755.708400px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws0_c00422{word-spacing:-14.713194pt;}
.ws1_c00422{word-spacing:0.000000pt;}
._2_c00422{margin-left:-1.051533pt;}
._0_c00422{width:0.979567pt;}
._5_c00422{width:2.294637pt;}
._4_c00422{width:3.237540pt;}
._1_c00422{width:4.295435pt;}
._c_c00422{width:5.228460pt;}
._9_c00422{width:7.964512pt;}
._8_c00422{width:9.116108pt;}
._6_c00422{width:10.016189pt;}
._d_c00422{width:10.929390pt;}
._7_c00422{width:11.850621pt;}
._a_c00422{width:13.261731pt;}
._b_c00422{width:18.163472pt;}
._3_c00422{width:51.874633pt;}
.fs3_c00422{font-size:37.103292pt;}
.fs2_c00422{font-size:53.096085pt;}
.fs0_c00422{font-size:58.852776pt;}
.fs1_c00422{font-size:63.972241pt;}
.y0_c00422{bottom:0.000000pt;}
.y4_c00422{bottom:0.107500pt;}
.y8_c00422{bottom:0.494374pt;}
.y2_c00422{bottom:3.518132pt;}
.ya_c00422{bottom:58.481202pt;}
.y3_c00422{bottom:66.331840pt;}
.y1_c00422{bottom:66.651840pt;}
.y28_c00422{bottom:171.228224pt;}
.y26_c00422{bottom:171.228757pt;}
.y27_c00422{bottom:177.948221pt;}
.y25_c00422{bottom:196.336880pt;}
.y24_c00422{bottom:221.605670pt;}
.y23_c00422{bottom:246.873793pt;}
.y22_c00422{bottom:272.141917pt;}
.y21_c00422{bottom:297.572573pt;}
.y20_c00422{bottom:341.552555pt;}
.y1f_c00422{bottom:366.660679pt;}
.y1e_c00422{bottom:392.089469pt;}
.y1d_c00422{bottom:417.357592pt;}
.y1c_c00422{bottom:442.626915pt;}
.y1b_c00422{bottom:467.892505pt;}
.y1a_c00422{bottom:512.033687pt;}
.y19_c00422{bottom:537.144344pt;}
.y18_c00422{bottom:562.413134pt;}
.y17_c00422{bottom:606.551249pt;}
.y16_c00422{bottom:631.661906pt;}
.y15_c00422{bottom:656.930696pt;}
.y14_c00422{bottom:681.878286pt;}
.y13_c00422{bottom:726.336402pt;}
.y12_c00422{bottom:751.445191pt;}
.y11_c00422{bottom:776.714515pt;}
.y10_c00422{bottom:820.854497pt;}
.yf_c00422{bottom:845.962620pt;}
.ye_c00422{bottom:871.233277pt;}
.yd_c00422{bottom:896.182600pt;}
.yc_c00422{bottom:940.641916pt;}
.yb_c00422{bottom:965.751906pt;}
.y9_c00422{bottom:983.182565pt;}
.y7_c00422{bottom:1023.551024pt;}
.y6_c00422{bottom:1041.942883pt;}
.y5_c00422{bottom:1060.334742pt;}
.h1_c00422{height:16.153120pt;}
.ha_c00422{height:33.244549pt;}
.h7_c00422{height:34.034591pt;}
.h6_c00422{height:37.724630pt;}
.h2_c00422{height:41.196944pt;}
.h4_c00422{height:44.780569pt;}
.h9_c00422{height:52.732088pt;}
.h8_c00422{height:52.790940pt;}
.h5_c00422{height:1122.161626pt;}
.h3_c00422{height:1122.559167pt;}
.h0_c00422{height:1122.666667pt;}
.w17_c00422{width:2.400000pt;}
.w12_c00422{width:4.156800pt;}
.wc_c00422{width:4.160000pt;}
.w6_c00422{width:4.478400pt;}
.w16_c00422{width:5.755200pt;}
.w9_c00422{width:5.756800pt;}
.wf_c00422{width:6.556800pt;}
.w13_c00422{width:6.558400pt;}
.w15_c00422{width:7.195200pt;}
.w14_c00422{width:7.355200pt;}
.w7_c00422{width:7.356800pt;}
.w8_c00422{width:7.358400pt;}
.we_c00422{width:8.318400pt;}
.wb_c00422{width:8.956800pt;}
.w10_c00422{width:10.075200pt;}
.w4_c00422{width:10.555200pt;}
.w2_c00422{width:10.718400pt;}
.wa_c00422{width:11.035200pt;}
.w5_c00422{width:13.753600pt;}
.w1_c00422{width:14.713760pt;}
.w3_c00422{width:21.270400pt;}
.w11_c00422{width:23.032000pt;}
.wd_c00422{width:24.945600pt;}
.w19_c00422{width:792.977400pt;}
.w18_c00422{width:793.257550pt;}
.w0_c00422{width:793.333333pt;}
.x0_c00422{left:0.000000pt;}
.x1e_c00422{left:101.233093pt;}
.x1_c00422{left:114.072480pt;}
.x21_c00422{left:125.223987pt;}
.x20_c00422{left:126.183413pt;}
.x1f_c00422{left:161.206935pt;}
.x22_c00422{left:173.198635pt;}
.x1c_c00422{left:225.370940pt;}
.x1b_c00422{left:239.124654pt;}
.x23_c00422{left:249.486900pt;}
.x24_c00422{left:254.124232pt;}
.x1d_c00422{left:376.018977pt;}
.x2_c00422{left:441.443200pt;}
.x3_c00422{left:452.161600pt;}
.x4_c00422{left:473.432000pt;}
.x5_c00422{left:483.987200pt;}
.x6_c00422{left:497.740800pt;}
.x7_c00422{left:501.899200pt;}
.x8_c00422{left:512.772800pt;}
.x9_c00422{left:520.131200pt;}
.xa_c00422{left:524.768000pt;}
.xb_c00422{left:539.160000pt;}
.xc_c00422{left:548.116800pt;}
.xd_c00422{left:552.275200pt;}
.xe_c00422{left:556.275200pt;}
.xf_c00422{left:581.220800pt;}
.x10_c00422{left:588.419200pt;}
.x11_c00422{left:598.334400pt;}
.x12_c00422{left:608.089600pt;}
.x13_c00422{left:630.161600pt;}
.x14_c00422{left:634.158400pt;}
.x15_c00422{left:640.716800pt;}
.x16_c00422{left:644.876800pt;}
.x17_c00422{left:652.232000pt;}
.x18_c00422{left:659.427200pt;}
.x19_c00422{left:665.985600pt;}
.x1a_c00422{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.112000;font-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_c00423{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls0_c00423{letter-spacing:0.000000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:-16.552343px;}
.ws1_c00423{word-spacing:0.000000px;}
._3_c00423{margin-left:-1.117744px;}
._0_c00423{width:1.102012px;}
._6_c00423{width:2.215543px;}
._f_c00423{width:3.223229px;}
._c_c00423{width:4.229040px;}
._5_c00423{width:5.754850px;}
._4_c00423{width:7.500825px;}
._2_c00423{width:9.556003px;}
._1_c00423{width:11.034450px;}
._a_c00423{width:15.310476px;}
._9_c00423{width:17.652908px;}
._8_c00423{width:19.273918px;}
._10_c00423{width:20.662045px;}
._11_c00423{width:21.871454px;}
._e_c00423{width:29.930785px;}
._d_c00423{width:31.138699px;}
._7_c00423{width:54.651097px;}
._b_c00423{width:62.066152px;}
.fc1_c00423{color:rgb(105,148,45);}
.fc0_c00423{color:rgb(35,31,32);}
.fs3_c00423{font-size:41.741203px;}
.fs2_c00423{font-size:59.733096px;}
.fs0_c00423{font-size:66.209374px;}
.fs1_c00423{font-size:71.968771px;}
.y0_c00423{bottom:0.000000px;}
.y4_c00423{bottom:0.120938px;}
.y8_c00423{bottom:0.556171px;}
.y2_c00423{bottom:3.957898px;}
.ya_c00423{bottom:65.791352px;}
.y3_c00423{bottom:74.623320px;}
.y1_c00423{bottom:74.983320px;}
.y28_c00423{bottom:171.583460px;}
.y27_c00423{bottom:199.830099px;}
.y26_c00423{bottom:228.436737px;}
.y25_c00423{bottom:277.914217px;}
.y24_c00423{bottom:306.160856px;}
.y23_c00423{bottom:334.772445px;}
.y22_c00423{bottom:363.197733px;}
.y21_c00423{bottom:412.674464px;}
.y20_c00423{bottom:441.103202px;}
.y1f_c00423{bottom:490.579932px;}
.y1e_c00423{bottom:518.827321px;}
.y1d_c00423{bottom:547.433960px;}
.y1a_c00423{bottom:575.858198px;}
.y1c_c00423{bottom:575.860598px;}
.y1b_c00423{bottom:583.417595px;}
.y19_c00423{bottom:604.287687px;}
.y18_c00423{bottom:632.715075px;}
.y17_c00423{bottom:660.781264px;}
.y16_c00423{bottom:710.799494px;}
.y15_c00423{bottom:739.046883px;}
.y14_c00423{bottom:767.474872px;}
.y13_c00423{bottom:795.901510px;}
.y12_c00423{bottom:823.967099px;}
.y11_c00423{bottom:873.985929px;}
.y10_c00423{bottom:902.231218px;}
.yf_c00423{bottom:951.890048px;}
.ye_c00423{bottom:980.138037px;}
.yd_c00423{bottom:1029.794167px;}
.yc_c00423{bottom:1058.042155px;}
.yb_c00423{bottom:1086.470894px;}
.y9_c00423{bottom:1106.080386px;}
.y7_c00423{bottom:1151.494902px;}
.y6_c00423{bottom:1172.185744px;}
.y5_c00423{bottom:1192.876585px;}
.h1_c00423{height:18.172260px;}
.ha_c00423{height:37.400118px;}
.h7_c00423{height:38.288915px;}
.h6_c00423{height:42.440208px;}
.h2_c00423{height:46.346561px;}
.h4_c00423{height:50.378140px;}
.h9_c00423{height:59.323599px;}
.h8_c00423{height:59.389808px;}
.h5_c00423{height:1262.431829px;}
.h3_c00423{height:1262.879062px;}
.h0_c00423{height:1263.000000px;}
.w17_c00423{width:2.700000px;}
.w12_c00423{width:4.676400px;}
.wc_c00423{width:4.680000px;}
.w6_c00423{width:5.038200px;}
.w16_c00423{width:6.474600px;}
.w9_c00423{width:6.476400px;}
.wf_c00423{width:7.376400px;}
.w13_c00423{width:7.378200px;}
.w15_c00423{width:8.094600px;}
.w14_c00423{width:8.274600px;}
.w7_c00423{width:8.276400px;}
.w8_c00423{width:8.278200px;}
.we_c00423{width:9.358200px;}
.wb_c00423{width:10.076400px;}
.w10_c00423{width:11.334600px;}
.w4_c00423{width:11.874600px;}
.w2_c00423{width:12.058200px;}
.wa_c00423{width:12.414600px;}
.w5_c00423{width:15.472800px;}
.w1_c00423{width:16.552980px;}
.w3_c00423{width:23.929200px;}
.w11_c00423{width:25.911000px;}
.wd_c00423{width:28.063800px;}
.w19_c00423{width:892.099575px;}
.w18_c00423{width:892.414744px;}
.w0_c00423{width:892.500000px;}
.x0_c00423{left:0.000000px;}
.x1e_c00423{left:113.887229px;}
.x1_c00423{left:128.331540px;}
.x20_c00423{left:141.955260px;}
.x22_c00423{left:154.549813px;}
.x23_c00423{left:159.766811px;}
.x1f_c00423{left:181.357802px;}
.x21_c00423{left:194.855436px;}
.x1c_c00423{left:253.542308px;}
.x1b_c00423{left:269.015236px;}
.x1d_c00423{left:423.021349px;}
.x2_c00423{left:496.623600px;}
.x3_c00423{left:508.681800px;}
.x4_c00423{left:532.611000px;}
.x5_c00423{left:544.485600px;}
.x6_c00423{left:559.958400px;}
.x7_c00423{left:564.636600px;}
.x8_c00423{left:576.869400px;}
.x9_c00423{left:585.147600px;}
.xa_c00423{left:590.364000px;}
.xb_c00423{left:606.555000px;}
.xc_c00423{left:616.631400px;}
.xd_c00423{left:621.309600px;}
.xe_c00423{left:625.809600px;}
.xf_c00423{left:653.873400px;}
.x10_c00423{left:661.971600px;}
.x11_c00423{left:673.126200px;}
.x12_c00423{left:684.100800px;}
.x13_c00423{left:708.931800px;}
.x14_c00423{left:713.428200px;}
.x15_c00423{left:720.806400px;}
.x16_c00423{left:725.486400px;}
.x17_c00423{left:733.761000px;}
.x18_c00423{left:741.855600px;}
.x19_c00423{left:749.233800px;}
.x1a_c00423{left:755.708400px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:-14.713194pt;}
.ws1_c00423{word-spacing:0.000000pt;}
._3_c00423{margin-left:-0.993550pt;}
._0_c00423{width:0.979567pt;}
._6_c00423{width:1.969372pt;}
._f_c00423{width:2.865092pt;}
._c_c00423{width:3.759147pt;}
._5_c00423{width:5.115422pt;}
._4_c00423{width:6.667400pt;}
._2_c00423{width:8.494225pt;}
._1_c00423{width:9.808400pt;}
._a_c00423{width:13.609312pt;}
._9_c00423{width:15.691474pt;}
._8_c00423{width:17.132371pt;}
._10_c00423{width:18.366262pt;}
._11_c00423{width:19.441292pt;}
._e_c00423{width:26.605142pt;}
._d_c00423{width:27.678843pt;}
._7_c00423{width:48.578753pt;}
._b_c00423{width:55.169913pt;}
.fs3_c00423{font-size:37.103292pt;}
.fs2_c00423{font-size:53.096085pt;}
.fs0_c00423{font-size:58.852776pt;}
.fs1_c00423{font-size:63.972241pt;}
.y0_c00423{bottom:0.000000pt;}
.y4_c00423{bottom:0.107500pt;}
.y8_c00423{bottom:0.494374pt;}
.y2_c00423{bottom:3.518132pt;}
.ya_c00423{bottom:58.481202pt;}
.y3_c00423{bottom:66.331840pt;}
.y1_c00423{bottom:66.651840pt;}
.y28_c00423{bottom:152.518631pt;}
.y27_c00423{bottom:177.626754pt;}
.y26_c00423{bottom:203.054878pt;}
.y25_c00423{bottom:247.034860pt;}
.y24_c00423{bottom:272.142983pt;}
.y23_c00423{bottom:297.575506pt;}
.y22_c00423{bottom:322.842430pt;}
.y21_c00423{bottom:366.821745pt;}
.y20_c00423{bottom:392.091735pt;}
.y1f_c00423{bottom:436.071051pt;}
.y1e_c00423{bottom:461.179841pt;}
.y1d_c00423{bottom:486.607964pt;}
.y1a_c00423{bottom:511.873954pt;}
.y1c_c00423{bottom:511.876087pt;}
.y1b_c00423{bottom:518.593418pt;}
.y19_c00423{bottom:537.144611pt;}
.y18_c00423{bottom:562.413400pt;}
.y17_c00423{bottom:587.361124pt;}
.y16_c00423{bottom:631.821773pt;}
.y15_c00423{bottom:656.930563pt;}
.y14_c00423{bottom:682.199886pt;}
.y13_c00423{bottom:707.468009pt;}
.y12_c00423{bottom:732.415199pt;}
.y11_c00423{bottom:776.876381pt;}
.y10_c00423{bottom:801.983305pt;}
.yf_c00423{bottom:846.124487pt;}
.ye_c00423{bottom:871.233810pt;}
.yd_c00423{bottom:915.372593pt;}
.yc_c00423{bottom:940.481916pt;}
.yb_c00423{bottom:965.751906pt;}
.y9_c00423{bottom:983.182565pt;}
.y7_c00423{bottom:1023.551024pt;}
.y6_c00423{bottom:1041.942883pt;}
.y5_c00423{bottom:1060.334742pt;}
.h1_c00423{height:16.153120pt;}
.ha_c00423{height:33.244549pt;}
.h7_c00423{height:34.034591pt;}
.h6_c00423{height:37.724630pt;}
.h2_c00423{height:41.196944pt;}
.h4_c00423{height:44.780569pt;}
.h9_c00423{height:52.732088pt;}
.h8_c00423{height:52.790940pt;}
.h5_c00423{height:1122.161626pt;}
.h3_c00423{height:1122.559167pt;}
.h0_c00423{height:1122.666667pt;}
.w17_c00423{width:2.400000pt;}
.w12_c00423{width:4.156800pt;}
.wc_c00423{width:4.160000pt;}
.w6_c00423{width:4.478400pt;}
.w16_c00423{width:5.755200pt;}
.w9_c00423{width:5.756800pt;}
.wf_c00423{width:6.556800pt;}
.w13_c00423{width:6.558400pt;}
.w15_c00423{width:7.195200pt;}
.w14_c00423{width:7.355200pt;}
.w7_c00423{width:7.356800pt;}
.w8_c00423{width:7.358400pt;}
.we_c00423{width:8.318400pt;}
.wb_c00423{width:8.956800pt;}
.w10_c00423{width:10.075200pt;}
.w4_c00423{width:10.555200pt;}
.w2_c00423{width:10.718400pt;}
.wa_c00423{width:11.035200pt;}
.w5_c00423{width:13.753600pt;}
.w1_c00423{width:14.713760pt;}
.w3_c00423{width:21.270400pt;}
.w11_c00423{width:23.032000pt;}
.wd_c00423{width:24.945600pt;}
.w19_c00423{width:792.977400pt;}
.w18_c00423{width:793.257550pt;}
.w0_c00423{width:793.333333pt;}
.x0_c00423{left:0.000000pt;}
.x1e_c00423{left:101.233093pt;}
.x1_c00423{left:114.072480pt;}
.x20_c00423{left:126.182453pt;}
.x22_c00423{left:137.377612pt;}
.x23_c00423{left:142.014943pt;}
.x1f_c00423{left:161.206935pt;}
.x21_c00423{left:173.204832pt;}
.x1c_c00423{left:225.370940pt;}
.x1b_c00423{left:239.124654pt;}
.x1d_c00423{left:376.018977pt;}
.x2_c00423{left:441.443200pt;}
.x3_c00423{left:452.161600pt;}
.x4_c00423{left:473.432000pt;}
.x5_c00423{left:483.987200pt;}
.x6_c00423{left:497.740800pt;}
.x7_c00423{left:501.899200pt;}
.x8_c00423{left:512.772800pt;}
.x9_c00423{left:520.131200pt;}
.xa_c00423{left:524.768000pt;}
.xb_c00423{left:539.160000pt;}
.xc_c00423{left:548.116800pt;}
.xd_c00423{left:552.275200pt;}
.xe_c00423{left:556.275200pt;}
.xf_c00423{left:581.220800pt;}
.x10_c00423{left:588.419200pt;}
.x11_c00423{left:598.334400pt;}
.x12_c00423{left:608.089600pt;}
.x13_c00423{left:630.161600pt;}
.x14_c00423{left:634.158400pt;}
.x15_c00423{left:640.716800pt;}
.x16_c00423{left:644.876800pt;}
.x17_c00423{left:652.232000pt;}
.x18_c00423{left:659.427200pt;}
.x19_c00423{left:665.985600pt;}
.x1a_c00423{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.112000;font-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_c00424{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls0_c00424{letter-spacing:0.000000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00424{word-spacing:-16.552343px;}
.ws1_c00424{word-spacing:0.000000px;}
._2_c00424{margin-left:-1.004222px;}
._0_c00424{width:1.102012px;}
._a_c00424{width:3.119159px;}
._4_c00424{width:4.483981px;}
._3_c00424{width:6.955375px;}
._1_c00424{width:7.986708px;}
._5_c00424{width:9.272886px;}
._7_c00424{width:10.675462px;}
._9_c00424{width:13.136171px;}
._d_c00424{width:14.926280px;}
._e_c00424{width:17.635130px;}
._8_c00424{width:22.419917px;}
._f_c00424{width:23.554925px;}
._c_c00424{width:25.990264px;}
._b_c00424{width:27.609489px;}
._6_c00424{width:54.651097px;}
.fc1_c00424{color:rgb(105,148,45);}
.fc0_c00424{color:rgb(35,31,32);}
.fs2_c00424{font-size:59.733096px;}
.fs0_c00424{font-size:66.209374px;}
.fs1_c00424{font-size:71.968771px;}
.y0_c00424{bottom:0.000000px;}
.y4_c00424{bottom:0.120938px;}
.y8_c00424{bottom:0.556171px;}
.y2_c00424{bottom:3.957898px;}
.ya_c00424{bottom:65.791352px;}
.y3_c00424{bottom:74.623320px;}
.y1_c00424{bottom:74.983320px;}
.y26_c00424{bottom:171.583310px;}
.y25_c00424{bottom:199.829949px;}
.y24_c00424{bottom:249.488779px;}
.y23_c00424{bottom:277.735417px;}
.y22_c00424{bottom:306.160706px;}
.y21_c00424{bottom:334.772295px;}
.y20_c00424{bottom:384.246325px;}
.y1f_c00424{bottom:412.496414px;}
.y1e_c00424{bottom:441.103052px;}
.y1d_c00424{bottom:469.529691px;}
.y1c_c00424{bottom:497.956329px;}
.y1b_c00424{bottom:547.615160px;}
.y1a_c00424{bottom:575.860448px;}
.y19_c00424{bottom:604.287087px;}
.y18_c00424{bottom:632.714475px;}
.y17_c00424{bottom:682.372706px;}
.y16_c00424{bottom:710.619344px;}
.y15_c00424{bottom:739.046733px;}
.y14_c00424{bottom:767.476222px;}
.y13_c00424{bottom:817.133702px;}
.y12_c00424{bottom:845.380340px;}
.y11_c00424{bottom:895.036471px;}
.y10_c00424{bottom:923.285959px;}
.yf_c00424{bottom:951.350048px;}
.ye_c00424{bottom:1001.366178px;}
.yd_c00424{bottom:1029.614167px;}
.yc_c00424{bottom:1058.042155px;}
.yb_c00424{bottom:1086.470894px;}
.y9_c00424{bottom:1106.080386px;}
.y7_c00424{bottom:1151.494902px;}
.y6_c00424{bottom:1172.185744px;}
.y5_c00424{bottom:1192.876585px;}
.h1_c00424{height:18.172260px;}
.h7_c00424{height:38.288915px;}
.h6_c00424{height:42.440208px;}
.h2_c00424{height:46.346561px;}
.h4_c00424{height:50.378140px;}
.h9_c00424{height:59.323599px;}
.h8_c00424{height:59.389808px;}
.h5_c00424{height:1262.431829px;}
.h3_c00424{height:1262.879062px;}
.h0_c00424{height:1263.000000px;}
.w17_c00424{width:2.700000px;}
.w12_c00424{width:4.676400px;}
.wc_c00424{width:4.680000px;}
.w6_c00424{width:5.038200px;}
.w16_c00424{width:6.474600px;}
.w9_c00424{width:6.476400px;}
.wf_c00424{width:7.376400px;}
.w13_c00424{width:7.378200px;}
.w15_c00424{width:8.094600px;}
.w14_c00424{width:8.274600px;}
.w7_c00424{width:8.276400px;}
.w8_c00424{width:8.278200px;}
.we_c00424{width:9.358200px;}
.wb_c00424{width:10.076400px;}
.w10_c00424{width:11.334600px;}
.w4_c00424{width:11.874600px;}
.w2_c00424{width:12.058200px;}
.wa_c00424{width:12.414600px;}
.w5_c00424{width:15.472800px;}
.w1_c00424{width:16.552980px;}
.w3_c00424{width:23.929200px;}
.w11_c00424{width:25.911000px;}
.wd_c00424{width:28.063800px;}
.w19_c00424{width:892.099575px;}
.w18_c00424{width:892.414744px;}
.w0_c00424{width:892.500000px;}
.x0_c00424{left:0.000000px;}
.x1e_c00424{left:113.887229px;}
.x1_c00424{left:128.331540px;}
.x20_c00424{left:141.957838px;}
.x1f_c00424{left:181.357802px;}
.x21_c00424{left:194.852467px;}
.x1c_c00424{left:253.542308px;}
.x1b_c00424{left:269.015236px;}
.x1d_c00424{left:423.021349px;}
.x2_c00424{left:496.623600px;}
.x3_c00424{left:508.681800px;}
.x4_c00424{left:532.611000px;}
.x5_c00424{left:544.485600px;}
.x6_c00424{left:559.958400px;}
.x7_c00424{left:564.636600px;}
.x8_c00424{left:576.869400px;}
.x9_c00424{left:585.147600px;}
.xa_c00424{left:590.364000px;}
.xb_c00424{left:606.555000px;}
.xc_c00424{left:616.631400px;}
.xd_c00424{left:621.309600px;}
.xe_c00424{left:625.809600px;}
.xf_c00424{left:653.873400px;}
.x10_c00424{left:661.971600px;}
.x11_c00424{left:673.126200px;}
.x12_c00424{left:684.100800px;}
.x13_c00424{left:708.931800px;}
.x14_c00424{left:713.428200px;}
.x15_c00424{left:720.806400px;}
.x16_c00424{left:725.486400px;}
.x17_c00424{left:733.761000px;}
.x18_c00424{left:741.855600px;}
.x19_c00424{left:749.233800px;}
.x1a_c00424{left:755.708400px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:-14.713194pt;}
.ws1_c00424{word-spacing:0.000000pt;}
._2_c00424{margin-left:-0.892641pt;}
._0_c00424{width:0.979567pt;}
._a_c00424{width:2.772585pt;}
._4_c00424{width:3.985761pt;}
._3_c00424{width:6.182556pt;}
._1_c00424{width:7.099296pt;}
._5_c00424{width:8.242565pt;}
._7_c00424{width:9.489300pt;}
._9_c00424{width:11.676597pt;}
._d_c00424{width:13.267805pt;}
._e_c00424{width:15.675671pt;}
._8_c00424{width:19.928815pt;}
._f_c00424{width:20.937711pt;}
._c_c00424{width:23.102457pt;}
._b_c00424{width:24.541768pt;}
._6_c00424{width:48.578753pt;}
.fs2_c00424{font-size:53.096085pt;}
.fs0_c00424{font-size:58.852776pt;}
.fs1_c00424{font-size:63.972241pt;}
.y0_c00424{bottom:0.000000pt;}
.y4_c00424{bottom:0.107500pt;}
.y8_c00424{bottom:0.494374pt;}
.y2_c00424{bottom:3.518132pt;}
.ya_c00424{bottom:58.481202pt;}
.y3_c00424{bottom:66.331840pt;}
.y1_c00424{bottom:66.651840pt;}
.y26_c00424{bottom:152.518498pt;}
.y25_c00424{bottom:177.626621pt;}
.y24_c00424{bottom:221.767803pt;}
.y23_c00424{bottom:246.875927pt;}
.y22_c00424{bottom:272.142850pt;}
.y21_c00424{bottom:297.575373pt;}
.y20_c00424{bottom:341.552289pt;}
.y1f_c00424{bottom:366.663479pt;}
.y1e_c00424{bottom:392.091602pt;}
.y1d_c00424{bottom:417.359725pt;}
.y1c_c00424{bottom:442.627848pt;}
.y1b_c00424{bottom:486.769031pt;}
.y1a_c00424{bottom:511.875954pt;}
.y19_c00424{bottom:537.144077pt;}
.y18_c00424{bottom:562.412867pt;}
.y17_c00424{bottom:606.553516pt;}
.y16_c00424{bottom:631.661639pt;}
.y15_c00424{bottom:656.930429pt;}
.y14_c00424{bottom:682.201086pt;}
.y13_c00424{bottom:726.341068pt;}
.y12_c00424{bottom:751.449191pt;}
.y11_c00424{bottom:795.587974pt;}
.y10_c00424{bottom:820.698630pt;}
.yf_c00424{bottom:845.644487pt;}
.ye_c00424{bottom:890.103269pt;}
.yd_c00424{bottom:915.212593pt;}
.yc_c00424{bottom:940.481916pt;}
.yb_c00424{bottom:965.751906pt;}
.y9_c00424{bottom:983.182565pt;}
.y7_c00424{bottom:1023.551024pt;}
.y6_c00424{bottom:1041.942883pt;}
.y5_c00424{bottom:1060.334742pt;}
.h1_c00424{height:16.153120pt;}
.h7_c00424{height:34.034591pt;}
.h6_c00424{height:37.724630pt;}
.h2_c00424{height:41.196944pt;}
.h4_c00424{height:44.780569pt;}
.h9_c00424{height:52.732088pt;}
.h8_c00424{height:52.790940pt;}
.h5_c00424{height:1122.161626pt;}
.h3_c00424{height:1122.559167pt;}
.h0_c00424{height:1122.666667pt;}
.w17_c00424{width:2.400000pt;}
.w12_c00424{width:4.156800pt;}
.wc_c00424{width:4.160000pt;}
.w6_c00424{width:4.478400pt;}
.w16_c00424{width:5.755200pt;}
.w9_c00424{width:5.756800pt;}
.wf_c00424{width:6.556800pt;}
.w13_c00424{width:6.558400pt;}
.w15_c00424{width:7.195200pt;}
.w14_c00424{width:7.355200pt;}
.w7_c00424{width:7.356800pt;}
.w8_c00424{width:7.358400pt;}
.we_c00424{width:8.318400pt;}
.wb_c00424{width:8.956800pt;}
.w10_c00424{width:10.075200pt;}
.w4_c00424{width:10.555200pt;}
.w2_c00424{width:10.718400pt;}
.wa_c00424{width:11.035200pt;}
.w5_c00424{width:13.753600pt;}
.w1_c00424{width:14.713760pt;}
.w3_c00424{width:21.270400pt;}
.w11_c00424{width:23.032000pt;}
.wd_c00424{width:24.945600pt;}
.w19_c00424{width:792.977400pt;}
.w18_c00424{width:793.257550pt;}
.w0_c00424{width:793.333333pt;}
.x0_c00424{left:0.000000pt;}
.x1e_c00424{left:101.233093pt;}
.x1_c00424{left:114.072480pt;}
.x20_c00424{left:126.184745pt;}
.x1f_c00424{left:161.206935pt;}
.x21_c00424{left:173.202193pt;}
.x1c_c00424{left:225.370940pt;}
.x1b_c00424{left:239.124654pt;}
.x1d_c00424{left:376.018977pt;}
.x2_c00424{left:441.443200pt;}
.x3_c00424{left:452.161600pt;}
.x4_c00424{left:473.432000pt;}
.x5_c00424{left:483.987200pt;}
.x6_c00424{left:497.740800pt;}
.x7_c00424{left:501.899200pt;}
.x8_c00424{left:512.772800pt;}
.x9_c00424{left:520.131200pt;}
.xa_c00424{left:524.768000pt;}
.xb_c00424{left:539.160000pt;}
.xc_c00424{left:548.116800pt;}
.xd_c00424{left:552.275200pt;}
.xe_c00424{left:556.275200pt;}
.xf_c00424{left:581.220800pt;}
.x10_c00424{left:588.419200pt;}
.x11_c00424{left:598.334400pt;}
.x12_c00424{left:608.089600pt;}
.x13_c00424{left:630.161600pt;}
.x14_c00424{left:634.158400pt;}
.x15_c00424{left:640.716800pt;}
.x16_c00424{left:644.876800pt;}
.x17_c00424{left:652.232000pt;}
.x18_c00424{left:659.427200pt;}
.x19_c00424{left:665.985600pt;}
.x1a_c00424{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00425{font-family:ff5_c00425;line-height:0.360019;font-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_c00425{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00425{word-spacing:-16.552343px;}
.ws1_c00425{word-spacing:0.000000px;}
._2_c00425{margin-left:-1.008617px;}
._0_c00425{width:1.102012px;}
._a_c00425{width:3.141056px;}
._3_c00425{width:4.217818px;}
._b_c00425{width:8.171700px;}
._7_c00425{width:9.365383px;}
._5_c00425{width:13.278943px;}
._4_c00425{width:15.021810px;}
._6_c00425{width:20.061512px;}
._9_c00425{width:22.975484px;}
._8_c00425{width:23.999146px;}
._11_c00425{width:39.227063px;}
._1_c00425{width:58.358963px;}
._12_c00425{width:169.859304px;}
._c_c00425{width:287.444487px;}
._13_c00425{width:356.176978px;}
._10_c00425{width:429.611716px;}
._e_c00425{width:454.783793px;}
._d_c00425{width:842.188591px;}
._f_c00425{width:844.265490px;}
.fc1_c00425{color:rgb(105,148,45);}
.fc0_c00425{color:rgb(35,31,32);}
.fs3_c00425{font-size:48.218261px;}
.fs2_c00425{font-size:59.733096px;}
.fs0_c00425{font-size:66.209374px;}
.fs1_c00425{font-size:71.968771px;}
.y0_c00425{bottom:0.000000px;}
.y4_c00425{bottom:0.120938px;}
.y8_c00425{bottom:0.556171px;}
.y2_c00425{bottom:3.957898px;}
.ya_c00425{bottom:65.791352px;}
.y3_c00425{bottom:74.623320px;}
.y1_c00425{bottom:74.983320px;}
.y28_c00425{bottom:153.051267px;}
.y27_c00425{bottom:196.951750px;}
.y26_c00425{bottom:245.889080px;}
.y25_c00425{bottom:267.839921px;}
.y22_c00425{bottom:294.828211px;}
.y24_c00425{bottom:296.266560px;}
.y23_c00425{bottom:324.873199px;}
.y21_c00425{bottom:343.947191px;}
.y20_c00425{bottom:392.884671px;}
.y1f_c00425{bottom:393.319905px;}
.y1e_c00425{bottom:419.766395px;}
.y1d_c00425{bottom:442.078886px;}
.y1c_c00425{bottom:494.538881px;}
.y1b_c00425{bottom:520.267620px;}
.y1a_c00425{bottom:568.482851px;}
.y19_c00425{bottom:596.732940px;}
.y18_c00425{bottom:625.160929px;}
.y17_c00425{bottom:653.766217px;}
.y16_c00425{bottom:703.245047px;}
.y15_c00425{bottom:731.490036px;}
.y14_c00425{bottom:760.096375px;}
.y13_c00425{bottom:788.523013px;}
.y12_c00425{bottom:816.952502px;}
.y11_c00425{bottom:845.380490px;}
.y10_c00425{bottom:895.039171px;}
.yf_c00425{bottom:944.334551px;}
.ye_c00425{bottom:972.761939px;}
.yd_c00425{bottom:1001.189928px;}
.yc_c00425{bottom:1029.256417px;}
.yb_c00425{bottom:1086.110894px;}
.y9_c00425{bottom:1106.080386px;}
.y7_c00425{bottom:1151.494902px;}
.y6_c00425{bottom:1172.185744px;}
.y5_c00425{bottom:1192.876585px;}
.h1_c00425{height:18.172260px;}
.ha_c00425{height:28.253754px;}
.h7_c00425{height:38.288915px;}
.h6_c00425{height:42.440208px;}
.hc_c00425{height:43.203562px;}
.h2_c00425{height:46.346561px;}
.h4_c00425{height:50.378140px;}
.hb_c00425{height:53.520854px;}
.h9_c00425{height:59.323599px;}
.h8_c00425{height:59.389808px;}
.h5_c00425{height:1262.431829px;}
.h3_c00425{height:1262.879062px;}
.h0_c00425{height:1263.000000px;}
.w17_c00425{width:2.700000px;}
.w12_c00425{width:4.676400px;}
.wc_c00425{width:4.680000px;}
.w6_c00425{width:5.038200px;}
.w16_c00425{width:6.474600px;}
.w9_c00425{width:6.476400px;}
.wf_c00425{width:7.376400px;}
.w13_c00425{width:7.378200px;}
.w15_c00425{width:8.094600px;}
.w14_c00425{width:8.274600px;}
.w7_c00425{width:8.276400px;}
.w8_c00425{width:8.278200px;}
.we_c00425{width:9.358200px;}
.wb_c00425{width:10.076400px;}
.w10_c00425{width:11.334600px;}
.w4_c00425{width:11.874600px;}
.w2_c00425{width:12.058200px;}
.wa_c00425{width:12.414600px;}
.w5_c00425{width:15.472800px;}
.w1_c00425{width:16.552980px;}
.w3_c00425{width:23.929200px;}
.w11_c00425{width:25.911000px;}
.wd_c00425{width:28.063800px;}
.w19_c00425{width:892.099575px;}
.w18_c00425{width:892.414744px;}
.w0_c00425{width:892.500000px;}
.x0_c00425{left:0.000000px;}
.x1e_c00425{left:113.887229px;}
.x1_c00425{left:128.331540px;}
.x2d_c00425{left:132.598019px;}
.x31_c00425{left:136.917320px;}
.x2c_c00425{left:139.077319px;}
.x1f_c00425{left:140.874619px;}
.x22_c00425{left:141.954840px;}
.x28_c00425{left:156.384781px;}
.x25_c00425{left:167.863104px;}
.x2e_c00425{left:171.279658px;}
.x21_c00425{left:181.357802px;}
.x20_c00425{left:194.851797px;}
.x23_c00425{left:207.265792px;}
.x24_c00425{left:221.838286px;}
.x1c_c00425{left:253.542308px;}
.x2b_c00425{left:261.780270px;}
.x1b_c00425{left:269.015236px;}
.x2f_c00425{left:335.188666px;}
.x26_c00425{left:376.209647px;}
.x1d_c00425{left:423.021349px;}
.x27_c00425{left:490.496148px;}
.x2_c00425{left:496.623600px;}
.x29_c00425{left:504.168642px;}
.x3_c00425{left:508.681800px;}
.x30_c00425{left:521.584060px;}
.x4_c00425{left:532.611000px;}
.x5_c00425{left:544.485600px;}
.x6_c00425{left:559.958400px;}
.x7_c00425{left:564.636600px;}
.x8_c00425{left:576.869400px;}
.x9_c00425{left:585.147600px;}
.xa_c00425{left:590.364000px;}
.xb_c00425{left:606.555000px;}
.x2a_c00425{left:612.261130px;}
.xc_c00425{left:616.631400px;}
.xd_c00425{left:621.309600px;}
.xe_c00425{left:625.809600px;}
.xf_c00425{left:653.873400px;}
.x10_c00425{left:661.971600px;}
.x11_c00425{left:673.126200px;}
.x12_c00425{left:684.100800px;}
.x13_c00425{left:708.931800px;}
.x14_c00425{left:713.428200px;}
.x15_c00425{left:720.806400px;}
.x16_c00425{left:725.486400px;}
.x17_c00425{left:733.761000px;}
.x18_c00425{left:741.855600px;}
.x19_c00425{left:749.233800px;}
.x1a_c00425{left:755.708400px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws0_c00425{word-spacing:-14.713194pt;}
.ws1_c00425{word-spacing:0.000000pt;}
._2_c00425{margin-left:-0.896549pt;}
._0_c00425{width:0.979567pt;}
._a_c00425{width:2.792050pt;}
._3_c00425{width:3.749171pt;}
._b_c00425{width:7.263734pt;}
._7_c00425{width:8.324785pt;}
._5_c00425{width:11.803505pt;}
._4_c00425{width:13.352720pt;}
._6_c00425{width:17.832455pt;}
._9_c00425{width:20.422652pt;}
._8_c00425{width:21.332574pt;}
._11_c00425{width:34.868501pt;}
._1_c00425{width:51.874633pt;}
._12_c00425{width:150.986048pt;}
._c_c00425{width:255.506211pt;}
._13_c00425{width:316.601758pt;}
._10_c00425{width:381.877081pt;}
._e_c00425{width:404.252261pt;}
._d_c00425{width:748.612081pt;}
._f_c00425{width:750.458213pt;}
.fs3_c00425{font-size:42.860676pt;}
.fs2_c00425{font-size:53.096085pt;}
.fs0_c00425{font-size:58.852776pt;}
.fs1_c00425{font-size:63.972241pt;}
.y0_c00425{bottom:0.000000pt;}
.y4_c00425{bottom:0.107500pt;}
.y8_c00425{bottom:0.494374pt;}
.y2_c00425{bottom:3.518132pt;}
.ya_c00425{bottom:58.481202pt;}
.y3_c00425{bottom:66.331840pt;}
.y1_c00425{bottom:66.651840pt;}
.y28_c00425{bottom:136.045571pt;}
.y27_c00425{bottom:175.068222pt;}
.y26_c00425{bottom:218.568071pt;}
.y25_c00425{bottom:238.079930pt;}
.y22_c00425{bottom:262.069521pt;}
.y24_c00425{bottom:263.348053pt;}
.y23_c00425{bottom:288.776177pt;}
.y21_c00425{bottom:305.730836pt;}
.y20_c00425{bottom:349.230819pt;}
.y1f_c00425{bottom:349.617693pt;}
.y1e_c00425{bottom:373.125684pt;}
.y1d_c00425{bottom:392.959009pt;}
.y1c_c00425{bottom:439.590116pt;}
.y1b_c00425{bottom:462.460107pt;}
.y1a_c00425{bottom:505.318090pt;}
.y19_c00425{bottom:530.429280pt;}
.y18_c00425{bottom:555.698603pt;}
.y17_c00425{bottom:581.125526pt;}
.y16_c00425{bottom:625.106709pt;}
.y15_c00425{bottom:650.213365pt;}
.y14_c00425{bottom:675.641222pt;}
.y13_c00425{bottom:700.909345pt;}
.y12_c00425{bottom:726.180002pt;}
.y11_c00425{bottom:751.449325pt;}
.y10_c00425{bottom:795.590374pt;}
.yf_c00425{bottom:839.408490pt;}
.ye_c00425{bottom:864.677280pt;}
.yd_c00425{bottom:889.946603pt;}
.yc_c00425{bottom:914.894593pt;}
.yb_c00425{bottom:965.431906pt;}
.y9_c00425{bottom:983.182565pt;}
.y7_c00425{bottom:1023.551024pt;}
.y6_c00425{bottom:1041.942883pt;}
.y5_c00425{bottom:1060.334742pt;}
.h1_c00425{height:16.153120pt;}
.ha_c00425{height:25.114448pt;}
.h7_c00425{height:34.034591pt;}
.h6_c00425{height:37.724630pt;}
.hc_c00425{height:38.403166pt;}
.h2_c00425{height:41.196944pt;}
.h4_c00425{height:44.780569pt;}
.hb_c00425{height:47.574093pt;}
.h9_c00425{height:52.732088pt;}
.h8_c00425{height:52.790940pt;}
.h5_c00425{height:1122.161626pt;}
.h3_c00425{height:1122.559167pt;}
.h0_c00425{height:1122.666667pt;}
.w17_c00425{width:2.400000pt;}
.w12_c00425{width:4.156800pt;}
.wc_c00425{width:4.160000pt;}
.w6_c00425{width:4.478400pt;}
.w16_c00425{width:5.755200pt;}
.w9_c00425{width:5.756800pt;}
.wf_c00425{width:6.556800pt;}
.w13_c00425{width:6.558400pt;}
.w15_c00425{width:7.195200pt;}
.w14_c00425{width:7.355200pt;}
.w7_c00425{width:7.356800pt;}
.w8_c00425{width:7.358400pt;}
.we_c00425{width:8.318400pt;}
.wb_c00425{width:8.956800pt;}
.w10_c00425{width:10.075200pt;}
.w4_c00425{width:10.555200pt;}
.w2_c00425{width:10.718400pt;}
.wa_c00425{width:11.035200pt;}
.w5_c00425{width:13.753600pt;}
.w1_c00425{width:14.713760pt;}
.w3_c00425{width:21.270400pt;}
.w11_c00425{width:23.032000pt;}
.wd_c00425{width:24.945600pt;}
.w19_c00425{width:792.977400pt;}
.w18_c00425{width:793.257550pt;}
.w0_c00425{width:793.333333pt;}
.x0_c00425{left:0.000000pt;}
.x1e_c00425{left:101.233093pt;}
.x1_c00425{left:114.072480pt;}
.x2d_c00425{left:117.864906pt;}
.x31_c00425{left:121.704285pt;}
.x2c_c00425{left:123.624284pt;}
.x1f_c00425{left:125.221883pt;}
.x22_c00425{left:126.182080pt;}
.x28_c00425{left:139.008694pt;}
.x25_c00425{left:149.211648pt;}
.x2e_c00425{left:152.248585pt;}
.x21_c00425{left:161.206935pt;}
.x20_c00425{left:173.201597pt;}
.x23_c00425{left:184.236260pt;}
.x24_c00425{left:197.189588pt;}
.x1c_c00425{left:225.370940pt;}
.x2b_c00425{left:232.693574pt;}
.x1b_c00425{left:239.124654pt;}
.x2f_c00425{left:297.945481pt;}
.x26_c00425{left:334.408575pt;}
.x1d_c00425{left:376.018977pt;}
.x27_c00425{left:435.996576pt;}
.x2_c00425{left:441.443200pt;}
.x29_c00425{left:448.149904pt;}
.x3_c00425{left:452.161600pt;}
.x30_c00425{left:463.630276pt;}
.x4_c00425{left:473.432000pt;}
.x5_c00425{left:483.987200pt;}
.x6_c00425{left:497.740800pt;}
.x7_c00425{left:501.899200pt;}
.x8_c00425{left:512.772800pt;}
.x9_c00425{left:520.131200pt;}
.xa_c00425{left:524.768000pt;}
.xb_c00425{left:539.160000pt;}
.x2a_c00425{left:544.232116pt;}
.xc_c00425{left:548.116800pt;}
.xd_c00425{left:552.275200pt;}
.xe_c00425{left:556.275200pt;}
.xf_c00425{left:581.220800pt;}
.x10_c00425{left:588.419200pt;}
.x11_c00425{left:598.334400pt;}
.x12_c00425{left:608.089600pt;}
.x13_c00425{left:630.161600pt;}
.x14_c00425{left:634.158400pt;}
.x15_c00425{left:640.716800pt;}
.x16_c00425{left:644.876800pt;}
.x17_c00425{left:652.232000pt;}
.x18_c00425{left:659.427200pt;}
.x19_c00425{left:665.985600pt;}
.x1a_c00425{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.112000;font-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_c00426{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls0_c00426{letter-spacing:0.000000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:-16.552343px;}
.ws1_c00426{word-spacing:0.000000px;}
._1_c00426{margin-left:-1.045816px;}
._0_c00426{width:1.102012px;}
._5_c00426{width:2.611637px;}
._6_c00426{width:4.255018px;}
._e_c00426{width:6.358391px;}
._2_c00426{width:9.238803px;}
._4_c00426{width:10.268427px;}
._3_c00426{width:11.417338px;}
._8_c00426{width:12.897993px;}
._9_c00426{width:13.941122px;}
._f_c00426{width:15.520491px;}
._a_c00426{width:18.375944px;}
._b_c00426{width:34.891986px;}
._c_c00426{width:35.904004px;}
._7_c00426{width:54.651097px;}
._d_c00426{width:62.071647px;}
.fc1_c00426{color:rgb(105,148,45);}
.fc0_c00426{color:rgb(35,31,32);}
.fs2_c00426{font-size:59.733096px;}
.fs0_c00426{font-size:66.209374px;}
.fs1_c00426{font-size:71.968771px;}
.y0_c00426{bottom:0.000000px;}
.y4_c00426{bottom:0.120938px;}
.y8_c00426{bottom:0.556171px;}
.y2_c00426{bottom:3.957898px;}
.ya_c00426{bottom:65.791352px;}
.y3_c00426{bottom:74.623320px;}
.y1_c00426{bottom:74.983320px;}
.y27_c00426{bottom:140.636222px;}
.y26_c00426{bottom:168.884211px;}
.y25_c00426{bottom:197.310850px;}
.y24_c00426{bottom:225.738238px;}
.y23_c00426{bottom:253.804427px;}
.y22_c00426{bottom:303.821157px;}
.y21_c00426{bottom:332.068546px;}
.y20_c00426{bottom:360.499384px;}
.y1f_c00426{bottom:410.151915px;}
.y1e_c00426{bottom:438.403503px;}
.y1d_c00426{bottom:466.830142px;}
.y1c_c00426{bottom:494.896631px;}
.y1b_c00426{bottom:544.914861px;}
.y1a_c00426{bottom:573.162249px;}
.y19_c00426{bottom:601.587538px;}
.y18_c00426{bottom:630.195526px;}
.y17_c00426{bottom:658.625015px;}
.y16_c00426{bottom:708.101145px;}
.y15_c00426{bottom:736.529134px;}
.y14_c00426{bottom:764.956523px;}
.y13_c00426{bottom:793.021961px;}
.y12_c00426{bottom:843.042291px;}
.y11_c00426{bottom:871.287580px;}
.y10_c00426{bottom:899.714219px;}
.yf_c00426{bottom:928.139507px;}
.ye_c00426{bottom:977.798337px;}
.yd_c00426{bottom:1006.046326px;}
.yc_c00426{bottom:1034.476415px;}
.yb_c00426{bottom:1084.670895px;}
.y9_c00426{bottom:1106.080386px;}
.y7_c00426{bottom:1151.494902px;}
.y6_c00426{bottom:1172.185744px;}
.y5_c00426{bottom:1192.876585px;}
.h1_c00426{height:18.172260px;}
.h7_c00426{height:38.288915px;}
.h6_c00426{height:42.440208px;}
.h2_c00426{height:46.346561px;}
.h4_c00426{height:50.378140px;}
.ha_c00426{height:59.323599px;}
.h9_c00426{height:59.389808px;}
.h8_c00426{height:64.555988px;}
.h5_c00426{height:1262.431829px;}
.h3_c00426{height:1262.879062px;}
.h0_c00426{height:1263.000000px;}
.w17_c00426{width:2.700000px;}
.w12_c00426{width:4.676400px;}
.wc_c00426{width:4.680000px;}
.w6_c00426{width:5.038200px;}
.w16_c00426{width:6.474600px;}
.w9_c00426{width:6.476400px;}
.wf_c00426{width:7.376400px;}
.w13_c00426{width:7.378200px;}
.w15_c00426{width:8.094600px;}
.w14_c00426{width:8.274600px;}
.w7_c00426{width:8.276400px;}
.w8_c00426{width:8.278200px;}
.we_c00426{width:9.358200px;}
.wb_c00426{width:10.076400px;}
.w10_c00426{width:11.334600px;}
.w4_c00426{width:11.874600px;}
.w2_c00426{width:12.058200px;}
.wa_c00426{width:12.414600px;}
.w5_c00426{width:15.472800px;}
.w1_c00426{width:16.552980px;}
.w3_c00426{width:23.929200px;}
.w11_c00426{width:25.911000px;}
.wd_c00426{width:28.063800px;}
.w19_c00426{width:892.099575px;}
.w18_c00426{width:892.414744px;}
.w0_c00426{width:892.500000px;}
.x0_c00426{left:0.000000px;}
.x1e_c00426{left:113.887229px;}
.x1_c00426{left:128.331540px;}
.x20_c00426{left:141.952382px;}
.x1f_c00426{left:181.357802px;}
.x21_c00426{left:194.851238px;}
.x1c_c00426{left:253.542308px;}
.x1b_c00426{left:269.015236px;}
.x1d_c00426{left:423.021349px;}
.x2_c00426{left:496.623600px;}
.x3_c00426{left:508.681800px;}
.x4_c00426{left:532.611000px;}
.x5_c00426{left:544.485600px;}
.x6_c00426{left:559.958400px;}
.x7_c00426{left:564.636600px;}
.x8_c00426{left:576.869400px;}
.x9_c00426{left:585.147600px;}
.xa_c00426{left:590.364000px;}
.xb_c00426{left:606.555000px;}
.xc_c00426{left:616.631400px;}
.xd_c00426{left:621.309600px;}
.xe_c00426{left:625.809600px;}
.xf_c00426{left:653.873400px;}
.x10_c00426{left:661.971600px;}
.x11_c00426{left:673.126200px;}
.x12_c00426{left:684.100800px;}
.x13_c00426{left:708.931800px;}
.x14_c00426{left:713.428200px;}
.x15_c00426{left:720.806400px;}
.x16_c00426{left:725.486400px;}
.x17_c00426{left:733.761000px;}
.x18_c00426{left:741.855600px;}
.x19_c00426{left:749.233800px;}
.x1a_c00426{left:755.708400px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws0_c00426{word-spacing:-14.713194pt;}
.ws1_c00426{word-spacing:0.000000pt;}
._1_c00426{margin-left:-0.929614pt;}
._0_c00426{width:0.979567pt;}
._5_c00426{width:2.321455pt;}
._6_c00426{width:3.782238pt;}
._e_c00426{width:5.651903pt;}
._2_c00426{width:8.212270pt;}
._4_c00426{width:9.127491pt;}
._3_c00426{width:10.148745pt;}
._8_c00426{width:11.464883pt;}
._9_c00426{width:12.392109pt;}
._f_c00426{width:13.795992pt;}
._a_c00426{width:16.334172pt;}
._b_c00426{width:31.015099pt;}
._c_c00426{width:31.914670pt;}
._7_c00426{width:48.578753pt;}
._d_c00426{width:55.174798pt;}
.fs2_c00426{font-size:53.096085pt;}
.fs0_c00426{font-size:58.852776pt;}
.fs1_c00426{font-size:63.972241pt;}
.y0_c00426{bottom:0.000000pt;}
.y4_c00426{bottom:0.107500pt;}
.y8_c00426{bottom:0.494374pt;}
.y2_c00426{bottom:3.518132pt;}
.ya_c00426{bottom:58.481202pt;}
.y3_c00426{bottom:66.331840pt;}
.y1_c00426{bottom:66.651840pt;}
.y27_c00426{bottom:125.009975pt;}
.y26_c00426{bottom:150.119299pt;}
.y25_c00426{bottom:175.387422pt;}
.y24_c00426{bottom:200.656212pt;}
.y23_c00426{bottom:225.603935pt;}
.y22_c00426{bottom:270.063251pt;}
.y21_c00426{bottom:295.172041pt;}
.y20_c00426{bottom:320.443897pt;}
.y1f_c00426{bottom:364.579480pt;}
.y1e_c00426{bottom:389.692003pt;}
.y1d_c00426{bottom:414.960126pt;}
.y1c_c00426{bottom:439.908116pt;}
.y1b_c00426{bottom:484.368765pt;}
.y1a_c00426{bottom:509.477555pt;}
.y19_c00426{bottom:534.744478pt;}
.y18_c00426{bottom:560.173801pt;}
.y17_c00426{bottom:585.444458pt;}
.y16_c00426{bottom:629.423240pt;}
.y15_c00426{bottom:654.692564pt;}
.y14_c00426{bottom:679.961353pt;}
.y13_c00426{bottom:704.908410pt;}
.y12_c00426{bottom:749.370926pt;}
.y11_c00426{bottom:774.477849pt;}
.y10_c00426{bottom:799.745972pt;}
.yf_c00426{bottom:825.012895pt;}
.ye_c00426{bottom:869.154078pt;}
.yd_c00426{bottom:894.263401pt;}
.yc_c00426{bottom:919.534591pt;}
.yb_c00426{bottom:964.151906pt;}
.y9_c00426{bottom:983.182565pt;}
.y7_c00426{bottom:1023.551024pt;}
.y6_c00426{bottom:1041.942883pt;}
.y5_c00426{bottom:1060.334742pt;}
.h1_c00426{height:16.153120pt;}
.h7_c00426{height:34.034591pt;}
.h6_c00426{height:37.724630pt;}
.h2_c00426{height:41.196944pt;}
.h4_c00426{height:44.780569pt;}
.ha_c00426{height:52.732088pt;}
.h9_c00426{height:52.790940pt;}
.h8_c00426{height:57.383100pt;}
.h5_c00426{height:1122.161626pt;}
.h3_c00426{height:1122.559167pt;}
.h0_c00426{height:1122.666667pt;}
.w17_c00426{width:2.400000pt;}
.w12_c00426{width:4.156800pt;}
.wc_c00426{width:4.160000pt;}
.w6_c00426{width:4.478400pt;}
.w16_c00426{width:5.755200pt;}
.w9_c00426{width:5.756800pt;}
.wf_c00426{width:6.556800pt;}
.w13_c00426{width:6.558400pt;}
.w15_c00426{width:7.195200pt;}
.w14_c00426{width:7.355200pt;}
.w7_c00426{width:7.356800pt;}
.w8_c00426{width:7.358400pt;}
.we_c00426{width:8.318400pt;}
.wb_c00426{width:8.956800pt;}
.w10_c00426{width:10.075200pt;}
.w4_c00426{width:10.555200pt;}
.w2_c00426{width:10.718400pt;}
.wa_c00426{width:11.035200pt;}
.w5_c00426{width:13.753600pt;}
.w1_c00426{width:14.713760pt;}
.w3_c00426{width:21.270400pt;}
.w11_c00426{width:23.032000pt;}
.wd_c00426{width:24.945600pt;}
.w19_c00426{width:792.977400pt;}
.w18_c00426{width:793.257550pt;}
.w0_c00426{width:793.333333pt;}
.x0_c00426{left:0.000000pt;}
.x1e_c00426{left:101.233093pt;}
.x1_c00426{left:114.072480pt;}
.x20_c00426{left:126.179895pt;}
.x1f_c00426{left:161.206935pt;}
.x21_c00426{left:173.201101pt;}
.x1c_c00426{left:225.370940pt;}
.x1b_c00426{left:239.124654pt;}
.x1d_c00426{left:376.018977pt;}
.x2_c00426{left:441.443200pt;}
.x3_c00426{left:452.161600pt;}
.x4_c00426{left:473.432000pt;}
.x5_c00426{left:483.987200pt;}
.x6_c00426{left:497.740800pt;}
.x7_c00426{left:501.899200pt;}
.x8_c00426{left:512.772800pt;}
.x9_c00426{left:520.131200pt;}
.xa_c00426{left:524.768000pt;}
.xb_c00426{left:539.160000pt;}
.xc_c00426{left:548.116800pt;}
.xd_c00426{left:552.275200pt;}
.xe_c00426{left:556.275200pt;}
.xf_c00426{left:581.220800pt;}
.x10_c00426{left:588.419200pt;}
.x11_c00426{left:598.334400pt;}
.x12_c00426{left:608.089600pt;}
.x13_c00426{left:630.161600pt;}
.x14_c00426{left:634.158400pt;}
.x15_c00426{left:640.716800pt;}
.x16_c00426{left:644.876800pt;}
.x17_c00426{left:652.232000pt;}
.x18_c00426{left:659.427200pt;}
.x19_c00426{left:665.985600pt;}
.x1a_c00426{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:0.360019;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_24d98807f733dc085d1c4453.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:0.712000;font-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_c00427{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls0_c00427{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00427{word-spacing:0.000000px;}
._2_c00427{margin-left:-1.011685px;}
._0_c00427{width:1.102012px;}
._9_c00427{width:2.580331px;}
._4_c00427{width:4.198960px;}
._3_c00427{width:5.290819px;}
._8_c00427{width:7.872676px;}
._7_c00427{width:9.003165px;}
._1_c00427{width:10.698603px;}
._a_c00427{width:12.335661px;}
._5_c00427{width:13.584343px;}
._b_c00427{width:15.199580px;}
._c_c00427{width:18.217734px;}
._6_c00427{width:58.358963px;}
.fc1_c00427{color:rgb(105,148,45);}
.fc0_c00427{color:rgb(35,31,32);}
.fs2_c00427{font-size:59.733096px;}
.fs0_c00427{font-size:66.209374px;}
.fs1_c00427{font-size:71.968771px;}
.y0_c00427{bottom:0.000000px;}
.y4_c00427{bottom:0.120938px;}
.y8_c00427{bottom:0.556171px;}
.y2_c00427{bottom:3.957898px;}
.ya_c00427{bottom:65.791352px;}
.y3_c00427{bottom:74.623320px;}
.y1_c00427{bottom:74.983320px;}
.y27_c00427{bottom:135.778624px;}
.y26_c00427{bottom:164.025263px;}
.y25_c00427{bottom:192.451752px;}
.y24_c00427{bottom:220.884240px;}
.y23_c00427{bottom:249.306079px;}
.y22_c00427{bottom:277.734067px;}
.y21_c00427{bottom:306.160706px;}
.y20_c00427{bottom:334.773195px;}
.y1f_c00427{bottom:363.198183px;}
.y1e_c00427{bottom:412.671164px;}
.y1d_c00427{bottom:462.149994px;}
.y1c_c00427{bottom:490.396632px;}
.y1b_c00427{bottom:518.823271px;}
.y1a_c00427{bottom:547.428560px;}
.y19_c00427{bottom:596.907390px;}
.y18_c00427{bottom:625.156129px;}
.y17_c00427{bottom:653.764117px;}
.y16_c00427{bottom:703.241597px;}
.y15_c00427{bottom:731.486886px;}
.y14_c00427{bottom:760.096375px;}
.y13_c00427{bottom:788.523013px;}
.y12_c00427{bottom:845.017941px;}
.y11_c00427{bottom:895.036771px;}
.y10_c00427{bottom:923.283409px;}
.yf_c00427{bottom:951.710048px;}
.ye_c00427{bottom:980.138037px;}
.yd_c00427{bottom:1029.794167px;}
.yc_c00427{bottom:1058.042155px;}
.yb_c00427{bottom:1086.470894px;}
.y9_c00427{bottom:1106.080386px;}
.y7_c00427{bottom:1151.494902px;}
.y6_c00427{bottom:1172.185744px;}
.y5_c00427{bottom:1192.876585px;}
.h1_c00427{height:18.172260px;}
.ha_c00427{height:28.253754px;}
.h7_c00427{height:38.288915px;}
.hb_c00427{height:41.813167px;}
.h6_c00427{height:42.440208px;}
.h2_c00427{height:46.346561px;}
.h4_c00427{height:50.378140px;}
.h9_c00427{height:59.323599px;}
.h8_c00427{height:59.389808px;}
.h5_c00427{height:1262.431829px;}
.h3_c00427{height:1262.879062px;}
.h0_c00427{height:1263.000000px;}
.w17_c00427{width:2.700000px;}
.w12_c00427{width:4.676400px;}
.wc_c00427{width:4.680000px;}
.w6_c00427{width:5.038200px;}
.w16_c00427{width:6.474600px;}
.w9_c00427{width:6.476400px;}
.wf_c00427{width:7.376400px;}
.w13_c00427{width:7.378200px;}
.w15_c00427{width:8.094600px;}
.w14_c00427{width:8.274600px;}
.w7_c00427{width:8.276400px;}
.w8_c00427{width:8.278200px;}
.we_c00427{width:9.358200px;}
.wb_c00427{width:10.076400px;}
.w10_c00427{width:11.334600px;}
.w4_c00427{width:11.874600px;}
.w2_c00427{width:12.058200px;}
.wa_c00427{width:12.414600px;}
.w5_c00427{width:15.472800px;}
.w1_c00427{width:16.552980px;}
.w3_c00427{width:23.929200px;}
.w11_c00427{width:25.911000px;}
.wd_c00427{width:28.063800px;}
.w19_c00427{width:892.099575px;}
.w18_c00427{width:892.414744px;}
.w0_c00427{width:892.500000px;}
.x0_c00427{left:0.000000px;}
.x1e_c00427{left:113.887229px;}
.x1_c00427{left:128.331540px;}
.x21_c00427{left:140.869550px;}
.x20_c00427{left:141.954840px;}
.x1f_c00427{left:181.357802px;}
.x22_c00427{left:207.265792px;}
.x23_c00427{left:221.838286px;}
.x1c_c00427{left:253.542308px;}
.x24_c00427{left:261.240270px;}
.x1b_c00427{left:269.015236px;}
.x25_c00427{left:275.815765px;}
.x1d_c00427{left:423.021349px;}
.x2_c00427{left:496.623600px;}
.x3_c00427{left:508.681800px;}
.x4_c00427{left:532.611000px;}
.x5_c00427{left:544.485600px;}
.x6_c00427{left:559.958400px;}
.x7_c00427{left:564.636600px;}
.x8_c00427{left:576.869400px;}
.x9_c00427{left:585.147600px;}
.xa_c00427{left:590.364000px;}
.xb_c00427{left:606.555000px;}
.xc_c00427{left:616.631400px;}
.xd_c00427{left:621.309600px;}
.xe_c00427{left:625.809600px;}
.xf_c00427{left:653.873400px;}
.x10_c00427{left:661.971600px;}
.x11_c00427{left:673.126200px;}
.x12_c00427{left:684.100800px;}
.x13_c00427{left:708.931800px;}
.x14_c00427{left:713.428200px;}
.x15_c00427{left:720.806400px;}
.x16_c00427{left:725.486400px;}
.x17_c00427{left:733.761000px;}
.x18_c00427{left:741.855600px;}
.x19_c00427{left:749.233800px;}
.x1a_c00427{left:755.708400px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:-14.713194pt;}
.ws1_c00427{word-spacing:0.000000pt;}
._2_c00427{margin-left:-0.899275pt;}
._0_c00427{width:0.979567pt;}
._9_c00427{width:2.293627pt;}
._4_c00427{width:3.732409pt;}
._3_c00427{width:4.702950pt;}
._8_c00427{width:6.997934pt;}
._7_c00427{width:8.002813pt;}
._1_c00427{width:9.509869pt;}
._a_c00427{width:10.965032pt;}
._5_c00427{width:12.074971pt;}
._b_c00427{width:13.510738pt;}
._c_c00427{width:16.193541pt;}
._6_c00427{width:51.874633pt;}
.fs2_c00427{font-size:53.096085pt;}
.fs0_c00427{font-size:58.852776pt;}
.fs1_c00427{font-size:63.972241pt;}
.y0_c00427{bottom:0.000000pt;}
.y4_c00427{bottom:0.107500pt;}
.y8_c00427{bottom:0.494374pt;}
.y2_c00427{bottom:3.518132pt;}
.ya_c00427{bottom:58.481202pt;}
.y3_c00427{bottom:66.331840pt;}
.y1_c00427{bottom:66.651840pt;}
.y27_c00427{bottom:120.692110pt;}
.y26_c00427{bottom:145.800234pt;}
.y25_c00427{bottom:171.068224pt;}
.y24_c00427{bottom:196.341547pt;}
.y23_c00427{bottom:221.605403pt;}
.y22_c00427{bottom:246.874727pt;}
.y21_c00427{bottom:272.142850pt;}
.y20_c00427{bottom:297.576173pt;}
.y1f_c00427{bottom:322.842830pt;}
.y1e_c00427{bottom:366.818812pt;}
.y1d_c00427{bottom:410.799994pt;}
.y1c_c00427{bottom:435.908118pt;}
.y1b_c00427{bottom:461.176241pt;}
.y1a_c00427{bottom:486.603164pt;}
.y19_c00427{bottom:530.584347pt;}
.y18_c00427{bottom:555.694336pt;}
.y17_c00427{bottom:581.123660pt;}
.y16_c00427{bottom:625.103642pt;}
.y15_c00427{bottom:650.210565pt;}
.y14_c00427{bottom:675.641222pt;}
.y13_c00427{bottom:700.909345pt;}
.y12_c00427{bottom:751.127058pt;}
.y11_c00427{bottom:795.588241pt;}
.y10_c00427{bottom:820.696364pt;}
.yf_c00427{bottom:845.964487pt;}
.ye_c00427{bottom:871.233810pt;}
.yd_c00427{bottom:915.372593pt;}
.yc_c00427{bottom:940.481916pt;}
.yb_c00427{bottom:965.751906pt;}
.y9_c00427{bottom:983.182565pt;}
.y7_c00427{bottom:1023.551024pt;}
.y6_c00427{bottom:1041.942883pt;}
.y5_c00427{bottom:1060.334742pt;}
.h1_c00427{height:16.153120pt;}
.ha_c00427{height:25.114448pt;}
.h7_c00427{height:34.034591pt;}
.hb_c00427{height:37.167260pt;}
.h6_c00427{height:37.724630pt;}
.h2_c00427{height:41.196944pt;}
.h4_c00427{height:44.780569pt;}
.h9_c00427{height:52.732088pt;}
.h8_c00427{height:52.790940pt;}
.h5_c00427{height:1122.161626pt;}
.h3_c00427{height:1122.559167pt;}
.h0_c00427{height:1122.666667pt;}
.w17_c00427{width:2.400000pt;}
.w12_c00427{width:4.156800pt;}
.wc_c00427{width:4.160000pt;}
.w6_c00427{width:4.478400pt;}
.w16_c00427{width:5.755200pt;}
.w9_c00427{width:5.756800pt;}
.wf_c00427{width:6.556800pt;}
.w13_c00427{width:6.558400pt;}
.w15_c00427{width:7.195200pt;}
.w14_c00427{width:7.355200pt;}
.w7_c00427{width:7.356800pt;}
.w8_c00427{width:7.358400pt;}
.we_c00427{width:8.318400pt;}
.wb_c00427{width:8.956800pt;}
.w10_c00427{width:10.075200pt;}
.w4_c00427{width:10.555200pt;}
.w2_c00427{width:10.718400pt;}
.wa_c00427{width:11.035200pt;}
.w5_c00427{width:13.753600pt;}
.w1_c00427{width:14.713760pt;}
.w3_c00427{width:21.270400pt;}
.w11_c00427{width:23.032000pt;}
.wd_c00427{width:24.945600pt;}
.w19_c00427{width:792.977400pt;}
.w18_c00427{width:793.257550pt;}
.w0_c00427{width:793.333333pt;}
.x0_c00427{left:0.000000pt;}
.x1e_c00427{left:101.233093pt;}
.x1_c00427{left:114.072480pt;}
.x21_c00427{left:125.217378pt;}
.x20_c00427{left:126.182080pt;}
.x1f_c00427{left:161.206935pt;}
.x22_c00427{left:184.236260pt;}
.x23_c00427{left:197.189588pt;}
.x1c_c00427{left:225.370940pt;}
.x24_c00427{left:232.213574pt;}
.x1b_c00427{left:239.124654pt;}
.x25_c00427{left:245.169569pt;}
.x1d_c00427{left:376.018977pt;}
.x2_c00427{left:441.443200pt;}
.x3_c00427{left:452.161600pt;}
.x4_c00427{left:473.432000pt;}
.x5_c00427{left:483.987200pt;}
.x6_c00427{left:497.740800pt;}
.x7_c00427{left:501.899200pt;}
.x8_c00427{left:512.772800pt;}
.x9_c00427{left:520.131200pt;}
.xa_c00427{left:524.768000pt;}
.xb_c00427{left:539.160000pt;}
.xc_c00427{left:548.116800pt;}
.xd_c00427{left:552.275200pt;}
.xe_c00427{left:556.275200pt;}
.xf_c00427{left:581.220800pt;}
.x10_c00427{left:588.419200pt;}
.x11_c00427{left:598.334400pt;}
.x12_c00427{left:608.089600pt;}
.x13_c00427{left:630.161600pt;}
.x14_c00427{left:634.158400pt;}
.x15_c00427{left:640.716800pt;}
.x16_c00427{left:644.876800pt;}
.x17_c00427{left:652.232000pt;}
.x18_c00427{left:659.427200pt;}
.x19_c00427{left:665.985600pt;}
.x1a_c00427{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.112000;font-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_c00428{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls1_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:0.588096px;}
.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.552343px;}
.ws1_c00428{word-spacing:-10.435301px;}
.ws2_c00428{word-spacing:0.000000px;}
._2_c00428{margin-left:-1.107907px;}
._0_c00428{width:1.102012px;}
._1_c00428{width:2.171962px;}
._8_c00428{width:4.361737px;}
._4_c00428{width:5.573378px;}
._5_c00428{width:6.583747px;}
._6_c00428{width:7.670410px;}
._14_c00428{width:9.616704px;}
._13_c00428{width:10.981575px;}
._7_c00428{width:12.027927px;}
._9_c00428{width:13.856199px;}
._f_c00428{width:51.190973px;}
._a_c00428{width:54.651097px;}
._3_c00428{width:58.358963px;}
._c_c00428{width:60.392984px;}
._b_c00428{width:65.494176px;}
._e_c00428{width:124.645452px;}
._10_c00428{width:216.807253px;}
._d_c00428{width:220.188604px;}
._12_c00428{width:257.814760px;}
._11_c00428{width:362.068754px;}
.fc1_c00428{color:rgb(105,148,45);}
.fc0_c00428{color:rgb(35,31,32);}
.fs3_c00428{font-size:41.741203px;}
.fs2_c00428{font-size:59.733096px;}
.fs0_c00428{font-size:66.209374px;}
.fs1_c00428{font-size:71.968771px;}
.y0_c00428{bottom:0.000000px;}
.y4_c00428{bottom:0.120938px;}
.y8_c00428{bottom:0.556171px;}
.y2_c00428{bottom:3.957898px;}
.ya_c00428{bottom:65.791352px;}
.y3_c00428{bottom:74.623320px;}
.y1_c00428{bottom:74.983320px;}
.y2b_c00428{bottom:122.104630px;}
.y29_c00428{bottom:148.013369px;}
.y2a_c00428{bottom:150.351268px;}
.y28_c00428{bottom:150.352768px;}
.y27_c00428{bottom:200.011599px;}
.y26_c00428{bottom:228.256887px;}
.y25_c00428{bottom:277.915717px;}
.y24_c00428{bottom:325.593198px;}
.y23_c00428{bottom:374.533679px;}
.y22_c00428{bottom:423.651159px;}
.y21_c00428{bottom:424.086393px;}
.y20_c00428{bottom:450.532882px;}
.y1f_c00428{bottom:472.845373px;}
.y1d_c00428{bottom:524.223119px;}
.y1c_c00428{bottom:526.561918px;}
.y1e_c00428{bottom:526.563118px;}
.y1b_c00428{bottom:576.040748px;}
.y19_c00428{bottom:622.999579px;}
.y18_c00428{bottom:625.338078px;}
.y1a_c00428{bottom:625.339578px;}
.y17_c00428{bottom:653.766067px;}
.y16_c00428{bottom:681.831656px;}
.y15_c00428{bottom:731.670486px;}
.y14_c00428{bottom:760.098475px;}
.y13_c00428{bottom:788.523763px;}
.y12_c00428{bottom:816.953852px;}
.y11_c00428{bottom:866.611332px;}
.y10_c00428{bottom:894.857971px;}
.yf_c00428{bottom:923.285959px;}
.ye_c00428{bottom:951.350948px;}
.yd_c00428{bottom:1008.205425px;}
.yc_c00428{bottom:1058.222155px;}
.yb_c00428{bottom:1086.470894px;}
.y9_c00428{bottom:1106.080386px;}
.y7_c00428{bottom:1151.494902px;}
.y6_c00428{bottom:1172.185744px;}
.y5_c00428{bottom:1192.876585px;}
.h1_c00428{height:18.172260px;}
.ha_c00428{height:37.400118px;}
.h7_c00428{height:38.288915px;}
.h6_c00428{height:42.440208px;}
.h2_c00428{height:46.346561px;}
.h4_c00428{height:50.378140px;}
.h9_c00428{height:59.323599px;}
.h8_c00428{height:59.389808px;}
.h5_c00428{height:1262.431829px;}
.h3_c00428{height:1262.879062px;}
.h0_c00428{height:1263.000000px;}
.w17_c00428{width:2.700000px;}
.w12_c00428{width:4.676400px;}
.wc_c00428{width:4.680000px;}
.w6_c00428{width:5.038200px;}
.w16_c00428{width:6.474600px;}
.w9_c00428{width:6.476400px;}
.wf_c00428{width:7.376400px;}
.w13_c00428{width:7.378200px;}
.w15_c00428{width:8.094600px;}
.w14_c00428{width:8.274600px;}
.w7_c00428{width:8.276400px;}
.w8_c00428{width:8.278200px;}
.we_c00428{width:9.358200px;}
.wb_c00428{width:10.076400px;}
.w10_c00428{width:11.334600px;}
.w4_c00428{width:11.874600px;}
.w2_c00428{width:12.058200px;}
.wa_c00428{width:12.414600px;}
.w5_c00428{width:15.472800px;}
.w1_c00428{width:16.912980px;}
.w3_c00428{width:23.929200px;}
.w11_c00428{width:25.911000px;}
.wd_c00428{width:28.063800px;}
.w19_c00428{width:892.099575px;}
.w18_c00428{width:892.414744px;}
.w0_c00428{width:892.500000px;}
.x0_c00428{left:0.000000px;}
.x1e_c00428{left:113.887229px;}
.x1_c00428{left:128.331540px;}
.x21_c00428{left:140.873028px;}
.x20_c00428{left:141.952382px;}
.x1f_c00428{left:181.357802px;}
.x22_c00428{left:194.851797px;}
.x23_c00428{left:224.538285px;}
.x25_c00428{left:228.673004px;}
.x24_c00428{left:234.790781px;}
.x1c_c00428{left:253.542308px;}
.x2a_c00428{left:262.860270px;}
.x1b_c00428{left:269.015236px;}
.x27_c00428{left:387.582689px;}
.x28_c00428{left:395.678185px;}
.x1d_c00428{left:423.021349px;}
.x2_c00428{left:496.623600px;}
.x3_c00428{left:508.681800px;}
.x4_c00428{left:532.611000px;}
.x5_c00428{left:544.485600px;}
.x29_c00428{left:556.489652px;}
.x6_c00428{left:559.958400px;}
.x7_c00428{left:564.636600px;}
.x8_c00428{left:576.869400px;}
.x9_c00428{left:585.147600px;}
.xa_c00428{left:590.364000px;}
.x26_c00428{left:600.928635px;}
.x2b_c00428{left:603.988633px;}
.xb_c00428{left:606.555000px;}
.x2c_c00428{left:614.421129px;}
.xc_c00428{left:616.631400px;}
.xd_c00428{left:621.309600px;}
.xe_c00428{left:625.809600px;}
.x2d_c00428{left:629.173623px;}
.x2e_c00428{left:639.612119px;}
.xf_c00428{left:653.873400px;}
.x10_c00428{left:661.971600px;}
.x11_c00428{left:673.126200px;}
.x12_c00428{left:684.100800px;}
.x13_c00428{left:708.931800px;}
.x14_c00428{left:713.428200px;}
.x15_c00428{left:720.806400px;}
.x16_c00428{left:725.486400px;}
.x17_c00428{left:733.761000px;}
.x18_c00428{left:741.855600px;}
.x19_c00428{left:749.233800px;}
.x1a_c00428{left:755.708400px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls1_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:0.522752pt;}
.ws0_c00428{word-spacing:-14.713194pt;}
.ws1_c00428{word-spacing:-9.275823pt;}
.ws2_c00428{word-spacing:0.000000pt;}
._2_c00428{margin-left:-0.984806pt;}
._0_c00428{width:0.979567pt;}
._1_c00428{width:1.930633pt;}
._8_c00428{width:3.877099pt;}
._4_c00428{width:4.954114pt;}
._5_c00428{width:5.852220pt;}
._6_c00428{width:6.818142pt;}
._14_c00428{width:8.548181pt;}
._13_c00428{width:9.761400pt;}
._7_c00428{width:10.691491pt;}
._9_c00428{width:12.316621pt;}
._f_c00428{width:45.503087pt;}
._a_c00428{width:48.578753pt;}
._3_c00428{width:51.874633pt;}
._c_c00428{width:53.682652pt;}
._b_c00428{width:58.217045pt;}
._e_c00428{width:110.795957pt;}
._10_c00428{width:192.717558pt;}
._d_c00428{width:195.723203pt;}
._12_c00428{width:229.168675pt;}
._11_c00428{width:321.838892pt;}
.fs3_c00428{font-size:37.103292pt;}
.fs2_c00428{font-size:53.096085pt;}
.fs0_c00428{font-size:58.852776pt;}
.fs1_c00428{font-size:63.972241pt;}
.y0_c00428{bottom:0.000000pt;}
.y4_c00428{bottom:0.107500pt;}
.y8_c00428{bottom:0.494374pt;}
.y2_c00428{bottom:3.518132pt;}
.ya_c00428{bottom:58.481202pt;}
.y3_c00428{bottom:66.331840pt;}
.y1_c00428{bottom:66.651840pt;}
.y2b_c00428{bottom:108.537449pt;}
.y29_c00428{bottom:131.567439pt;}
.y2a_c00428{bottom:133.645572pt;}
.y28_c00428{bottom:133.646905pt;}
.y27_c00428{bottom:177.788088pt;}
.y26_c00428{bottom:202.895011pt;}
.y25_c00428{bottom:247.036193pt;}
.y24_c00428{bottom:289.416176pt;}
.y23_c00428{bottom:332.918826pt;}
.y22_c00428{bottom:376.578808pt;}
.y21_c00428{bottom:376.965683pt;}
.y20_c00428{bottom:400.473673pt;}
.y1f_c00428{bottom:420.306999pt;}
.y1d_c00428{bottom:465.976106pt;}
.y1c_c00428{bottom:468.055038pt;}
.y1e_c00428{bottom:468.056105pt;}
.y1b_c00428{bottom:512.036221pt;}
.y19_c00428{bottom:553.777404pt;}
.y18_c00428{bottom:555.856070pt;}
.y1a_c00428{bottom:555.857403pt;}
.y17_c00428{bottom:581.125393pt;}
.y16_c00428{bottom:606.072583pt;}
.y15_c00428{bottom:650.373765pt;}
.y14_c00428{bottom:675.643088pt;}
.y13_c00428{bottom:700.910012pt;}
.y12_c00428{bottom:726.181202pt;}
.y11_c00428{bottom:770.321184pt;}
.y10_c00428{bottom:795.429307pt;}
.yf_c00428{bottom:820.698630pt;}
.ye_c00428{bottom:845.645287pt;}
.yd_c00428{bottom:896.182600pt;}
.yc_c00428{bottom:940.641916pt;}
.yb_c00428{bottom:965.751906pt;}
.y9_c00428{bottom:983.182565pt;}
.y7_c00428{bottom:1023.551024pt;}
.y6_c00428{bottom:1041.942883pt;}
.y5_c00428{bottom:1060.334742pt;}
.h1_c00428{height:16.153120pt;}
.ha_c00428{height:33.244549pt;}
.h7_c00428{height:34.034591pt;}
.h6_c00428{height:37.724630pt;}
.h2_c00428{height:41.196944pt;}
.h4_c00428{height:44.780569pt;}
.h9_c00428{height:52.732088pt;}
.h8_c00428{height:52.790940pt;}
.h5_c00428{height:1122.161626pt;}
.h3_c00428{height:1122.559167pt;}
.h0_c00428{height:1122.666667pt;}
.w17_c00428{width:2.400000pt;}
.w12_c00428{width:4.156800pt;}
.wc_c00428{width:4.160000pt;}
.w6_c00428{width:4.478400pt;}
.w16_c00428{width:5.755200pt;}
.w9_c00428{width:5.756800pt;}
.wf_c00428{width:6.556800pt;}
.w13_c00428{width:6.558400pt;}
.w15_c00428{width:7.195200pt;}
.w14_c00428{width:7.355200pt;}
.w7_c00428{width:7.356800pt;}
.w8_c00428{width:7.358400pt;}
.we_c00428{width:8.318400pt;}
.wb_c00428{width:8.956800pt;}
.w10_c00428{width:10.075200pt;}
.w4_c00428{width:10.555200pt;}
.w2_c00428{width:10.718400pt;}
.wa_c00428{width:11.035200pt;}
.w5_c00428{width:13.753600pt;}
.w1_c00428{width:15.033760pt;}
.w3_c00428{width:21.270400pt;}
.w11_c00428{width:23.032000pt;}
.wd_c00428{width:24.945600pt;}
.w19_c00428{width:792.977400pt;}
.w18_c00428{width:793.257550pt;}
.w0_c00428{width:793.333333pt;}
.x0_c00428{left:0.000000pt;}
.x1e_c00428{left:101.233093pt;}
.x1_c00428{left:114.072480pt;}
.x21_c00428{left:125.220469pt;}
.x20_c00428{left:126.179895pt;}
.x1f_c00428{left:161.206935pt;}
.x22_c00428{left:173.201597pt;}
.x23_c00428{left:199.589587pt;}
.x25_c00428{left:203.264893pt;}
.x24_c00428{left:208.702917pt;}
.x1c_c00428{left:225.370940pt;}
.x2a_c00428{left:233.653573pt;}
.x1b_c00428{left:239.124654pt;}
.x27_c00428{left:344.517946pt;}
.x28_c00428{left:351.713943pt;}
.x1d_c00428{left:376.018977pt;}
.x2_c00428{left:441.443200pt;}
.x3_c00428{left:452.161600pt;}
.x4_c00428{left:473.432000pt;}
.x5_c00428{left:483.987200pt;}
.x29_c00428{left:494.657469pt;}
.x6_c00428{left:497.740800pt;}
.x7_c00428{left:501.899200pt;}
.x8_c00428{left:512.772800pt;}
.x9_c00428{left:520.131200pt;}
.xa_c00428{left:524.768000pt;}
.x26_c00428{left:534.158786pt;}
.x2b_c00428{left:536.878785pt;}
.xb_c00428{left:539.160000pt;}
.x2c_c00428{left:546.152115pt;}
.xc_c00428{left:548.116800pt;}
.xd_c00428{left:552.275200pt;}
.xe_c00428{left:556.275200pt;}
.x2d_c00428{left:559.265443pt;}
.x2e_c00428{left:568.544106pt;}
.xf_c00428{left:581.220800pt;}
.x10_c00428{left:588.419200pt;}
.x11_c00428{left:598.334400pt;}
.x12_c00428{left:608.089600pt;}
.x13_c00428{left:630.161600pt;}
.x14_c00428{left:634.158400pt;}
.x15_c00428{left:640.716800pt;}
.x16_c00428{left:644.876800pt;}
.x17_c00428{left:652.232000pt;}
.x18_c00428{left:659.427200pt;}
.x19_c00428{left:665.985600pt;}
.x1a_c00428{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_b4bb1e57c1f39978d3c33c4a.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.112000;font-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_c00429{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls0_c00429{letter-spacing:0.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:-16.552343px;}
.ws1_c00429{word-spacing:0.000000px;}
._2_c00429{margin-left:-1.217304px;}
._0_c00429{width:1.102012px;}
._5_c00429{width:3.095363px;}
._6_c00429{width:5.058561px;}
._3_c00429{width:12.576651px;}
._4_c00429{width:13.884473px;}
._7_c00429{width:15.276861px;}
._8_c00429{width:54.651097px;}
._1_c00429{width:62.066152px;}
._9_c00429{width:227.334357px;}
._b_c00429{width:239.241969px;}
._e_c00429{width:425.645667px;}
._a_c00429{width:458.751092px;}
._c_c00429{width:581.297170px;}
._d_c00429{width:597.857230px;}
.fc1_c00429{color:rgb(105,148,45);}
.fc0_c00429{color:rgb(35,31,32);}
.fs2_c00429{font-size:59.733096px;}
.fs0_c00429{font-size:66.209374px;}
.fs1_c00429{font-size:71.968771px;}
.y0_c00429{bottom:0.000000px;}
.y4_c00429{bottom:0.120938px;}
.y1c_c00429{bottom:0.485156px;}
.y8_c00429{bottom:0.556171px;}
.y2_c00429{bottom:3.957898px;}
.ya_c00429{bottom:65.791352px;}
.y3_c00429{bottom:74.623320px;}
.y1_c00429{bottom:74.983320px;}
.y26_c00429{bottom:221.419590px;}
.y25_c00429{bottom:249.666979px;}
.y24_c00429{bottom:299.325209px;}
.y23_c00429{bottom:347.007190px;}
.y22_c00429{bottom:396.121670px;}
.y21_c00429{bottom:445.057651px;}
.y20_c00429{bottom:493.996631px;}
.y1f_c00429{bottom:494.431865px;}
.y1e_c00429{bottom:506.483141px;}
.y1d_c00429{bottom:535.089630px;}
.y1b_c00429{bottom:543.370845px;}
.y1a_c00429{bottom:596.911590px;}
.y19_c00429{bottom:646.388320px;}
.y18_c00429{bottom:674.638409px;}
.y17_c00429{bottom:703.065047px;}
.y16_c00429{bottom:731.125536px;}
.y15_c00429{bottom:781.143766px;}
.y14_c00429{bottom:809.391155px;}
.y13_c00429{bottom:837.821993px;}
.y12_c00429{bottom:866.427282px;}
.y11_c00429{bottom:915.906112px;}
.y10_c00429{bottom:944.152751px;}
.yf_c00429{bottom:972.758039px;}
.ye_c00429{bottom:1001.185428px;}
.yd_c00429{bottom:1029.613417px;}
.yc_c00429{bottom:1058.042905px;}
.yb_c00429{bottom:1086.110894px;}
.y9_c00429{bottom:1106.080386px;}
.y7_c00429{bottom:1151.494902px;}
.y6_c00429{bottom:1172.185744px;}
.y5_c00429{bottom:1192.876585px;}
.h1_c00429{height:18.172260px;}
.h7_c00429{height:38.288915px;}
.h6_c00429{height:42.440208px;}
.h2_c00429{height:46.346561px;}
.h4_c00429{height:50.378140px;}
.h9_c00429{height:59.323599px;}
.h8_c00429{height:59.389808px;}
.h5_c00429{height:1262.431829px;}
.ha_c00429{height:1262.514600px;}
.h3_c00429{height:1262.879062px;}
.h0_c00429{height:1263.000000px;}
.w17_c00429{width:2.700000px;}
.w12_c00429{width:4.676400px;}
.wc_c00429{width:4.680000px;}
.w6_c00429{width:5.038200px;}
.w16_c00429{width:6.474600px;}
.w9_c00429{width:6.476400px;}
.wf_c00429{width:7.376400px;}
.w13_c00429{width:7.378200px;}
.w15_c00429{width:8.094600px;}
.w14_c00429{width:8.274600px;}
.w7_c00429{width:8.276400px;}
.w8_c00429{width:8.278200px;}
.we_c00429{width:9.358200px;}
.wb_c00429{width:10.076400px;}
.w10_c00429{width:11.334600px;}
.w4_c00429{width:11.874600px;}
.w2_c00429{width:12.058200px;}
.wa_c00429{width:12.414600px;}
.w5_c00429{width:15.472800px;}
.w1_c00429{width:16.912980px;}
.w3_c00429{width:23.929200px;}
.w11_c00429{width:25.911000px;}
.wd_c00429{width:28.063800px;}
.w19_c00429{width:892.099575px;}
.w1a_c00429{width:892.161000px;}
.w18_c00429{width:892.414744px;}
.w0_c00429{width:892.500000px;}
.x0_c00429{left:0.000000px;}
.x1e_c00429{left:113.887229px;}
.x1_c00429{left:128.331540px;}
.x21_c00429{left:141.952382px;}
.x22_c00429{left:161.565049px;}
.x20_c00429{left:181.357802px;}
.x24_c00429{left:183.156302px;}
.x1f_c00429{left:194.851797px;}
.x1c_c00429{left:253.542308px;}
.x1b_c00429{left:269.015236px;}
.x23_c00429{left:318.492716px;}
.x1d_c00429{left:423.021349px;}
.x2_c00429{left:496.623600px;}
.x3_c00429{left:508.681800px;}
.x4_c00429{left:532.611000px;}
.x5_c00429{left:544.485600px;}
.x6_c00429{left:559.958400px;}
.x7_c00429{left:564.636600px;}
.x8_c00429{left:576.869400px;}
.x9_c00429{left:585.147600px;}
.xa_c00429{left:590.364000px;}
.x25_c00429{left:604.168633px;}
.xb_c00429{left:606.555000px;}
.xc_c00429{left:616.631400px;}
.xd_c00429{left:621.309600px;}
.xe_c00429{left:625.809600px;}
.xf_c00429{left:653.873400px;}
.x10_c00429{left:661.971600px;}
.x11_c00429{left:673.126200px;}
.x12_c00429{left:684.100800px;}
.x13_c00429{left:708.931800px;}
.x14_c00429{left:713.428200px;}
.x15_c00429{left:720.806400px;}
.x16_c00429{left:725.486400px;}
.x17_c00429{left:733.761000px;}
.x18_c00429{left:741.855600px;}
.x19_c00429{left:749.233800px;}
.x1a_c00429{left:755.708400px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws0_c00429{word-spacing:-14.713194pt;}
.ws1_c00429{word-spacing:0.000000pt;}
._2_c00429{margin-left:-1.082048pt;}
._0_c00429{width:0.979567pt;}
._5_c00429{width:2.751434pt;}
._6_c00429{width:4.496499pt;}
._3_c00429{width:11.179245pt;}
._4_c00429{width:12.341754pt;}
._7_c00429{width:13.579432pt;}
._8_c00429{width:48.578753pt;}
._1_c00429{width:55.169913pt;}
._9_c00429{width:202.074984pt;}
._b_c00429{width:212.659528pt;}
._e_c00429{width:378.351704pt;}
._a_c00429{width:407.778748pt;}
._c_c00429{width:516.708596pt;}
._d_c00429{width:531.428649pt;}
.fs2_c00429{font-size:53.096085pt;}
.fs0_c00429{font-size:58.852776pt;}
.fs1_c00429{font-size:63.972241pt;}
.y0_c00429{bottom:0.000000pt;}
.y4_c00429{bottom:0.107500pt;}
.y1c_c00429{bottom:0.431250pt;}
.y8_c00429{bottom:0.494374pt;}
.y2_c00429{bottom:3.518132pt;}
.ya_c00429{bottom:58.481202pt;}
.y3_c00429{bottom:66.331840pt;}
.y1_c00429{bottom:66.651840pt;}
.y26_c00429{bottom:196.817413pt;}
.y25_c00429{bottom:221.926203pt;}
.y24_c00429{bottom:266.066852pt;}
.y23_c00429{bottom:308.450835pt;}
.y22_c00429{bottom:352.108151pt;}
.y21_c00429{bottom:395.606800pt;}
.y20_c00429{bottom:439.108116pt;}
.y1f_c00429{bottom:439.494991pt;}
.y1e_c00429{bottom:450.207237pt;}
.y1d_c00429{bottom:475.635227pt;}
.y1b_c00429{bottom:482.996307pt;}
.y1a_c00429{bottom:530.588080pt;}
.y19_c00429{bottom:574.567396pt;}
.y18_c00429{bottom:599.678586pt;}
.y17_c00429{bottom:624.946709pt;}
.y16_c00429{bottom:649.889365pt;}
.y15_c00429{bottom:694.350014pt;}
.y14_c00429{bottom:719.458804pt;}
.y13_c00429{bottom:744.730661pt;}
.y12_c00429{bottom:770.157584pt;}
.y11_c00429{bottom:814.138766pt;}
.y10_c00429{bottom:839.246890pt;}
.yf_c00429{bottom:864.673813pt;}
.ye_c00429{bottom:889.942603pt;}
.yd_c00429{bottom:915.211926pt;}
.yc_c00429{bottom:940.482583pt;}
.yb_c00429{bottom:965.431906pt;}
.y9_c00429{bottom:983.182565pt;}
.y7_c00429{bottom:1023.551024pt;}
.y6_c00429{bottom:1041.942883pt;}
.y5_c00429{bottom:1060.334742pt;}
.h1_c00429{height:16.153120pt;}
.h7_c00429{height:34.034591pt;}
.h6_c00429{height:37.724630pt;}
.h2_c00429{height:41.196944pt;}
.h4_c00429{height:44.780569pt;}
.h9_c00429{height:52.732088pt;}
.h8_c00429{height:52.790940pt;}
.h5_c00429{height:1122.161626pt;}
.ha_c00429{height:1122.235200pt;}
.h3_c00429{height:1122.559167pt;}
.h0_c00429{height:1122.666667pt;}
.w17_c00429{width:2.400000pt;}
.w12_c00429{width:4.156800pt;}
.wc_c00429{width:4.160000pt;}
.w6_c00429{width:4.478400pt;}
.w16_c00429{width:5.755200pt;}
.w9_c00429{width:5.756800pt;}
.wf_c00429{width:6.556800pt;}
.w13_c00429{width:6.558400pt;}
.w15_c00429{width:7.195200pt;}
.w14_c00429{width:7.355200pt;}
.w7_c00429{width:7.356800pt;}
.w8_c00429{width:7.358400pt;}
.we_c00429{width:8.318400pt;}
.wb_c00429{width:8.956800pt;}
.w10_c00429{width:10.075200pt;}
.w4_c00429{width:10.555200pt;}
.w2_c00429{width:10.718400pt;}
.wa_c00429{width:11.035200pt;}
.w5_c00429{width:13.753600pt;}
.w1_c00429{width:15.033760pt;}
.w3_c00429{width:21.270400pt;}
.w11_c00429{width:23.032000pt;}
.wd_c00429{width:24.945600pt;}
.w19_c00429{width:792.977400pt;}
.w1a_c00429{width:793.032000pt;}
.w18_c00429{width:793.257550pt;}
.w0_c00429{width:793.333333pt;}
.x0_c00429{left:0.000000pt;}
.x1e_c00429{left:101.233093pt;}
.x1_c00429{left:114.072480pt;}
.x21_c00429{left:126.179895pt;}
.x22_c00429{left:143.613376pt;}
.x20_c00429{left:161.206935pt;}
.x24_c00429{left:162.805602pt;}
.x1f_c00429{left:173.201597pt;}
.x1c_c00429{left:225.370940pt;}
.x1b_c00429{left:239.124654pt;}
.x23_c00429{left:283.104637pt;}
.x1d_c00429{left:376.018977pt;}
.x2_c00429{left:441.443200pt;}
.x3_c00429{left:452.161600pt;}
.x4_c00429{left:473.432000pt;}
.x5_c00429{left:483.987200pt;}
.x6_c00429{left:497.740800pt;}
.x7_c00429{left:501.899200pt;}
.x8_c00429{left:512.772800pt;}
.x9_c00429{left:520.131200pt;}
.xa_c00429{left:524.768000pt;}
.x25_c00429{left:537.038785pt;}
.xb_c00429{left:539.160000pt;}
.xc_c00429{left:548.116800pt;}
.xd_c00429{left:552.275200pt;}
.xe_c00429{left:556.275200pt;}
.xf_c00429{left:581.220800pt;}
.x10_c00429{left:588.419200pt;}
.x11_c00429{left:598.334400pt;}
.x12_c00429{left:608.089600pt;}
.x13_c00429{left:630.161600pt;}
.x14_c00429{left:634.158400pt;}
.x15_c00429{left:640.716800pt;}
.x16_c00429{left:644.876800pt;}
.x17_c00429{left:652.232000pt;}
.x18_c00429{left:659.427200pt;}
.x19_c00429{left:665.985600pt;}
.x1a_c00429{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.112000;font-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_c00430{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls1_c00430{letter-spacing:0.000000px;}
.ls0_c00430{letter-spacing:0.596556px;}
.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.552343px;}
.ws1_c00430{word-spacing:0.000000px;}
._2_c00430{margin-left:-1.146424px;}
._0_c00430{width:1.102012px;}
._c_c00430{width:2.151498px;}
._6_c00430{width:3.228445px;}
._7_c00430{width:4.240030px;}
._9_c00430{width:5.514512px;}
._8_c00430{width:6.710785px;}
._4_c00430{width:8.854076px;}
._3_c00430{width:10.147119px;}
._e_c00430{width:12.371498px;}
._b_c00430{width:13.528198px;}
._a_c00430{width:15.018024px;}
._d_c00430{width:17.564193px;}
._5_c00430{width:20.370763px;}
._1_c00430{width:58.358963px;}
.fc1_c00430{color:rgb(105,148,45);}
.fc0_c00430{color:rgb(35,31,32);}
.fs3_c00430{font-size:41.741203px;}
.fs2_c00430{font-size:59.733096px;}
.fs0_c00430{font-size:66.209374px;}
.fs1_c00430{font-size:71.968771px;}
.y0_c00430{bottom:0.000000px;}
.y4_c00430{bottom:0.120938px;}
.y8_c00430{bottom:0.556171px;}
.y2_c00430{bottom:3.957898px;}
.ya_c00430{bottom:65.791352px;}
.y3_c00430{bottom:74.623320px;}
.y1_c00430{bottom:74.983320px;}
.y2a_c00430{bottom:128.222527px;}
.y28_c00430{bottom:128.224627px;}
.y29_c00430{bottom:135.779074px;}
.y25_c00430{bottom:156.467366px;}
.y27_c00430{bottom:156.471266px;}
.y26_c00430{bottom:164.025263px;}
.y24_c00430{bottom:185.075355px;}
.y23_c00430{bottom:234.551485px;}
.y22_c00430{bottom:262.799473px;}
.y21_c00430{bottom:291.408212px;}
.y20_c00430{bottom:319.834851px;}
.y1f_c00430{bottom:348.260139px;}
.y1e_c00430{bottom:397.918969px;}
.y1d_c00430{bottom:426.165608px;}
.y1c_c00430{bottom:454.593597px;}
.y1b_c00430{bottom:483.020985px;}
.y1a_c00430{bottom:511.448974px;}
.y19_c00430{bottom:539.875613px;}
.y18_c00430{bottom:567.948101px;}
.y17_c00430{bottom:624.794779px;}
.y16_c00430{bottom:674.813009px;}
.y15_c00430{bottom:703.058297px;}
.y14_c00430{bottom:731.487036px;}
.y13_c00430{bottom:760.096525px;}
.y12_c00430{bottom:788.523163px;}
.y11_c00430{bottom:816.948452px;}
.y10_c00430{bottom:845.375840px;}
.yf_c00430{bottom:873.803829px;}
.ye_c00430{bottom:923.461309px;}
.yd_c00430{bottom:951.707948px;}
.yc_c00430{bottom:980.137437px;}
.yb_c00430{bottom:1036.636414px;}
.y9_c00430{bottom:1106.080386px;}
.y7_c00430{bottom:1151.494902px;}
.y6_c00430{bottom:1172.185744px;}
.y5_c00430{bottom:1192.876585px;}
.h1_c00430{height:18.172260px;}
.ha_c00430{height:37.400118px;}
.h7_c00430{height:38.288915px;}
.h6_c00430{height:42.440208px;}
.h2_c00430{height:46.346561px;}
.h4_c00430{height:50.378140px;}
.h9_c00430{height:59.323599px;}
.h8_c00430{height:59.389808px;}
.h5_c00430{height:1262.431829px;}
.h3_c00430{height:1262.879062px;}
.h0_c00430{height:1263.000000px;}
.w17_c00430{width:2.700000px;}
.w12_c00430{width:4.676400px;}
.wc_c00430{width:4.680000px;}
.w6_c00430{width:5.038200px;}
.w16_c00430{width:6.474600px;}
.w9_c00430{width:6.476400px;}
.wf_c00430{width:7.376400px;}
.w13_c00430{width:7.378200px;}
.w15_c00430{width:8.094600px;}
.w14_c00430{width:8.274600px;}
.w7_c00430{width:8.276400px;}
.w8_c00430{width:8.278200px;}
.we_c00430{width:9.358200px;}
.wb_c00430{width:10.076400px;}
.w10_c00430{width:11.334600px;}
.w4_c00430{width:11.874600px;}
.w2_c00430{width:12.058200px;}
.wa_c00430{width:12.414600px;}
.w5_c00430{width:15.472800px;}
.w1_c00430{width:16.552980px;}
.w3_c00430{width:23.929200px;}
.w11_c00430{width:25.911000px;}
.wd_c00430{width:28.063800px;}
.w19_c00430{width:892.099575px;}
.w18_c00430{width:892.414744px;}
.w0_c00430{width:892.500000px;}
.x0_c00430{left:0.000000px;}
.x1e_c00430{left:113.887229px;}
.x1_c00430{left:128.331540px;}
.x1f_c00430{left:140.874619px;}
.x21_c00430{left:141.957838px;}
.x20_c00430{left:181.357802px;}
.x22_c00430{left:194.851797px;}
.x1c_c00430{left:253.542308px;}
.x1b_c00430{left:269.015236px;}
.x1d_c00430{left:423.021349px;}
.x24_c00430{left:495.496677px;}
.x2_c00430{left:496.623600px;}
.x25_c00430{left:500.716675px;}
.x3_c00430{left:508.681800px;}
.x4_c00430{left:532.611000px;}
.x5_c00430{left:544.485600px;}
.x6_c00430{left:559.958400px;}
.x7_c00430{left:564.636600px;}
.x8_c00430{left:576.869400px;}
.x9_c00430{left:585.147600px;}
.xa_c00430{left:590.364000px;}
.xb_c00430{left:606.555000px;}
.xc_c00430{left:616.631400px;}
.xd_c00430{left:621.309600px;}
.xe_c00430{left:625.809600px;}
.xf_c00430{left:653.873400px;}
.x10_c00430{left:661.971600px;}
.x23_c00430{left:668.040108px;}
.x11_c00430{left:673.126200px;}
.x12_c00430{left:684.100800px;}
.x13_c00430{left:708.931800px;}
.x14_c00430{left:713.428200px;}
.x15_c00430{left:720.806400px;}
.x16_c00430{left:725.486400px;}
.x17_c00430{left:733.761000px;}
.x18_c00430{left:741.855600px;}
.x19_c00430{left:749.233800px;}
.x1a_c00430{left:755.708400px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls1_c00430{letter-spacing:0.000000pt;}
.ls0_c00430{letter-spacing:0.530272pt;}
.ws0_c00430{word-spacing:-14.713194pt;}
.ws1_c00430{word-spacing:0.000000pt;}
._2_c00430{margin-left:-1.019044pt;}
._0_c00430{width:0.979567pt;}
._c_c00430{width:1.912443pt;}
._6_c00430{width:2.869729pt;}
._7_c00430{width:3.768915pt;}
._9_c00430{width:4.901789pt;}
._8_c00430{width:5.965143pt;}
._4_c00430{width:7.870290pt;}
._3_c00430{width:9.019662pt;}
._e_c00430{width:10.996887pt;}
._b_c00430{width:12.025065pt;}
._a_c00430{width:13.349354pt;}
._d_c00430{width:15.612616pt;}
._5_c00430{width:18.107345pt;}
._1_c00430{width:51.874633pt;}
.fs3_c00430{font-size:37.103292pt;}
.fs2_c00430{font-size:53.096085pt;}
.fs0_c00430{font-size:58.852776pt;}
.fs1_c00430{font-size:63.972241pt;}
.y0_c00430{bottom:0.000000pt;}
.y4_c00430{bottom:0.107500pt;}
.y8_c00430{bottom:0.494374pt;}
.y2_c00430{bottom:3.518132pt;}
.ya_c00430{bottom:58.481202pt;}
.y3_c00430{bottom:66.331840pt;}
.y1_c00430{bottom:66.651840pt;}
.y2a_c00430{bottom:113.975580pt;}
.y28_c00430{bottom:113.977446pt;}
.y29_c00430{bottom:120.692510pt;}
.y25_c00430{bottom:139.082103pt;}
.y27_c00430{bottom:139.085570pt;}
.y26_c00430{bottom:145.800234pt;}
.y24_c00430{bottom:164.511426pt;}
.y23_c00430{bottom:208.490209pt;}
.y22_c00430{bottom:233.599532pt;}
.y21_c00430{bottom:259.029522pt;}
.y20_c00430{bottom:284.297645pt;}
.y1f_c00430{bottom:309.564568pt;}
.y1e_c00430{bottom:353.705751pt;}
.y1d_c00430{bottom:378.813874pt;}
.y1c_c00430{bottom:404.083197pt;}
.y1b_c00430{bottom:429.351987pt;}
.y1a_c00430{bottom:454.621310pt;}
.y19_c00430{bottom:479.889433pt;}
.y18_c00430{bottom:504.842757pt;}
.y17_c00430{bottom:555.373137pt;}
.y16_c00430{bottom:599.833785pt;}
.y15_c00430{bottom:624.940709pt;}
.y14_c00430{bottom:650.210699pt;}
.y13_c00430{bottom:675.641355pt;}
.y12_c00430{bottom:700.909478pt;}
.y11_c00430{bottom:726.176402pt;}
.y10_c00430{bottom:751.445191pt;}
.yf_c00430{bottom:776.714515pt;}
.ye_c00430{bottom:820.854497pt;}
.yd_c00430{bottom:845.962620pt;}
.yc_c00430{bottom:871.233277pt;}
.yb_c00430{bottom:921.454590pt;}
.y9_c00430{bottom:983.182565pt;}
.y7_c00430{bottom:1023.551024pt;}
.y6_c00430{bottom:1041.942883pt;}
.y5_c00430{bottom:1060.334742pt;}
.h1_c00430{height:16.153120pt;}
.ha_c00430{height:33.244549pt;}
.h7_c00430{height:34.034591pt;}
.h6_c00430{height:37.724630pt;}
.h2_c00430{height:41.196944pt;}
.h4_c00430{height:44.780569pt;}
.h9_c00430{height:52.732088pt;}
.h8_c00430{height:52.790940pt;}
.h5_c00430{height:1122.161626pt;}
.h3_c00430{height:1122.559167pt;}
.h0_c00430{height:1122.666667pt;}
.w17_c00430{width:2.400000pt;}
.w12_c00430{width:4.156800pt;}
.wc_c00430{width:4.160000pt;}
.w6_c00430{width:4.478400pt;}
.w16_c00430{width:5.755200pt;}
.w9_c00430{width:5.756800pt;}
.wf_c00430{width:6.556800pt;}
.w13_c00430{width:6.558400pt;}
.w15_c00430{width:7.195200pt;}
.w14_c00430{width:7.355200pt;}
.w7_c00430{width:7.356800pt;}
.w8_c00430{width:7.358400pt;}
.we_c00430{width:8.318400pt;}
.wb_c00430{width:8.956800pt;}
.w10_c00430{width:10.075200pt;}
.w4_c00430{width:10.555200pt;}
.w2_c00430{width:10.718400pt;}
.wa_c00430{width:11.035200pt;}
.w5_c00430{width:13.753600pt;}
.w1_c00430{width:14.713760pt;}
.w3_c00430{width:21.270400pt;}
.w11_c00430{width:23.032000pt;}
.wd_c00430{width:24.945600pt;}
.w19_c00430{width:792.977400pt;}
.w18_c00430{width:793.257550pt;}
.w0_c00430{width:793.333333pt;}
.x0_c00430{left:0.000000pt;}
.x1e_c00430{left:101.233093pt;}
.x1_c00430{left:114.072480pt;}
.x1f_c00430{left:125.221883pt;}
.x21_c00430{left:126.184745pt;}
.x20_c00430{left:161.206935pt;}
.x22_c00430{left:173.201597pt;}
.x1c_c00430{left:225.370940pt;}
.x1b_c00430{left:239.124654pt;}
.x1d_c00430{left:376.018977pt;}
.x24_c00430{left:440.441490pt;}
.x2_c00430{left:441.443200pt;}
.x25_c00430{left:445.081489pt;}
.x3_c00430{left:452.161600pt;}
.x4_c00430{left:473.432000pt;}
.x5_c00430{left:483.987200pt;}
.x6_c00430{left:497.740800pt;}
.x7_c00430{left:501.899200pt;}
.x8_c00430{left:512.772800pt;}
.x9_c00430{left:520.131200pt;}
.xa_c00430{left:524.768000pt;}
.xb_c00430{left:539.160000pt;}
.xc_c00430{left:548.116800pt;}
.xd_c00430{left:552.275200pt;}
.xe_c00430{left:556.275200pt;}
.xf_c00430{left:581.220800pt;}
.x10_c00430{left:588.419200pt;}
.x23_c00430{left:593.813429pt;}
.x11_c00430{left:598.334400pt;}
.x12_c00430{left:608.089600pt;}
.x13_c00430{left:630.161600pt;}
.x14_c00430{left:634.158400pt;}
.x15_c00430{left:640.716800pt;}
.x16_c00430{left:644.876800pt;}
.x17_c00430{left:652.232000pt;}
.x18_c00430{left:659.427200pt;}
.x19_c00430{left:665.985600pt;}
.x1a_c00430{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00431;src:url('chunks/assets/font_24d98807f733dc085d1c4453.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:0.712000;font-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_c00431{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls1_c00431{letter-spacing:0.000000px;}
.ls0_c00431{letter-spacing:0.593736px;}
.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.552343px;}
.ws1_c00431{word-spacing:0.000000px;}
._1_c00431{margin-left:-1.065438px;}
._0_c00431{width:1.102012px;}
._4_c00431{width:2.922152px;}
._8_c00431{width:4.118017px;}
._a_c00431{width:8.020357px;}
._7_c00431{width:9.161456px;}
._9_c00431{width:10.590844px;}
._6_c00431{width:12.124897px;}
._5_c00431{width:13.207408px;}
._3_c00431{width:53.610174px;}
._2_c00431{width:54.651097px;}
.fc1_c00431{color:rgb(105,148,45);}
.fc0_c00431{color:rgb(35,31,32);}
.fs2_c00431{font-size:59.733096px;}
.fs0_c00431{font-size:66.209374px;}
.fs1_c00431{font-size:71.968771px;}
.y0_c00431{bottom:0.000000px;}
.y4_c00431{bottom:0.120938px;}
.y8_c00431{bottom:0.556171px;}
.y2_c00431{bottom:3.957898px;}
.ya_c00431{bottom:65.791352px;}
.y3_c00431{bottom:74.623320px;}
.y1_c00431{bottom:74.983320px;}
.y26_c00431{bottom:130.563126px;}
.y25_c00431{bottom:158.991115px;}
.y24_c00431{bottom:187.417754px;}
.y23_c00431{bottom:237.071784px;}
.y22_c00431{bottom:286.548514px;}
.y21_c00431{bottom:314.798603px;}
.y20_c00431{bottom:343.225241px;}
.y1f_c00431{bottom:392.881371px;}
.y1e_c00431{bottom:421.129360px;}
.y1d_c00431{bottom:470.608190px;}
.y1c_c00431{bottom:499.034829px;}
.y1b_c00431{bottom:527.461468px;}
.y1a_c00431{bottom:555.888106px;}
.y19_c00431{bottom:583.957595px;}
.y18_c00431{bottom:612.381534px;}
.y17_c00431{bottom:649.626069px;}
.y16_c00431{bottom:686.331054px;}
.y15_c00431{bottom:735.987484px;}
.y14_c00431{bottom:772.512020px;}
.y13_c00431{bottom:809.395505px;}
.y12_c00431{bottom:846.280490px;}
.y11_c00431{bottom:882.981875px;}
.y10_c00431{bottom:904.753467px;}
.yf_c00431{bottom:941.636952px;}
.ye_c00431{bottom:978.338337px;}
.yd_c00431{bottom:1000.289928px;}
.yc_c00431{bottom:1036.996414px;}
.yb_c00431{bottom:1086.650894px;}
.y9_c00431{bottom:1106.080386px;}
.y7_c00431{bottom:1151.494902px;}
.y6_c00431{bottom:1172.185744px;}
.y5_c00431{bottom:1192.876585px;}
.h1_c00431{height:18.172260px;}
.h7_c00431{height:38.288915px;}
.h9_c00431{height:41.813167px;}
.h6_c00431{height:42.440208px;}
.h2_c00431{height:46.346561px;}
.h4_c00431{height:50.378140px;}
.ha_c00431{height:59.323599px;}
.h8_c00431{height:59.389808px;}
.h5_c00431{height:1262.431829px;}
.h3_c00431{height:1262.879062px;}
.h0_c00431{height:1263.000000px;}
.w17_c00431{width:2.700000px;}
.w12_c00431{width:4.676400px;}
.wc_c00431{width:4.680000px;}
.w6_c00431{width:5.038200px;}
.w16_c00431{width:6.474600px;}
.w9_c00431{width:6.476400px;}
.wf_c00431{width:7.376400px;}
.w13_c00431{width:7.378200px;}
.w15_c00431{width:8.094600px;}
.w14_c00431{width:8.274600px;}
.w7_c00431{width:8.276400px;}
.w8_c00431{width:8.278200px;}
.we_c00431{width:9.358200px;}
.wb_c00431{width:10.076400px;}
.w10_c00431{width:11.334600px;}
.w4_c00431{width:11.874600px;}
.w2_c00431{width:12.058200px;}
.wa_c00431{width:12.414600px;}
.w5_c00431{width:15.472800px;}
.w1_c00431{width:16.552980px;}
.w3_c00431{width:23.929200px;}
.w11_c00431{width:25.911000px;}
.wd_c00431{width:28.063800px;}
.w19_c00431{width:892.099575px;}
.w18_c00431{width:892.414744px;}
.w0_c00431{width:892.500000px;}
.x0_c00431{left:0.000000px;}
.x1e_c00431{left:113.887229px;}
.x1_c00431{left:128.331540px;}
.x22_c00431{left:141.953761px;}
.x1f_c00431{left:181.357802px;}
.x20_c00431{left:194.851797px;}
.x21_c00431{left:221.838286px;}
.x1c_c00431{left:253.542308px;}
.x1b_c00431{left:269.015236px;}
.x1d_c00431{left:423.021349px;}
.x2_c00431{left:496.623600px;}
.x3_c00431{left:508.681800px;}
.x4_c00431{left:532.611000px;}
.x5_c00431{left:544.485600px;}
.x6_c00431{left:559.958400px;}
.x7_c00431{left:564.636600px;}
.x8_c00431{left:576.869400px;}
.x9_c00431{left:585.147600px;}
.xa_c00431{left:590.364000px;}
.xb_c00431{left:606.555000px;}
.xc_c00431{left:616.631400px;}
.xd_c00431{left:621.309600px;}
.xe_c00431{left:625.809600px;}
.xf_c00431{left:653.873400px;}
.x10_c00431{left:661.971600px;}
.x11_c00431{left:673.126200px;}
.x12_c00431{left:684.100800px;}
.x13_c00431{left:708.931800px;}
.x14_c00431{left:713.428200px;}
.x15_c00431{left:720.806400px;}
.x16_c00431{left:725.486400px;}
.x17_c00431{left:733.761000px;}
.x18_c00431{left:741.855600px;}
.x19_c00431{left:749.233800px;}
.x1a_c00431{left:755.708400px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls1_c00431{letter-spacing:0.000000pt;}
.ls0_c00431{letter-spacing:0.527766pt;}
.ws0_c00431{word-spacing:-14.713194pt;}
.ws1_c00431{word-spacing:0.000000pt;}
._1_c00431{margin-left:-0.947056pt;}
._0_c00431{width:0.979567pt;}
._4_c00431{width:2.597469pt;}
._8_c00431{width:3.660460pt;}
._a_c00431{width:7.129206pt;}
._7_c00431{width:8.143517pt;}
._9_c00431{width:9.414084pt;}
._6_c00431{width:10.777687pt;}
._5_c00431{width:11.739918pt;}
._3_c00431{width:47.653488pt;}
._2_c00431{width:48.578753pt;}
.fs2_c00431{font-size:53.096085pt;}
.fs0_c00431{font-size:58.852776pt;}
.fs1_c00431{font-size:63.972241pt;}
.y0_c00431{bottom:0.000000pt;}
.y4_c00431{bottom:0.107500pt;}
.y8_c00431{bottom:0.494374pt;}
.y2_c00431{bottom:3.518132pt;}
.ya_c00431{bottom:58.481202pt;}
.y3_c00431{bottom:66.331840pt;}
.y1_c00431{bottom:66.651840pt;}
.y26_c00431{bottom:116.056112pt;}
.y25_c00431{bottom:141.325436pt;}
.y24_c00431{bottom:166.593559pt;}
.y23_c00431{bottom:210.730474pt;}
.y22_c00431{bottom:254.709790pt;}
.y21_c00431{bottom:279.820980pt;}
.y20_c00431{bottom:305.089103pt;}
.y1f_c00431{bottom:349.227886pt;}
.y1e_c00431{bottom:374.337209pt;}
.y1d_c00431{bottom:418.318391pt;}
.y1c_c00431{bottom:443.586515pt;}
.y1b_c00431{bottom:468.854638pt;}
.y1a_c00431{bottom:494.122761pt;}
.y19_c00431{bottom:519.073418pt;}
.y18_c00431{bottom:544.339141pt;}
.y17_c00431{bottom:577.445394pt;}
.y16_c00431{bottom:610.072048pt;}
.y15_c00431{bottom:654.211097pt;}
.y14_c00431{bottom:686.677351pt;}
.y13_c00431{bottom:719.462671pt;}
.y12_c00431{bottom:752.249325pt;}
.y11_c00431{bottom:784.872778pt;}
.y10_c00431{bottom:804.225304pt;}
.yf_c00431{bottom:837.010624pt;}
.ye_c00431{bottom:869.634078pt;}
.yd_c00431{bottom:889.146603pt;}
.yc_c00431{bottom:921.774590pt;}
.yb_c00431{bottom:965.911906pt;}
.y9_c00431{bottom:983.182565pt;}
.y7_c00431{bottom:1023.551024pt;}
.y6_c00431{bottom:1041.942883pt;}
.y5_c00431{bottom:1060.334742pt;}
.h1_c00431{height:16.153120pt;}
.h7_c00431{height:34.034591pt;}
.h9_c00431{height:37.167260pt;}
.h6_c00431{height:37.724630pt;}
.h2_c00431{height:41.196944pt;}
.h4_c00431{height:44.780569pt;}
.ha_c00431{height:52.732088pt;}
.h8_c00431{height:52.790940pt;}
.h5_c00431{height:1122.161626pt;}
.h3_c00431{height:1122.559167pt;}
.h0_c00431{height:1122.666667pt;}
.w17_c00431{width:2.400000pt;}
.w12_c00431{width:4.156800pt;}
.wc_c00431{width:4.160000pt;}
.w6_c00431{width:4.478400pt;}
.w16_c00431{width:5.755200pt;}
.w9_c00431{width:5.756800pt;}
.wf_c00431{width:6.556800pt;}
.w13_c00431{width:6.558400pt;}
.w15_c00431{width:7.195200pt;}
.w14_c00431{width:7.355200pt;}
.w7_c00431{width:7.356800pt;}
.w8_c00431{width:7.358400pt;}
.we_c00431{width:8.318400pt;}
.wb_c00431{width:8.956800pt;}
.w10_c00431{width:10.075200pt;}
.w4_c00431{width:10.555200pt;}
.w2_c00431{width:10.718400pt;}
.wa_c00431{width:11.035200pt;}
.w5_c00431{width:13.753600pt;}
.w1_c00431{width:14.713760pt;}
.w3_c00431{width:21.270400pt;}
.w11_c00431{width:23.032000pt;}
.wd_c00431{width:24.945600pt;}
.w19_c00431{width:792.977400pt;}
.w18_c00431{width:793.257550pt;}
.w0_c00431{width:793.333333pt;}
.x0_c00431{left:0.000000pt;}
.x1e_c00431{left:101.233093pt;}
.x1_c00431{left:114.072480pt;}
.x22_c00431{left:126.181121pt;}
.x1f_c00431{left:161.206935pt;}
.x20_c00431{left:173.201597pt;}
.x21_c00431{left:197.189588pt;}
.x1c_c00431{left:225.370940pt;}
.x1b_c00431{left:239.124654pt;}
.x1d_c00431{left:376.018977pt;}
.x2_c00431{left:441.443200pt;}
.x3_c00431{left:452.161600pt;}
.x4_c00431{left:473.432000pt;}
.x5_c00431{left:483.987200pt;}
.x6_c00431{left:497.740800pt;}
.x7_c00431{left:501.899200pt;}
.x8_c00431{left:512.772800pt;}
.x9_c00431{left:520.131200pt;}
.xa_c00431{left:524.768000pt;}
.xb_c00431{left:539.160000pt;}
.xc_c00431{left:548.116800pt;}
.xd_c00431{left:552.275200pt;}
.xe_c00431{left:556.275200pt;}
.xf_c00431{left:581.220800pt;}
.x10_c00431{left:588.419200pt;}
.x11_c00431{left:598.334400pt;}
.x12_c00431{left:608.089600pt;}
.x13_c00431{left:630.161600pt;}
.x14_c00431{left:634.158400pt;}
.x15_c00431{left:640.716800pt;}
.x16_c00431{left:644.876800pt;}
.x17_c00431{left:652.232000pt;}
.x18_c00431{left:659.427200pt;}
.x19_c00431{left:665.985600pt;}
.x1a_c00431{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_3b9e66fa4b80f4bb1716eca4.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_24d98807f733dc085d1c4453.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00432;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff6_c00432{font-family:ff6_c00432;line-height:1.113000;font-style:normal;font-weight: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_c00432;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff7_c00432{font-family:ff7_c00432;line-height:0.360019;font-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_c00432{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls0_c00432{letter-spacing:0.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:-16.552343px;}
.ws1_c00432{word-spacing:0.000000px;}
._2_c00432{margin-left:-1.390357px;}
._0_c00432{width:1.102012px;}
._b_c00432{width:2.295080px;}
._7_c00432{width:4.972043px;}
._6_c00432{width:5.975894px;}
._9_c00432{width:6.980389px;}
._8_c00432{width:8.003954px;}
._1_c00432{width:14.243734px;}
._3_c00432{width:15.528735px;}
._e_c00432{width:19.446687px;}
._d_c00432{width:27.869326px;}
._c_c00432{width:28.999349px;}
._4_c00432{width:32.671701px;}
._5_c00432{width:33.733840px;}
._a_c00432{width:53.927586px;}
.fc1_c00432{color:rgb(105,148,45);}
.fc0_c00432{color:rgb(35,31,32);}
.fs2_c00432{font-size:59.733096px;}
.fs0_c00432{font-size:66.209374px;}
.fs1_c00432{font-size:71.968771px;}
.y0_c00432{bottom:0.000000px;}
.y4_c00432{bottom:0.120938px;}
.y8_c00432{bottom:0.556171px;}
.y2_c00432{bottom:3.957898px;}
.ya_c00432{bottom:65.791352px;}
.y3_c00432{bottom:74.623320px;}
.y1_c00432{bottom:74.983320px;}
.y25_c00432{bottom:126.783878px;}
.y24_c00432{bottom:155.211266px;}
.y23_c00432{bottom:183.637605px;}
.y22_c00432{bottom:212.064244px;}
.y21_c00432{bottom:261.723074px;}
.y20_c00432{bottom:311.019804px;}
.y1f_c00432{bottom:339.447193px;}
.y1e_c00432{bottom:367.517282px;}
.y1d_c00432{bottom:417.353412px;}
.y1c_c00432{bottom:445.780050px;}
.y1b_c00432{bottom:474.209539px;}
.y1a_c00432{bottom:517.569122px;}
.y19_c00432{bottom:561.107954px;}
.y18_c00432{bottom:589.534593px;}
.y17_c00432{bottom:632.896575px;}
.y16_c00432{bottom:676.436308px;}
.y15_c00432{bottom:704.865047px;}
.y14_c00432{bottom:748.224029px;}
.y13_c00432{bottom:791.763012px;}
.y12_c00432{bottom:835.126495px;}
.y11_c00432{bottom:863.554483px;}
.y10_c00432{bottom:907.091816px;}
.yf_c00432{bottom:935.518454px;}
.ye_c00432{bottom:978.878937px;}
.yd_c00432{bottom:1022.418820px;}
.yb_c00432{bottom:1050.845458px;}
.yc_c00432{bottom:1050.848908px;}
.y9_c00432{bottom:1106.080386px;}
.y7_c00432{bottom:1151.494902px;}
.y6_c00432{bottom:1172.185744px;}
.y5_c00432{bottom:1192.876585px;}
.h1_c00432{height:18.172260px;}
.hc_c00432{height:28.253754px;}
.h7_c00432{height:38.288915px;}
.ha_c00432{height:41.813167px;}
.h6_c00432{height:42.440208px;}
.h8_c00432{height:43.187028px;}
.h2_c00432{height:46.346561px;}
.h4_c00432{height:50.378140px;}
.h9_c00432{height:59.323599px;}
.hb_c00432{height:59.389808px;}
.h5_c00432{height:1262.431829px;}
.h3_c00432{height:1262.879062px;}
.h0_c00432{height:1263.000000px;}
.w17_c00432{width:2.700000px;}
.w12_c00432{width:4.676400px;}
.wc_c00432{width:4.680000px;}
.w6_c00432{width:5.038200px;}
.w16_c00432{width:6.474600px;}
.w9_c00432{width:6.476400px;}
.wf_c00432{width:7.376400px;}
.w13_c00432{width:7.378200px;}
.w15_c00432{width:8.094600px;}
.w14_c00432{width:8.274600px;}
.w7_c00432{width:8.276400px;}
.w8_c00432{width:8.278200px;}
.we_c00432{width:9.358200px;}
.wb_c00432{width:10.076400px;}
.w10_c00432{width:11.334600px;}
.w4_c00432{width:11.874600px;}
.w2_c00432{width:12.058200px;}
.wa_c00432{width:12.414600px;}
.w5_c00432{width:15.472800px;}
.w1_c00432{width:16.552980px;}
.w3_c00432{width:23.929200px;}
.w11_c00432{width:25.911000px;}
.wd_c00432{width:28.063800px;}
.w19_c00432{width:892.099575px;}
.w18_c00432{width:892.414744px;}
.w0_c00432{width:892.500000px;}
.x0_c00432{left:0.000000px;}
.x1e_c00432{left:113.887229px;}
.x1_c00432{left:128.331540px;}
.x24_c00432{left:141.958948px;}
.x26_c00432{left:167.864603px;}
.x23_c00432{left:181.363319px;}
.x21_c00432{left:194.671797px;}
.x25_c00432{left:207.265792px;}
.x22_c00432{left:221.838286px;}
.x1f_c00432{left:248.825317px;}
.x1c_c00432{left:253.542308px;}
.x1b_c00432{left:269.015236px;}
.x20_c00432{left:275.815765px;}
.x1d_c00432{left:423.021349px;}
.x2_c00432{left:496.623600px;}
.x3_c00432{left:508.681800px;}
.x4_c00432{left:532.611000px;}
.x5_c00432{left:544.485600px;}
.x6_c00432{left:559.958400px;}
.x7_c00432{left:564.636600px;}
.x8_c00432{left:576.869400px;}
.x9_c00432{left:585.147600px;}
.xa_c00432{left:590.364000px;}
.xb_c00432{left:606.555000px;}
.xc_c00432{left:616.631400px;}
.xd_c00432{left:621.309600px;}
.xe_c00432{left:625.809600px;}
.xf_c00432{left:653.873400px;}
.x10_c00432{left:661.971600px;}
.x11_c00432{left:673.126200px;}
.x12_c00432{left:684.100800px;}
.x13_c00432{left:708.931800px;}
.x14_c00432{left:713.428200px;}
.x15_c00432{left:720.806400px;}
.x16_c00432{left:725.486400px;}
.x17_c00432{left:733.761000px;}
.x18_c00432{left:741.855600px;}
.x19_c00432{left:749.233800px;}
.x1a_c00432{left:755.708400px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:-14.713194pt;}
.ws1_c00432{word-spacing:0.000000pt;}
._2_c00432{margin-left:-1.235873pt;}
._0_c00432{width:0.979567pt;}
._b_c00432{width:2.040071pt;}
._7_c00432{width:4.419594pt;}
._6_c00432{width:5.311905pt;}
._9_c00432{width:6.204790pt;}
._8_c00432{width:7.114626pt;}
._1_c00432{width:12.661096pt;}
._3_c00432{width:13.803320pt;}
._e_c00432{width:17.285944pt;}
._d_c00432{width:24.772734pt;}
._c_c00432{width:25.777199pt;}
._4_c00432{width:29.041512pt;}
._5_c00432{width:29.985635pt;}
._a_c00432{width:47.935632pt;}
.fs2_c00432{font-size:53.096085pt;}
.fs0_c00432{font-size:58.852776pt;}
.fs1_c00432{font-size:63.972241pt;}
.y0_c00432{bottom:0.000000pt;}
.y4_c00432{bottom:0.107500pt;}
.y8_c00432{bottom:0.494374pt;}
.y2_c00432{bottom:3.518132pt;}
.ya_c00432{bottom:58.481202pt;}
.y3_c00432{bottom:66.331840pt;}
.y1_c00432{bottom:66.651840pt;}
.y25_c00432{bottom:112.696780pt;}
.y24_c00432{bottom:137.965570pt;}
.y23_c00432{bottom:163.233427pt;}
.y22_c00432{bottom:188.501550pt;}
.y21_c00432{bottom:232.642732pt;}
.y20_c00432{bottom:276.462048pt;}
.y1f_c00432{bottom:301.730838pt;}
.y1e_c00432{bottom:326.682028pt;}
.y1d_c00432{bottom:370.980810pt;}
.y1c_c00432{bottom:396.248934pt;}
.y1b_c00432{bottom:421.519590pt;}
.y1a_c00432{bottom:460.061441pt;}
.y19_c00432{bottom:498.762626pt;}
.y18_c00432{bottom:524.030749pt;}
.y17_c00432{bottom:562.574734pt;}
.y16_c00432{bottom:601.276718pt;}
.y15_c00432{bottom:626.546708pt;}
.y14_c00432{bottom:665.088026pt;}
.y13_c00432{bottom:703.789344pt;}
.y12_c00432{bottom:742.334662pt;}
.y11_c00432{bottom:767.603985pt;}
.y10_c00432{bottom:806.303836pt;}
.yf_c00432{bottom:831.571959pt;}
.ye_c00432{bottom:870.114611pt;}
.yd_c00432{bottom:908.816729pt;}
.yb_c00432{bottom:934.084852pt;}
.yc_c00432{bottom:934.087918pt;}
.y9_c00432{bottom:983.182565pt;}
.y7_c00432{bottom:1023.551024pt;}
.y6_c00432{bottom:1041.942883pt;}
.y5_c00432{bottom:1060.334742pt;}
.h1_c00432{height:16.153120pt;}
.hc_c00432{height:25.114448pt;}
.h7_c00432{height:34.034591pt;}
.ha_c00432{height:37.167260pt;}
.h6_c00432{height:37.724630pt;}
.h8_c00432{height:38.388470pt;}
.h2_c00432{height:41.196944pt;}
.h4_c00432{height:44.780569pt;}
.h9_c00432{height:52.732088pt;}
.hb_c00432{height:52.790940pt;}
.h5_c00432{height:1122.161626pt;}
.h3_c00432{height:1122.559167pt;}
.h0_c00432{height:1122.666667pt;}
.w17_c00432{width:2.400000pt;}
.w12_c00432{width:4.156800pt;}
.wc_c00432{width:4.160000pt;}
.w6_c00432{width:4.478400pt;}
.w16_c00432{width:5.755200pt;}
.w9_c00432{width:5.756800pt;}
.wf_c00432{width:6.556800pt;}
.w13_c00432{width:6.558400pt;}
.w15_c00432{width:7.195200pt;}
.w14_c00432{width:7.355200pt;}
.w7_c00432{width:7.356800pt;}
.w8_c00432{width:7.358400pt;}
.we_c00432{width:8.318400pt;}
.wb_c00432{width:8.956800pt;}
.w10_c00432{width:10.075200pt;}
.w4_c00432{width:10.555200pt;}
.w2_c00432{width:10.718400pt;}
.wa_c00432{width:11.035200pt;}
.w5_c00432{width:13.753600pt;}
.w1_c00432{width:14.713760pt;}
.w3_c00432{width:21.270400pt;}
.w11_c00432{width:23.032000pt;}
.wd_c00432{width:24.945600pt;}
.w19_c00432{width:792.977400pt;}
.w18_c00432{width:793.257550pt;}
.w0_c00432{width:793.333333pt;}
.x0_c00432{left:0.000000pt;}
.x1e_c00432{left:101.233093pt;}
.x1_c00432{left:114.072480pt;}
.x24_c00432{left:126.185731pt;}
.x26_c00432{left:149.212981pt;}
.x23_c00432{left:161.211839pt;}
.x21_c00432{left:173.041597pt;}
.x25_c00432{left:184.236260pt;}
.x22_c00432{left:197.189588pt;}
.x1f_c00432{left:221.178060pt;}
.x1c_c00432{left:225.370940pt;}
.x1b_c00432{left:239.124654pt;}
.x20_c00432{left:245.169569pt;}
.x1d_c00432{left:376.018977pt;}
.x2_c00432{left:441.443200pt;}
.x3_c00432{left:452.161600pt;}
.x4_c00432{left:473.432000pt;}
.x5_c00432{left:483.987200pt;}
.x6_c00432{left:497.740800pt;}
.x7_c00432{left:501.899200pt;}
.x8_c00432{left:512.772800pt;}
.x9_c00432{left:520.131200pt;}
.xa_c00432{left:524.768000pt;}
.xb_c00432{left:539.160000pt;}
.xc_c00432{left:548.116800pt;}
.xd_c00432{left:552.275200pt;}
.xe_c00432{left:556.275200pt;}
.xf_c00432{left:581.220800pt;}
.x10_c00432{left:588.419200pt;}
.x11_c00432{left:598.334400pt;}
.x12_c00432{left:608.089600pt;}
.x13_c00432{left:630.161600pt;}
.x14_c00432{left:634.158400pt;}
.x15_c00432{left:640.716800pt;}
.x16_c00432{left:644.876800pt;}
.x17_c00432{left:652.232000pt;}
.x18_c00432{left:659.427200pt;}
.x19_c00432{left:665.985600pt;}
.x1a_c00432{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:0.360019;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00433;src:url('chunks/assets/font_24d98807f733dc085d1c4453.woff2')format("woff");}.ff5_c00433{font-family:ff5_c00433;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00433;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff6_c00433{font-family:ff6_c00433;line-height:1.113000;font-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_c00433{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:-16.552343px;}
.ws1_c00433{word-spacing:0.000000px;}
._2_c00433{margin-left:-1.168367px;}
._0_c00433{width:1.102012px;}
._4_c00433{width:2.315344px;}
._5_c00433{width:4.563750px;}
._6_c00433{width:5.996638px;}
._8_c00433{width:7.564321px;}
._7_c00433{width:8.664051px;}
._a_c00433{width:12.291748px;}
._9_c00433{width:13.432625px;}
._b_c00433{width:14.438177px;}
._e_c00433{width:15.519580px;}
._d_c00433{width:22.363969px;}
._c_c00433{width:23.614774px;}
._1_c00433{width:32.408430px;}
._3_c00433{width:62.066152px;}
.fc1_c00433{color:rgb(105,148,45);}
.fc0_c00433{color:rgb(35,31,32);}
.fs3_c00433{font-size:41.741203px;}
.fs2_c00433{font-size:59.733096px;}
.fs0_c00433{font-size:66.209374px;}
.fs1_c00433{font-size:71.968771px;}
.y0_c00433{bottom:0.000000px;}
.y4_c00433{bottom:0.120938px;}
.y8_c00433{bottom:0.556171px;}
.y2_c00433{bottom:3.957898px;}
.ya_c00433{bottom:65.791352px;}
.y3_c00433{bottom:74.623320px;}
.y1_c00433{bottom:74.983320px;}
.y2a_c00433{bottom:114.729433px;}
.y29_c00433{bottom:142.976821px;}
.y28_c00433{bottom:171.403460px;}
.y27_c00433{bottom:199.831449px;}
.y26_c00433{bottom:249.488929px;}
.y25_c00433{bottom:277.735567px;}
.y24_c00433{bottom:306.160856px;}
.y23_c00433{bottom:355.821186px;}
.y22_c00433{bottom:384.066475px;}
.y21_c00433{bottom:412.494464px;}
.y20_c00433{bottom:441.103202px;}
.y1f_c00433{bottom:469.529841px;}
.y1e_c00433{bottom:519.007321px;}
.y1d_c00433{bottom:547.435310px;}
.y1c_c00433{bottom:596.911440px;}
.y1b_c00433{bottom:625.160929px;}
.y1a_c00433{bottom:653.766217px;}
.y19_c00433{bottom:703.245047px;}
.y17_c00433{bottom:731.490036px;}
.y18_c00433{bottom:739.047033px;}
.y16_c00433{bottom:760.096525px;}
.y15_c00433{bottom:809.574005px;}
.y14_c00433{bottom:837.821993px;}
.y13_c00433{bottom:866.067132px;}
.y12_c00433{bottom:915.905962px;}
.y11_c00433{bottom:944.156951px;}
.y10_c00433{bottom:972.763439px;}
.yf_c00433{bottom:1001.189928px;}
.ye_c00433{bottom:1029.616417px;}
.yd_c00433{bottom:1058.042155px;}
.yb_c00433{bottom:1086.468944px;}
.yc_c00433{bottom:1086.470894px;}
.y9_c00433{bottom:1106.080386px;}
.y7_c00433{bottom:1151.494902px;}
.y6_c00433{bottom:1172.185744px;}
.y5_c00433{bottom:1192.876585px;}
.h1_c00433{height:18.172260px;}
.h8_c00433{height:28.253754px;}
.hc_c00433{height:37.400118px;}
.h7_c00433{height:38.288915px;}
.ha_c00433{height:41.813167px;}
.h6_c00433{height:42.440208px;}
.h2_c00433{height:46.346561px;}
.h4_c00433{height:50.378140px;}
.h9_c00433{height:59.323599px;}
.hb_c00433{height:59.389808px;}
.h5_c00433{height:1262.431829px;}
.h3_c00433{height:1262.879062px;}
.h0_c00433{height:1263.000000px;}
.w17_c00433{width:2.700000px;}
.w12_c00433{width:4.676400px;}
.wc_c00433{width:4.680000px;}
.w6_c00433{width:5.038200px;}
.w16_c00433{width:6.474600px;}
.w9_c00433{width:6.476400px;}
.wf_c00433{width:7.376400px;}
.w13_c00433{width:7.378200px;}
.w15_c00433{width:8.094600px;}
.w14_c00433{width:8.274600px;}
.w7_c00433{width:8.276400px;}
.w8_c00433{width:8.278200px;}
.we_c00433{width:9.358200px;}
.wb_c00433{width:10.076400px;}
.w10_c00433{width:11.334600px;}
.w4_c00433{width:11.874600px;}
.w2_c00433{width:12.058200px;}
.wa_c00433{width:12.414600px;}
.w5_c00433{width:15.472800px;}
.w1_c00433{width:16.552980px;}
.w3_c00433{width:23.929200px;}
.w11_c00433{width:25.911000px;}
.wd_c00433{width:28.063800px;}
.w19_c00433{width:892.099575px;}
.w18_c00433{width:892.414744px;}
.w0_c00433{width:892.500000px;}
.x0_c00433{left:0.000000px;}
.x1e_c00433{left:113.887229px;}
.x1_c00433{left:128.331540px;}
.x26_c00433{left:141.953761px;}
.x21_c00433{left:167.864603px;}
.x25_c00433{left:181.357802px;}
.x24_c00433{left:194.851643px;}
.x1f_c00433{left:207.265742px;}
.x20_c00433{left:221.838286px;}
.x1c_c00433{left:253.542308px;}
.x22_c00433{left:261.240270px;}
.x1b_c00433{left:269.015236px;}
.x23_c00433{left:275.815765px;}
.x1d_c00433{left:423.021349px;}
.x2_c00433{left:496.623600px;}
.x3_c00433{left:508.681800px;}
.x4_c00433{left:532.611000px;}
.x5_c00433{left:544.485600px;}
.x6_c00433{left:559.958400px;}
.x7_c00433{left:564.636600px;}
.x8_c00433{left:576.869400px;}
.x9_c00433{left:585.147600px;}
.xa_c00433{left:590.364000px;}
.xb_c00433{left:606.555000px;}
.xc_c00433{left:616.631400px;}
.xd_c00433{left:621.309600px;}
.xe_c00433{left:625.809600px;}
.x27_c00433{left:648.787615px;}
.xf_c00433{left:653.873400px;}
.x10_c00433{left:661.971600px;}
.x11_c00433{left:673.126200px;}
.x12_c00433{left:684.100800px;}
.x13_c00433{left:708.931800px;}
.x14_c00433{left:713.428200px;}
.x15_c00433{left:720.806400px;}
.x16_c00433{left:725.486400px;}
.x17_c00433{left:733.761000px;}
.x18_c00433{left:741.855600px;}
.x19_c00433{left:749.233800px;}
.x1a_c00433{left:755.708400px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws0_c00433{word-spacing:-14.713194pt;}
.ws1_c00433{word-spacing:0.000000pt;}
._2_c00433{margin-left:-1.038548pt;}
._0_c00433{width:0.979567pt;}
._4_c00433{width:2.058083pt;}
._5_c00433{width:4.056667pt;}
._6_c00433{width:5.330345pt;}
._8_c00433{width:6.723841pt;}
._7_c00433{width:7.701379pt;}
._a_c00433{width:10.925999pt;}
._9_c00433{width:11.940111pt;}
._b_c00433{width:12.833935pt;}
._e_c00433{width:13.795182pt;}
._d_c00433{width:19.879084pt;}
._c_c00433{width:20.990910pt;}
._1_c00433{width:28.807493pt;}
._3_c00433{width:55.169913pt;}
.fs3_c00433{font-size:37.103292pt;}
.fs2_c00433{font-size:53.096085pt;}
.fs0_c00433{font-size:58.852776pt;}
.fs1_c00433{font-size:63.972241pt;}
.y0_c00433{bottom:0.000000pt;}
.y4_c00433{bottom:0.107500pt;}
.y8_c00433{bottom:0.494374pt;}
.y2_c00433{bottom:3.518132pt;}
.ya_c00433{bottom:58.481202pt;}
.y3_c00433{bottom:66.331840pt;}
.y1_c00433{bottom:66.651840pt;}
.y2a_c00433{bottom:101.981718pt;}
.y29_c00433{bottom:127.090508pt;}
.y28_c00433{bottom:152.358631pt;}
.y27_c00433{bottom:177.627954pt;}
.y26_c00433{bottom:221.767937pt;}
.y25_c00433{bottom:246.876060pt;}
.y24_c00433{bottom:272.142983pt;}
.y23_c00433{bottom:316.285499pt;}
.y22_c00433{bottom:341.392422pt;}
.y21_c00433{bottom:366.661745pt;}
.y20_c00433{bottom:392.091735pt;}
.y1f_c00433{bottom:417.359858pt;}
.y1e_c00433{bottom:461.339841pt;}
.y1d_c00433{bottom:486.609164pt;}
.y1c_c00433{bottom:530.587947pt;}
.y1b_c00433{bottom:555.698603pt;}
.y1a_c00433{bottom:581.125526pt;}
.y19_c00433{bottom:625.106709pt;}
.y17_c00433{bottom:650.213365pt;}
.y18_c00433{bottom:656.930696pt;}
.y16_c00433{bottom:675.641355pt;}
.y15_c00433{bottom:719.621338pt;}
.y14_c00433{bottom:744.730661pt;}
.y13_c00433{bottom:769.837451pt;}
.y12_c00433{bottom:814.138633pt;}
.y11_c00433{bottom:839.250623pt;}
.y10_c00433{bottom:864.678613pt;}
.yf_c00433{bottom:889.946603pt;}
.ye_c00433{bottom:915.214593pt;}
.yd_c00433{bottom:940.481916pt;}
.yb_c00433{bottom:965.750172pt;}
.yc_c00433{bottom:965.751906pt;}
.y9_c00433{bottom:983.182565pt;}
.y7_c00433{bottom:1023.551024pt;}
.y6_c00433{bottom:1041.942883pt;}
.y5_c00433{bottom:1060.334742pt;}
.h1_c00433{height:16.153120pt;}
.h8_c00433{height:25.114448pt;}
.hc_c00433{height:33.244549pt;}
.h7_c00433{height:34.034591pt;}
.ha_c00433{height:37.167260pt;}
.h6_c00433{height:37.724630pt;}
.h2_c00433{height:41.196944pt;}
.h4_c00433{height:44.780569pt;}
.h9_c00433{height:52.732088pt;}
.hb_c00433{height:52.790940pt;}
.h5_c00433{height:1122.161626pt;}
.h3_c00433{height:1122.559167pt;}
.h0_c00433{height:1122.666667pt;}
.w17_c00433{width:2.400000pt;}
.w12_c00433{width:4.156800pt;}
.wc_c00433{width:4.160000pt;}
.w6_c00433{width:4.478400pt;}
.w16_c00433{width:5.755200pt;}
.w9_c00433{width:5.756800pt;}
.wf_c00433{width:6.556800pt;}
.w13_c00433{width:6.558400pt;}
.w15_c00433{width:7.195200pt;}
.w14_c00433{width:7.355200pt;}
.w7_c00433{width:7.356800pt;}
.w8_c00433{width:7.358400pt;}
.we_c00433{width:8.318400pt;}
.wb_c00433{width:8.956800pt;}
.w10_c00433{width:10.075200pt;}
.w4_c00433{width:10.555200pt;}
.w2_c00433{width:10.718400pt;}
.wa_c00433{width:11.035200pt;}
.w5_c00433{width:13.753600pt;}
.w1_c00433{width:14.713760pt;}
.w3_c00433{width:21.270400pt;}
.w11_c00433{width:23.032000pt;}
.wd_c00433{width:24.945600pt;}
.w19_c00433{width:792.977400pt;}
.w18_c00433{width:793.257550pt;}
.w0_c00433{width:793.333333pt;}
.x0_c00433{left:0.000000pt;}
.x1e_c00433{left:101.233093pt;}
.x1_c00433{left:114.072480pt;}
.x26_c00433{left:126.181121pt;}
.x21_c00433{left:149.212981pt;}
.x25_c00433{left:161.206935pt;}
.x24_c00433{left:173.201460pt;}
.x1f_c00433{left:184.236215pt;}
.x20_c00433{left:197.189588pt;}
.x1c_c00433{left:225.370940pt;}
.x22_c00433{left:232.213574pt;}
.x1b_c00433{left:239.124654pt;}
.x23_c00433{left:245.169569pt;}
.x1d_c00433{left:376.018977pt;}
.x2_c00433{left:441.443200pt;}
.x3_c00433{left:452.161600pt;}
.x4_c00433{left:473.432000pt;}
.x5_c00433{left:483.987200pt;}
.x6_c00433{left:497.740800pt;}
.x7_c00433{left:501.899200pt;}
.x8_c00433{left:512.772800pt;}
.x9_c00433{left:520.131200pt;}
.xa_c00433{left:524.768000pt;}
.xb_c00433{left:539.160000pt;}
.xc_c00433{left:548.116800pt;}
.xd_c00433{left:552.275200pt;}
.xe_c00433{left:556.275200pt;}
.x27_c00433{left:576.700103pt;}
.xf_c00433{left:581.220800pt;}
.x10_c00433{left:588.419200pt;}
.x11_c00433{left:598.334400pt;}
.x12_c00433{left:608.089600pt;}
.x13_c00433{left:630.161600pt;}
.x14_c00433{left:634.158400pt;}
.x15_c00433{left:640.716800pt;}
.x16_c00433{left:644.876800pt;}
.x17_c00433{left:652.232000pt;}
.x18_c00433{left:659.427200pt;}
.x19_c00433{left:665.985600pt;}
.x1a_c00433{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00434;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:0.360019;font-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_c00434{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls0_c00434{letter-spacing:0.000000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:-16.552343px;}
.ws1_c00434{word-spacing:-10.435301px;}
.ws2_c00434{word-spacing:0.000000px;}
._2_c00434{margin-left:-1.137451px;}
._0_c00434{width:1.102012px;}
._b_c00434{width:2.167539px;}
._8_c00434{width:3.497572px;}
._3_c00434{width:5.264164px;}
._1_c00434{width:6.679126px;}
._11_c00434{width:9.352062px;}
._a_c00434{width:10.779683px;}
._9_c00434{width:11.858328px;}
._d_c00434{width:13.050246px;}
._10_c00434{width:14.197002px;}
._f_c00434{width:15.289591px;}
._5_c00434{width:18.617917px;}
._4_c00434{width:19.913574px;}
._6_c00434{width:25.251750px;}
._c_c00434{width:54.642622px;}
._7_c00434{width:58.358875px;}
._e_c00434{width:62.066152px;}
.fc1_c00434{color:rgb(105,148,45);}
.fc0_c00434{color:rgb(35,31,32);}
.fs3_c00434{font-size:41.741203px;}
.fs2_c00434{font-size:59.733096px;}
.fs0_c00434{font-size:66.209374px;}
.fs1_c00434{font-size:71.968771px;}
.y0_c00434{bottom:0.000000px;}
.y4_c00434{bottom:0.120938px;}
.y8_c00434{bottom:0.556171px;}
.y2_c00434{bottom:3.957898px;}
.ya_c00434{bottom:65.791352px;}
.y3_c00434{bottom:74.623320px;}
.y1_c00434{bottom:74.983320px;}
.y2a_c00434{bottom:107.351086px;}
.y29_c00434{bottom:135.598474px;}
.y28_c00434{bottom:164.025113px;}
.y27_c00434{bottom:192.451752px;}
.y26_c00434{bottom:220.880190px;}
.y25_c00434{bottom:249.306079px;}
.y24_c00434{bottom:277.734067px;}
.y23_c00434{bottom:306.160706px;}
.y22_c00434{bottom:355.818786px;}
.y21_c00434{bottom:384.069625px;}
.y20_c00434{bottom:433.727105px;}
.y1f_c00434{bottom:461.973744px;}
.y1e_c00434{bottom:490.401132px;}
.y1d_c00434{bottom:518.465821px;}
.y1c_c00434{bottom:568.484051px;}
.y1b_c00434{bottom:596.731440px;}
.y1a_c00434{bottom:625.158079px;}
.y19_c00434{bottom:651.426068px;}
.y18_c00434{bottom:653.766067px;}
.y17_c00434{bottom:681.831656px;}
.y16_c00434{bottom:731.670486px;}
.y15_c00434{bottom:760.097125px;}
.y14_c00434{bottom:809.573255px;}
.y13_c00434{bottom:837.821243px;}
.y12_c00434{bottom:866.429232px;}
.y11_c00434{bottom:894.857971px;}
.y10_c00434{bottom:922.925959px;}
.yf_c00434{bottom:951.350048px;}
.ye_c00434{bottom:1001.366178px;}
.yd_c00434{bottom:1029.614167px;}
.yc_c00434{bottom:1058.042155px;}
.yb_c00434{bottom:1086.470894px;}
.y9_c00434{bottom:1106.080386px;}
.y7_c00434{bottom:1151.494902px;}
.y6_c00434{bottom:1172.185744px;}
.y5_c00434{bottom:1192.876585px;}
.h1_c00434{height:18.172260px;}
.hb_c00434{height:28.253754px;}
.ha_c00434{height:37.400118px;}
.h7_c00434{height:38.288915px;}
.h6_c00434{height:42.440208px;}
.h2_c00434{height:46.346561px;}
.h4_c00434{height:50.378140px;}
.h9_c00434{height:59.323599px;}
.h8_c00434{height:59.389808px;}
.h5_c00434{height:1262.431829px;}
.h3_c00434{height:1262.879062px;}
.h0_c00434{height:1263.000000px;}
.w17_c00434{width:2.700000px;}
.w12_c00434{width:4.676400px;}
.wc_c00434{width:4.680000px;}
.w6_c00434{width:5.038200px;}
.w16_c00434{width:6.474600px;}
.w9_c00434{width:6.476400px;}
.wf_c00434{width:7.376400px;}
.w13_c00434{width:7.378200px;}
.w15_c00434{width:8.094600px;}
.w14_c00434{width:8.274600px;}
.w7_c00434{width:8.276400px;}
.w8_c00434{width:8.278200px;}
.we_c00434{width:9.358200px;}
.wb_c00434{width:10.076400px;}
.w10_c00434{width:11.334600px;}
.w4_c00434{width:11.874600px;}
.w2_c00434{width:12.058200px;}
.wa_c00434{width:12.414600px;}
.w5_c00434{width:15.472800px;}
.w1_c00434{width:16.552980px;}
.w3_c00434{width:23.929200px;}
.w11_c00434{width:25.911000px;}
.wd_c00434{width:28.063800px;}
.w19_c00434{width:892.099575px;}
.w18_c00434{width:892.414744px;}
.w0_c00434{width:892.500000px;}
.x0_c00434{left:0.000000px;}
.x1e_c00434{left:113.887229px;}
.x1_c00434{left:128.331540px;}
.x21_c00434{left:140.875963px;}
.x20_c00434{left:141.955260px;}
.x2b_c00434{left:167.863104px;}
.x1f_c00434{left:181.357802px;}
.x22_c00434{left:194.851797px;}
.x29_c00434{left:207.265792px;}
.x2a_c00434{left:221.838286px;}
.x1c_c00434{left:253.542308px;}
.x1b_c00434{left:269.015236px;}
.x23_c00434{left:409.134211px;}
.x24_c00434{left:419.391207px;}
.x1d_c00434{left:423.021349px;}
.x2_c00434{left:496.623600px;}
.x3_c00434{left:508.681800px;}
.x4_c00434{left:532.611000px;}
.x5_c00434{left:544.485600px;}
.x6_c00434{left:559.958400px;}
.x7_c00434{left:564.636600px;}
.x8_c00434{left:576.869400px;}
.x9_c00434{left:585.147600px;}
.xa_c00434{left:590.364000px;}
.xb_c00434{left:606.555000px;}
.xc_c00434{left:616.631400px;}
.x25_c00434{left:619.821127px;}
.xd_c00434{left:621.309600px;}
.xe_c00434{left:625.809600px;}
.x26_c00434{left:630.253623px;}
.x27_c00434{left:645.007617px;}
.xf_c00434{left:653.873400px;}
.x28_c00434{left:655.263113px;}
.x10_c00434{left:661.971600px;}
.x11_c00434{left:673.126200px;}
.x12_c00434{left:684.100800px;}
.x13_c00434{left:708.931800px;}
.x14_c00434{left:713.428200px;}
.x15_c00434{left:720.806400px;}
.x16_c00434{left:725.486400px;}
.x17_c00434{left:733.761000px;}
.x18_c00434{left:741.855600px;}
.x19_c00434{left:749.233800px;}
.x1a_c00434{left:755.708400px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws0_c00434{word-spacing:-14.713194pt;}
.ws1_c00434{word-spacing:-9.275823pt;}
.ws2_c00434{word-spacing:0.000000pt;}
._2_c00434{margin-left:-1.011068pt;}
._0_c00434{width:0.979567pt;}
._b_c00434{width:1.926701pt;}
._8_c00434{width:3.108953pt;}
._3_c00434{width:4.679257pt;}
._1_c00434{width:5.937001pt;}
._11_c00434{width:8.312944pt;}
._a_c00434{width:9.581940pt;}
._9_c00434{width:10.540736pt;}
._d_c00434{width:11.600219pt;}
._10_c00434{width:12.619557pt;}
._f_c00434{width:13.590748pt;}
._5_c00434{width:16.549260pt;}
._4_c00434{width:17.700954pt;}
._6_c00434{width:22.446000pt;}
._c_c00434{width:48.571219pt;}
._7_c00434{width:51.874556pt;}
._e_c00434{width:55.169913pt;}
.fs3_c00434{font-size:37.103292pt;}
.fs2_c00434{font-size:53.096085pt;}
.fs0_c00434{font-size:58.852776pt;}
.fs1_c00434{font-size:63.972241pt;}
.y0_c00434{bottom:0.000000pt;}
.y4_c00434{bottom:0.107500pt;}
.y8_c00434{bottom:0.494374pt;}
.y2_c00434{bottom:3.518132pt;}
.ya_c00434{bottom:58.481202pt;}
.y3_c00434{bottom:66.331840pt;}
.y1_c00434{bottom:66.651840pt;}
.y2a_c00434{bottom:95.423187pt;}
.y29_c00434{bottom:120.531977pt;}
.y28_c00434{bottom:145.800100pt;}
.y27_c00434{bottom:171.068224pt;}
.y26_c00434{bottom:196.337947pt;}
.y25_c00434{bottom:221.605403pt;}
.y24_c00434{bottom:246.874727pt;}
.y23_c00434{bottom:272.142850pt;}
.y22_c00434{bottom:316.283366pt;}
.y21_c00434{bottom:341.395222pt;}
.y20_c00434{bottom:385.535205pt;}
.y1f_c00434{bottom:410.643328pt;}
.y1e_c00434{bottom:435.912118pt;}
.y1d_c00434{bottom:460.858508pt;}
.y1c_c00434{bottom:505.319157pt;}
.y1b_c00434{bottom:530.427947pt;}
.y1a_c00434{bottom:555.696070pt;}
.y19_c00434{bottom:579.045394pt;}
.y18_c00434{bottom:581.125393pt;}
.y17_c00434{bottom:606.072583pt;}
.y16_c00434{bottom:650.373765pt;}
.y15_c00434{bottom:675.641888pt;}
.y14_c00434{bottom:719.620671pt;}
.y13_c00434{bottom:744.729994pt;}
.y12_c00434{bottom:770.159317pt;}
.y11_c00434{bottom:795.429307pt;}
.y10_c00434{bottom:820.378631pt;}
.yf_c00434{bottom:845.644487pt;}
.ye_c00434{bottom:890.103269pt;}
.yd_c00434{bottom:915.212593pt;}
.yc_c00434{bottom:940.481916pt;}
.yb_c00434{bottom:965.751906pt;}
.y9_c00434{bottom:983.182565pt;}
.y7_c00434{bottom:1023.551024pt;}
.y6_c00434{bottom:1041.942883pt;}
.y5_c00434{bottom:1060.334742pt;}
.h1_c00434{height:16.153120pt;}
.hb_c00434{height:25.114448pt;}
.ha_c00434{height:33.244549pt;}
.h7_c00434{height:34.034591pt;}
.h6_c00434{height:37.724630pt;}
.h2_c00434{height:41.196944pt;}
.h4_c00434{height:44.780569pt;}
.h9_c00434{height:52.732088pt;}
.h8_c00434{height:52.790940pt;}
.h5_c00434{height:1122.161626pt;}
.h3_c00434{height:1122.559167pt;}
.h0_c00434{height:1122.666667pt;}
.w17_c00434{width:2.400000pt;}
.w12_c00434{width:4.156800pt;}
.wc_c00434{width:4.160000pt;}
.w6_c00434{width:4.478400pt;}
.w16_c00434{width:5.755200pt;}
.w9_c00434{width:5.756800pt;}
.wf_c00434{width:6.556800pt;}
.w13_c00434{width:6.558400pt;}
.w15_c00434{width:7.195200pt;}
.w14_c00434{width:7.355200pt;}
.w7_c00434{width:7.356800pt;}
.w8_c00434{width:7.358400pt;}
.we_c00434{width:8.318400pt;}
.wb_c00434{width:8.956800pt;}
.w10_c00434{width:10.075200pt;}
.w4_c00434{width:10.555200pt;}
.w2_c00434{width:10.718400pt;}
.wa_c00434{width:11.035200pt;}
.w5_c00434{width:13.753600pt;}
.w1_c00434{width:14.713760pt;}
.w3_c00434{width:21.270400pt;}
.w11_c00434{width:23.032000pt;}
.wd_c00434{width:24.945600pt;}
.w19_c00434{width:792.977400pt;}
.w18_c00434{width:793.257550pt;}
.w0_c00434{width:793.333333pt;}
.x0_c00434{left:0.000000pt;}
.x1e_c00434{left:101.233093pt;}
.x1_c00434{left:114.072480pt;}
.x21_c00434{left:125.223078pt;}
.x20_c00434{left:126.182453pt;}
.x2b_c00434{left:149.211648pt;}
.x1f_c00434{left:161.206935pt;}
.x22_c00434{left:173.201597pt;}
.x29_c00434{left:184.236260pt;}
.x2a_c00434{left:197.189588pt;}
.x1c_c00434{left:225.370940pt;}
.x1b_c00434{left:239.124654pt;}
.x23_c00434{left:363.674855pt;}
.x24_c00434{left:372.792184pt;}
.x1d_c00434{left:376.018977pt;}
.x2_c00434{left:441.443200pt;}
.x3_c00434{left:452.161600pt;}
.x4_c00434{left:473.432000pt;}
.x5_c00434{left:483.987200pt;}
.x6_c00434{left:497.740800pt;}
.x7_c00434{left:501.899200pt;}
.x8_c00434{left:512.772800pt;}
.x9_c00434{left:520.131200pt;}
.xa_c00434{left:524.768000pt;}
.xb_c00434{left:539.160000pt;}
.xc_c00434{left:548.116800pt;}
.x25_c00434{left:550.952113pt;}
.xd_c00434{left:552.275200pt;}
.xe_c00434{left:556.275200pt;}
.x26_c00434{left:560.225443pt;}
.x27_c00434{left:573.340104pt;}
.xf_c00434{left:581.220800pt;}
.x28_c00434{left:582.456100pt;}
.x10_c00434{left:588.419200pt;}
.x11_c00434{left:598.334400pt;}
.x12_c00434{left:608.089600pt;}
.x13_c00434{left:630.161600pt;}
.x14_c00434{left:634.158400pt;}
.x15_c00434{left:640.716800pt;}
.x16_c00434{left:644.876800pt;}
.x17_c00434{left:652.232000pt;}
.x18_c00434{left:659.427200pt;}
.x19_c00434{left:665.985600pt;}
.x1a_c00434{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00435;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00435;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:0.360019;font-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_c00435{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls0_c00435{letter-spacing:0.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:-16.552343px;}
.ws1_c00435{word-spacing:0.000000px;}
._3_c00435{margin-left:-1.030072px;}
._0_c00435{width:1.102012px;}
._2_c00435{width:2.946082px;}
._4_c00435{width:4.791521px;}
._f_c00435{width:5.841868px;}
._e_c00435{width:6.969469px;}
._c_c00435{width:10.636119px;}
._b_c00435{width:11.760404px;}
._5_c00435{width:17.733728px;}
._6_c00435{width:18.951109px;}
._7_c00435{width:20.433164px;}
._9_c00435{width:25.410201px;}
._8_c00435{width:26.579895px;}
._1_c00435{width:54.651097px;}
._a_c00435{width:62.066152px;}
._d_c00435{width:199.476925px;}
.fc1_c00435{color:rgb(105,148,45);}
.fc0_c00435{color:rgb(35,31,32);}
.fs3_c00435{font-size:41.741203px;}
.fs2_c00435{font-size:59.733096px;}
.fs0_c00435{font-size:66.209374px;}
.fs1_c00435{font-size:71.968771px;}
.y0_c00435{bottom:0.000000px;}
.y4_c00435{bottom:0.120938px;}
.y8_c00435{bottom:0.556171px;}
.y2_c00435{bottom:3.957898px;}
.ya_c00435{bottom:65.791352px;}
.y3_c00435{bottom:74.623320px;}
.y1_c00435{bottom:74.983320px;}
.y28_c00435{bottom:127.862377px;}
.y27_c00435{bottom:156.287666px;}
.y26_c00435{bottom:184.714305px;}
.y25_c00435{bottom:213.144393px;}
.y24_c00435{bottom:256.143226px;}
.y23_c00435{bottom:307.240706px;}
.y22_c00435{bottom:355.820886px;}
.y21_c00435{bottom:384.067525px;}
.y1f_c00435{bottom:412.494164px;}
.y20_c00435{bottom:420.051161px;}
.y1e_c00435{bottom:440.742002px;}
.y1d_c00435{bottom:490.580232px;}
.y1c_c00435{bottom:518.827621px;}
.y1b_c00435{bottom:547.428860px;}
.y1a_c00435{bottom:575.857598px;}
.y19_c00435{bottom:604.287087px;}
.y18_c00435{bottom:653.944417px;}
.y17_c00435{bottom:682.191056px;}
.y16_c00435{bottom:710.257694px;}
.y15_c00435{bottom:760.275174px;}
.y14_c00435{bottom:788.521813px;}
.y13_c00435{bottom:816.948452px;}
.y12_c00435{bottom:866.607282px;}
.y11_c00435{bottom:894.853921px;}
.y10_c00435{bottom:923.281309px;}
.yf_c00435{bottom:951.709298px;}
.ye_c00435{bottom:1001.365428px;}
.yd_c00435{bottom:1029.613417px;}
.yc_c00435{bottom:1058.042905px;}
.yb_c00435{bottom:1086.110894px;}
.y9_c00435{bottom:1106.080386px;}
.y7_c00435{bottom:1151.494902px;}
.y6_c00435{bottom:1172.185744px;}
.y5_c00435{bottom:1192.876585px;}
.h1_c00435{height:18.172260px;}
.ha_c00435{height:28.253754px;}
.hb_c00435{height:37.400118px;}
.h7_c00435{height:38.288915px;}
.h6_c00435{height:42.440208px;}
.h2_c00435{height:46.346561px;}
.h4_c00435{height:50.378140px;}
.hc_c00435{height:53.580587px;}
.h9_c00435{height:59.323599px;}
.h8_c00435{height:59.389808px;}
.h5_c00435{height:1262.431829px;}
.h3_c00435{height:1262.879062px;}
.h0_c00435{height:1263.000000px;}
.w17_c00435{width:2.700000px;}
.w12_c00435{width:4.676400px;}
.wc_c00435{width:4.680000px;}
.w6_c00435{width:5.038200px;}
.w16_c00435{width:6.474600px;}
.w9_c00435{width:6.476400px;}
.wf_c00435{width:7.376400px;}
.w13_c00435{width:7.378200px;}
.w15_c00435{width:8.094600px;}
.w14_c00435{width:8.274600px;}
.w7_c00435{width:8.276400px;}
.w8_c00435{width:8.278200px;}
.we_c00435{width:9.358200px;}
.wb_c00435{width:10.076400px;}
.w10_c00435{width:11.334600px;}
.w4_c00435{width:11.874600px;}
.w2_c00435{width:12.058200px;}
.wa_c00435{width:12.414600px;}
.w5_c00435{width:15.472800px;}
.w1_c00435{width:16.552980px;}
.w3_c00435{width:23.929200px;}
.w11_c00435{width:25.911000px;}
.wd_c00435{width:28.063800px;}
.w19_c00435{width:892.099575px;}
.w18_c00435{width:892.414744px;}
.w0_c00435{width:892.500000px;}
.x0_c00435{left:0.000000px;}
.x1e_c00435{left:113.887229px;}
.x1_c00435{left:128.331540px;}
.x25_c00435{left:140.876263px;}
.x21_c00435{left:141.956339px;}
.x24_c00435{left:167.858607px;}
.x20_c00435{left:181.357802px;}
.x1f_c00435{left:194.851797px;}
.x22_c00435{left:207.265792px;}
.x23_c00435{left:221.838286px;}
.x1c_c00435{left:253.542308px;}
.x1b_c00435{left:269.015236px;}
.x1d_c00435{left:423.021349px;}
.x26_c00435{left:480.561183px;}
.x27_c00435{left:485.779681px;}
.x2_c00435{left:496.623600px;}
.x3_c00435{left:508.681800px;}
.x4_c00435{left:532.611000px;}
.x5_c00435{left:544.485600px;}
.x6_c00435{left:559.958400px;}
.x7_c00435{left:564.636600px;}
.x8_c00435{left:576.869400px;}
.x9_c00435{left:585.147600px;}
.xa_c00435{left:590.364000px;}
.xb_c00435{left:606.555000px;}
.xc_c00435{left:616.631400px;}
.xd_c00435{left:621.309600px;}
.xe_c00435{left:625.809600px;}
.xf_c00435{left:653.873400px;}
.x10_c00435{left:661.971600px;}
.x11_c00435{left:673.126200px;}
.x12_c00435{left:684.100800px;}
.x13_c00435{left:708.931800px;}
.x14_c00435{left:713.428200px;}
.x15_c00435{left:720.806400px;}
.x16_c00435{left:725.486400px;}
.x17_c00435{left:733.761000px;}
.x18_c00435{left:741.855600px;}
.x19_c00435{left:749.233800px;}
.x1a_c00435{left:755.708400px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:-14.713194pt;}
.ws1_c00435{word-spacing:0.000000pt;}
._3_c00435{margin-left:-0.915619pt;}
._0_c00435{width:0.979567pt;}
._2_c00435{width:2.618740pt;}
._4_c00435{width:4.259130pt;}
._f_c00435{width:5.192772pt;}
._e_c00435{width:6.195083pt;}
._c_c00435{width:9.454328pt;}
._b_c00435{width:10.453692pt;}
._5_c00435{width:15.763314pt;}
._6_c00435{width:16.845430pt;}
._7_c00435{width:18.162812pt;}
._9_c00435{width:22.586845pt;}
._8_c00435{width:23.626574pt;}
._1_c00435{width:48.578753pt;}
._a_c00435{width:55.169913pt;}
._d_c00435{width:177.312822pt;}
.fs3_c00435{font-size:37.103292pt;}
.fs2_c00435{font-size:53.096085pt;}
.fs0_c00435{font-size:58.852776pt;}
.fs1_c00435{font-size:63.972241pt;}
.y0_c00435{bottom:0.000000pt;}
.y4_c00435{bottom:0.107500pt;}
.y8_c00435{bottom:0.494374pt;}
.y2_c00435{bottom:3.518132pt;}
.ya_c00435{bottom:58.481202pt;}
.y3_c00435{bottom:66.331840pt;}
.y1_c00435{bottom:66.651840pt;}
.y28_c00435{bottom:113.655447pt;}
.y27_c00435{bottom:138.922370pt;}
.y26_c00435{bottom:164.190493pt;}
.y25_c00435{bottom:189.461683pt;}
.y24_c00435{bottom:227.682868pt;}
.y23_c00435{bottom:273.102849pt;}
.y22_c00435{bottom:316.285232pt;}
.y21_c00435{bottom:341.393356pt;}
.y1f_c00435{bottom:366.661479pt;}
.y20_c00435{bottom:373.378809pt;}
.y1e_c00435{bottom:391.770669pt;}
.y1d_c00435{bottom:436.071318pt;}
.y1c_c00435{bottom:461.180108pt;}
.y1b_c00435{bottom:486.603431pt;}
.y1a_c00435{bottom:511.873421pt;}
.y19_c00435{bottom:537.144077pt;}
.y18_c00435{bottom:581.283926pt;}
.y17_c00435{bottom:606.392050pt;}
.y16_c00435{bottom:631.340173pt;}
.y15_c00435{bottom:675.800155pt;}
.y14_c00435{bottom:700.908278pt;}
.y13_c00435{bottom:726.176402pt;}
.y12_c00435{bottom:770.317584pt;}
.y11_c00435{bottom:795.425707pt;}
.y10_c00435{bottom:820.694497pt;}
.yf_c00435{bottom:845.963820pt;}
.ye_c00435{bottom:890.102603pt;}
.yd_c00435{bottom:915.211926pt;}
.yc_c00435{bottom:940.482583pt;}
.yb_c00435{bottom:965.431906pt;}
.y9_c00435{bottom:983.182565pt;}
.y7_c00435{bottom:1023.551024pt;}
.y6_c00435{bottom:1041.942883pt;}
.y5_c00435{bottom:1060.334742pt;}
.h1_c00435{height:16.153120pt;}
.ha_c00435{height:25.114448pt;}
.hb_c00435{height:33.244549pt;}
.h7_c00435{height:34.034591pt;}
.h6_c00435{height:37.724630pt;}
.h2_c00435{height:41.196944pt;}
.h4_c00435{height:44.780569pt;}
.hc_c00435{height:47.627189pt;}
.h9_c00435{height:52.732088pt;}
.h8_c00435{height:52.790940pt;}
.h5_c00435{height:1122.161626pt;}
.h3_c00435{height:1122.559167pt;}
.h0_c00435{height:1122.666667pt;}
.w17_c00435{width:2.400000pt;}
.w12_c00435{width:4.156800pt;}
.wc_c00435{width:4.160000pt;}
.w6_c00435{width:4.478400pt;}
.w16_c00435{width:5.755200pt;}
.w9_c00435{width:5.756800pt;}
.wf_c00435{width:6.556800pt;}
.w13_c00435{width:6.558400pt;}
.w15_c00435{width:7.195200pt;}
.w14_c00435{width:7.355200pt;}
.w7_c00435{width:7.356800pt;}
.w8_c00435{width:7.358400pt;}
.we_c00435{width:8.318400pt;}
.wb_c00435{width:8.956800pt;}
.w10_c00435{width:10.075200pt;}
.w4_c00435{width:10.555200pt;}
.w2_c00435{width:10.718400pt;}
.wa_c00435{width:11.035200pt;}
.w5_c00435{width:13.753600pt;}
.w1_c00435{width:14.713760pt;}
.w3_c00435{width:21.270400pt;}
.w11_c00435{width:23.032000pt;}
.wd_c00435{width:24.945600pt;}
.w19_c00435{width:792.977400pt;}
.w18_c00435{width:793.257550pt;}
.w0_c00435{width:793.333333pt;}
.x0_c00435{left:0.000000pt;}
.x1e_c00435{left:101.233093pt;}
.x1_c00435{left:114.072480pt;}
.x25_c00435{left:125.223345pt;}
.x21_c00435{left:126.183413pt;}
.x24_c00435{left:149.207651pt;}
.x20_c00435{left:161.206935pt;}
.x1f_c00435{left:173.201597pt;}
.x22_c00435{left:184.236260pt;}
.x23_c00435{left:197.189588pt;}
.x1c_c00435{left:225.370940pt;}
.x1b_c00435{left:239.124654pt;}
.x1d_c00435{left:376.018977pt;}
.x26_c00435{left:427.165496pt;}
.x27_c00435{left:431.804161pt;}
.x2_c00435{left:441.443200pt;}
.x3_c00435{left:452.161600pt;}
.x4_c00435{left:473.432000pt;}
.x5_c00435{left:483.987200pt;}
.x6_c00435{left:497.740800pt;}
.x7_c00435{left:501.899200pt;}
.x8_c00435{left:512.772800pt;}
.x9_c00435{left:520.131200pt;}
.xa_c00435{left:524.768000pt;}
.xb_c00435{left:539.160000pt;}
.xc_c00435{left:548.116800pt;}
.xd_c00435{left:552.275200pt;}
.xe_c00435{left:556.275200pt;}
.xf_c00435{left:581.220800pt;}
.x10_c00435{left:588.419200pt;}
.x11_c00435{left:598.334400pt;}
.x12_c00435{left:608.089600pt;}
.x13_c00435{left:630.161600pt;}
.x14_c00435{left:634.158400pt;}
.x15_c00435{left:640.716800pt;}
.x16_c00435{left:644.876800pt;}
.x17_c00435{left:652.232000pt;}
.x18_c00435{left:659.427200pt;}
.x19_c00435{left:665.985600pt;}
.x1a_c00435{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:1.113000;font-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_c00436{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls0_c00436{letter-spacing:0.000000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:-16.552343px;}
.ws1_c00436{word-spacing:0.000000px;}
._2_c00436{margin-left:-1.352340px;}
._0_c00436{width:1.102012px;}
._7_c00436{width:2.183970px;}
._8_c00436{width:3.624035px;}
._9_c00436{width:4.624911px;}
._6_c00436{width:5.861475px;}
._4_c00436{width:7.703514px;}
._c_c00436{width:8.785046px;}
._5_c00436{width:10.816388px;}
._3_c00436{width:17.953949px;}
._b_c00436{width:22.469172px;}
._a_c00436{width:23.766849px;}
._1_c00436{width:199.476925px;}
.fc1_c00436{color:rgb(105,148,45);}
.fc0_c00436{color:rgb(35,31,32);}
.fs4_c00436{font-size:35.983846px;}
.fs3_c00436{font-size:41.741203px;}
.fs2_c00436{font-size:59.733096px;}
.fs0_c00436{font-size:66.209374px;}
.fs1_c00436{font-size:71.968771px;}
.y0_c00436{bottom:0.000000px;}
.y4_c00436{bottom:0.120938px;}
.y8_c00436{bottom:0.556171px;}
.y2_c00436{bottom:3.957898px;}
.ya_c00436{bottom:65.791352px;}
.y3_c00436{bottom:74.623320px;}
.y1_c00436{bottom:74.983320px;}
.y2a_c00436{bottom:131.100426px;}
.y29_c00436{bottom:159.530515px;}
.y28_c00436{bottom:202.710097px;}
.y27_c00436{bottom:246.428930px;}
.y26_c00436{bottom:274.855569px;}
.y25_c00436{bottom:303.282957px;}
.y24_c00436{bottom:331.709596px;}
.y23_c00436{bottom:360.139085px;}
.y22_c00436{bottom:403.318667px;}
.y21_c00436{bottom:437.505154px;}
.y20_c00436{bottom:454.057647px;}
.y1f_c00436{bottom:499.392879px;}
.y1e_c00436{bottom:527.819517px;}
.y1d_c00436{bottom:571.361950px;}
.y1c_c00436{bottom:599.788589px;}
.y1a_c00436{bottom:599.789789px;}
.y1b_c00436{bottom:607.347086px;}
.y19_c00436{bottom:642.789371px;}
.y18_c00436{bottom:686.689704px;}
.y17_c00436{bottom:715.115593px;}
.y16_c00436{bottom:743.543581px;}
.y15_c00436{bottom:787.082414px;}
.y14_c00436{bottom:815.511152px;}
.y13_c00436{bottom:843.936441px;}
.y12_c00436{bottom:872.365930px;}
.y11_c00436{bottom:900.791218px;}
.y10_c00436{bottom:929.221307px;}
.yf_c00436{bottom:957.646596px;}
.ye_c00436{bottom:986.073234px;}
.yd_c00436{bottom:1014.499873px;}
.yc_c00436{bottom:1043.109961px;}
.yb_c00436{bottom:1086.470894px;}
.y9_c00436{bottom:1106.080386px;}
.y7_c00436{bottom:1151.494902px;}
.y6_c00436{bottom:1172.185744px;}
.y5_c00436{bottom:1192.876585px;}
.h1_c00436{height:18.172260px;}
.hc_c00436{height:23.065645px;}
.ha_c00436{height:37.400118px;}
.h7_c00436{height:38.288915px;}
.h6_c00436{height:42.440208px;}
.h2_c00436{height:46.346561px;}
.h4_c00436{height:50.378140px;}
.hb_c00436{height:53.580587px;}
.h9_c00436{height:59.323599px;}
.h8_c00436{height:59.389808px;}
.h5_c00436{height:1262.431829px;}
.h3_c00436{height:1262.879062px;}
.h0_c00436{height:1263.000000px;}
.w17_c00436{width:2.700000px;}
.w12_c00436{width:4.676400px;}
.wc_c00436{width:4.680000px;}
.w6_c00436{width:5.038200px;}
.w16_c00436{width:6.474600px;}
.w9_c00436{width:6.476400px;}
.wf_c00436{width:7.376400px;}
.w13_c00436{width:7.378200px;}
.w15_c00436{width:8.094600px;}
.w14_c00436{width:8.274600px;}
.w7_c00436{width:8.276400px;}
.w8_c00436{width:8.278200px;}
.we_c00436{width:9.358200px;}
.wb_c00436{width:10.076400px;}
.w10_c00436{width:11.334600px;}
.w4_c00436{width:11.874600px;}
.w2_c00436{width:12.058200px;}
.wa_c00436{width:12.414600px;}
.w5_c00436{width:15.472800px;}
.w1_c00436{width:16.552980px;}
.w3_c00436{width:23.929200px;}
.w11_c00436{width:25.911000px;}
.wd_c00436{width:28.063800px;}
.w19_c00436{width:892.099575px;}
.w18_c00436{width:892.414744px;}
.w0_c00436{width:892.500000px;}
.x0_c00436{left:0.000000px;}
.x1e_c00436{left:113.887229px;}
.x1_c00436{left:128.331540px;}
.x1f_c00436{left:167.861962px;}
.x1c_c00436{left:253.542308px;}
.x1b_c00436{left:269.015236px;}
.x1d_c00436{left:423.021349px;}
.x2_c00436{left:496.623600px;}
.x3_c00436{left:508.681800px;}
.x20_c00436{left:525.183165px;}
.x21_c00436{left:530.400163px;}
.x4_c00436{left:532.611000px;}
.x5_c00436{left:544.485600px;}
.x6_c00436{left:559.958400px;}
.x7_c00436{left:564.636600px;}
.x8_c00436{left:576.869400px;}
.x9_c00436{left:585.147600px;}
.xa_c00436{left:590.364000px;}
.xb_c00436{left:606.555000px;}
.xc_c00436{left:616.631400px;}
.xd_c00436{left:621.309600px;}
.xe_c00436{left:625.809600px;}
.xf_c00436{left:653.873400px;}
.x10_c00436{left:661.971600px;}
.x11_c00436{left:673.126200px;}
.x12_c00436{left:684.100800px;}
.x13_c00436{left:708.931800px;}
.x14_c00436{left:713.428200px;}
.x15_c00436{left:720.806400px;}
.x16_c00436{left:725.486400px;}
.x17_c00436{left:733.761000px;}
.x18_c00436{left:741.855600px;}
.x19_c00436{left:749.233800px;}
.x1a_c00436{left:755.708400px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws0_c00436{word-spacing:-14.713194pt;}
.ws1_c00436{word-spacing:0.000000pt;}
._2_c00436{margin-left:-1.202080pt;}
._0_c00436{width:0.979567pt;}
._7_c00436{width:1.941307pt;}
._8_c00436{width:3.221365pt;}
._9_c00436{width:4.111032pt;}
._6_c00436{width:5.210200pt;}
._4_c00436{width:6.847568pt;}
._c_c00436{width:7.808929pt;}
._5_c00436{width:9.614567pt;}
._3_c00436{width:15.959066pt;}
._b_c00436{width:19.972597pt;}
._a_c00436{width:21.126088pt;}
._1_c00436{width:177.312822pt;}
.fs4_c00436{font-size:31.985641pt;}
.fs3_c00436{font-size:37.103292pt;}
.fs2_c00436{font-size:53.096085pt;}
.fs0_c00436{font-size:58.852776pt;}
.fs1_c00436{font-size:63.972241pt;}
.y0_c00436{bottom:0.000000pt;}
.y4_c00436{bottom:0.107500pt;}
.y8_c00436{bottom:0.494374pt;}
.y2_c00436{bottom:3.518132pt;}
.ya_c00436{bottom:58.481202pt;}
.y3_c00436{bottom:66.331840pt;}
.y1_c00436{bottom:66.651840pt;}
.y2a_c00436{bottom:116.533712pt;}
.y29_c00436{bottom:141.804902pt;}
.y28_c00436{bottom:180.186753pt;}
.y27_c00436{bottom:219.047938pt;}
.y26_c00436{bottom:244.316061pt;}
.y25_c00436{bottom:269.584851pt;}
.y24_c00436{bottom:294.852974pt;}
.y23_c00436{bottom:320.123631pt;}
.y22_c00436{bottom:358.505482pt;}
.y21_c00436{bottom:388.893470pt;}
.y20_c00436{bottom:403.606797pt;}
.y1f_c00436{bottom:443.904781pt;}
.y1e_c00436{bottom:469.172904pt;}
.y1d_c00436{bottom:507.877289pt;}
.y1c_c00436{bottom:533.145412pt;}
.y1a_c00436{bottom:533.146479pt;}
.y1b_c00436{bottom:539.864076pt;}
.y19_c00436{bottom:571.368330pt;}
.y18_c00436{bottom:610.390848pt;}
.y17_c00436{bottom:635.658304pt;}
.y16_c00436{bottom:660.927628pt;}
.y15_c00436{bottom:699.628812pt;}
.y14_c00436{bottom:724.898802pt;}
.y13_c00436{bottom:750.165725pt;}
.y12_c00436{bottom:775.436382pt;}
.y11_c00436{bottom:800.703305pt;}
.y10_c00436{bottom:825.974495pt;}
.yf_c00436{bottom:851.241418pt;}
.ye_c00436{bottom:876.509541pt;}
.yd_c00436{bottom:901.777665pt;}
.yc_c00436{bottom:927.208855pt;}
.yb_c00436{bottom:965.751906pt;}
.y9_c00436{bottom:983.182565pt;}
.y7_c00436{bottom:1023.551024pt;}
.y6_c00436{bottom:1041.942883pt;}
.y5_c00436{bottom:1060.334742pt;}
.h1_c00436{height:16.153120pt;}
.hc_c00436{height:20.502796pt;}
.ha_c00436{height:33.244549pt;}
.h7_c00436{height:34.034591pt;}
.h6_c00436{height:37.724630pt;}
.h2_c00436{height:41.196944pt;}
.h4_c00436{height:44.780569pt;}
.hb_c00436{height:47.627189pt;}
.h9_c00436{height:52.732088pt;}
.h8_c00436{height:52.790940pt;}
.h5_c00436{height:1122.161626pt;}
.h3_c00436{height:1122.559167pt;}
.h0_c00436{height:1122.666667pt;}
.w17_c00436{width:2.400000pt;}
.w12_c00436{width:4.156800pt;}
.wc_c00436{width:4.160000pt;}
.w6_c00436{width:4.478400pt;}
.w16_c00436{width:5.755200pt;}
.w9_c00436{width:5.756800pt;}
.wf_c00436{width:6.556800pt;}
.w13_c00436{width:6.558400pt;}
.w15_c00436{width:7.195200pt;}
.w14_c00436{width:7.355200pt;}
.w7_c00436{width:7.356800pt;}
.w8_c00436{width:7.358400pt;}
.we_c00436{width:8.318400pt;}
.wb_c00436{width:8.956800pt;}
.w10_c00436{width:10.075200pt;}
.w4_c00436{width:10.555200pt;}
.w2_c00436{width:10.718400pt;}
.wa_c00436{width:11.035200pt;}
.w5_c00436{width:13.753600pt;}
.w1_c00436{width:14.713760pt;}
.w3_c00436{width:21.270400pt;}
.w11_c00436{width:23.032000pt;}
.wd_c00436{width:24.945600pt;}
.w19_c00436{width:792.977400pt;}
.w18_c00436{width:793.257550pt;}
.w0_c00436{width:793.333333pt;}
.x0_c00436{left:0.000000pt;}
.x1e_c00436{left:101.233093pt;}
.x1_c00436{left:114.072480pt;}
.x1f_c00436{left:149.210633pt;}
.x1c_c00436{left:225.370940pt;}
.x1b_c00436{left:239.124654pt;}
.x1d_c00436{left:376.018977pt;}
.x2_c00436{left:441.443200pt;}
.x3_c00436{left:452.161600pt;}
.x20_c00436{left:466.829480pt;}
.x21_c00436{left:471.466811pt;}
.x4_c00436{left:473.432000pt;}
.x5_c00436{left:483.987200pt;}
.x6_c00436{left:497.740800pt;}
.x7_c00436{left:501.899200pt;}
.x8_c00436{left:512.772800pt;}
.x9_c00436{left:520.131200pt;}
.xa_c00436{left:524.768000pt;}
.xb_c00436{left:539.160000pt;}
.xc_c00436{left:548.116800pt;}
.xd_c00436{left:552.275200pt;}
.xe_c00436{left:556.275200pt;}
.xf_c00436{left:581.220800pt;}
.x10_c00436{left:588.419200pt;}
.x11_c00436{left:598.334400pt;}
.x12_c00436{left:608.089600pt;}
.x13_c00436{left:630.161600pt;}
.x14_c00436{left:634.158400pt;}
.x15_c00436{left:640.716800pt;}
.x16_c00436{left:644.876800pt;}
.x17_c00436{left:652.232000pt;}
.x18_c00436{left:659.427200pt;}
.x19_c00436{left:665.985600pt;}
.x1a_c00436{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.113000;font-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_c00437{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls0_c00437{letter-spacing:0.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:-16.552343px;}
.ws1_c00437{word-spacing:0.000000px;}
._b_c00437{margin-left:-12.951878px;}
._2_c00437{margin-left:-1.317735px;}
._0_c00437{width:1.102012px;}
._9_c00437{width:2.355634px;}
._7_c00437{width:3.935969px;}
._6_c00437{width:5.279471px;}
._a_c00437{width:6.567442px;}
._1_c00437{width:8.392101px;}
._8_c00437{width:9.989002px;}
._3_c00437{width:12.699031px;}
._5_c00437{width:17.831839px;}
._4_c00437{width:18.917935px;}
.fc1_c00437{color:rgb(105,148,45);}
.fc0_c00437{color:rgb(35,31,32);}
.fs3_c00437{font-size:48.218261px;}
.fs2_c00437{font-size:59.733096px;}
.fs0_c00437{font-size:66.209374px;}
.fs1_c00437{font-size:71.968771px;}
.y0_c00437{bottom:0.000000px;}
.y4_c00437{bottom:0.120938px;}
.y8_c00437{bottom:0.556171px;}
.y2_c00437{bottom:3.957898px;}
.ya_c00437{bottom:65.791352px;}
.y3_c00437{bottom:74.623320px;}
.y1_c00437{bottom:74.983320px;}
.y26_c00437{bottom:110.410484px;}
.y25_c00437{bottom:153.411417px;}
.y24_c00437{bottom:197.310250px;}
.y23_c00437{bottom:225.737638px;}
.y22_c00437{bottom:254.164277px;}
.y21_c00437{bottom:282.592266px;}
.y20_c00437{bottom:325.593198px;}
.y1f_c00437{bottom:361.398184px;}
.y1e_c00437{bottom:380.649176px;}
.y1d_c00437{bottom:425.987858px;}
.y1c_c00437{bottom:454.414497px;}
.y1b_c00437{bottom:541.313662px;}
.y1a_c00437{bottom:569.743151px;}
.y19_c00437{bottom:612.924083px;}
.y18_c00437{bottom:656.642916px;}
.y17_c00437{bottom:685.070305px;}
.y16_c00437{bottom:728.612737px;}
.y15_c00437{bottom:757.039376px;}
.y14_c00437{bottom:785.466014px;}
.y13_c00437{bottom:813.891303px;}
.y12_c00437{bottom:857.433736px;}
.y11_c00437{bottom:885.859024px;}
.y10_c00437{bottom:914.287013px;}
.yf_c00437{bottom:957.646596px;}
.ye_c00437{bottom:986.073234px;}
.yd_c00437{bottom:1029.614167px;}
.yc_c00437{bottom:1058.042155px;}
.yb_c00437{bottom:1086.470894px;}
.y9_c00437{bottom:1106.080386px;}
.y7_c00437{bottom:1151.494902px;}
.y6_c00437{bottom:1172.185744px;}
.y5_c00437{bottom:1192.876585px;}
.h1_c00437{height:18.172260px;}
.hb_c00437{height:30.907905px;}
.h7_c00437{height:38.288915px;}
.h6_c00437{height:42.440208px;}
.h2_c00437{height:46.346561px;}
.h4_c00437{height:50.378140px;}
.ha_c00437{height:53.580587px;}
.h8_c00437{height:59.323599px;}
.h9_c00437{height:59.389808px;}
.h5_c00437{height:1262.431829px;}
.h3_c00437{height:1262.879062px;}
.h0_c00437{height:1263.000000px;}
.w17_c00437{width:2.700000px;}
.w12_c00437{width:4.676400px;}
.wc_c00437{width:4.680000px;}
.w6_c00437{width:5.038200px;}
.w16_c00437{width:6.474600px;}
.w9_c00437{width:6.476400px;}
.wf_c00437{width:7.376400px;}
.w13_c00437{width:7.378200px;}
.w15_c00437{width:8.094600px;}
.w14_c00437{width:8.274600px;}
.w7_c00437{width:8.276400px;}
.w8_c00437{width:8.278200px;}
.we_c00437{width:9.358200px;}
.wb_c00437{width:10.076400px;}
.w10_c00437{width:11.334600px;}
.w4_c00437{width:11.874600px;}
.w2_c00437{width:12.058200px;}
.wa_c00437{width:12.414600px;}
.w5_c00437{width:15.472800px;}
.w1_c00437{width:16.552980px;}
.w3_c00437{width:23.929200px;}
.w11_c00437{width:25.911000px;}
.wd_c00437{width:28.063800px;}
.w19_c00437{width:892.099575px;}
.w18_c00437{width:892.414744px;}
.w0_c00437{width:892.500000px;}
.x0_c00437{left:0.000000px;}
.x1e_c00437{left:113.887229px;}
.x1_c00437{left:128.331540px;}
.x1f_c00437{left:166.965308px;}
.x1c_c00437{left:253.542308px;}
.x1b_c00437{left:269.015236px;}
.x1d_c00437{left:423.021349px;}
.x2_c00437{left:496.623600px;}
.x3_c00437{left:508.681800px;}
.x4_c00437{left:532.611000px;}
.x5_c00437{left:544.485600px;}
.x6_c00437{left:559.958400px;}
.x7_c00437{left:564.636600px;}
.x8_c00437{left:576.869400px;}
.x9_c00437{left:585.147600px;}
.xa_c00437{left:590.364000px;}
.xb_c00437{left:606.555000px;}
.xc_c00437{left:616.631400px;}
.xd_c00437{left:621.309600px;}
.xe_c00437{left:625.809600px;}
.xf_c00437{left:653.873400px;}
.x10_c00437{left:661.971600px;}
.x11_c00437{left:673.126200px;}
.x12_c00437{left:684.100800px;}
.x13_c00437{left:708.931800px;}
.x14_c00437{left:713.428200px;}
.x15_c00437{left:720.806400px;}
.x16_c00437{left:725.486400px;}
.x17_c00437{left:733.761000px;}
.x18_c00437{left:741.855600px;}
.x19_c00437{left:749.233800px;}
.x1a_c00437{left:755.708400px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws0_c00437{word-spacing:-14.713194pt;}
.ws1_c00437{word-spacing:0.000000pt;}
._b_c00437{margin-left:-11.512780pt;}
._2_c00437{margin-left:-1.171320pt;}
._0_c00437{width:0.979567pt;}
._9_c00437{width:2.093897pt;}
._7_c00437{width:3.498639pt;}
._6_c00437{width:4.692863pt;}
._a_c00437{width:5.837726pt;}
._1_c00437{width:7.459646pt;}
._8_c00437{width:8.879113pt;}
._3_c00437{width:11.288027pt;}
._5_c00437{width:15.850523pt;}
._4_c00437{width:16.815943pt;}
.fs3_c00437{font-size:42.860676pt;}
.fs2_c00437{font-size:53.096085pt;}
.fs0_c00437{font-size:58.852776pt;}
.fs1_c00437{font-size:63.972241pt;}
.y0_c00437{bottom:0.000000pt;}
.y4_c00437{bottom:0.107500pt;}
.y8_c00437{bottom:0.494374pt;}
.y2_c00437{bottom:3.518132pt;}
.ya_c00437{bottom:58.481202pt;}
.y3_c00437{bottom:66.331840pt;}
.y1_c00437{bottom:66.651840pt;}
.y26_c00437{bottom:98.142653pt;}
.y25_c00437{bottom:136.365704pt;}
.y24_c00437{bottom:175.386889pt;}
.y23_c00437{bottom:200.655678pt;}
.y22_c00437{bottom:225.923802pt;}
.y21_c00437{bottom:251.193125pt;}
.y20_c00437{bottom:289.416176pt;}
.y1f_c00437{bottom:321.242830pt;}
.y1e_c00437{bottom:338.354823pt;}
.y1d_c00437{bottom:378.655874pt;}
.y1c_c00437{bottom:403.923997pt;}
.y1b_c00437{bottom:481.167700pt;}
.y1a_c00437{bottom:506.438356pt;}
.y19_c00437{bottom:544.821407pt;}
.y18_c00437{bottom:583.682592pt;}
.y17_c00437{bottom:608.951382pt;}
.y16_c00437{bottom:647.655766pt;}
.y15_c00437{bottom:672.923890pt;}
.y14_c00437{bottom:698.192013pt;}
.y13_c00437{bottom:723.458936pt;}
.y12_c00437{bottom:762.163321pt;}
.y11_c00437{bottom:787.430244pt;}
.y10_c00437{bottom:812.699567pt;}
.yf_c00437{bottom:851.241418pt;}
.ye_c00437{bottom:876.509541pt;}
.yd_c00437{bottom:915.212593pt;}
.yc_c00437{bottom:940.481916pt;}
.yb_c00437{bottom:965.751906pt;}
.y9_c00437{bottom:983.182565pt;}
.y7_c00437{bottom:1023.551024pt;}
.y6_c00437{bottom:1041.942883pt;}
.y5_c00437{bottom:1060.334742pt;}
.h1_c00437{height:16.153120pt;}
.hb_c00437{height:27.473693pt;}
.h7_c00437{height:34.034591pt;}
.h6_c00437{height:37.724630pt;}
.h2_c00437{height:41.196944pt;}
.h4_c00437{height:44.780569pt;}
.ha_c00437{height:47.627189pt;}
.h8_c00437{height:52.732088pt;}
.h9_c00437{height:52.790940pt;}
.h5_c00437{height:1122.161626pt;}
.h3_c00437{height:1122.559167pt;}
.h0_c00437{height:1122.666667pt;}
.w17_c00437{width:2.400000pt;}
.w12_c00437{width:4.156800pt;}
.wc_c00437{width:4.160000pt;}
.w6_c00437{width:4.478400pt;}
.w16_c00437{width:5.755200pt;}
.w9_c00437{width:5.756800pt;}
.wf_c00437{width:6.556800pt;}
.w13_c00437{width:6.558400pt;}
.w15_c00437{width:7.195200pt;}
.w14_c00437{width:7.355200pt;}
.w7_c00437{width:7.356800pt;}
.w8_c00437{width:7.358400pt;}
.we_c00437{width:8.318400pt;}
.wb_c00437{width:8.956800pt;}
.w10_c00437{width:10.075200pt;}
.w4_c00437{width:10.555200pt;}
.w2_c00437{width:10.718400pt;}
.wa_c00437{width:11.035200pt;}
.w5_c00437{width:13.753600pt;}
.w1_c00437{width:14.713760pt;}
.w3_c00437{width:21.270400pt;}
.w11_c00437{width:23.032000pt;}
.wd_c00437{width:24.945600pt;}
.w19_c00437{width:792.977400pt;}
.w18_c00437{width:793.257550pt;}
.w0_c00437{width:793.333333pt;}
.x0_c00437{left:0.000000pt;}
.x1e_c00437{left:101.233093pt;}
.x1_c00437{left:114.072480pt;}
.x1f_c00437{left:148.413607pt;}
.x1c_c00437{left:225.370940pt;}
.x1b_c00437{left:239.124654pt;}
.x1d_c00437{left:376.018977pt;}
.x2_c00437{left:441.443200pt;}
.x3_c00437{left:452.161600pt;}
.x4_c00437{left:473.432000pt;}
.x5_c00437{left:483.987200pt;}
.x6_c00437{left:497.740800pt;}
.x7_c00437{left:501.899200pt;}
.x8_c00437{left:512.772800pt;}
.x9_c00437{left:520.131200pt;}
.xa_c00437{left:524.768000pt;}
.xb_c00437{left:539.160000pt;}
.xc_c00437{left:548.116800pt;}
.xd_c00437{left:552.275200pt;}
.xe_c00437{left:556.275200pt;}
.xf_c00437{left:581.220800pt;}
.x10_c00437{left:588.419200pt;}
.x11_c00437{left:598.334400pt;}
.x12_c00437{left:608.089600pt;}
.x13_c00437{left:630.161600pt;}
.x14_c00437{left:634.158400pt;}
.x15_c00437{left:640.716800pt;}
.x16_c00437{left:644.876800pt;}
.x17_c00437{left:652.232000pt;}
.x18_c00437{left:659.427200pt;}
.x19_c00437{left:665.985600pt;}
.x1a_c00437{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.113000;font-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_c00438{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls0_c00438{letter-spacing:0.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:-16.552343px;}
.ws1_c00438{word-spacing:0.000000px;}
._c_c00438{margin-left:-12.951878px;}
._1_c00438{margin-left:-1.114938px;}
._0_c00438{width:1.102012px;}
._a_c00438{width:2.355634px;}
._9_c00438{width:3.732736px;}
._8_c00438{width:5.279471px;}
._b_c00438{width:6.567442px;}
._2_c00438{width:8.391903px;}
._3_c00438{width:9.570236px;}
._5_c00438{width:11.692484px;}
._4_c00438{width:12.699031px;}
._d_c00438{width:14.609274px;}
._7_c00438{width:17.629065px;}
._6_c00438{width:18.917935px;}
.fc1_c00438{color:rgb(105,148,45);}
.fc0_c00438{color:rgb(35,31,32);}
.fs2_c00438{font-size:59.733096px;}
.fs0_c00438{font-size:66.209374px;}
.fs1_c00438{font-size:71.968771px;}
.y0_c00438{bottom:0.000000px;}
.y4_c00438{bottom:0.120938px;}
.y8_c00438{bottom:0.556171px;}
.y2_c00438{bottom:3.957898px;}
.ya_c00438{bottom:65.791352px;}
.y3_c00438{bottom:74.623320px;}
.y1_c00438{bottom:74.983320px;}
.y21_c00438{bottom:282.231516px;}
.y20_c00438{bottom:310.659504px;}
.y1f_c00438{bottom:397.560170px;}
.y1e_c00438{bottom:425.988158px;}
.y1d_c00438{bottom:469.167741px;}
.y1c_c00438{bottom:512.888073px;}
.y1b_c00438{bottom:541.316812px;}
.y1a_c00438{bottom:569.743451px;}
.y19_c00438{bottom:613.283033px;}
.y18_c00438{bottom:641.709672px;}
.y17_c00438{bottom:685.070605px;}
.y16_c00438{bottom:713.498593px;}
.y15_c00438{bottom:742.105232px;}
.y14_c00438{bottom:770.531870px;}
.y13_c00438{bottom:813.891453px;}
.y12_c00438{bottom:842.319442px;}
.y11_c00438{bottom:870.748180px;}
.y10_c00438{bottom:914.287013px;}
.yf_c00438{bottom:942.713651px;}
.ye_c00438{bottom:986.073234px;}
.yd_c00438{bottom:1014.499873px;}
.yc_c00438{bottom:1043.109961px;}
.yb_c00438{bottom:1086.470894px;}
.y9_c00438{bottom:1106.080386px;}
.y7_c00438{bottom:1151.494902px;}
.y6_c00438{bottom:1172.185744px;}
.y5_c00438{bottom:1192.876585px;}
.h1_c00438{height:18.172260px;}
.h7_c00438{height:38.288915px;}
.h6_c00438{height:42.440208px;}
.h2_c00438{height:46.346561px;}
.h4_c00438{height:50.378140px;}
.h8_c00438{height:59.323599px;}
.h9_c00438{height:59.389808px;}
.h5_c00438{height:1262.431829px;}
.h3_c00438{height:1262.879062px;}
.h0_c00438{height:1263.000000px;}
.w17_c00438{width:2.700000px;}
.w12_c00438{width:4.676400px;}
.wc_c00438{width:4.680000px;}
.w6_c00438{width:5.038200px;}
.w16_c00438{width:6.474600px;}
.w9_c00438{width:6.476400px;}
.wf_c00438{width:7.376400px;}
.w13_c00438{width:7.378200px;}
.w15_c00438{width:8.094600px;}
.w14_c00438{width:8.274600px;}
.w7_c00438{width:8.276400px;}
.w8_c00438{width:8.278200px;}
.we_c00438{width:9.358200px;}
.wb_c00438{width:10.076400px;}
.w10_c00438{width:11.334600px;}
.w4_c00438{width:11.874600px;}
.w2_c00438{width:12.058200px;}
.wa_c00438{width:12.414600px;}
.w5_c00438{width:15.472800px;}
.w1_c00438{width:16.912980px;}
.w3_c00438{width:23.929200px;}
.w11_c00438{width:25.911000px;}
.wd_c00438{width:28.063800px;}
.w19_c00438{width:892.099575px;}
.w18_c00438{width:892.414744px;}
.w0_c00438{width:892.500000px;}
.x0_c00438{left:0.000000px;}
.x1e_c00438{left:113.887229px;}
.x1_c00438{left:128.331540px;}
.x1f_c00438{left:166.962950px;}
.x1c_c00438{left:253.542308px;}
.x1b_c00438{left:269.015236px;}
.x1d_c00438{left:423.021349px;}
.x2_c00438{left:496.623600px;}
.x3_c00438{left:508.681800px;}
.x4_c00438{left:532.611000px;}
.x5_c00438{left:544.485600px;}
.x6_c00438{left:559.958400px;}
.x7_c00438{left:564.636600px;}
.x8_c00438{left:576.869400px;}
.x9_c00438{left:585.147600px;}
.xa_c00438{left:590.364000px;}
.xb_c00438{left:606.555000px;}
.xc_c00438{left:616.631400px;}
.xd_c00438{left:621.309600px;}
.xe_c00438{left:625.809600px;}
.xf_c00438{left:653.873400px;}
.x10_c00438{left:661.971600px;}
.x11_c00438{left:673.126200px;}
.x12_c00438{left:684.100800px;}
.x13_c00438{left:708.931800px;}
.x14_c00438{left:713.428200px;}
.x15_c00438{left:720.806400px;}
.x16_c00438{left:725.486400px;}
.x17_c00438{left:733.761000px;}
.x18_c00438{left:741.855600px;}
.x19_c00438{left:749.233800px;}
.x1a_c00438{left:755.708400px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws0_c00438{word-spacing:-14.713194pt;}
.ws1_c00438{word-spacing:0.000000pt;}
._c_c00438{margin-left:-11.512780pt;}
._1_c00438{margin-left:-0.991056pt;}
._0_c00438{width:0.979567pt;}
._a_c00438{width:2.093897pt;}
._9_c00438{width:3.317987pt;}
._8_c00438{width:4.692863pt;}
._b_c00438{width:5.837726pt;}
._2_c00438{width:7.459469pt;}
._3_c00438{width:8.506876pt;}
._5_c00438{width:10.393319pt;}
._4_c00438{width:11.288027pt;}
._d_c00438{width:12.986021pt;}
._7_c00438{width:15.670280pt;}
._6_c00438{width:16.815943pt;}
.fs2_c00438{font-size:53.096085pt;}
.fs0_c00438{font-size:58.852776pt;}
.fs1_c00438{font-size:63.972241pt;}
.y0_c00438{bottom:0.000000pt;}
.y4_c00438{bottom:0.107500pt;}
.y8_c00438{bottom:0.494374pt;}
.y2_c00438{bottom:3.518132pt;}
.ya_c00438{bottom:58.481202pt;}
.y3_c00438{bottom:66.331840pt;}
.y1_c00438{bottom:66.651840pt;}
.y21_c00438{bottom:250.872458pt;}
.y20_c00438{bottom:276.141782pt;}
.y1f_c00438{bottom:353.386817pt;}
.y1e_c00438{bottom:378.656141pt;}
.y1d_c00438{bottom:417.037992pt;}
.y1c_c00438{bottom:455.900510pt;}
.y1b_c00438{bottom:481.170500pt;}
.y1a_c00438{bottom:506.438623pt;}
.y19_c00438{bottom:545.140474pt;}
.y18_c00438{bottom:570.408597pt;}
.y17_c00438{bottom:608.951648pt;}
.y16_c00438{bottom:634.220972pt;}
.y15_c00438{bottom:659.649095pt;}
.y14_c00438{bottom:684.917218pt;}
.y13_c00438{bottom:723.459069pt;}
.y12_c00438{bottom:748.728393pt;}
.y11_c00438{bottom:773.998382pt;}
.y10_c00438{bottom:812.699567pt;}
.yf_c00438{bottom:837.967690pt;}
.ye_c00438{bottom:876.509541pt;}
.yd_c00438{bottom:901.777665pt;}
.yc_c00438{bottom:927.208855pt;}
.yb_c00438{bottom:965.751906pt;}
.y9_c00438{bottom:983.182565pt;}
.y7_c00438{bottom:1023.551024pt;}
.y6_c00438{bottom:1041.942883pt;}
.y5_c00438{bottom:1060.334742pt;}
.h1_c00438{height:16.153120pt;}
.h7_c00438{height:34.034591pt;}
.h6_c00438{height:37.724630pt;}
.h2_c00438{height:41.196944pt;}
.h4_c00438{height:44.780569pt;}
.h8_c00438{height:52.732088pt;}
.h9_c00438{height:52.790940pt;}
.h5_c00438{height:1122.161626pt;}
.h3_c00438{height:1122.559167pt;}
.h0_c00438{height:1122.666667pt;}
.w17_c00438{width:2.400000pt;}
.w12_c00438{width:4.156800pt;}
.wc_c00438{width:4.160000pt;}
.w6_c00438{width:4.478400pt;}
.w16_c00438{width:5.755200pt;}
.w9_c00438{width:5.756800pt;}
.wf_c00438{width:6.556800pt;}
.w13_c00438{width:6.558400pt;}
.w15_c00438{width:7.195200pt;}
.w14_c00438{width:7.355200pt;}
.w7_c00438{width:7.356800pt;}
.w8_c00438{width:7.358400pt;}
.we_c00438{width:8.318400pt;}
.wb_c00438{width:8.956800pt;}
.w10_c00438{width:10.075200pt;}
.w4_c00438{width:10.555200pt;}
.w2_c00438{width:10.718400pt;}
.wa_c00438{width:11.035200pt;}
.w5_c00438{width:13.753600pt;}
.w1_c00438{width:15.033760pt;}
.w3_c00438{width:21.270400pt;}
.w11_c00438{width:23.032000pt;}
.wd_c00438{width:24.945600pt;}
.w19_c00438{width:792.977400pt;}
.w18_c00438{width:793.257550pt;}
.w0_c00438{width:793.333333pt;}
.x0_c00438{left:0.000000pt;}
.x1e_c00438{left:101.233093pt;}
.x1_c00438{left:114.072480pt;}
.x1f_c00438{left:148.411511pt;}
.x1c_c00438{left:225.370940pt;}
.x1b_c00438{left:239.124654pt;}
.x1d_c00438{left:376.018977pt;}
.x2_c00438{left:441.443200pt;}
.x3_c00438{left:452.161600pt;}
.x4_c00438{left:473.432000pt;}
.x5_c00438{left:483.987200pt;}
.x6_c00438{left:497.740800pt;}
.x7_c00438{left:501.899200pt;}
.x8_c00438{left:512.772800pt;}
.x9_c00438{left:520.131200pt;}
.xa_c00438{left:524.768000pt;}
.xb_c00438{left:539.160000pt;}
.xc_c00438{left:548.116800pt;}
.xd_c00438{left:552.275200pt;}
.xe_c00438{left:556.275200pt;}
.xf_c00438{left:581.220800pt;}
.x10_c00438{left:588.419200pt;}
.x11_c00438{left:598.334400pt;}
.x12_c00438{left:608.089600pt;}
.x13_c00438{left:630.161600pt;}
.x14_c00438{left:634.158400pt;}
.x15_c00438{left:640.716800pt;}
.x16_c00438{left:644.876800pt;}
.x17_c00438{left:652.232000pt;}
.x18_c00438{left:659.427200pt;}
.x19_c00438{left:665.985600pt;}
.x1a_c00438{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00439;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.112000;font-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_c00439{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:-16.552343px;}
.ws1_c00439{word-spacing:0.000000px;}
._1_c00439{margin-left:-1.050566px;}
._0_c00439{width:1.102012px;}
._d_c00439{width:2.293498px;}
._a_c00439{width:4.059707px;}
._5_c00439{width:5.279077px;}
._4_c00439{width:6.922333px;}
._b_c00439{width:8.880298px;}
._9_c00439{width:10.901998px;}
._6_c00439{width:12.151082px;}
._3_c00439{width:13.739451px;}
._7_c00439{width:18.520828px;}
._8_c00439{width:19.721117px;}
._c_c00439{width:149.819075px;}
._2_c00439{width:199.476925px;}
.fc1_c00439{color:rgb(105,148,45);}
.fc0_c00439{color:rgb(35,31,32);}
.fs2_c00439{font-size:59.733096px;}
.fs0_c00439{font-size:66.209374px;}
.fs1_c00439{font-size:71.968771px;}
.y0_c00439{bottom:0.000000px;}
.y4_c00439{bottom:0.120938px;}
.y8_c00439{bottom:0.556171px;}
.y2_c00439{bottom:3.957898px;}
.ya_c00439{bottom:65.791352px;}
.y3_c00439{bottom:74.623320px;}
.y1_c00439{bottom:74.983320px;}
.y25_c00439{bottom:126.964328px;}
.y24_c00439{bottom:155.393066px;}
.y23_c00439{bottom:183.818355px;}
.y22_c00439{bottom:226.999288px;}
.y21_c00439{bottom:270.719620px;}
.y20_c00439{bottom:299.326259px;}
.y1f_c00439{bottom:342.325842px;}
.y1e_c00439{bottom:385.689624px;}
.y1d_c00439{bottom:429.586357px;}
.y1c_c00439{bottom:458.015845px;}
.y1b_c00439{bottom:486.441134px;}
.y1a_c00439{bottom:514.867773px;}
.y19_c00439{bottom:543.294411px;}
.y18_c00439{bottom:571.724500px;}
.y17_c00439{bottom:600.331138px;}
.y16_c00439{bottom:643.330721px;}
.y15_c00439{bottom:687.051654px;}
.y14_c00439{bottom:715.658292px;}
.y13_c00439{bottom:744.087781px;}
.y12_c00439{bottom:772.513070px;}
.y11_c00439{bottom:815.872652px;}
.y10_c00439{bottom:844.299291px;}
.yf_c00439{bottom:872.727279px;}
.ye_c00439{bottom:901.336018px;}
.yd_c00439{bottom:944.336951px;}
.yc_c00439{bottom:1010.902424px;}
.yb_c00439{bottom:1049.228909px;}
.y9_c00439{bottom:1106.080386px;}
.y7_c00439{bottom:1151.494902px;}
.y6_c00439{bottom:1172.185744px;}
.y5_c00439{bottom:1192.876585px;}
.h1_c00439{height:18.172260px;}
.h7_c00439{height:38.288915px;}
.h6_c00439{height:42.440208px;}
.h2_c00439{height:46.346561px;}
.h4_c00439{height:50.378140px;}
.h9_c00439{height:53.580587px;}
.ha_c00439{height:59.323599px;}
.h8_c00439{height:59.389808px;}
.h5_c00439{height:1262.431829px;}
.h3_c00439{height:1262.879062px;}
.h0_c00439{height:1263.000000px;}
.w17_c00439{width:2.700000px;}
.w12_c00439{width:4.676400px;}
.wc_c00439{width:4.680000px;}
.w6_c00439{width:5.038200px;}
.w16_c00439{width:6.474600px;}
.w9_c00439{width:6.476400px;}
.wf_c00439{width:7.376400px;}
.w13_c00439{width:7.378200px;}
.w15_c00439{width:8.094600px;}
.w14_c00439{width:8.274600px;}
.w7_c00439{width:8.276400px;}
.w8_c00439{width:8.278200px;}
.we_c00439{width:9.358200px;}
.wb_c00439{width:10.076400px;}
.w10_c00439{width:11.334600px;}
.w4_c00439{width:11.874600px;}
.w2_c00439{width:12.058200px;}
.wa_c00439{width:12.414600px;}
.w5_c00439{width:15.472800px;}
.w1_c00439{width:16.912980px;}
.w3_c00439{width:23.929200px;}
.w11_c00439{width:25.911000px;}
.wd_c00439{width:28.063800px;}
.w19_c00439{width:892.099575px;}
.w18_c00439{width:892.414744px;}
.w0_c00439{width:892.500000px;}
.x0_c00439{left:0.000000px;}
.x1e_c00439{left:113.887229px;}
.x1_c00439{left:128.331540px;}
.x20_c00439{left:167.862411px;}
.x1c_c00439{left:253.542308px;}
.x1b_c00439{left:269.015236px;}
.x1f_c00439{left:362.175230px;}
.x1d_c00439{left:423.021349px;}
.x2_c00439{left:496.623600px;}
.x3_c00439{left:508.681800px;}
.x4_c00439{left:532.611000px;}
.x5_c00439{left:544.485600px;}
.x6_c00439{left:559.958400px;}
.x7_c00439{left:564.636600px;}
.x8_c00439{left:576.869400px;}
.x9_c00439{left:585.147600px;}
.xa_c00439{left:590.364000px;}
.xb_c00439{left:606.555000px;}
.xc_c00439{left:616.631400px;}
.xd_c00439{left:621.309600px;}
.xe_c00439{left:625.809600px;}
.xf_c00439{left:653.873400px;}
.x10_c00439{left:661.971600px;}
.x11_c00439{left:673.126200px;}
.x12_c00439{left:684.100800px;}
.x13_c00439{left:708.931800px;}
.x14_c00439{left:713.428200px;}
.x15_c00439{left:720.806400px;}
.x16_c00439{left:725.486400px;}
.x17_c00439{left:733.761000px;}
.x18_c00439{left:741.855600px;}
.x19_c00439{left:749.233800px;}
.x1a_c00439{left:755.708400px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws0_c00439{word-spacing:-14.713194pt;}
.ws1_c00439{word-spacing:0.000000pt;}
._1_c00439{margin-left:-0.933836pt;}
._0_c00439{width:0.979567pt;}
._d_c00439{width:2.038665pt;}
._a_c00439{width:3.608628pt;}
._5_c00439{width:4.692513pt;}
._4_c00439{width:6.153185pt;}
._b_c00439{width:7.893599pt;}
._9_c00439{width:9.690665pt;}
._6_c00439{width:10.800962pt;}
._3_c00439{width:12.212845pt;}
._7_c00439{width:16.462958pt;}
._8_c00439{width:17.529882pt;}
._c_c00439{width:133.172511pt;}
._2_c00439{width:177.312822pt;}
.fs2_c00439{font-size:53.096085pt;}
.fs0_c00439{font-size:58.852776pt;}
.fs1_c00439{font-size:63.972241pt;}
.y0_c00439{bottom:0.000000pt;}
.y4_c00439{bottom:0.107500pt;}
.y8_c00439{bottom:0.494374pt;}
.y2_c00439{bottom:3.518132pt;}
.ya_c00439{bottom:58.481202pt;}
.y3_c00439{bottom:66.331840pt;}
.y1_c00439{bottom:66.651840pt;}
.y25_c00439{bottom:112.857180pt;}
.y24_c00439{bottom:138.127170pt;}
.y23_c00439{bottom:163.394093pt;}
.y22_c00439{bottom:201.777145pt;}
.y21_c00439{bottom:240.639662pt;}
.y20_c00439{bottom:266.067786pt;}
.y1f_c00439{bottom:304.289637pt;}
.y1e_c00439{bottom:342.835222pt;}
.y1d_c00439{bottom:381.854539pt;}
.y1c_c00439{bottom:407.125196pt;}
.y1b_c00439{bottom:432.392119pt;}
.y1a_c00439{bottom:457.660242pt;}
.y19_c00439{bottom:482.928366pt;}
.y18_c00439{bottom:508.199555pt;}
.y17_c00439{bottom:533.627679pt;}
.y16_c00439{bottom:571.849530pt;}
.y15_c00439{bottom:610.712581pt;}
.y14_c00439{bottom:636.140704pt;}
.y13_c00439{bottom:661.411361pt;}
.y12_c00439{bottom:686.678284pt;}
.y11_c00439{bottom:725.220135pt;}
.y10_c00439{bottom:750.488259pt;}
.yf_c00439{bottom:775.757582pt;}
.ye_c00439{bottom:801.187572pt;}
.yd_c00439{bottom:839.410623pt;}
.yc_c00439{bottom:898.579933pt;}
.yb_c00439{bottom:932.647919pt;}
.y9_c00439{bottom:983.182565pt;}
.y7_c00439{bottom:1023.551024pt;}
.y6_c00439{bottom:1041.942883pt;}
.y5_c00439{bottom:1060.334742pt;}
.h1_c00439{height:16.153120pt;}
.h7_c00439{height:34.034591pt;}
.h6_c00439{height:37.724630pt;}
.h2_c00439{height:41.196944pt;}
.h4_c00439{height:44.780569pt;}
.h9_c00439{height:47.627189pt;}
.ha_c00439{height:52.732088pt;}
.h8_c00439{height:52.790940pt;}
.h5_c00439{height:1122.161626pt;}
.h3_c00439{height:1122.559167pt;}
.h0_c00439{height:1122.666667pt;}
.w17_c00439{width:2.400000pt;}
.w12_c00439{width:4.156800pt;}
.wc_c00439{width:4.160000pt;}
.w6_c00439{width:4.478400pt;}
.w16_c00439{width:5.755200pt;}
.w9_c00439{width:5.756800pt;}
.wf_c00439{width:6.556800pt;}
.w13_c00439{width:6.558400pt;}
.w15_c00439{width:7.195200pt;}
.w14_c00439{width:7.355200pt;}
.w7_c00439{width:7.356800pt;}
.w8_c00439{width:7.358400pt;}
.we_c00439{width:8.318400pt;}
.wb_c00439{width:8.956800pt;}
.w10_c00439{width:10.075200pt;}
.w4_c00439{width:10.555200pt;}
.w2_c00439{width:10.718400pt;}
.wa_c00439{width:11.035200pt;}
.w5_c00439{width:13.753600pt;}
.w1_c00439{width:15.033760pt;}
.w3_c00439{width:21.270400pt;}
.w11_c00439{width:23.032000pt;}
.wd_c00439{width:24.945600pt;}
.w19_c00439{width:792.977400pt;}
.w18_c00439{width:793.257550pt;}
.w0_c00439{width:793.333333pt;}
.x0_c00439{left:0.000000pt;}
.x1e_c00439{left:101.233093pt;}
.x1_c00439{left:114.072480pt;}
.x20_c00439{left:149.211032pt;}
.x1c_c00439{left:225.370940pt;}
.x1b_c00439{left:239.124654pt;}
.x1f_c00439{left:321.933538pt;}
.x1d_c00439{left:376.018977pt;}
.x2_c00439{left:441.443200pt;}
.x3_c00439{left:452.161600pt;}
.x4_c00439{left:473.432000pt;}
.x5_c00439{left:483.987200pt;}
.x6_c00439{left:497.740800pt;}
.x7_c00439{left:501.899200pt;}
.x8_c00439{left:512.772800pt;}
.x9_c00439{left:520.131200pt;}
.xa_c00439{left:524.768000pt;}
.xb_c00439{left:539.160000pt;}
.xc_c00439{left:548.116800pt;}
.xd_c00439{left:552.275200pt;}
.xe_c00439{left:556.275200pt;}
.xf_c00439{left:581.220800pt;}
.x10_c00439{left:588.419200pt;}
.x11_c00439{left:598.334400pt;}
.x12_c00439{left:608.089600pt;}
.x13_c00439{left:630.161600pt;}
.x14_c00439{left:634.158400pt;}
.x15_c00439{left:640.716800pt;}
.x16_c00439{left:644.876800pt;}
.x17_c00439{left:652.232000pt;}
.x18_c00439{left:659.427200pt;}
.x19_c00439{left:665.985600pt;}
.x1a_c00439{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.112000;font-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_c00440{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00440{word-spacing:0.000000px;}
._3_c00440{margin-left:-1.170696px;}
._0_c00440{width:1.102012px;}
._c_c00440{width:2.624006px;}
._5_c00440{width:3.774856px;}
._6_c00440{width:4.799656px;}
._8_c00440{width:6.653399px;}
._7_c00440{width:8.537080px;}
._9_c00440{width:10.230251px;}
._4_c00440{width:11.741491px;}
._2_c00440{width:13.134192px;}
._a_c00440{width:15.099897px;}
._b_c00440{width:17.877602px;}
._1_c00440{width:199.476925px;}
.fc1_c00440{color:rgb(105,148,45);}
.fc0_c00440{color:rgb(35,31,32);}
.fs2_c00440{font-size:59.733096px;}
.fs0_c00440{font-size:66.209374px;}
.fs1_c00440{font-size:71.968771px;}
.y0_c00440{bottom:0.000000px;}
.y4_c00440{bottom:0.120938px;}
.y8_c00440{bottom:0.556171px;}
.y2_c00440{bottom:3.957898px;}
.ya_c00440{bottom:65.791352px;}
.y3_c00440{bottom:74.623320px;}
.y1_c00440{bottom:74.983320px;}
.y28_c00440{bottom:141.536222px;}
.y27_c00440{bottom:169.962861px;}
.y26_c00440{bottom:198.390849px;}
.y25_c00440{bottom:241.930432px;}
.y24_c00440{bottom:270.357070px;}
.y23_c00440{bottom:298.785059px;}
.y22_c00440{bottom:327.213798px;}
.y21_c00440{bottom:355.639086px;}
.y20_c00440{bottom:399.177919px;}
.y1f_c00440{bottom:427.608008px;}
.y1e_c00440{bottom:456.033296px;}
.y1d_c00440{bottom:499.394229px;}
.y1c_c00440{bottom:527.822217px;}
.y1b_c00440{bottom:556.427506px;}
.y1a_c00440{bottom:599.789939px;}
.y19_c00440{bottom:628.215227px;}
.y18_c00440{bottom:656.643216px;}
.y17_c00440{bottom:700.184149px;}
.y16_c00440{bottom:728.612887px;}
.y15_c00440{bottom:771.971720px;}
.y14_c00440{bottom:800.400458px;}
.y13_c00440{bottom:828.825747px;}
.y12_c00440{bottom:857.433736px;}
.y11_c00440{bottom:900.791218px;}
.y10_c00440{bottom:929.221307px;}
.yf_c00440{bottom:957.647946px;}
.ye_c00440{bottom:986.073234px;}
.yd_c00440{bottom:1014.501223px;}
.yc_c00440{bottom:1058.042155px;}
.yb_c00440{bottom:1086.470894px;}
.y9_c00440{bottom:1106.080386px;}
.y7_c00440{bottom:1151.494902px;}
.y6_c00440{bottom:1172.185744px;}
.y5_c00440{bottom:1192.876585px;}
.h1_c00440{height:18.172260px;}
.h7_c00440{height:38.288915px;}
.h6_c00440{height:42.440208px;}
.h2_c00440{height:46.346561px;}
.h4_c00440{height:50.378140px;}
.h8_c00440{height:59.323599px;}
.h5_c00440{height:1262.431829px;}
.h3_c00440{height:1262.879062px;}
.h0_c00440{height:1263.000000px;}
.w17_c00440{width:2.700000px;}
.w12_c00440{width:4.676400px;}
.wc_c00440{width:4.680000px;}
.w6_c00440{width:5.038200px;}
.w16_c00440{width:6.474600px;}
.w9_c00440{width:6.476400px;}
.wf_c00440{width:7.376400px;}
.w13_c00440{width:7.378200px;}
.w15_c00440{width:8.094600px;}
.w14_c00440{width:8.274600px;}
.w7_c00440{width:8.276400px;}
.w8_c00440{width:8.278200px;}
.we_c00440{width:9.358200px;}
.wb_c00440{width:10.076400px;}
.w10_c00440{width:11.334600px;}
.w4_c00440{width:11.874600px;}
.w2_c00440{width:12.058200px;}
.wa_c00440{width:12.414600px;}
.w5_c00440{width:15.472800px;}
.w1_c00440{width:16.552980px;}
.w3_c00440{width:23.929200px;}
.w11_c00440{width:25.911000px;}
.wd_c00440{width:28.063800px;}
.w19_c00440{width:892.099575px;}
.w18_c00440{width:892.414744px;}
.w0_c00440{width:892.500000px;}
.x0_c00440{left:0.000000px;}
.x1e_c00440{left:113.887229px;}
.x1_c00440{left:128.331540px;}
.x1c_c00440{left:253.542308px;}
.x1b_c00440{left:269.015236px;}
.x1d_c00440{left:423.021349px;}
.x2_c00440{left:496.623600px;}
.x3_c00440{left:508.681800px;}
.x4_c00440{left:532.611000px;}
.x5_c00440{left:544.485600px;}
.x6_c00440{left:559.958400px;}
.x7_c00440{left:564.636600px;}
.x8_c00440{left:576.869400px;}
.x9_c00440{left:585.147600px;}
.xa_c00440{left:590.364000px;}
.xb_c00440{left:606.555000px;}
.xc_c00440{left:616.631400px;}
.xd_c00440{left:621.309600px;}
.xe_c00440{left:625.809600px;}
.xf_c00440{left:653.873400px;}
.x10_c00440{left:661.971600px;}
.x11_c00440{left:673.126200px;}
.x12_c00440{left:684.100800px;}
.x13_c00440{left:708.931800px;}
.x14_c00440{left:713.428200px;}
.x15_c00440{left:720.806400px;}
.x16_c00440{left:725.486400px;}
.x17_c00440{left:733.761000px;}
.x18_c00440{left:741.855600px;}
.x19_c00440{left:749.233800px;}
.x1a_c00440{left:755.708400px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:-14.713194pt;}
.ws1_c00440{word-spacing:0.000000pt;}
._3_c00440{margin-left:-1.040618pt;}
._0_c00440{width:0.979567pt;}
._c_c00440{width:2.332450pt;}
._5_c00440{width:3.355428pt;}
._6_c00440{width:4.266361pt;}
._8_c00440{width:5.914133pt;}
._7_c00440{width:7.588515pt;}
._9_c00440{width:9.093556pt;}
._4_c00440{width:10.436881pt;}
._2_c00440{width:11.674837pt;}
._a_c00440{width:13.422130pt;}
._b_c00440{width:15.891202pt;}
._1_c00440{width:177.312822pt;}
.fs2_c00440{font-size:53.096085pt;}
.fs0_c00440{font-size:58.852776pt;}
.fs1_c00440{font-size:63.972241pt;}
.y0_c00440{bottom:0.000000pt;}
.y4_c00440{bottom:0.107500pt;}
.y8_c00440{bottom:0.494374pt;}
.y2_c00440{bottom:3.518132pt;}
.ya_c00440{bottom:58.481202pt;}
.y3_c00440{bottom:66.331840pt;}
.y1_c00440{bottom:66.651840pt;}
.y28_c00440{bottom:125.809975pt;}
.y27_c00440{bottom:151.078098pt;}
.y26_c00440{bottom:176.347422pt;}
.y25_c00440{bottom:215.049273pt;}
.y24_c00440{bottom:240.317396pt;}
.y23_c00440{bottom:265.586719pt;}
.y22_c00440{bottom:290.856709pt;}
.y21_c00440{bottom:316.123632pt;}
.y20_c00440{bottom:354.824817pt;}
.y1f_c00440{bottom:380.096007pt;}
.y1e_c00440{bottom:405.362930pt;}
.y1d_c00440{bottom:443.905981pt;}
.y1c_c00440{bottom:469.175304pt;}
.y1b_c00440{bottom:494.602228pt;}
.y1a_c00440{bottom:533.146612pt;}
.y19_c00440{bottom:558.413535pt;}
.y18_c00440{bottom:583.682859pt;}
.y17_c00440{bottom:622.385910pt;}
.y16_c00440{bottom:647.655900pt;}
.y15_c00440{bottom:686.197084pt;}
.y14_c00440{bottom:711.467074pt;}
.y13_c00440{bottom:736.733997pt;}
.y12_c00440{bottom:762.163321pt;}
.y11_c00440{bottom:800.703305pt;}
.y10_c00440{bottom:825.974495pt;}
.yf_c00440{bottom:851.242618pt;}
.ye_c00440{bottom:876.509541pt;}
.yd_c00440{bottom:901.778865pt;}
.yc_c00440{bottom:940.481916pt;}
.yb_c00440{bottom:965.751906pt;}
.y9_c00440{bottom:983.182565pt;}
.y7_c00440{bottom:1023.551024pt;}
.y6_c00440{bottom:1041.942883pt;}
.y5_c00440{bottom:1060.334742pt;}
.h1_c00440{height:16.153120pt;}
.h7_c00440{height:34.034591pt;}
.h6_c00440{height:37.724630pt;}
.h2_c00440{height:41.196944pt;}
.h4_c00440{height:44.780569pt;}
.h8_c00440{height:52.732088pt;}
.h5_c00440{height:1122.161626pt;}
.h3_c00440{height:1122.559167pt;}
.h0_c00440{height:1122.666667pt;}
.w17_c00440{width:2.400000pt;}
.w12_c00440{width:4.156800pt;}
.wc_c00440{width:4.160000pt;}
.w6_c00440{width:4.478400pt;}
.w16_c00440{width:5.755200pt;}
.w9_c00440{width:5.756800pt;}
.wf_c00440{width:6.556800pt;}
.w13_c00440{width:6.558400pt;}
.w15_c00440{width:7.195200pt;}
.w14_c00440{width:7.355200pt;}
.w7_c00440{width:7.356800pt;}
.w8_c00440{width:7.358400pt;}
.we_c00440{width:8.318400pt;}
.wb_c00440{width:8.956800pt;}
.w10_c00440{width:10.075200pt;}
.w4_c00440{width:10.555200pt;}
.w2_c00440{width:10.718400pt;}
.wa_c00440{width:11.035200pt;}
.w5_c00440{width:13.753600pt;}
.w1_c00440{width:14.713760pt;}
.w3_c00440{width:21.270400pt;}
.w11_c00440{width:23.032000pt;}
.wd_c00440{width:24.945600pt;}
.w19_c00440{width:792.977400pt;}
.w18_c00440{width:793.257550pt;}
.w0_c00440{width:793.333333pt;}
.x0_c00440{left:0.000000pt;}
.x1e_c00440{left:101.233093pt;}
.x1_c00440{left:114.072480pt;}
.x1c_c00440{left:225.370940pt;}
.x1b_c00440{left:239.124654pt;}
.x1d_c00440{left:376.018977pt;}
.x2_c00440{left:441.443200pt;}
.x3_c00440{left:452.161600pt;}
.x4_c00440{left:473.432000pt;}
.x5_c00440{left:483.987200pt;}
.x6_c00440{left:497.740800pt;}
.x7_c00440{left:501.899200pt;}
.x8_c00440{left:512.772800pt;}
.x9_c00440{left:520.131200pt;}
.xa_c00440{left:524.768000pt;}
.xb_c00440{left:539.160000pt;}
.xc_c00440{left:548.116800pt;}
.xd_c00440{left:552.275200pt;}
.xe_c00440{left:556.275200pt;}
.xf_c00440{left:581.220800pt;}
.x10_c00440{left:588.419200pt;}
.x11_c00440{left:598.334400pt;}
.x12_c00440{left:608.089600pt;}
.x13_c00440{left:630.161600pt;}
.x14_c00440{left:634.158400pt;}
.x15_c00440{left:640.716800pt;}
.x16_c00440{left:644.876800pt;}
.x17_c00440{left:652.232000pt;}
.x18_c00440{left:659.427200pt;}
.x19_c00440{left:665.985600pt;}
.x1a_c00440{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.113000;font-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_c00441{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls0_c00441{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00441{word-spacing:0.000000px;}
._3_c00441{margin-left:-1.079917px;}
._0_c00441{width:1.102012px;}
._d_c00441{width:2.423030px;}
._8_c00441{width:3.726753px;}
._b_c00441{width:5.542330px;}
._c_c00441{width:6.708382px;}
._6_c00441{width:8.027849px;}
._7_c00441{width:10.024617px;}
._4_c00441{width:11.385674px;}
._2_c00441{width:12.436877px;}
._e_c00441{width:13.594088px;}
._a_c00441{width:18.172730px;}
._9_c00441{width:19.616943px;}
._5_c00441{width:149.819075px;}
._1_c00441{width:199.476925px;}
.fc1_c00441{color:rgb(105,148,45);}
.fc0_c00441{color:rgb(35,31,32);}
.fs2_c00441{font-size:59.733096px;}
.fs0_c00441{font-size:66.209374px;}
.fs1_c00441{font-size:71.968771px;}
.y0_c00441{bottom:0.000000px;}
.y4_c00441{bottom:0.120938px;}
.y8_c00441{bottom:0.556171px;}
.y2_c00441{bottom:3.957898px;}
.ya_c00441{bottom:65.791352px;}
.y3_c00441{bottom:74.623320px;}
.y1_c00441{bottom:74.983320px;}
.y27_c00441{bottom:140.095773px;}
.y26_c00441{bottom:168.523761px;}
.y25_c00441{bottom:196.949050px;}
.y24_c00441{bottom:225.377788px;}
.y23_c00441{bottom:268.738121px;}
.y22_c00441{bottom:297.165510px;}
.y21_c00441{bottom:340.344342px;}
.y20_c00441{bottom:384.068125px;}
.y1f_c00441{bottom:412.494764px;}
.y1e_c00441{bottom:441.102152px;}
.y1d_c00441{bottom:469.528791px;}
.y1c_c00441{bottom:497.954079px;}
.y1b_c00441{bottom:540.957862px;}
.y1a_c00441{bottom:584.855345px;}
.y19_c00441{bottom:613.284083px;}
.y18_c00441{bottom:641.710722px;}
.y17_c00441{bottom:685.070305px;}
.y16_c00441{bottom:713.498293px;}
.y15_c00441{bottom:742.104932px;}
.y14_c00441{bottom:770.531570px;}
.y13_c00441{bottom:798.960309px;}
.y12_c00441{bottom:841.959142px;}
.y11_c00441{bottom:885.861574px;}
.y10_c00441{bottom:914.288213px;}
.yf_c00441{bottom:942.713501px;}
.ye_c00441{bottom:971.142240px;}
.yd_c00441{bottom:1014.141823px;}
.yc_c00441{bottom:1058.042155px;}
.yb_c00441{bottom:1086.470894px;}
.y9_c00441{bottom:1106.080386px;}
.y7_c00441{bottom:1151.494902px;}
.y6_c00441{bottom:1172.185744px;}
.y5_c00441{bottom:1192.876585px;}
.h1_c00441{height:18.172260px;}
.h7_c00441{height:38.288915px;}
.h6_c00441{height:42.440208px;}
.h2_c00441{height:46.346561px;}
.h4_c00441{height:50.378140px;}
.h8_c00441{height:59.323599px;}
.h9_c00441{height:59.389808px;}
.h5_c00441{height:1262.431829px;}
.h3_c00441{height:1262.879062px;}
.h0_c00441{height:1263.000000px;}
.w17_c00441{width:2.700000px;}
.w12_c00441{width:4.676400px;}
.wc_c00441{width:4.680000px;}
.w6_c00441{width:5.038200px;}
.w16_c00441{width:6.474600px;}
.w9_c00441{width:6.476400px;}
.wf_c00441{width:7.376400px;}
.w13_c00441{width:7.378200px;}
.w15_c00441{width:8.094600px;}
.w14_c00441{width:8.274600px;}
.w7_c00441{width:8.276400px;}
.w8_c00441{width:8.278200px;}
.we_c00441{width:9.358200px;}
.wb_c00441{width:10.076400px;}
.w10_c00441{width:11.334600px;}
.w4_c00441{width:11.874600px;}
.w2_c00441{width:12.058200px;}
.wa_c00441{width:12.414600px;}
.w5_c00441{width:15.472800px;}
.w1_c00441{width:16.552980px;}
.w3_c00441{width:23.929200px;}
.w11_c00441{width:25.911000px;}
.wd_c00441{width:28.063800px;}
.w19_c00441{width:892.099575px;}
.w18_c00441{width:892.414744px;}
.w0_c00441{width:892.500000px;}
.x0_c00441{left:0.000000px;}
.x1e_c00441{left:113.887229px;}
.x1_c00441{left:128.331540px;}
.x1f_c00441{left:167.863311px;}
.x1c_c00441{left:253.542308px;}
.x1b_c00441{left:269.015236px;}
.x1d_c00441{left:423.021349px;}
.x2_c00441{left:496.623600px;}
.x3_c00441{left:508.681800px;}
.x4_c00441{left:532.611000px;}
.x5_c00441{left:544.485600px;}
.x6_c00441{left:559.958400px;}
.x7_c00441{left:564.636600px;}
.x8_c00441{left:576.869400px;}
.x9_c00441{left:585.147600px;}
.xa_c00441{left:590.364000px;}
.xb_c00441{left:606.555000px;}
.xc_c00441{left:616.631400px;}
.xd_c00441{left:621.309600px;}
.xe_c00441{left:625.809600px;}
.xf_c00441{left:653.873400px;}
.x10_c00441{left:661.971600px;}
.x11_c00441{left:673.126200px;}
.x12_c00441{left:684.100800px;}
.x13_c00441{left:708.931800px;}
.x14_c00441{left:713.428200px;}
.x15_c00441{left:720.806400px;}
.x16_c00441{left:725.486400px;}
.x17_c00441{left:733.761000px;}
.x18_c00441{left:741.855600px;}
.x19_c00441{left:749.233800px;}
.x1a_c00441{left:755.708400px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws0_c00441{word-spacing:-14.713194pt;}
.ws1_c00441{word-spacing:0.000000pt;}
._3_c00441{margin-left:-0.959926pt;}
._0_c00441{width:0.979567pt;}
._d_c00441{width:2.153804pt;}
._8_c00441{width:3.312669pt;}
._b_c00441{width:4.926516pt;}
._c_c00441{width:5.963006pt;}
._6_c00441{width:7.135866pt;}
._7_c00441{width:8.910771pt;}
._4_c00441{width:10.120599pt;}
._2_c00441{width:11.055001pt;}
._e_c00441{width:12.083634pt;}
._a_c00441{width:16.153538pt;}
._9_c00441{width:17.437283pt;}
._5_c00441{width:133.172511pt;}
._1_c00441{width:177.312822pt;}
.fs2_c00441{font-size:53.096085pt;}
.fs0_c00441{font-size:58.852776pt;}
.fs1_c00441{font-size:63.972241pt;}
.y0_c00441{bottom:0.000000pt;}
.y4_c00441{bottom:0.107500pt;}
.y8_c00441{bottom:0.494374pt;}
.y2_c00441{bottom:3.518132pt;}
.ya_c00441{bottom:58.481202pt;}
.y3_c00441{bottom:66.331840pt;}
.y1_c00441{bottom:66.651840pt;}
.y27_c00441{bottom:124.529576pt;}
.y26_c00441{bottom:149.798899pt;}
.y25_c00441{bottom:175.065822pt;}
.y24_c00441{bottom:200.335812pt;}
.y23_c00441{bottom:238.878330pt;}
.y22_c00441{bottom:264.147120pt;}
.y21_c00441{bottom:302.528304pt;}
.y20_c00441{bottom:341.393889pt;}
.y1f_c00441{bottom:366.662012pt;}
.y1e_c00441{bottom:392.090802pt;}
.y1d_c00441{bottom:417.358925pt;}
.y1c_c00441{bottom:442.625848pt;}
.y1b_c00441{bottom:480.851433pt;}
.y1a_c00441{bottom:519.871417pt;}
.y19_c00441{bottom:545.141407pt;}
.y18_c00441{bottom:570.409531pt;}
.y17_c00441{bottom:608.951382pt;}
.y16_c00441{bottom:634.220705pt;}
.y15_c00441{bottom:659.648828pt;}
.y14_c00441{bottom:684.916951pt;}
.y13_c00441{bottom:710.186941pt;}
.y12_c00441{bottom:748.408126pt;}
.y11_c00441{bottom:787.432510pt;}
.y10_c00441{bottom:812.700634pt;}
.yf_c00441{bottom:837.967557pt;}
.ye_c00441{bottom:863.237547pt;}
.yd_c00441{bottom:901.459398pt;}
.yc_c00441{bottom:940.481916pt;}
.yb_c00441{bottom:965.751906pt;}
.y9_c00441{bottom:983.182565pt;}
.y7_c00441{bottom:1023.551024pt;}
.y6_c00441{bottom:1041.942883pt;}
.y5_c00441{bottom:1060.334742pt;}
.h1_c00441{height:16.153120pt;}
.h7_c00441{height:34.034591pt;}
.h6_c00441{height:37.724630pt;}
.h2_c00441{height:41.196944pt;}
.h4_c00441{height:44.780569pt;}
.h8_c00441{height:52.732088pt;}
.h9_c00441{height:52.790940pt;}
.h5_c00441{height:1122.161626pt;}
.h3_c00441{height:1122.559167pt;}
.h0_c00441{height:1122.666667pt;}
.w17_c00441{width:2.400000pt;}
.w12_c00441{width:4.156800pt;}
.wc_c00441{width:4.160000pt;}
.w6_c00441{width:4.478400pt;}
.w16_c00441{width:5.755200pt;}
.w9_c00441{width:5.756800pt;}
.wf_c00441{width:6.556800pt;}
.w13_c00441{width:6.558400pt;}
.w15_c00441{width:7.195200pt;}
.w14_c00441{width:7.355200pt;}
.w7_c00441{width:7.356800pt;}
.w8_c00441{width:7.358400pt;}
.we_c00441{width:8.318400pt;}
.wb_c00441{width:8.956800pt;}
.w10_c00441{width:10.075200pt;}
.w4_c00441{width:10.555200pt;}
.w2_c00441{width:10.718400pt;}
.wa_c00441{width:11.035200pt;}
.w5_c00441{width:13.753600pt;}
.w1_c00441{width:14.713760pt;}
.w3_c00441{width:21.270400pt;}
.w11_c00441{width:23.032000pt;}
.wd_c00441{width:24.945600pt;}
.w19_c00441{width:792.977400pt;}
.w18_c00441{width:793.257550pt;}
.w0_c00441{width:793.333333pt;}
.x0_c00441{left:0.000000pt;}
.x1e_c00441{left:101.233093pt;}
.x1_c00441{left:114.072480pt;}
.x1f_c00441{left:149.211832pt;}
.x1c_c00441{left:225.370940pt;}
.x1b_c00441{left:239.124654pt;}
.x1d_c00441{left:376.018977pt;}
.x2_c00441{left:441.443200pt;}
.x3_c00441{left:452.161600pt;}
.x4_c00441{left:473.432000pt;}
.x5_c00441{left:483.987200pt;}
.x6_c00441{left:497.740800pt;}
.x7_c00441{left:501.899200pt;}
.x8_c00441{left:512.772800pt;}
.x9_c00441{left:520.131200pt;}
.xa_c00441{left:524.768000pt;}
.xb_c00441{left:539.160000pt;}
.xc_c00441{left:548.116800pt;}
.xd_c00441{left:552.275200pt;}
.xe_c00441{left:556.275200pt;}
.xf_c00441{left:581.220800pt;}
.x10_c00441{left:588.419200pt;}
.x11_c00441{left:598.334400pt;}
.x12_c00441{left:608.089600pt;}
.x13_c00441{left:630.161600pt;}
.x14_c00441{left:634.158400pt;}
.x15_c00441{left:640.716800pt;}
.x16_c00441{left:644.876800pt;}
.x17_c00441{left:652.232000pt;}
.x18_c00441{left:659.427200pt;}
.x19_c00441{left:665.985600pt;}
.x1a_c00441{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00442;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.112000;font-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_c00442{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00442{word-spacing:-16.552343px;}
.ws1_c00442{word-spacing:0.000000px;}
._2_c00442{margin-left:-1.029026px;}
._0_c00442{width:1.102012px;}
._4_c00442{width:2.678327px;}
._3_c00442{width:3.980994px;}
._7_c00442{width:11.437895px;}
._9_c00442{width:15.242069px;}
._6_c00442{width:24.687560px;}
._5_c00442{width:25.789125px;}
._a_c00442{width:35.689733px;}
._8_c00442{width:149.819075px;}
._1_c00442{width:199.476925px;}
.fc1_c00442{color:rgb(105,148,45);}
.fc0_c00442{color:rgb(35,31,32);}
.fs2_c00442{font-size:59.733096px;}
.fs0_c00442{font-size:66.209374px;}
.fs1_c00442{font-size:71.968771px;}
.y0_c00442{bottom:0.000000px;}
.y4_c00442{bottom:0.120938px;}
.y8_c00442{bottom:0.556171px;}
.y2_c00442{bottom:3.957898px;}
.ya_c00442{bottom:65.791352px;}
.y3_c00442{bottom:74.623320px;}
.y1_c00442{bottom:74.983320px;}
.y26_c00442{bottom:101.774538px;}
.y25_c00442{bottom:130.200426px;}
.y24_c00442{bottom:173.559259px;}
.y23_c00442{bottom:201.985898px;}
.y22_c00442{bottom:230.594636px;}
.y21_c00442{bottom:259.024125px;}
.y20_c00442{bottom:287.449414px;}
.y1f_c00442{bottom:315.876802px;}
.y1e_c00442{bottom:344.303441px;}
.y1d_c00442{bottom:372.730079px;}
.y1c_c00442{bottom:415.909662px;}
.y1b_c00442{bottom:459.632095px;}
.y1a_c00442{bottom:502.630928px;}
.y19_c00442{bottom:546.531860px;}
.y18_c00442{bottom:589.532793px;}
.y17_c00442{bottom:633.073125px;}
.y16_c00442{bottom:676.794058px;}
.y15_c00442{bottom:705.219346px;}
.y14_c00442{bottom:733.825985px;}
.y13_c00442{bottom:777.186918px;}
.y12_c00442{bottom:820.189351px;}
.y11_c00442{bottom:864.088933px;}
.y10_c00442{bottom:892.515572px;}
.yf_c00442{bottom:920.940860px;}
.ye_c00442{bottom:949.368849px;}
.yd_c00442{bottom:977.797587px;}
.yc_c00442{bottom:1020.977920px;}
.yb_c00442{bottom:1087.548944px;}
.y9_c00442{bottom:1106.080386px;}
.y7_c00442{bottom:1151.494902px;}
.y6_c00442{bottom:1172.185744px;}
.y5_c00442{bottom:1192.876585px;}
.h1_c00442{height:18.172260px;}
.h7_c00442{height:38.288915px;}
.h6_c00442{height:42.440208px;}
.h2_c00442{height:46.346561px;}
.h4_c00442{height:50.378140px;}
.h8_c00442{height:53.580587px;}
.ha_c00442{height:59.323599px;}
.h9_c00442{height:59.389808px;}
.h5_c00442{height:1262.431829px;}
.h3_c00442{height:1262.879062px;}
.h0_c00442{height:1263.000000px;}
.w17_c00442{width:2.700000px;}
.w12_c00442{width:4.676400px;}
.wc_c00442{width:4.680000px;}
.w6_c00442{width:5.038200px;}
.w16_c00442{width:6.474600px;}
.w9_c00442{width:6.476400px;}
.wf_c00442{width:7.376400px;}
.w13_c00442{width:7.378200px;}
.w15_c00442{width:8.094600px;}
.w14_c00442{width:8.274600px;}
.w7_c00442{width:8.276400px;}
.w8_c00442{width:8.278200px;}
.we_c00442{width:9.358200px;}
.wb_c00442{width:10.076400px;}
.w10_c00442{width:11.334600px;}
.w4_c00442{width:11.874600px;}
.w2_c00442{width:12.058200px;}
.wa_c00442{width:12.414600px;}
.w5_c00442{width:15.472800px;}
.w1_c00442{width:16.552980px;}
.w3_c00442{width:23.929200px;}
.w11_c00442{width:25.911000px;}
.wd_c00442{width:28.063800px;}
.w19_c00442{width:892.099575px;}
.w18_c00442{width:892.414744px;}
.w0_c00442{width:892.500000px;}
.x0_c00442{left:0.000000px;}
.x1e_c00442{left:113.887229px;}
.x1_c00442{left:128.331540px;}
.x1f_c00442{left:167.863311px;}
.x1c_c00442{left:253.542308px;}
.x1b_c00442{left:269.015236px;}
.x1d_c00442{left:423.021349px;}
.x2_c00442{left:496.623600px;}
.x3_c00442{left:508.681800px;}
.x4_c00442{left:532.611000px;}
.x5_c00442{left:544.485600px;}
.x6_c00442{left:559.958400px;}
.x7_c00442{left:564.636600px;}
.x8_c00442{left:576.869400px;}
.x9_c00442{left:585.147600px;}
.xa_c00442{left:590.364000px;}
.xb_c00442{left:606.555000px;}
.xc_c00442{left:616.631400px;}
.xd_c00442{left:621.309600px;}
.xe_c00442{left:625.809600px;}
.xf_c00442{left:653.873400px;}
.x10_c00442{left:661.971600px;}
.x11_c00442{left:673.126200px;}
.x12_c00442{left:684.100800px;}
.x13_c00442{left:708.931800px;}
.x14_c00442{left:713.428200px;}
.x15_c00442{left:720.806400px;}
.x16_c00442{left:725.486400px;}
.x17_c00442{left:733.761000px;}
.x18_c00442{left:741.855600px;}
.x19_c00442{left:749.233800px;}
.x1a_c00442{left:755.708400px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:-14.713194pt;}
.ws1_c00442{word-spacing:0.000000pt;}
._2_c00442{margin-left:-0.914690pt;}
._0_c00442{width:0.979567pt;}
._4_c00442{width:2.380735pt;}
._3_c00442{width:3.538661pt;}
._7_c00442{width:10.167018pt;}
._9_c00442{width:13.548506pt;}
._6_c00442{width:21.944498pt;}
._5_c00442{width:22.923666pt;}
._a_c00442{width:31.724207pt;}
._8_c00442{width:133.172511pt;}
._1_c00442{width:177.312822pt;}
.fs2_c00442{font-size:53.096085pt;}
.fs0_c00442{font-size:58.852776pt;}
.fs1_c00442{font-size:63.972241pt;}
.y0_c00442{bottom:0.000000pt;}
.y4_c00442{bottom:0.107500pt;}
.y8_c00442{bottom:0.494374pt;}
.y2_c00442{bottom:3.518132pt;}
.ya_c00442{bottom:58.481202pt;}
.y3_c00442{bottom:66.331840pt;}
.y1_c00442{bottom:66.651840pt;}
.y26_c00442{bottom:90.466256pt;}
.y25_c00442{bottom:115.733712pt;}
.y24_c00442{bottom:154.274897pt;}
.y23_c00442{bottom:179.543020pt;}
.y22_c00442{bottom:204.973010pt;}
.y21_c00442{bottom:230.243667pt;}
.y20_c00442{bottom:255.510590pt;}
.y1f_c00442{bottom:280.779380pt;}
.y1e_c00442{bottom:306.047503pt;}
.y1d_c00442{bottom:331.315626pt;}
.y1c_c00442{bottom:369.697478pt;}
.y1b_c00442{bottom:408.561862pt;}
.y1a_c00442{bottom:446.783047pt;}
.y19_c00442{bottom:485.806098pt;}
.y18_c00442{bottom:524.029149pt;}
.y17_c00442{bottom:562.731667pt;}
.y16_c00442{bottom:601.594718pt;}
.y15_c00442{bottom:626.861641pt;}
.y14_c00442{bottom:652.289764pt;}
.y13_c00442{bottom:690.832816pt;}
.y12_c00442{bottom:729.057200pt;}
.y11_c00442{bottom:768.079052pt;}
.y10_c00442{bottom:793.347175pt;}
.yf_c00442{bottom:818.614098pt;}
.ye_c00442{bottom:843.883421pt;}
.yd_c00442{bottom:869.153411pt;}
.yc_c00442{bottom:907.535929pt;}
.yb_c00442{bottom:966.710172pt;}
.y9_c00442{bottom:983.182565pt;}
.y7_c00442{bottom:1023.551024pt;}
.y6_c00442{bottom:1041.942883pt;}
.y5_c00442{bottom:1060.334742pt;}
.h1_c00442{height:16.153120pt;}
.h7_c00442{height:34.034591pt;}
.h6_c00442{height:37.724630pt;}
.h2_c00442{height:41.196944pt;}
.h4_c00442{height:44.780569pt;}
.h8_c00442{height:47.627189pt;}
.ha_c00442{height:52.732088pt;}
.h9_c00442{height:52.790940pt;}
.h5_c00442{height:1122.161626pt;}
.h3_c00442{height:1122.559167pt;}
.h0_c00442{height:1122.666667pt;}
.w17_c00442{width:2.400000pt;}
.w12_c00442{width:4.156800pt;}
.wc_c00442{width:4.160000pt;}
.w6_c00442{width:4.478400pt;}
.w16_c00442{width:5.755200pt;}
.w9_c00442{width:5.756800pt;}
.wf_c00442{width:6.556800pt;}
.w13_c00442{width:6.558400pt;}
.w15_c00442{width:7.195200pt;}
.w14_c00442{width:7.355200pt;}
.w7_c00442{width:7.356800pt;}
.w8_c00442{width:7.358400pt;}
.we_c00442{width:8.318400pt;}
.wb_c00442{width:8.956800pt;}
.w10_c00442{width:10.075200pt;}
.w4_c00442{width:10.555200pt;}
.w2_c00442{width:10.718400pt;}
.wa_c00442{width:11.035200pt;}
.w5_c00442{width:13.753600pt;}
.w1_c00442{width:14.713760pt;}
.w3_c00442{width:21.270400pt;}
.w11_c00442{width:23.032000pt;}
.wd_c00442{width:24.945600pt;}
.w19_c00442{width:792.977400pt;}
.w18_c00442{width:793.257550pt;}
.w0_c00442{width:793.333333pt;}
.x0_c00442{left:0.000000pt;}
.x1e_c00442{left:101.233093pt;}
.x1_c00442{left:114.072480pt;}
.x1f_c00442{left:149.211832pt;}
.x1c_c00442{left:225.370940pt;}
.x1b_c00442{left:239.124654pt;}
.x1d_c00442{left:376.018977pt;}
.x2_c00442{left:441.443200pt;}
.x3_c00442{left:452.161600pt;}
.x4_c00442{left:473.432000pt;}
.x5_c00442{left:483.987200pt;}
.x6_c00442{left:497.740800pt;}
.x7_c00442{left:501.899200pt;}
.x8_c00442{left:512.772800pt;}
.x9_c00442{left:520.131200pt;}
.xa_c00442{left:524.768000pt;}
.xb_c00442{left:539.160000pt;}
.xc_c00442{left:548.116800pt;}
.xd_c00442{left:552.275200pt;}
.xe_c00442{left:556.275200pt;}
.xf_c00442{left:581.220800pt;}
.x10_c00442{left:588.419200pt;}
.x11_c00442{left:598.334400pt;}
.x12_c00442{left:608.089600pt;}
.x13_c00442{left:630.161600pt;}
.x14_c00442{left:634.158400pt;}
.x15_c00442{left:640.716800pt;}
.x16_c00442{left:644.876800pt;}
.x17_c00442{left:652.232000pt;}
.x18_c00442{left:659.427200pt;}
.x19_c00442{left:665.985600pt;}
.x1a_c00442{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00443;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:1.113000;font-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_c00443{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:-16.552343px;}
.ws1_c00443{word-spacing:0.000000px;}
._2_c00443{margin-left:-1.014467px;}
._0_c00443{width:1.102012px;}
._4_c00443{width:2.406998px;}
._3_c00443{width:4.383554px;}
._7_c00443{width:11.873890px;}
._8_c00443{width:12.958045px;}
._6_c00443{width:17.636711px;}
._9_c00443{width:18.789582px;}
._5_c00443{width:149.819075px;}
._1_c00443{width:199.476925px;}
.fc1_c00443{color:rgb(105,148,45);}
.fc0_c00443{color:rgb(35,31,32);}
.fs2_c00443{font-size:59.733096px;}
.fs0_c00443{font-size:66.209374px;}
.fs1_c00443{font-size:71.968771px;}
.y0_c00443{bottom:0.000000px;}
.y4_c00443{bottom:0.120938px;}
.y8_c00443{bottom:0.556171px;}
.y2_c00443{bottom:3.957898px;}
.ya_c00443{bottom:65.791352px;}
.y3_c00443{bottom:74.623320px;}
.y1_c00443{bottom:74.983320px;}
.y21_c00443{bottom:251.827278px;}
.y20_c00443{bottom:280.254666px;}
.y1f_c00443{bottom:323.433499px;}
.y1e_c00443{bottom:367.153082px;}
.y1d_c00443{bottom:395.579720px;}
.y1c_c00443{bottom:424.007709px;}
.y1b_c00443{bottom:467.190142px;}
.y1a_c00443{bottom:507.850625px;}
.y19_c00443{bottom:553.191257px;}
.y18_c00443{bottom:596.370090px;}
.y17_c00443{bottom:640.091023px;}
.y16_c00443{bottom:683.271955px;}
.y15_c00443{bottom:726.992888px;}
.y14_c00443{bottom:755.419526px;}
.y13_c00443{bottom:783.844815px;}
.y12_c00443{bottom:827.025748px;}
.y11_c00443{bottom:870.748180px;}
.y10_c00443{bottom:913.927013px;}
.yf_c00443{bottom:957.646596px;}
.ye_c00443{bottom:986.073234px;}
.yd_c00443{bottom:1029.614167px;}
.yc_c00443{bottom:1058.042155px;}
.yb_c00443{bottom:1086.470894px;}
.y9_c00443{bottom:1106.080386px;}
.y7_c00443{bottom:1151.494902px;}
.y6_c00443{bottom:1172.185744px;}
.y5_c00443{bottom:1192.876585px;}
.h1_c00443{height:18.172260px;}
.h7_c00443{height:38.288915px;}
.h6_c00443{height:42.440208px;}
.h2_c00443{height:46.346561px;}
.h4_c00443{height:50.378140px;}
.ha_c00443{height:53.580587px;}
.h8_c00443{height:59.323599px;}
.h9_c00443{height:59.389808px;}
.h5_c00443{height:1262.431829px;}
.h3_c00443{height:1262.879062px;}
.h0_c00443{height:1263.000000px;}
.w17_c00443{width:2.700000px;}
.w12_c00443{width:4.676400px;}
.wc_c00443{width:4.680000px;}
.w6_c00443{width:5.038200px;}
.w16_c00443{width:6.474600px;}
.w9_c00443{width:6.476400px;}
.wf_c00443{width:7.376400px;}
.w13_c00443{width:7.378200px;}
.w15_c00443{width:8.094600px;}
.w14_c00443{width:8.274600px;}
.w7_c00443{width:8.276400px;}
.w8_c00443{width:8.278200px;}
.we_c00443{width:9.358200px;}
.wb_c00443{width:10.076400px;}
.w10_c00443{width:11.334600px;}
.w4_c00443{width:11.874600px;}
.w2_c00443{width:12.058200px;}
.wa_c00443{width:12.414600px;}
.w5_c00443{width:15.472800px;}
.w1_c00443{width:16.552980px;}
.w3_c00443{width:23.929200px;}
.w11_c00443{width:25.911000px;}
.wd_c00443{width:28.063800px;}
.w19_c00443{width:892.099575px;}
.w18_c00443{width:892.414744px;}
.w0_c00443{width:892.500000px;}
.x0_c00443{left:0.000000px;}
.x1e_c00443{left:113.887229px;}
.x1_c00443{left:128.331540px;}
.x1f_c00443{left:167.863311px;}
.x1c_c00443{left:253.542308px;}
.x1b_c00443{left:269.015236px;}
.x1d_c00443{left:423.021349px;}
.x2_c00443{left:496.623600px;}
.x3_c00443{left:508.681800px;}
.x4_c00443{left:532.611000px;}
.x5_c00443{left:544.485600px;}
.x6_c00443{left:559.958400px;}
.x7_c00443{left:564.636600px;}
.x8_c00443{left:576.869400px;}
.x9_c00443{left:585.147600px;}
.xa_c00443{left:590.364000px;}
.xb_c00443{left:606.555000px;}
.xc_c00443{left:616.631400px;}
.xd_c00443{left:621.309600px;}
.xe_c00443{left:625.809600px;}
.xf_c00443{left:653.873400px;}
.x10_c00443{left:661.971600px;}
.x11_c00443{left:673.126200px;}
.x12_c00443{left:684.100800px;}
.x13_c00443{left:708.931800px;}
.x14_c00443{left:713.428200px;}
.x15_c00443{left:720.806400px;}
.x16_c00443{left:725.486400px;}
.x17_c00443{left:733.761000px;}
.x18_c00443{left:741.855600px;}
.x19_c00443{left:749.233800px;}
.x1a_c00443{left:755.708400px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:-14.713194pt;}
.ws1_c00443{word-spacing:0.000000pt;}
._2_c00443{margin-left:-0.901749pt;}
._0_c00443{width:0.979567pt;}
._4_c00443{width:2.139554pt;}
._3_c00443{width:3.896493pt;}
._7_c00443{width:10.554569pt;}
._8_c00443{width:11.518262pt;}
._6_c00443{width:15.677076pt;}
._9_c00443{width:16.701851pt;}
._5_c00443{width:133.172511pt;}
._1_c00443{width:177.312822pt;}
.fs2_c00443{font-size:53.096085pt;}
.fs0_c00443{font-size:58.852776pt;}
.fs1_c00443{font-size:63.972241pt;}
.y0_c00443{bottom:0.000000pt;}
.y4_c00443{bottom:0.107500pt;}
.y8_c00443{bottom:0.494374pt;}
.y2_c00443{bottom:3.518132pt;}
.ya_c00443{bottom:58.481202pt;}
.y3_c00443{bottom:66.331840pt;}
.y1_c00443{bottom:66.651840pt;}
.y21_c00443{bottom:223.846469pt;}
.y20_c00443{bottom:249.115259pt;}
.y1f_c00443{bottom:287.496444pt;}
.y1e_c00443{bottom:326.358295pt;}
.y1d_c00443{bottom:351.626418pt;}
.y1c_c00443{bottom:376.895741pt;}
.y1b_c00443{bottom:415.280126pt;}
.y1a_c00443{bottom:451.422778pt;}
.y19_c00443{bottom:491.725562pt;}
.y18_c00443{bottom:530.106747pt;}
.y17_c00443{bottom:568.969798pt;}
.y16_c00443{bottom:607.352849pt;}
.y15_c00443{bottom:646.215900pt;}
.y14_c00443{bottom:671.484023pt;}
.y13_c00443{bottom:696.750947pt;}
.y12_c00443{bottom:735.133998pt;}
.y11_c00443{bottom:773.998382pt;}
.y10_c00443{bottom:812.379567pt;}
.yf_c00443{bottom:851.241418pt;}
.ye_c00443{bottom:876.509541pt;}
.yd_c00443{bottom:915.212593pt;}
.yc_c00443{bottom:940.481916pt;}
.yb_c00443{bottom:965.751906pt;}
.y9_c00443{bottom:983.182565pt;}
.y7_c00443{bottom:1023.551024pt;}
.y6_c00443{bottom:1041.942883pt;}
.y5_c00443{bottom:1060.334742pt;}
.h1_c00443{height:16.153120pt;}
.h7_c00443{height:34.034591pt;}
.h6_c00443{height:37.724630pt;}
.h2_c00443{height:41.196944pt;}
.h4_c00443{height:44.780569pt;}
.ha_c00443{height:47.627189pt;}
.h8_c00443{height:52.732088pt;}
.h9_c00443{height:52.790940pt;}
.h5_c00443{height:1122.161626pt;}
.h3_c00443{height:1122.559167pt;}
.h0_c00443{height:1122.666667pt;}
.w17_c00443{width:2.400000pt;}
.w12_c00443{width:4.156800pt;}
.wc_c00443{width:4.160000pt;}
.w6_c00443{width:4.478400pt;}
.w16_c00443{width:5.755200pt;}
.w9_c00443{width:5.756800pt;}
.wf_c00443{width:6.556800pt;}
.w13_c00443{width:6.558400pt;}
.w15_c00443{width:7.195200pt;}
.w14_c00443{width:7.355200pt;}
.w7_c00443{width:7.356800pt;}
.w8_c00443{width:7.358400pt;}
.we_c00443{width:8.318400pt;}
.wb_c00443{width:8.956800pt;}
.w10_c00443{width:10.075200pt;}
.w4_c00443{width:10.555200pt;}
.w2_c00443{width:10.718400pt;}
.wa_c00443{width:11.035200pt;}
.w5_c00443{width:13.753600pt;}
.w1_c00443{width:14.713760pt;}
.w3_c00443{width:21.270400pt;}
.w11_c00443{width:23.032000pt;}
.wd_c00443{width:24.945600pt;}
.w19_c00443{width:792.977400pt;}
.w18_c00443{width:793.257550pt;}
.w0_c00443{width:793.333333pt;}
.x0_c00443{left:0.000000pt;}
.x1e_c00443{left:101.233093pt;}
.x1_c00443{left:114.072480pt;}
.x1f_c00443{left:149.211832pt;}
.x1c_c00443{left:225.370940pt;}
.x1b_c00443{left:239.124654pt;}
.x1d_c00443{left:376.018977pt;}
.x2_c00443{left:441.443200pt;}
.x3_c00443{left:452.161600pt;}
.x4_c00443{left:473.432000pt;}
.x5_c00443{left:483.987200pt;}
.x6_c00443{left:497.740800pt;}
.x7_c00443{left:501.899200pt;}
.x8_c00443{left:512.772800pt;}
.x9_c00443{left:520.131200pt;}
.xa_c00443{left:524.768000pt;}
.xb_c00443{left:539.160000pt;}
.xc_c00443{left:548.116800pt;}
.xd_c00443{left:552.275200pt;}
.xe_c00443{left:556.275200pt;}
.xf_c00443{left:581.220800pt;}
.x10_c00443{left:588.419200pt;}
.x11_c00443{left:598.334400pt;}
.x12_c00443{left:608.089600pt;}
.x13_c00443{left:630.161600pt;}
.x14_c00443{left:634.158400pt;}
.x15_c00443{left:640.716800pt;}
.x16_c00443{left:644.876800pt;}
.x17_c00443{left:652.232000pt;}
.x18_c00443{left:659.427200pt;}
.x19_c00443{left:665.985600pt;}
.x1a_c00443{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_b4bb1e57c1f39978d3c33c4a.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.112000;font-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_c00444{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls0_c00444{letter-spacing:0.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:-16.552343px;}
.ws1_c00444{word-spacing:0.000000px;}
._1_c00444{margin-left:-1.121932px;}
._0_c00444{width:1.102012px;}
._3_c00444{width:2.605484px;}
._18_c00444{width:4.685260px;}
._15_c00444{width:5.764652px;}
._17_c00444{width:7.793846px;}
._16_c00444{width:8.836543px;}
._14_c00444{width:14.405835px;}
._7_c00444{width:68.419442px;}
._9_c00444{width:88.304610px;}
._a_c00444{width:98.618829px;}
._d_c00444{width:111.624369px;}
._2_c00444{width:149.819075px;}
._13_c00444{width:199.476925px;}
._8_c00444{width:219.414483px;}
._c_c00444{width:222.903913px;}
._4_c00444{width:239.080724px;}
._6_c00444{width:280.848907px;}
._10_c00444{width:319.270170px;}
._e_c00444{width:323.346666px;}
._5_c00444{width:365.818706px;}
._11_c00444{width:394.682016px;}
._b_c00444{width:409.024957px;}
._12_c00444{width:493.995419px;}
._f_c00444{width:579.696969px;}
.fc1_c00444{color:rgb(105,148,45);}
.fc0_c00444{color:rgb(35,31,32);}
.fs2_c00444{font-size:59.733096px;}
.fs0_c00444{font-size:66.209374px;}
.fs1_c00444{font-size:71.968771px;}
.y0_c00444{bottom:0.000000px;}
.y4_c00444{bottom:0.120938px;}
.y8_c00444{bottom:0.556171px;}
.y2_c00444{bottom:3.957898px;}
.ya_c00444{bottom:65.791352px;}
.y3_c00444{bottom:74.623320px;}
.y1_c00444{bottom:74.983320px;}
.y24_c00444{bottom:105.374086px;}
.y23_c00444{bottom:133.799375px;}
.y22_c00444{bottom:177.341808px;}
.y21_c00444{bottom:205.768446px;}
.y20_c00444{bottom:234.195085px;}
.y1f_c00444{bottom:277.556018px;}
.y1e_c00444{bottom:306.162656px;}
.y1d_c00444{bottom:349.163589px;}
.y1c_c00444{bottom:392.884521px;}
.y1b_c00444{bottom:421.491160px;}
.y1a_c00444{bottom:464.492843px;}
.y19_c00444{bottom:508.212425px;}
.y18_c00444{bottom:551.752758px;}
.y17_c00444{bottom:595.112341px;}
.y16_c00444{bottom:638.653273px;}
.y15_c00444{bottom:682.012106px;}
.y14_c00444{bottom:725.554538px;}
.y13_c00444{bottom:768.916521px;}
.y12_c00444{bottom:812.455654px;}
.y11_c00444{bottom:855.814486px;}
.y10_c00444{bottom:898.814969px;}
.yf_c00444{bottom:927.421308px;}
.ye_c00444{bottom:971.140890px;}
.yd_c00444{bottom:999.567529px;}
.yc_c00444{bottom:1042.748461px;}
.yb_c00444{bottom:1086.110894px;}
.y9_c00444{bottom:1106.080386px;}
.y7_c00444{bottom:1151.494902px;}
.y6_c00444{bottom:1172.185744px;}
.y5_c00444{bottom:1192.876585px;}
.h1_c00444{height:18.172260px;}
.h7_c00444{height:38.288915px;}
.h6_c00444{height:42.440208px;}
.h2_c00444{height:46.346561px;}
.h4_c00444{height:50.378140px;}
.h9_c00444{height:59.323599px;}
.h8_c00444{height:59.389808px;}
.h5_c00444{height:1262.431829px;}
.h3_c00444{height:1262.879062px;}
.h0_c00444{height:1263.000000px;}
.w17_c00444{width:2.700000px;}
.w12_c00444{width:4.676400px;}
.wc_c00444{width:4.680000px;}
.w6_c00444{width:5.038200px;}
.w16_c00444{width:6.474600px;}
.w9_c00444{width:6.476400px;}
.wf_c00444{width:7.376400px;}
.w13_c00444{width:7.378200px;}
.w15_c00444{width:8.094600px;}
.w14_c00444{width:8.274600px;}
.w7_c00444{width:8.276400px;}
.w8_c00444{width:8.278200px;}
.we_c00444{width:9.358200px;}
.wb_c00444{width:10.076400px;}
.w10_c00444{width:11.334600px;}
.w4_c00444{width:11.874600px;}
.w2_c00444{width:12.058200px;}
.wa_c00444{width:12.414600px;}
.w5_c00444{width:15.472800px;}
.w1_c00444{width:16.552980px;}
.w3_c00444{width:23.929200px;}
.w11_c00444{width:25.911000px;}
.wd_c00444{width:28.063800px;}
.w19_c00444{width:892.099575px;}
.w18_c00444{width:892.414744px;}
.w0_c00444{width:892.500000px;}
.x0_c00444{left:0.000000px;}
.x1e_c00444{left:113.887229px;}
.x1_c00444{left:128.331540px;}
.x1f_c00444{left:167.865308px;}
.x20_c00444{left:198.807295px;}
.x1c_c00444{left:253.542308px;}
.x1b_c00444{left:269.015236px;}
.x1d_c00444{left:423.021349px;}
.x2_c00444{left:496.623600px;}
.x3_c00444{left:508.681800px;}
.x4_c00444{left:532.611000px;}
.x5_c00444{left:544.485600px;}
.x6_c00444{left:559.958400px;}
.x7_c00444{left:564.636600px;}
.x8_c00444{left:576.869400px;}
.x9_c00444{left:585.147600px;}
.xa_c00444{left:590.364000px;}
.xb_c00444{left:606.555000px;}
.xc_c00444{left:616.631400px;}
.xd_c00444{left:621.309600px;}
.xe_c00444{left:625.809600px;}
.xf_c00444{left:653.873400px;}
.x10_c00444{left:661.971600px;}
.x11_c00444{left:673.126200px;}
.x12_c00444{left:684.100800px;}
.x13_c00444{left:708.931800px;}
.x14_c00444{left:713.428200px;}
.x15_c00444{left:720.806400px;}
.x16_c00444{left:725.486400px;}
.x17_c00444{left:733.761000px;}
.x18_c00444{left:741.855600px;}
.x19_c00444{left:749.233800px;}
.x1a_c00444{left:755.708400px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws0_c00444{word-spacing:-14.713194pt;}
.ws1_c00444{word-spacing:0.000000pt;}
._1_c00444{margin-left:-0.997273pt;}
._0_c00444{width:0.979567pt;}
._3_c00444{width:2.315986pt;}
._18_c00444{width:4.164676pt;}
._15_c00444{width:5.124135pt;}
._17_c00444{width:6.927863pt;}
._16_c00444{width:7.854705pt;}
._14_c00444{width:12.805187pt;}
._7_c00444{width:60.817282pt;}
._9_c00444{width:78.492987pt;}
._a_c00444{width:87.661181pt;}
._d_c00444{width:99.221661pt;}
._2_c00444{width:133.172511pt;}
._13_c00444{width:177.312822pt;}
._8_c00444{width:195.035096pt;}
._c_c00444{width:198.136812pt;}
._4_c00444{width:212.516199pt;}
._6_c00444{width:249.643473pt;}
._10_c00444{width:283.795707pt;}
._e_c00444{width:287.419259pt;}
._5_c00444{width:325.172183pt;}
._11_c00444{width:350.828459pt;}
._b_c00444{width:363.577740pt;}
._12_c00444{width:439.107039pt;}
._f_c00444{width:515.286194pt;}
.fs2_c00444{font-size:53.096085pt;}
.fs0_c00444{font-size:58.852776pt;}
.fs1_c00444{font-size:63.972241pt;}
.y0_c00444{bottom:0.000000pt;}
.y4_c00444{bottom:0.107500pt;}
.y8_c00444{bottom:0.494374pt;}
.y2_c00444{bottom:3.518132pt;}
.ya_c00444{bottom:58.481202pt;}
.y3_c00444{bottom:66.331840pt;}
.y1_c00444{bottom:66.651840pt;}
.y24_c00444{bottom:93.665855pt;}
.y23_c00444{bottom:118.932778pt;}
.y22_c00444{bottom:157.637162pt;}
.y21_c00444{bottom:182.905286pt;}
.y20_c00444{bottom:208.173409pt;}
.y1f_c00444{bottom:246.716460pt;}
.y1e_c00444{bottom:272.144583pt;}
.y1d_c00444{bottom:310.367635pt;}
.y1c_c00444{bottom:349.230686pt;}
.y1b_c00444{bottom:374.658809pt;}
.y1a_c00444{bottom:412.882527pt;}
.y19_c00444{bottom:451.744378pt;}
.y18_c00444{bottom:490.446896pt;}
.y17_c00444{bottom:528.988747pt;}
.y16_c00444{bottom:567.691798pt;}
.y15_c00444{bottom:606.232983pt;}
.y14_c00444{bottom:644.937367pt;}
.y13_c00444{bottom:683.481352pt;}
.y12_c00444{bottom:722.182803pt;}
.y11_c00444{bottom:760.723988pt;}
.y10_c00444{bottom:798.946639pt;}
.yf_c00444{bottom:824.374496pt;}
.ye_c00444{bottom:863.236347pt;}
.yd_c00444{bottom:888.504470pt;}
.yc_c00444{bottom:926.887521pt;}
.yb_c00444{bottom:965.431906pt;}
.y9_c00444{bottom:983.182565pt;}
.y7_c00444{bottom:1023.551024pt;}
.y6_c00444{bottom:1041.942883pt;}
.y5_c00444{bottom:1060.334742pt;}
.h1_c00444{height:16.153120pt;}
.h7_c00444{height:34.034591pt;}
.h6_c00444{height:37.724630pt;}
.h2_c00444{height:41.196944pt;}
.h4_c00444{height:44.780569pt;}
.h9_c00444{height:52.732088pt;}
.h8_c00444{height:52.790940pt;}
.h5_c00444{height:1122.161626pt;}
.h3_c00444{height:1122.559167pt;}
.h0_c00444{height:1122.666667pt;}
.w17_c00444{width:2.400000pt;}
.w12_c00444{width:4.156800pt;}
.wc_c00444{width:4.160000pt;}
.w6_c00444{width:4.478400pt;}
.w16_c00444{width:5.755200pt;}
.w9_c00444{width:5.756800pt;}
.wf_c00444{width:6.556800pt;}
.w13_c00444{width:6.558400pt;}
.w15_c00444{width:7.195200pt;}
.w14_c00444{width:7.355200pt;}
.w7_c00444{width:7.356800pt;}
.w8_c00444{width:7.358400pt;}
.we_c00444{width:8.318400pt;}
.wb_c00444{width:8.956800pt;}
.w10_c00444{width:10.075200pt;}
.w4_c00444{width:10.555200pt;}
.w2_c00444{width:10.718400pt;}
.wa_c00444{width:11.035200pt;}
.w5_c00444{width:13.753600pt;}
.w1_c00444{width:14.713760pt;}
.w3_c00444{width:21.270400pt;}
.w11_c00444{width:23.032000pt;}
.wd_c00444{width:24.945600pt;}
.w19_c00444{width:792.977400pt;}
.w18_c00444{width:793.257550pt;}
.w0_c00444{width:793.333333pt;}
.x0_c00444{left:0.000000pt;}
.x1e_c00444{left:101.233093pt;}
.x1_c00444{left:114.072480pt;}
.x1f_c00444{left:149.213607pt;}
.x20_c00444{left:176.717596pt;}
.x1c_c00444{left:225.370940pt;}
.x1b_c00444{left:239.124654pt;}
.x1d_c00444{left:376.018977pt;}
.x2_c00444{left:441.443200pt;}
.x3_c00444{left:452.161600pt;}
.x4_c00444{left:473.432000pt;}
.x5_c00444{left:483.987200pt;}
.x6_c00444{left:497.740800pt;}
.x7_c00444{left:501.899200pt;}
.x8_c00444{left:512.772800pt;}
.x9_c00444{left:520.131200pt;}
.xa_c00444{left:524.768000pt;}
.xb_c00444{left:539.160000pt;}
.xc_c00444{left:548.116800pt;}
.xd_c00444{left:552.275200pt;}
.xe_c00444{left:556.275200pt;}
.xf_c00444{left:581.220800pt;}
.x10_c00444{left:588.419200pt;}
.x11_c00444{left:598.334400pt;}
.x12_c00444{left:608.089600pt;}
.x13_c00444{left:630.161600pt;}
.x14_c00444{left:634.158400pt;}
.x15_c00444{left:640.716800pt;}
.x16_c00444{left:644.876800pt;}
.x17_c00444{left:652.232000pt;}
.x18_c00444{left:659.427200pt;}
.x19_c00444{left:665.985600pt;}
.x1a_c00444{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.113000;font-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_c00445{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00445{word-spacing:0.000000px;}
._1_c00445{margin-left:-1.148271px;}
._0_c00445{width:1.102012px;}
._6_c00445{width:2.485707px;}
._e_c00445{width:3.773057px;}
._f_c00445{width:4.890445px;}
._c_c00445{width:6.137216px;}
._d_c00445{width:7.447192px;}
._a_c00445{width:11.031016px;}
._9_c00445{width:12.391889px;}
._8_c00445{width:14.196229px;}
._b_c00445{width:18.216289px;}
._3_c00445{width:30.291462px;}
._4_c00445{width:32.287176px;}
._5_c00445{width:33.391614px;}
._7_c00445{width:149.819075px;}
._2_c00445{width:199.476925px;}
.fc1_c00445{color:rgb(105,148,45);}
.fc0_c00445{color:rgb(35,31,32);}
.fs2_c00445{font-size:59.733096px;}
.fs0_c00445{font-size:66.209374px;}
.fs1_c00445{font-size:71.968771px;}
.y0_c00445{bottom:0.000000px;}
.y4_c00445{bottom:0.120938px;}
.y8_c00445{bottom:0.556171px;}
.y2_c00445{bottom:3.957898px;}
.ya_c00445{bottom:65.791352px;}
.y3_c00445{bottom:74.623320px;}
.y1_c00445{bottom:74.983320px;}
.y25_c00445{bottom:105.012287px;}
.y24_c00445{bottom:148.374719px;}
.y23_c00445{bottom:176.801358px;}
.y22_c00445{bottom:205.227996px;}
.y21_c00445{bottom:248.768929px;}
.y20_c00445{bottom:277.195568px;}
.y1f_c00445{bottom:320.556500px;}
.y1e_c00445{bottom:349.163139px;}
.y1d_c00445{bottom:377.591128px;}
.y1c_c00445{bottom:420.950710px;}
.y1b_c00445{bottom:449.375999px;}
.y1a_c00445{bottom:492.916931px;}
.y19_c00445{bottom:521.344920px;}
.y18_c00445{bottom:549.770209px;}
.y17_c00445{bottom:592.772641px;}
.y16_c00445{bottom:636.312224px;}
.y15_c00445{bottom:680.031057px;}
.y14_c00445{bottom:708.458445px;}
.y13_c00445{bottom:736.887934px;}
.y12_c00445{bottom:765.495922px;}
.y11_c00445{bottom:808.495505px;}
.y10_c00445{bottom:867.328482px;}
.yf_c00445{bottom:912.669114px;}
.ye_c00445{bottom:955.847946px;}
.yd_c00445{bottom:999.568879px;}
.yc_c00445{bottom:1042.751311px;}
.yb_c00445{bottom:1086.470894px;}
.y9_c00445{bottom:1106.080386px;}
.y7_c00445{bottom:1151.494902px;}
.y6_c00445{bottom:1172.185744px;}
.y5_c00445{bottom:1192.876585px;}
.h1_c00445{height:18.172260px;}
.h7_c00445{height:38.288915px;}
.h6_c00445{height:42.440208px;}
.h2_c00445{height:46.346561px;}
.h4_c00445{height:50.378140px;}
.ha_c00445{height:53.580587px;}
.h8_c00445{height:59.323599px;}
.h9_c00445{height:59.389808px;}
.h5_c00445{height:1262.431829px;}
.h3_c00445{height:1262.879062px;}
.h0_c00445{height:1263.000000px;}
.w17_c00445{width:2.700000px;}
.w12_c00445{width:4.676400px;}
.wc_c00445{width:4.680000px;}
.w6_c00445{width:5.038200px;}
.w16_c00445{width:6.474600px;}
.w9_c00445{width:6.476400px;}
.wf_c00445{width:7.376400px;}
.w13_c00445{width:7.378200px;}
.w15_c00445{width:8.094600px;}
.w14_c00445{width:8.274600px;}
.w7_c00445{width:8.276400px;}
.w8_c00445{width:8.278200px;}
.we_c00445{width:9.358200px;}
.wb_c00445{width:10.076400px;}
.w10_c00445{width:11.334600px;}
.w4_c00445{width:11.874600px;}
.w2_c00445{width:12.058200px;}
.wa_c00445{width:12.414600px;}
.w5_c00445{width:15.472800px;}
.w1_c00445{width:16.552980px;}
.w3_c00445{width:23.929200px;}
.w11_c00445{width:25.911000px;}
.wd_c00445{width:28.063800px;}
.w19_c00445{width:892.099575px;}
.w18_c00445{width:892.414744px;}
.w0_c00445{width:892.500000px;}
.x0_c00445{left:0.000000px;}
.x1e_c00445{left:113.887229px;}
.x1_c00445{left:128.331540px;}
.x1f_c00445{left:167.863311px;}
.x1c_c00445{left:253.542308px;}
.x1b_c00445{left:269.015236px;}
.x1d_c00445{left:423.021349px;}
.x2_c00445{left:496.623600px;}
.x3_c00445{left:508.681800px;}
.x4_c00445{left:532.611000px;}
.x5_c00445{left:544.485600px;}
.x6_c00445{left:559.958400px;}
.x7_c00445{left:564.636600px;}
.x8_c00445{left:576.869400px;}
.x9_c00445{left:585.147600px;}
.xa_c00445{left:590.364000px;}
.xb_c00445{left:606.555000px;}
.xc_c00445{left:616.631400px;}
.xd_c00445{left:621.309600px;}
.xe_c00445{left:625.809600px;}
.xf_c00445{left:653.873400px;}
.x10_c00445{left:661.971600px;}
.x11_c00445{left:673.126200px;}
.x12_c00445{left:684.100800px;}
.x13_c00445{left:708.931800px;}
.x14_c00445{left:713.428200px;}
.x15_c00445{left:720.806400px;}
.x16_c00445{left:725.486400px;}
.x17_c00445{left:733.761000px;}
.x18_c00445{left:741.855600px;}
.x19_c00445{left:749.233800px;}
.x1a_c00445{left:755.708400px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:-14.713194pt;}
.ws1_c00445{word-spacing:0.000000pt;}
._1_c00445{margin-left:-1.020685pt;}
._0_c00445{width:0.979567pt;}
._6_c00445{width:2.209518pt;}
._e_c00445{width:3.353828pt;}
._f_c00445{width:4.347062pt;}
._c_c00445{width:5.455303pt;}
._d_c00445{width:6.619726pt;}
._a_c00445{width:9.805347pt;}
._9_c00445{width:11.015013pt;}
._8_c00445{width:12.618870pt;}
._b_c00445{width:16.192257pt;}
._3_c00445{width:26.925744pt;}
._4_c00445{width:28.699712pt;}
._5_c00445{width:29.681435pt;}
._7_c00445{width:133.172511pt;}
._2_c00445{width:177.312822pt;}
.fs2_c00445{font-size:53.096085pt;}
.fs0_c00445{font-size:58.852776pt;}
.fs1_c00445{font-size:63.972241pt;}
.y0_c00445{bottom:0.000000pt;}
.y4_c00445{bottom:0.107500pt;}
.y8_c00445{bottom:0.494374pt;}
.y2_c00445{bottom:3.518132pt;}
.ya_c00445{bottom:58.481202pt;}
.y3_c00445{bottom:66.331840pt;}
.y1_c00445{bottom:66.651840pt;}
.y25_c00445{bottom:93.344255pt;}
.y24_c00445{bottom:131.888639pt;}
.y23_c00445{bottom:157.156763pt;}
.y22_c00445{bottom:182.424886pt;}
.y21_c00445{bottom:221.127937pt;}
.y20_c00445{bottom:246.396060pt;}
.y1f_c00445{bottom:284.939111pt;}
.y1e_c00445{bottom:310.367235pt;}
.y1d_c00445{bottom:335.636558pt;}
.y1c_c00445{bottom:374.178409pt;}
.y1b_c00445{bottom:399.445332pt;}
.y1a_c00445{bottom:438.148383pt;}
.y19_c00445{bottom:463.417707pt;}
.y18_c00445{bottom:488.684630pt;}
.y17_c00445{bottom:526.909015pt;}
.y16_c00445{bottom:565.610866pt;}
.y15_c00445{bottom:604.472050pt;}
.y14_c00445{bottom:629.740840pt;}
.y13_c00445{bottom:655.011497pt;}
.y12_c00445{bottom:680.440820pt;}
.y11_c00445{bottom:718.662671pt;}
.y10_c00445{bottom:770.958650pt;}
.yf_c00445{bottom:811.261434pt;}
.ye_c00445{bottom:849.642619pt;}
.yd_c00445{bottom:888.505670pt;}
.yc_c00445{bottom:926.890055pt;}
.yb_c00445{bottom:965.751906pt;}
.y9_c00445{bottom:983.182565pt;}
.y7_c00445{bottom:1023.551024pt;}
.y6_c00445{bottom:1041.942883pt;}
.y5_c00445{bottom:1060.334742pt;}
.h1_c00445{height:16.153120pt;}
.h7_c00445{height:34.034591pt;}
.h6_c00445{height:37.724630pt;}
.h2_c00445{height:41.196944pt;}
.h4_c00445{height:44.780569pt;}
.ha_c00445{height:47.627189pt;}
.h8_c00445{height:52.732088pt;}
.h9_c00445{height:52.790940pt;}
.h5_c00445{height:1122.161626pt;}
.h3_c00445{height:1122.559167pt;}
.h0_c00445{height:1122.666667pt;}
.w17_c00445{width:2.400000pt;}
.w12_c00445{width:4.156800pt;}
.wc_c00445{width:4.160000pt;}
.w6_c00445{width:4.478400pt;}
.w16_c00445{width:5.755200pt;}
.w9_c00445{width:5.756800pt;}
.wf_c00445{width:6.556800pt;}
.w13_c00445{width:6.558400pt;}
.w15_c00445{width:7.195200pt;}
.w14_c00445{width:7.355200pt;}
.w7_c00445{width:7.356800pt;}
.w8_c00445{width:7.358400pt;}
.we_c00445{width:8.318400pt;}
.wb_c00445{width:8.956800pt;}
.w10_c00445{width:10.075200pt;}
.w4_c00445{width:10.555200pt;}
.w2_c00445{width:10.718400pt;}
.wa_c00445{width:11.035200pt;}
.w5_c00445{width:13.753600pt;}
.w1_c00445{width:14.713760pt;}
.w3_c00445{width:21.270400pt;}
.w11_c00445{width:23.032000pt;}
.wd_c00445{width:24.945600pt;}
.w19_c00445{width:792.977400pt;}
.w18_c00445{width:793.257550pt;}
.w0_c00445{width:793.333333pt;}
.x0_c00445{left:0.000000pt;}
.x1e_c00445{left:101.233093pt;}
.x1_c00445{left:114.072480pt;}
.x1f_c00445{left:149.211832pt;}
.x1c_c00445{left:225.370940pt;}
.x1b_c00445{left:239.124654pt;}
.x1d_c00445{left:376.018977pt;}
.x2_c00445{left:441.443200pt;}
.x3_c00445{left:452.161600pt;}
.x4_c00445{left:473.432000pt;}
.x5_c00445{left:483.987200pt;}
.x6_c00445{left:497.740800pt;}
.x7_c00445{left:501.899200pt;}
.x8_c00445{left:512.772800pt;}
.x9_c00445{left:520.131200pt;}
.xa_c00445{left:524.768000pt;}
.xb_c00445{left:539.160000pt;}
.xc_c00445{left:548.116800pt;}
.xd_c00445{left:552.275200pt;}
.xe_c00445{left:556.275200pt;}
.xf_c00445{left:581.220800pt;}
.x10_c00445{left:588.419200pt;}
.x11_c00445{left:598.334400pt;}
.x12_c00445{left:608.089600pt;}
.x13_c00445{left:630.161600pt;}
.x14_c00445{left:634.158400pt;}
.x15_c00445{left:640.716800pt;}
.x16_c00445{left:644.876800pt;}
.x17_c00445{left:652.232000pt;}
.x18_c00445{left:659.427200pt;}
.x19_c00445{left:665.985600pt;}
.x1a_c00445{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.113000;font-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_c00446{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls0_c00446{letter-spacing:0.000000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:-16.552343px;}
.ws1_c00446{word-spacing:0.000000px;}
._2_c00446{margin-left:-1.064593px;}
._0_c00446{width:1.102012px;}
._8_c00446{width:2.440632px;}
._9_c00446{width:3.570415px;}
._d_c00446{width:5.854479px;}
._6_c00446{width:7.255993px;}
._5_c00446{width:8.281958px;}
._3_c00446{width:11.432638px;}
._1_c00446{width:12.692943px;}
._e_c00446{width:17.642025px;}
._b_c00446{width:19.751109px;}
._a_c00446{width:20.970462px;}
._c_c00446{width:133.267444px;}
._7_c00446{width:149.819075px;}
._4_c00446{width:199.476925px;}
.fc1_c00446{color:rgb(105,148,45);}
.fc0_c00446{color:rgb(35,31,32);}
.fs2_c00446{font-size:59.733096px;}
.fs0_c00446{font-size:66.209374px;}
.fs1_c00446{font-size:71.968771px;}
.y0_c00446{bottom:0.000000px;}
.y4_c00446{bottom:0.120938px;}
.y8_c00446{bottom:0.556171px;}
.y2_c00446{bottom:3.957898px;}
.ya_c00446{bottom:65.791352px;}
.y3_c00446{bottom:74.623320px;}
.y1_c00446{bottom:74.983320px;}
.y25_c00446{bottom:106.994086px;}
.y24_c00446{bottom:150.356518px;}
.y23_c00446{bottom:178.783157px;}
.y22_c00446{bottom:207.211146px;}
.y21_c00446{bottom:250.750728px;}
.y20_c00446{bottom:279.177367px;}
.y1f_c00446{bottom:322.178300px;}
.y1e_c00446{bottom:365.717132px;}
.y1d_c00446{bottom:409.436715px;}
.y1c_c00446{bottom:437.864703px;}
.y1b_c00446{bottom:466.473442px;}
.y1a_c00446{bottom:509.833025px;}
.y19_c00446{bottom:553.191257px;}
.y18_c00446{bottom:596.730090px;}
.y17_c00446{bottom:640.091023px;}
.y16_c00446{bottom:668.517661px;}
.y15_c00446{bottom:697.127750px;}
.y14_c00446{bottom:740.486582px;}
.y13_c00446{bottom:783.846165px;}
.y12_c00446{bottom:812.452804px;}
.y11_c00446{bottom:855.815236px;}
.y10_c00446{bottom:899.174819px;}
.yf_c00446{bottom:942.354402px;}
.ye_c00446{bottom:986.073234px;}
.yd_c00446{bottom:1014.501223px;}
.yc_c00446{bottom:1058.042155px;}
.yb_c00446{bottom:1086.470894px;}
.y9_c00446{bottom:1106.080386px;}
.y7_c00446{bottom:1151.494902px;}
.y6_c00446{bottom:1172.185744px;}
.y5_c00446{bottom:1192.876585px;}
.h1_c00446{height:18.172260px;}
.h7_c00446{height:38.288915px;}
.h6_c00446{height:42.440208px;}
.h2_c00446{height:46.346561px;}
.h4_c00446{height:50.378140px;}
.h8_c00446{height:59.323599px;}
.h9_c00446{height:59.389808px;}
.h5_c00446{height:1262.431829px;}
.h3_c00446{height:1262.879062px;}
.h0_c00446{height:1263.000000px;}
.w17_c00446{width:2.700000px;}
.w12_c00446{width:4.676400px;}
.wc_c00446{width:4.680000px;}
.w6_c00446{width:5.038200px;}
.w16_c00446{width:6.474600px;}
.w9_c00446{width:6.476400px;}
.wf_c00446{width:7.376400px;}
.w13_c00446{width:7.378200px;}
.w15_c00446{width:8.094600px;}
.w14_c00446{width:8.274600px;}
.w7_c00446{width:8.276400px;}
.w8_c00446{width:8.278200px;}
.we_c00446{width:9.358200px;}
.wb_c00446{width:10.076400px;}
.w10_c00446{width:11.334600px;}
.w4_c00446{width:11.874600px;}
.w2_c00446{width:12.058200px;}
.wa_c00446{width:12.414600px;}
.w5_c00446{width:15.472800px;}
.w1_c00446{width:16.552980px;}
.w3_c00446{width:23.929200px;}
.w11_c00446{width:25.911000px;}
.wd_c00446{width:28.063800px;}
.w19_c00446{width:892.099575px;}
.w18_c00446{width:892.414744px;}
.w0_c00446{width:892.500000px;}
.x0_c00446{left:0.000000px;}
.x1e_c00446{left:113.887229px;}
.x1_c00446{left:128.331540px;}
.x1f_c00446{left:167.863311px;}
.x1c_c00446{left:253.542308px;}
.x1b_c00446{left:269.015236px;}
.x1d_c00446{left:423.021349px;}
.x2_c00446{left:496.623600px;}
.x3_c00446{left:508.681800px;}
.x4_c00446{left:532.611000px;}
.x5_c00446{left:544.485600px;}
.x6_c00446{left:559.958400px;}
.x7_c00446{left:564.636600px;}
.x8_c00446{left:576.869400px;}
.x9_c00446{left:585.147600px;}
.xa_c00446{left:590.364000px;}
.xb_c00446{left:606.555000px;}
.xc_c00446{left:616.631400px;}
.xd_c00446{left:621.309600px;}
.xe_c00446{left:625.809600px;}
.xf_c00446{left:653.873400px;}
.x10_c00446{left:661.971600px;}
.x11_c00446{left:673.126200px;}
.x12_c00446{left:684.100800px;}
.x13_c00446{left:708.931800px;}
.x14_c00446{left:713.428200px;}
.x15_c00446{left:720.806400px;}
.x16_c00446{left:725.486400px;}
.x17_c00446{left:733.761000px;}
.x18_c00446{left:741.855600px;}
.x19_c00446{left:749.233800px;}
.x1a_c00446{left:755.708400px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws0_c00446{word-spacing:-14.713194pt;}
.ws1_c00446{word-spacing:0.000000pt;}
._2_c00446{margin-left:-0.946305pt;}
._0_c00446{width:0.979567pt;}
._8_c00446{width:2.169450pt;}
._9_c00446{width:3.173702pt;}
._d_c00446{width:5.203981pt;}
._6_c00446{width:6.449772pt;}
._5_c00446{width:7.361741pt;}
._3_c00446{width:10.162345pt;}
._1_c00446{width:11.282616pt;}
._e_c00446{width:15.681800pt;}
._b_c00446{width:17.556541pt;}
._a_c00446{width:18.640411pt;}
._c_c00446{width:118.459950pt;}
._7_c00446{width:133.172511pt;}
._4_c00446{width:177.312822pt;}
.fs2_c00446{font-size:53.096085pt;}
.fs0_c00446{font-size:58.852776pt;}
.fs1_c00446{font-size:63.972241pt;}
.y0_c00446{bottom:0.000000pt;}
.y4_c00446{bottom:0.107500pt;}
.y8_c00446{bottom:0.494374pt;}
.y2_c00446{bottom:3.518132pt;}
.ya_c00446{bottom:58.481202pt;}
.y3_c00446{bottom:66.331840pt;}
.y1_c00446{bottom:66.651840pt;}
.y25_c00446{bottom:95.105854pt;}
.y24_c00446{bottom:133.650239pt;}
.y23_c00446{bottom:158.918362pt;}
.y22_c00446{bottom:184.187685pt;}
.y21_c00446{bottom:222.889536pt;}
.y20_c00446{bottom:248.157659pt;}
.y1f_c00446{bottom:286.380711pt;}
.y1e_c00446{bottom:325.081895pt;}
.y1d_c00446{bottom:363.943746pt;}
.y1c_c00446{bottom:389.213070pt;}
.y1b_c00446{bottom:414.643060pt;}
.y1a_c00446{bottom:453.184911pt;}
.y19_c00446{bottom:491.725562pt;}
.y18_c00446{bottom:530.426747pt;}
.y17_c00446{bottom:568.969798pt;}
.y16_c00446{bottom:594.237921pt;}
.y15_c00446{bottom:619.669111pt;}
.y14_c00446{bottom:658.210295pt;}
.y13_c00446{bottom:696.752147pt;}
.y12_c00446{bottom:722.180270pt;}
.y11_c00446{bottom:760.724654pt;}
.y10_c00446{bottom:799.266506pt;}
.yf_c00446{bottom:837.648357pt;}
.ye_c00446{bottom:876.509541pt;}
.yd_c00446{bottom:901.778865pt;}
.yc_c00446{bottom:940.481916pt;}
.yb_c00446{bottom:965.751906pt;}
.y9_c00446{bottom:983.182565pt;}
.y7_c00446{bottom:1023.551024pt;}
.y6_c00446{bottom:1041.942883pt;}
.y5_c00446{bottom:1060.334742pt;}
.h1_c00446{height:16.153120pt;}
.h7_c00446{height:34.034591pt;}
.h6_c00446{height:37.724630pt;}
.h2_c00446{height:41.196944pt;}
.h4_c00446{height:44.780569pt;}
.h8_c00446{height:52.732088pt;}
.h9_c00446{height:52.790940pt;}
.h5_c00446{height:1122.161626pt;}
.h3_c00446{height:1122.559167pt;}
.h0_c00446{height:1122.666667pt;}
.w17_c00446{width:2.400000pt;}
.w12_c00446{width:4.156800pt;}
.wc_c00446{width:4.160000pt;}
.w6_c00446{width:4.478400pt;}
.w16_c00446{width:5.755200pt;}
.w9_c00446{width:5.756800pt;}
.wf_c00446{width:6.556800pt;}
.w13_c00446{width:6.558400pt;}
.w15_c00446{width:7.195200pt;}
.w14_c00446{width:7.355200pt;}
.w7_c00446{width:7.356800pt;}
.w8_c00446{width:7.358400pt;}
.we_c00446{width:8.318400pt;}
.wb_c00446{width:8.956800pt;}
.w10_c00446{width:10.075200pt;}
.w4_c00446{width:10.555200pt;}
.w2_c00446{width:10.718400pt;}
.wa_c00446{width:11.035200pt;}
.w5_c00446{width:13.753600pt;}
.w1_c00446{width:14.713760pt;}
.w3_c00446{width:21.270400pt;}
.w11_c00446{width:23.032000pt;}
.wd_c00446{width:24.945600pt;}
.w19_c00446{width:792.977400pt;}
.w18_c00446{width:793.257550pt;}
.w0_c00446{width:793.333333pt;}
.x0_c00446{left:0.000000pt;}
.x1e_c00446{left:101.233093pt;}
.x1_c00446{left:114.072480pt;}
.x1f_c00446{left:149.211832pt;}
.x1c_c00446{left:225.370940pt;}
.x1b_c00446{left:239.124654pt;}
.x1d_c00446{left:376.018977pt;}
.x2_c00446{left:441.443200pt;}
.x3_c00446{left:452.161600pt;}
.x4_c00446{left:473.432000pt;}
.x5_c00446{left:483.987200pt;}
.x6_c00446{left:497.740800pt;}
.x7_c00446{left:501.899200pt;}
.x8_c00446{left:512.772800pt;}
.x9_c00446{left:520.131200pt;}
.xa_c00446{left:524.768000pt;}
.xb_c00446{left:539.160000pt;}
.xc_c00446{left:548.116800pt;}
.xd_c00446{left:552.275200pt;}
.xe_c00446{left:556.275200pt;}
.xf_c00446{left:581.220800pt;}
.x10_c00446{left:588.419200pt;}
.x11_c00446{left:598.334400pt;}
.x12_c00446{left:608.089600pt;}
.x13_c00446{left:630.161600pt;}
.x14_c00446{left:634.158400pt;}
.x15_c00446{left:640.716800pt;}
.x16_c00446{left:644.876800pt;}
.x17_c00446{left:652.232000pt;}
.x18_c00446{left:659.427200pt;}
.x19_c00446{left:665.985600pt;}
.x1a_c00446{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_53c1dbc2fb3d8f56c617fe20.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.113000;font-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_c00447{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls0_c00447{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00447{word-spacing:0.000000px;}
._2_c00447{margin-left:-1.060902px;}
._0_c00447{width:1.102012px;}
._8_c00447{width:2.947490px;}
._6_c00447{width:5.949069px;}
._4_c00447{width:8.751503px;}
._3_c00447{width:9.804725px;}
._5_c00447{width:10.907929px;}
._a_c00447{width:12.116881px;}
._9_c00447{width:13.156926px;}
._d_c00447{width:14.256263px;}
._c_c00447{width:19.020780px;}
._b_c00447{width:20.358254px;}
._1_c00447{width:28.012019px;}
._7_c00447{width:199.476925px;}
.fc1_c00447{color:rgb(105,148,45);}
.fc0_c00447{color:rgb(35,31,32);}
.fs2_c00447{font-size:59.733096px;}
.fs0_c00447{font-size:66.209374px;}
.fs1_c00447{font-size:71.968771px;}
.y0_c00447{bottom:0.000000px;}
.y4_c00447{bottom:0.120938px;}
.y8_c00447{bottom:0.556171px;}
.y2_c00447{bottom:3.957898px;}
.ya_c00447{bottom:65.791352px;}
.y3_c00447{bottom:74.623320px;}
.y1_c00447{bottom:74.983320px;}
.y26_c00447{bottom:138.477873px;}
.y25_c00447{bottom:166.904512px;}
.y24_c00447{bottom:210.085445px;}
.y23_c00447{bottom:253.805027px;}
.y22_c00447{bottom:282.231666px;}
.y21_c00447{bottom:325.774098px;}
.y20_c00447{bottom:354.200737px;}
.y1f_c00447{bottom:397.561670px;}
.y1e_c00447{bottom:425.988308px;}
.y1d_c00447{bottom:469.167891px;}
.y1c_c00447{bottom:512.886723px;}
.y1b_c00447{bottom:541.316812px;}
.y1a_c00447{bottom:584.855645px;}
.y19_c00447{bottom:613.283033px;}
.y18_c00447{bottom:656.281866px;}
.y17_c00447{bottom:700.181449px;}
.y16_c00447{bottom:728.613037px;}
.y15_c00447{bottom:757.039676px;}
.y14_c00447{bottom:785.464964px;}
.y13_c00447{bottom:828.823797px;}
.y12_c00447{bottom:857.433886px;}
.y11_c00447{bottom:900.791368px;}
.y10_c00447{bottom:929.221457px;}
.yf_c00447{bottom:972.760289px;}
.ye_c00447{bottom:1001.186178px;}
.yd_c00447{bottom:1029.614167px;}
.yc_c00447{bottom:1058.042155px;}
.yb_c00447{bottom:1086.470894px;}
.y9_c00447{bottom:1106.080386px;}
.y7_c00447{bottom:1151.494902px;}
.y6_c00447{bottom:1172.185744px;}
.y5_c00447{bottom:1192.876585px;}
.h1_c00447{height:18.172260px;}
.h7_c00447{height:38.288915px;}
.h6_c00447{height:42.440208px;}
.h2_c00447{height:46.346561px;}
.h4_c00447{height:50.378140px;}
.h8_c00447{height:59.323599px;}
.h9_c00447{height:59.389808px;}
.h5_c00447{height:1262.431829px;}
.h3_c00447{height:1262.879062px;}
.h0_c00447{height:1263.000000px;}
.w17_c00447{width:2.700000px;}
.w12_c00447{width:4.676400px;}
.wc_c00447{width:4.680000px;}
.w6_c00447{width:5.038200px;}
.w16_c00447{width:6.474600px;}
.w9_c00447{width:6.476400px;}
.wf_c00447{width:7.376400px;}
.w13_c00447{width:7.378200px;}
.w15_c00447{width:8.094600px;}
.w14_c00447{width:8.274600px;}
.w7_c00447{width:8.276400px;}
.w8_c00447{width:8.278200px;}
.we_c00447{width:9.358200px;}
.wb_c00447{width:10.076400px;}
.w10_c00447{width:11.334600px;}
.w4_c00447{width:11.874600px;}
.w2_c00447{width:12.058200px;}
.wa_c00447{width:12.414600px;}
.w5_c00447{width:15.472800px;}
.w1_c00447{width:16.552980px;}
.w3_c00447{width:23.929200px;}
.w11_c00447{width:25.911000px;}
.wd_c00447{width:28.063800px;}
.w19_c00447{width:892.099575px;}
.w18_c00447{width:892.414744px;}
.w0_c00447{width:892.500000px;}
.x0_c00447{left:0.000000px;}
.x1e_c00447{left:113.887229px;}
.x1_c00447{left:128.331540px;}
.x1f_c00447{left:167.861962px;}
.x1c_c00447{left:253.542308px;}
.x1b_c00447{left:269.015236px;}
.x1d_c00447{left:423.021349px;}
.x2_c00447{left:496.623600px;}
.x3_c00447{left:508.681800px;}
.x4_c00447{left:532.611000px;}
.x5_c00447{left:544.485600px;}
.x6_c00447{left:559.958400px;}
.x7_c00447{left:564.636600px;}
.x8_c00447{left:576.869400px;}
.x9_c00447{left:585.147600px;}
.xa_c00447{left:590.364000px;}
.xb_c00447{left:606.555000px;}
.xc_c00447{left:616.631400px;}
.xd_c00447{left:621.309600px;}
.xe_c00447{left:625.809600px;}
.xf_c00447{left:653.873400px;}
.x10_c00447{left:661.971600px;}
.x11_c00447{left:673.126200px;}
.x12_c00447{left:684.100800px;}
.x13_c00447{left:708.931800px;}
.x14_c00447{left:713.428200px;}
.x15_c00447{left:720.806400px;}
.x16_c00447{left:725.486400px;}
.x17_c00447{left:733.761000px;}
.x18_c00447{left:741.855600px;}
.x19_c00447{left:749.233800px;}
.x1a_c00447{left:755.708400px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:-14.713194pt;}
.ws1_c00447{word-spacing:0.000000pt;}
._2_c00447{margin-left:-0.943024pt;}
._0_c00447{width:0.979567pt;}
._8_c00447{width:2.619991pt;}
._6_c00447{width:5.288062pt;}
._4_c00447{width:7.779114pt;}
._3_c00447{width:8.715311pt;}
._5_c00447{width:9.695937pt;}
._a_c00447{width:10.770561pt;}
._9_c00447{width:11.695045pt;}
._d_c00447{width:12.672234pt;}
._c_c00447{width:16.907360pt;}
._b_c00447{width:18.096226pt;}
._1_c00447{width:24.899573pt;}
._7_c00447{width:177.312822pt;}
.fs2_c00447{font-size:53.096085pt;}
.fs0_c00447{font-size:58.852776pt;}
.fs1_c00447{font-size:63.972241pt;}
.y0_c00447{bottom:0.000000pt;}
.y4_c00447{bottom:0.107500pt;}
.y8_c00447{bottom:0.494374pt;}
.y2_c00447{bottom:3.518132pt;}
.ya_c00447{bottom:58.481202pt;}
.y3_c00447{bottom:66.331840pt;}
.y1_c00447{bottom:66.651840pt;}
.y26_c00447{bottom:123.091443pt;}
.y25_c00447{bottom:148.359566pt;}
.y24_c00447{bottom:186.742617pt;}
.y23_c00447{bottom:225.604468pt;}
.y22_c00447{bottom:250.872592pt;}
.y21_c00447{bottom:289.576976pt;}
.y20_c00447{bottom:314.845099pt;}
.y1f_c00447{bottom:353.388151pt;}
.y1e_c00447{bottom:378.656274pt;}
.y1d_c00447{bottom:417.038125pt;}
.y1c_c00447{bottom:455.899310pt;}
.y1b_c00447{bottom:481.170500pt;}
.y1a_c00447{bottom:519.871684pt;}
.y19_c00447{bottom:545.140474pt;}
.y18_c00447{bottom:583.361659pt;}
.y17_c00447{bottom:622.383510pt;}
.y16_c00447{bottom:647.656033pt;}
.y15_c00447{bottom:672.924156pt;}
.y14_c00447{bottom:698.191079pt;}
.y13_c00447{bottom:736.732264pt;}
.y12_c00447{bottom:762.163454pt;}
.y11_c00447{bottom:800.703438pt;}
.y10_c00447{bottom:825.974628pt;}
.yf_c00447{bottom:864.675813pt;}
.ye_c00447{bottom:889.943269pt;}
.yd_c00447{bottom:915.212593pt;}
.yc_c00447{bottom:940.481916pt;}
.yb_c00447{bottom:965.751906pt;}
.y9_c00447{bottom:983.182565pt;}
.y7_c00447{bottom:1023.551024pt;}
.y6_c00447{bottom:1041.942883pt;}
.y5_c00447{bottom:1060.334742pt;}
.h1_c00447{height:16.153120pt;}
.h7_c00447{height:34.034591pt;}
.h6_c00447{height:37.724630pt;}
.h2_c00447{height:41.196944pt;}
.h4_c00447{height:44.780569pt;}
.h8_c00447{height:52.732088pt;}
.h9_c00447{height:52.790940pt;}
.h5_c00447{height:1122.161626pt;}
.h3_c00447{height:1122.559167pt;}
.h0_c00447{height:1122.666667pt;}
.w17_c00447{width:2.400000pt;}
.w12_c00447{width:4.156800pt;}
.wc_c00447{width:4.160000pt;}
.w6_c00447{width:4.478400pt;}
.w16_c00447{width:5.755200pt;}
.w9_c00447{width:5.756800pt;}
.wf_c00447{width:6.556800pt;}
.w13_c00447{width:6.558400pt;}
.w15_c00447{width:7.195200pt;}
.w14_c00447{width:7.355200pt;}
.w7_c00447{width:7.356800pt;}
.w8_c00447{width:7.358400pt;}
.we_c00447{width:8.318400pt;}
.wb_c00447{width:8.956800pt;}
.w10_c00447{width:10.075200pt;}
.w4_c00447{width:10.555200pt;}
.w2_c00447{width:10.718400pt;}
.wa_c00447{width:11.035200pt;}
.w5_c00447{width:13.753600pt;}
.w1_c00447{width:14.713760pt;}
.w3_c00447{width:21.270400pt;}
.w11_c00447{width:23.032000pt;}
.wd_c00447{width:24.945600pt;}
.w19_c00447{width:792.977400pt;}
.w18_c00447{width:793.257550pt;}
.w0_c00447{width:793.333333pt;}
.x0_c00447{left:0.000000pt;}
.x1e_c00447{left:101.233093pt;}
.x1_c00447{left:114.072480pt;}
.x1f_c00447{left:149.210633pt;}
.x1c_c00447{left:225.370940pt;}
.x1b_c00447{left:239.124654pt;}
.x1d_c00447{left:376.018977pt;}
.x2_c00447{left:441.443200pt;}
.x3_c00447{left:452.161600pt;}
.x4_c00447{left:473.432000pt;}
.x5_c00447{left:483.987200pt;}
.x6_c00447{left:497.740800pt;}
.x7_c00447{left:501.899200pt;}
.x8_c00447{left:512.772800pt;}
.x9_c00447{left:520.131200pt;}
.xa_c00447{left:524.768000pt;}
.xb_c00447{left:539.160000pt;}
.xc_c00447{left:548.116800pt;}
.xd_c00447{left:552.275200pt;}
.xe_c00447{left:556.275200pt;}
.xf_c00447{left:581.220800pt;}
.x10_c00447{left:588.419200pt;}
.x11_c00447{left:598.334400pt;}
.x12_c00447{left:608.089600pt;}
.x13_c00447{left:630.161600pt;}
.x14_c00447{left:634.158400pt;}
.x15_c00447{left:640.716800pt;}
.x16_c00447{left:644.876800pt;}
.x17_c00447{left:652.232000pt;}
.x18_c00447{left:659.427200pt;}
.x19_c00447{left:665.985600pt;}
.x1a_c00447{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:1.113000;font-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_c00448{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00448{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls0_c00448{letter-spacing:0.000000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-16.552343px;}
.ws1_c00448{word-spacing:0.000000px;}
._2_c00448{margin-left:-1.320063px;}
._0_c00448{width:1.102012px;}
._4_c00448{width:3.026811px;}
._5_c00448{width:4.426269px;}
._9_c00448{width:6.177915px;}
._8_c00448{width:7.375294px;}
._c_c00448{width:9.634217px;}
._b_c00448{width:10.635311px;}
._d_c00448{width:11.754411px;}
._3_c00448{width:18.614097px;}
._7_c00448{width:22.281629px;}
._6_c00448{width:23.557527px;}
._a_c00448{width:149.819075px;}
._1_c00448{width:199.476925px;}
.fc1_c00448{color:rgb(105,148,45);}
.fc0_c00448{color:rgb(35,31,32);}
.fs2_c00448{font-size:59.733096px;}
.fs0_c00448{font-size:66.209374px;}
.fs1_c00448{font-size:71.968771px;}
.y0_c00448{bottom:0.000000px;}
.y4_c00448{bottom:0.120938px;}
.y8_c00448{bottom:0.556171px;}
.y2_c00448{bottom:3.957898px;}
.ya_c00448{bottom:65.791352px;}
.y3_c00448{bottom:74.623320px;}
.y1_c00448{bottom:74.983320px;}
.y25_c00448{bottom:142.256522px;}
.y24_c00448{bottom:170.683160px;}
.y23_c00448{bottom:213.682743px;}
.y22_c00448{bottom:257.583076px;}
.y21_c00448{bottom:286.010464px;}
.y20_c00448{bottom:314.439953px;}
.y1f_c00448{bottom:357.439536px;}
.y1e_c00448{bottom:401.338368px;}
.y1d_c00448{bottom:429.765007px;}
.y1c_c00448{bottom:458.193745px;}
.y1b_c00448{bottom:486.619034px;}
.y1a_c00448{bottom:515.048523px;}
.y19_c00448{bottom:558.228105px;}
.y18_c00448{bottom:601.947688px;}
.y17_c00448{bottom:630.377176px;}
.y16_c00448{bottom:673.558109px;}
.y15_c00448{bottom:716.917692px;}
.y14_c00448{bottom:760.815174px;}
.y13_c00448{bottom:789.241813px;}
.y12_c00448{bottom:817.671902px;}
.y11_c00448{bottom:846.099890px;}
.y10_c00448{bottom:889.099473px;}
.yf_c00448{bottom:955.670946px;}
.ye_c00448{bottom:1001.186178px;}
.yd_c00448{bottom:1029.614167px;}
.yc_c00448{bottom:1058.042155px;}
.yb_c00448{bottom:1086.470894px;}
.y9_c00448{bottom:1106.080386px;}
.y7_c00448{bottom:1151.494902px;}
.y6_c00448{bottom:1172.185744px;}
.y5_c00448{bottom:1192.876585px;}
.h1_c00448{height:18.172260px;}
.h7_c00448{height:38.288915px;}
.h6_c00448{height:42.440208px;}
.h2_c00448{height:46.346561px;}
.h4_c00448{height:50.378140px;}
.h9_c00448{height:53.580587px;}
.h8_c00448{height:59.323599px;}
.ha_c00448{height:59.389808px;}
.h5_c00448{height:1262.431829px;}
.h3_c00448{height:1262.879062px;}
.h0_c00448{height:1263.000000px;}
.w17_c00448{width:2.700000px;}
.w12_c00448{width:4.676400px;}
.wc_c00448{width:4.680000px;}
.w6_c00448{width:5.038200px;}
.w16_c00448{width:6.474600px;}
.w9_c00448{width:6.476400px;}
.wf_c00448{width:7.376400px;}
.w13_c00448{width:7.378200px;}
.w15_c00448{width:8.094600px;}
.w14_c00448{width:8.274600px;}
.w7_c00448{width:8.276400px;}
.w8_c00448{width:8.278200px;}
.we_c00448{width:9.358200px;}
.wb_c00448{width:10.076400px;}
.w10_c00448{width:11.334600px;}
.w4_c00448{width:11.874600px;}
.w2_c00448{width:12.058200px;}
.wa_c00448{width:12.414600px;}
.w5_c00448{width:15.472800px;}
.w1_c00448{width:16.912980px;}
.w3_c00448{width:23.929200px;}
.w11_c00448{width:25.911000px;}
.wd_c00448{width:28.063800px;}
.w19_c00448{width:892.099575px;}
.w18_c00448{width:892.414744px;}
.w0_c00448{width:892.500000px;}
.x0_c00448{left:0.000000px;}
.x1e_c00448{left:113.887229px;}
.x1_c00448{left:128.331540px;}
.x1f_c00448{left:167.863311px;}
.x1c_c00448{left:253.542308px;}
.x1b_c00448{left:269.015236px;}
.x1d_c00448{left:423.021349px;}
.x2_c00448{left:496.623600px;}
.x3_c00448{left:508.681800px;}
.x4_c00448{left:532.611000px;}
.x5_c00448{left:544.485600px;}
.x6_c00448{left:559.958400px;}
.x7_c00448{left:564.636600px;}
.x8_c00448{left:576.869400px;}
.x9_c00448{left:585.147600px;}
.xa_c00448{left:590.364000px;}
.xb_c00448{left:606.555000px;}
.xc_c00448{left:616.631400px;}
.xd_c00448{left:621.309600px;}
.xe_c00448{left:625.809600px;}
.xf_c00448{left:653.873400px;}
.x10_c00448{left:661.971600px;}
.x11_c00448{left:673.126200px;}
.x12_c00448{left:684.100800px;}
.x13_c00448{left:708.931800px;}
.x14_c00448{left:713.428200px;}
.x15_c00448{left:720.806400px;}
.x16_c00448{left:725.486400px;}
.x17_c00448{left:733.761000px;}
.x18_c00448{left:741.855600px;}
.x19_c00448{left:749.233800px;}
.x1a_c00448{left:755.708400px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws0_c00448{word-spacing:-14.713194pt;}
.ws1_c00448{word-spacing:0.000000pt;}
._2_c00448{margin-left:-1.173390pt;}
._0_c00448{width:0.979567pt;}
._4_c00448{width:2.690499pt;}
._5_c00448{width:3.934461pt;}
._9_c00448{width:5.491480pt;}
._8_c00448{width:6.555817pt;}
._c_c00448{width:8.563748pt;}
._b_c00448{width:9.453609pt;}
._d_c00448{width:10.448365pt;}
._3_c00448{width:16.545864pt;}
._7_c00448{width:19.805893pt;}
._6_c00448{width:20.940024pt;}
._a_c00448{width:133.172511pt;}
._1_c00448{width:177.312822pt;}
.fs2_c00448{font-size:53.096085pt;}
.fs0_c00448{font-size:58.852776pt;}
.fs1_c00448{font-size:63.972241pt;}
.y0_c00448{bottom:0.000000pt;}
.y4_c00448{bottom:0.107500pt;}
.y8_c00448{bottom:0.494374pt;}
.y2_c00448{bottom:3.518132pt;}
.ya_c00448{bottom:58.481202pt;}
.y3_c00448{bottom:66.331840pt;}
.y1_c00448{bottom:66.651840pt;}
.y25_c00448{bottom:126.450241pt;}
.y24_c00448{bottom:151.718365pt;}
.y23_c00448{bottom:189.940216pt;}
.y22_c00448{bottom:228.962734pt;}
.y21_c00448{bottom:254.231524pt;}
.y20_c00448{bottom:279.502180pt;}
.y1f_c00448{bottom:317.724032pt;}
.y1e_c00448{bottom:356.745216pt;}
.y1d_c00448{bottom:382.013339pt;}
.y1c_c00448{bottom:407.283329pt;}
.y1b_c00448{bottom:432.550252pt;}
.y1a_c00448{bottom:457.820909pt;}
.y19_c00448{bottom:496.202760pt;}
.y18_c00448{bottom:535.064611pt;}
.y17_c00448{bottom:560.335268pt;}
.y16_c00448{bottom:598.718319pt;}
.y15_c00448{bottom:637.260170pt;}
.y14_c00448{bottom:676.280155pt;}
.y13_c00448{bottom:701.548278pt;}
.y12_c00448{bottom:726.819468pt;}
.y11_c00448{bottom:752.088791pt;}
.y10_c00448{bottom:790.310643pt;}
.yf_c00448{bottom:849.485286pt;}
.ye_c00448{bottom:889.943269pt;}
.yd_c00448{bottom:915.212593pt;}
.yc_c00448{bottom:940.481916pt;}
.yb_c00448{bottom:965.751906pt;}
.y9_c00448{bottom:983.182565pt;}
.y7_c00448{bottom:1023.551024pt;}
.y6_c00448{bottom:1041.942883pt;}
.y5_c00448{bottom:1060.334742pt;}
.h1_c00448{height:16.153120pt;}
.h7_c00448{height:34.034591pt;}
.h6_c00448{height:37.724630pt;}
.h2_c00448{height:41.196944pt;}
.h4_c00448{height:44.780569pt;}
.h9_c00448{height:47.627189pt;}
.h8_c00448{height:52.732088pt;}
.ha_c00448{height:52.790940pt;}
.h5_c00448{height:1122.161626pt;}
.h3_c00448{height:1122.559167pt;}
.h0_c00448{height:1122.666667pt;}
.w17_c00448{width:2.400000pt;}
.w12_c00448{width:4.156800pt;}
.wc_c00448{width:4.160000pt;}
.w6_c00448{width:4.478400pt;}
.w16_c00448{width:5.755200pt;}
.w9_c00448{width:5.756800pt;}
.wf_c00448{width:6.556800pt;}
.w13_c00448{width:6.558400pt;}
.w15_c00448{width:7.195200pt;}
.w14_c00448{width:7.355200pt;}
.w7_c00448{width:7.356800pt;}
.w8_c00448{width:7.358400pt;}
.we_c00448{width:8.318400pt;}
.wb_c00448{width:8.956800pt;}
.w10_c00448{width:10.075200pt;}
.w4_c00448{width:10.555200pt;}
.w2_c00448{width:10.718400pt;}
.wa_c00448{width:11.035200pt;}
.w5_c00448{width:13.753600pt;}
.w1_c00448{width:15.033760pt;}
.w3_c00448{width:21.270400pt;}
.w11_c00448{width:23.032000pt;}
.wd_c00448{width:24.945600pt;}
.w19_c00448{width:792.977400pt;}
.w18_c00448{width:793.257550pt;}
.w0_c00448{width:793.333333pt;}
.x0_c00448{left:0.000000pt;}
.x1e_c00448{left:101.233093pt;}
.x1_c00448{left:114.072480pt;}
.x1f_c00448{left:149.211832pt;}
.x1c_c00448{left:225.370940pt;}
.x1b_c00448{left:239.124654pt;}
.x1d_c00448{left:376.018977pt;}
.x2_c00448{left:441.443200pt;}
.x3_c00448{left:452.161600pt;}
.x4_c00448{left:473.432000pt;}
.x5_c00448{left:483.987200pt;}
.x6_c00448{left:497.740800pt;}
.x7_c00448{left:501.899200pt;}
.x8_c00448{left:512.772800pt;}
.x9_c00448{left:520.131200pt;}
.xa_c00448{left:524.768000pt;}
.xb_c00448{left:539.160000pt;}
.xc_c00448{left:548.116800pt;}
.xd_c00448{left:552.275200pt;}
.xe_c00448{left:556.275200pt;}
.xf_c00448{left:581.220800pt;}
.x10_c00448{left:588.419200pt;}
.x11_c00448{left:598.334400pt;}
.x12_c00448{left:608.089600pt;}
.x13_c00448{left:630.161600pt;}
.x14_c00448{left:634.158400pt;}
.x15_c00448{left:640.716800pt;}
.x16_c00448{left:644.876800pt;}
.x17_c00448{left:652.232000pt;}
.x18_c00448{left:659.427200pt;}
.x19_c00448{left:665.985600pt;}
.x1a_c00448{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00449;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:1.113000;font-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_c00449{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls0_c00449{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00449{word-spacing:0.000000px;}
._2_c00449{margin-left:-1.320063px;}
._0_c00449{width:1.102012px;}
._5_c00449{width:3.026904px;}
._7_c00449{width:5.978807px;}
._6_c00449{width:7.363509px;}
._4_c00449{width:25.264014px;}
._3_c00449{width:26.515379px;}
._1_c00449{width:199.476925px;}
.fc1_c00449{color:rgb(105,148,45);}
.fc0_c00449{color:rgb(35,31,32);}
.fs2_c00449{font-size:59.733096px;}
.fs0_c00449{font-size:66.209374px;}
.fs1_c00449{font-size:71.968771px;}
.y0_c00449{bottom:0.000000px;}
.y4_c00449{bottom:0.120938px;}
.y8_c00449{bottom:0.556171px;}
.y2_c00449{bottom:3.957898px;}
.ya_c00449{bottom:65.791352px;}
.y3_c00449{bottom:74.623320px;}
.y1_c00449{bottom:74.983320px;}
.y21_c00449{bottom:225.920338px;}
.y20_c00449{bottom:254.346977px;}
.y1f_c00449{bottom:297.887909px;}
.y1e_c00449{bottom:341.246742px;}
.y1d_c00449{bottom:384.787675px;}
.y1c_c00449{bottom:413.216413px;}
.y1b_c00449{bottom:456.575246px;}
.y1a_c00449{bottom:485.001885px;}
.y19_c00449{bottom:528.541467px;}
.y18_c00449{bottom:571.541050px;}
.y17_c00449{bottom:615.081383px;}
.y16_c00449{bottom:658.803815px;}
.y15_c00449{bottom:687.230454px;}
.y14_c00449{bottom:730.410036px;}
.y13_c00449{bottom:773.770969px;}
.y12_c00449{bottom:817.671902px;}
.y11_c00449{bottom:846.099890px;}
.y10_c00449{bottom:889.099473px;}
.yf_c00449{bottom:955.670946px;}
.ye_c00449{bottom:1001.186178px;}
.yd_c00449{bottom:1029.614167px;}
.yc_c00449{bottom:1058.042155px;}
.yb_c00449{bottom:1086.470894px;}
.y9_c00449{bottom:1106.080386px;}
.y7_c00449{bottom:1151.494902px;}
.y6_c00449{bottom:1172.185744px;}
.y5_c00449{bottom:1192.876585px;}
.h1_c00449{height:18.172260px;}
.h7_c00449{height:38.288915px;}
.h6_c00449{height:42.440208px;}
.h2_c00449{height:46.346561px;}
.h4_c00449{height:50.378140px;}
.h9_c00449{height:53.580587px;}
.h8_c00449{height:59.323599px;}
.ha_c00449{height:59.389808px;}
.h5_c00449{height:1262.431829px;}
.h3_c00449{height:1262.879062px;}
.h0_c00449{height:1263.000000px;}
.w17_c00449{width:2.700000px;}
.w12_c00449{width:4.676400px;}
.wc_c00449{width:4.680000px;}
.w6_c00449{width:5.038200px;}
.w16_c00449{width:6.474600px;}
.w9_c00449{width:6.476400px;}
.wf_c00449{width:7.376400px;}
.w13_c00449{width:7.378200px;}
.w15_c00449{width:8.094600px;}
.w14_c00449{width:8.274600px;}
.w7_c00449{width:8.276400px;}
.w8_c00449{width:8.278200px;}
.we_c00449{width:9.358200px;}
.wb_c00449{width:10.076400px;}
.w10_c00449{width:11.334600px;}
.w4_c00449{width:11.874600px;}
.w2_c00449{width:12.058200px;}
.wa_c00449{width:12.414600px;}
.w5_c00449{width:15.472800px;}
.w1_c00449{width:16.912980px;}
.w3_c00449{width:23.929200px;}
.w11_c00449{width:25.911000px;}
.wd_c00449{width:28.063800px;}
.w19_c00449{width:892.099575px;}
.w18_c00449{width:892.414744px;}
.w0_c00449{width:892.500000px;}
.x0_c00449{left:0.000000px;}
.x1e_c00449{left:113.887229px;}
.x1_c00449{left:128.331540px;}
.x1f_c00449{left:167.863311px;}
.x1c_c00449{left:253.542308px;}
.x1b_c00449{left:269.015236px;}
.x1d_c00449{left:423.021349px;}
.x2_c00449{left:496.623600px;}
.x3_c00449{left:508.681800px;}
.x4_c00449{left:532.611000px;}
.x5_c00449{left:544.485600px;}
.x6_c00449{left:559.958400px;}
.x7_c00449{left:564.636600px;}
.x8_c00449{left:576.869400px;}
.x9_c00449{left:585.147600px;}
.xa_c00449{left:590.364000px;}
.xb_c00449{left:606.555000px;}
.xc_c00449{left:616.631400px;}
.xd_c00449{left:621.309600px;}
.xe_c00449{left:625.809600px;}
.xf_c00449{left:653.873400px;}
.x10_c00449{left:661.971600px;}
.x11_c00449{left:673.126200px;}
.x12_c00449{left:684.100800px;}
.x13_c00449{left:708.931800px;}
.x14_c00449{left:713.428200px;}
.x15_c00449{left:720.806400px;}
.x16_c00449{left:725.486400px;}
.x17_c00449{left:733.761000px;}
.x18_c00449{left:741.855600px;}
.x19_c00449{left:749.233800px;}
.x1a_c00449{left:755.708400px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:-14.713194pt;}
.ws1_c00449{word-spacing:0.000000pt;}
._2_c00449{margin-left:-1.173390pt;}
._0_c00449{width:0.979567pt;}
._5_c00449{width:2.690582pt;}
._7_c00449{width:5.314495pt;}
._6_c00449{width:6.545342pt;}
._4_c00449{width:22.456901pt;}
._3_c00449{width:23.569226pt;}
._1_c00449{width:177.312822pt;}
.fs2_c00449{font-size:53.096085pt;}
.fs0_c00449{font-size:58.852776pt;}
.fs1_c00449{font-size:63.972241pt;}
.y0_c00449{bottom:0.000000pt;}
.y4_c00449{bottom:0.107500pt;}
.y8_c00449{bottom:0.494374pt;}
.y2_c00449{bottom:3.518132pt;}
.ya_c00449{bottom:58.481202pt;}
.y3_c00449{bottom:66.331840pt;}
.y1_c00449{bottom:66.651840pt;}
.y21_c00449{bottom:200.818078pt;}
.y20_c00449{bottom:226.086202pt;}
.y1f_c00449{bottom:264.789253pt;}
.y1e_c00449{bottom:303.330437pt;}
.y1d_c00449{bottom:342.033489pt;}
.y1c_c00449{bottom:367.303478pt;}
.y1b_c00449{bottom:405.844663pt;}
.y1a_c00449{bottom:431.112786pt;}
.y19_c00449{bottom:469.814637pt;}
.y18_c00449{bottom:508.036489pt;}
.y17_c00449{bottom:546.739007pt;}
.y16_c00449{bottom:585.603391pt;}
.y15_c00449{bottom:610.871514pt;}
.y14_c00449{bottom:649.253366pt;}
.y13_c00449{bottom:687.796417pt;}
.y12_c00449{bottom:726.819468pt;}
.y11_c00449{bottom:752.088791pt;}
.y10_c00449{bottom:790.310643pt;}
.yf_c00449{bottom:849.485286pt;}
.ye_c00449{bottom:889.943269pt;}
.yd_c00449{bottom:915.212593pt;}
.yc_c00449{bottom:940.481916pt;}
.yb_c00449{bottom:965.751906pt;}
.y9_c00449{bottom:983.182565pt;}
.y7_c00449{bottom:1023.551024pt;}
.y6_c00449{bottom:1041.942883pt;}
.y5_c00449{bottom:1060.334742pt;}
.h1_c00449{height:16.153120pt;}
.h7_c00449{height:34.034591pt;}
.h6_c00449{height:37.724630pt;}
.h2_c00449{height:41.196944pt;}
.h4_c00449{height:44.780569pt;}
.h9_c00449{height:47.627189pt;}
.h8_c00449{height:52.732088pt;}
.ha_c00449{height:52.790940pt;}
.h5_c00449{height:1122.161626pt;}
.h3_c00449{height:1122.559167pt;}
.h0_c00449{height:1122.666667pt;}
.w17_c00449{width:2.400000pt;}
.w12_c00449{width:4.156800pt;}
.wc_c00449{width:4.160000pt;}
.w6_c00449{width:4.478400pt;}
.w16_c00449{width:5.755200pt;}
.w9_c00449{width:5.756800pt;}
.wf_c00449{width:6.556800pt;}
.w13_c00449{width:6.558400pt;}
.w15_c00449{width:7.195200pt;}
.w14_c00449{width:7.355200pt;}
.w7_c00449{width:7.356800pt;}
.w8_c00449{width:7.358400pt;}
.we_c00449{width:8.318400pt;}
.wb_c00449{width:8.956800pt;}
.w10_c00449{width:10.075200pt;}
.w4_c00449{width:10.555200pt;}
.w2_c00449{width:10.718400pt;}
.wa_c00449{width:11.035200pt;}
.w5_c00449{width:13.753600pt;}
.w1_c00449{width:15.033760pt;}
.w3_c00449{width:21.270400pt;}
.w11_c00449{width:23.032000pt;}
.wd_c00449{width:24.945600pt;}
.w19_c00449{width:792.977400pt;}
.w18_c00449{width:793.257550pt;}
.w0_c00449{width:793.333333pt;}
.x0_c00449{left:0.000000pt;}
.x1e_c00449{left:101.233093pt;}
.x1_c00449{left:114.072480pt;}
.x1f_c00449{left:149.211832pt;}
.x1c_c00449{left:225.370940pt;}
.x1b_c00449{left:239.124654pt;}
.x1d_c00449{left:376.018977pt;}
.x2_c00449{left:441.443200pt;}
.x3_c00449{left:452.161600pt;}
.x4_c00449{left:473.432000pt;}
.x5_c00449{left:483.987200pt;}
.x6_c00449{left:497.740800pt;}
.x7_c00449{left:501.899200pt;}
.x8_c00449{left:512.772800pt;}
.x9_c00449{left:520.131200pt;}
.xa_c00449{left:524.768000pt;}
.xb_c00449{left:539.160000pt;}
.xc_c00449{left:548.116800pt;}
.xd_c00449{left:552.275200pt;}
.xe_c00449{left:556.275200pt;}
.xf_c00449{left:581.220800pt;}
.x10_c00449{left:588.419200pt;}
.x11_c00449{left:598.334400pt;}
.x12_c00449{left:608.089600pt;}
.x13_c00449{left:630.161600pt;}
.x14_c00449{left:634.158400pt;}
.x15_c00449{left:640.716800pt;}
.x16_c00449{left:644.876800pt;}
.x17_c00449{left:652.232000pt;}
.x18_c00449{left:659.427200pt;}
.x19_c00449{left:665.985600pt;}
.x1a_c00449{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.112000;font-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_c00450{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls0_c00450{letter-spacing:0.000000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:-16.552343px;}
.ws1_c00450{word-spacing:0.000000px;}
._1_c00450{margin-left:-1.328287px;}
._0_c00450{width:1.102012px;}
._3_c00450{width:2.467841px;}
._2_c00450{width:3.645056px;}
._8_c00450{width:4.865083px;}
._7_c00450{width:5.947151px;}
._6_c00450{width:7.373447px;}
._b_c00450{width:8.381564px;}
._a_c00450{width:11.499867px;}
._9_c00450{width:13.291082px;}
._d_c00450{width:14.469310px;}
._5_c00450{width:33.093049px;}
._4_c00450{width:34.662566px;}
._c_c00450{width:199.476925px;}
.fc1_c00450{color:rgb(105,148,45);}
.fc0_c00450{color:rgb(35,31,32);}
.fs2_c00450{font-size:59.733096px;}
.fs0_c00450{font-size:66.209374px;}
.fs1_c00450{font-size:71.968771px;}
.y0_c00450{bottom:0.000000px;}
.y4_c00450{bottom:0.120938px;}
.y8_c00450{bottom:0.556171px;}
.y2_c00450{bottom:3.957898px;}
.ya_c00450{bottom:65.791352px;}
.y3_c00450{bottom:74.623320px;}
.y1_c00450{bottom:74.983320px;}
.y24_c00450{bottom:166.905862px;}
.y23_c00450{bottom:195.331150px;}
.y22_c00450{bottom:223.759139px;}
.y21_c00450{bottom:252.185778px;}
.y20_c00450{bottom:295.366710px;}
.y1f_c00450{bottom:339.087643px;}
.y1e_c00450{bottom:382.267976px;}
.y1d_c00450{bottom:425.987558px;}
.y1c_c00450{bottom:454.415547px;}
.y1b_c00450{bottom:482.841435px;}
.y1a_c00450{bottom:526.381768px;}
.y19_c00450{bottom:554.807057px;}
.y18_c00450{bottom:598.169489px;}
.y17_c00450{bottom:641.709072px;}
.y16_c00450{bottom:670.134361px;}
.y15_c00450{bottom:713.496793px;}
.y14_c00450{bottom:742.104782px;}
.y13_c00450{bottom:770.531420px;}
.y12_c00450{bottom:798.958809px;}
.y11_c00450{bottom:885.861574px;}
.y10_c00450{bottom:914.286863px;}
.yf_c00450{bottom:942.713501px;}
.ye_c00450{bottom:986.073084px;}
.yd_c00450{bottom:1014.499723px;}
.yc_c00450{bottom:1043.108461px;}
.yb_c00450{bottom:1086.110894px;}
.y9_c00450{bottom:1106.080386px;}
.y7_c00450{bottom:1151.494902px;}
.y6_c00450{bottom:1172.185744px;}
.y5_c00450{bottom:1192.876585px;}
.h1_c00450{height:18.172260px;}
.h7_c00450{height:38.288915px;}
.h6_c00450{height:42.440208px;}
.h2_c00450{height:46.346561px;}
.h4_c00450{height:50.378140px;}
.h9_c00450{height:59.323599px;}
.h8_c00450{height:59.389808px;}
.h5_c00450{height:1262.431829px;}
.h3_c00450{height:1262.879062px;}
.h0_c00450{height:1263.000000px;}
.w17_c00450{width:2.700000px;}
.w12_c00450{width:4.676400px;}
.wc_c00450{width:4.680000px;}
.w6_c00450{width:5.038200px;}
.w16_c00450{width:6.474600px;}
.w9_c00450{width:6.476400px;}
.wf_c00450{width:7.376400px;}
.w13_c00450{width:7.378200px;}
.w15_c00450{width:8.094600px;}
.w14_c00450{width:8.274600px;}
.w7_c00450{width:8.276400px;}
.w8_c00450{width:8.278200px;}
.we_c00450{width:9.358200px;}
.wb_c00450{width:10.076400px;}
.w10_c00450{width:11.334600px;}
.w4_c00450{width:11.874600px;}
.w2_c00450{width:12.058200px;}
.wa_c00450{width:12.414600px;}
.w5_c00450{width:15.472800px;}
.w1_c00450{width:16.552980px;}
.w3_c00450{width:23.929200px;}
.w11_c00450{width:25.911000px;}
.wd_c00450{width:28.063800px;}
.w19_c00450{width:892.099575px;}
.w18_c00450{width:892.414744px;}
.w0_c00450{width:892.500000px;}
.x0_c00450{left:0.000000px;}
.x1e_c00450{left:113.887229px;}
.x1_c00450{left:128.331540px;}
.x1f_c00450{left:167.863311px;}
.x1c_c00450{left:253.542308px;}
.x1b_c00450{left:269.015236px;}
.x1d_c00450{left:423.021349px;}
.x2_c00450{left:496.623600px;}
.x3_c00450{left:508.681800px;}
.x4_c00450{left:532.611000px;}
.x5_c00450{left:544.485600px;}
.x6_c00450{left:559.958400px;}
.x7_c00450{left:564.636600px;}
.x8_c00450{left:576.869400px;}
.x9_c00450{left:585.147600px;}
.xa_c00450{left:590.364000px;}
.xb_c00450{left:606.555000px;}
.xc_c00450{left:616.631400px;}
.xd_c00450{left:621.309600px;}
.xe_c00450{left:625.809600px;}
.xf_c00450{left:653.873400px;}
.x10_c00450{left:661.971600px;}
.x11_c00450{left:673.126200px;}
.x12_c00450{left:684.100800px;}
.x13_c00450{left:708.931800px;}
.x14_c00450{left:713.428200px;}
.x15_c00450{left:720.806400px;}
.x16_c00450{left:725.486400px;}
.x17_c00450{left:733.761000px;}
.x18_c00450{left:741.855600px;}
.x19_c00450{left:749.233800px;}
.x1a_c00450{left:755.708400px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:-14.713194pt;}
.ws1_c00450{word-spacing:0.000000pt;}
._1_c00450{margin-left:-1.180700pt;}
._0_c00450{width:0.979567pt;}
._3_c00450{width:2.193636pt;}
._2_c00450{width:3.240050pt;}
._8_c00450{width:4.324519pt;}
._7_c00450{width:5.286357pt;}
._6_c00450{width:6.554175pt;}
._b_c00450{width:7.450279pt;}
._a_c00450{width:10.222104pt;}
._9_c00450{width:11.814295pt;}
._d_c00450{width:12.861609pt;}
._5_c00450{width:29.416044pt;}
._4_c00450{width:30.811170pt;}
._c_c00450{width:177.312822pt;}
.fs2_c00450{font-size:53.096085pt;}
.fs0_c00450{font-size:58.852776pt;}
.fs1_c00450{font-size:63.972241pt;}
.y0_c00450{bottom:0.000000pt;}
.y4_c00450{bottom:0.107500pt;}
.y8_c00450{bottom:0.494374pt;}
.y2_c00450{bottom:3.518132pt;}
.ya_c00450{bottom:58.481202pt;}
.y3_c00450{bottom:66.331840pt;}
.y1_c00450{bottom:66.651840pt;}
.y24_c00450{bottom:148.360766pt;}
.y23_c00450{bottom:173.627689pt;}
.y22_c00450{bottom:198.897013pt;}
.y21_c00450{bottom:224.165136pt;}
.y20_c00450{bottom:262.548187pt;}
.y1f_c00450{bottom:301.411238pt;}
.y1e_c00450{bottom:339.793756pt;}
.y1d_c00450{bottom:378.655607pt;}
.y1c_c00450{bottom:403.924930pt;}
.y1b_c00450{bottom:429.192387pt;}
.y1a_c00450{bottom:467.894905pt;}
.y19_c00450{bottom:493.161828pt;}
.y18_c00450{bottom:531.706213pt;}
.y17_c00450{bottom:570.408064pt;}
.y16_c00450{bottom:595.674987pt;}
.y15_c00450{bottom:634.219372pt;}
.y14_c00450{bottom:659.648695pt;}
.y13_c00450{bottom:684.916818pt;}
.y12_c00450{bottom:710.185608pt;}
.y11_c00450{bottom:787.432510pt;}
.y10_c00450{bottom:812.699434pt;}
.yf_c00450{bottom:837.967557pt;}
.ye_c00450{bottom:876.509408pt;}
.yd_c00450{bottom:901.777531pt;}
.yc_c00450{bottom:927.207521pt;}
.yb_c00450{bottom:965.431906pt;}
.y9_c00450{bottom:983.182565pt;}
.y7_c00450{bottom:1023.551024pt;}
.y6_c00450{bottom:1041.942883pt;}
.y5_c00450{bottom:1060.334742pt;}
.h1_c00450{height:16.153120pt;}
.h7_c00450{height:34.034591pt;}
.h6_c00450{height:37.724630pt;}
.h2_c00450{height:41.196944pt;}
.h4_c00450{height:44.780569pt;}
.h9_c00450{height:52.732088pt;}
.h8_c00450{height:52.790940pt;}
.h5_c00450{height:1122.161626pt;}
.h3_c00450{height:1122.559167pt;}
.h0_c00450{height:1122.666667pt;}
.w17_c00450{width:2.400000pt;}
.w12_c00450{width:4.156800pt;}
.wc_c00450{width:4.160000pt;}
.w6_c00450{width:4.478400pt;}
.w16_c00450{width:5.755200pt;}
.w9_c00450{width:5.756800pt;}
.wf_c00450{width:6.556800pt;}
.w13_c00450{width:6.558400pt;}
.w15_c00450{width:7.195200pt;}
.w14_c00450{width:7.355200pt;}
.w7_c00450{width:7.356800pt;}
.w8_c00450{width:7.358400pt;}
.we_c00450{width:8.318400pt;}
.wb_c00450{width:8.956800pt;}
.w10_c00450{width:10.075200pt;}
.w4_c00450{width:10.555200pt;}
.w2_c00450{width:10.718400pt;}
.wa_c00450{width:11.035200pt;}
.w5_c00450{width:13.753600pt;}
.w1_c00450{width:14.713760pt;}
.w3_c00450{width:21.270400pt;}
.w11_c00450{width:23.032000pt;}
.wd_c00450{width:24.945600pt;}
.w19_c00450{width:792.977400pt;}
.w18_c00450{width:793.257550pt;}
.w0_c00450{width:793.333333pt;}
.x0_c00450{left:0.000000pt;}
.x1e_c00450{left:101.233093pt;}
.x1_c00450{left:114.072480pt;}
.x1f_c00450{left:149.211832pt;}
.x1c_c00450{left:225.370940pt;}
.x1b_c00450{left:239.124654pt;}
.x1d_c00450{left:376.018977pt;}
.x2_c00450{left:441.443200pt;}
.x3_c00450{left:452.161600pt;}
.x4_c00450{left:473.432000pt;}
.x5_c00450{left:483.987200pt;}
.x6_c00450{left:497.740800pt;}
.x7_c00450{left:501.899200pt;}
.x8_c00450{left:512.772800pt;}
.x9_c00450{left:520.131200pt;}
.xa_c00450{left:524.768000pt;}
.xb_c00450{left:539.160000pt;}
.xc_c00450{left:548.116800pt;}
.xd_c00450{left:552.275200pt;}
.xe_c00450{left:556.275200pt;}
.xf_c00450{left:581.220800pt;}
.x10_c00450{left:588.419200pt;}
.x11_c00450{left:598.334400pt;}
.x12_c00450{left:608.089600pt;}
.x13_c00450{left:630.161600pt;}
.x14_c00450{left:634.158400pt;}
.x15_c00450{left:640.716800pt;}
.x16_c00450{left:644.876800pt;}
.x17_c00450{left:652.232000pt;}
.x18_c00450{left:659.427200pt;}
.x19_c00450{left:665.985600pt;}
.x1a_c00450{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00451;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.113000;font-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_c00451{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls0_c00451{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00451{word-spacing:0.000000px;}
._a_c00451{margin-left:-2.098427px;}
._3_c00451{margin-left:-1.013585px;}
._0_c00451{width:1.102012px;}
._e_c00451{width:2.191828px;}
._d_c00451{width:3.265842px;}
._c_c00451{width:4.801043px;}
._5_c00451{width:6.654979px;}
._4_c00451{width:7.871130px;}
._6_c00451{width:8.909205px;}
._12_c00451{width:9.959016px;}
._13_c00451{width:11.148801px;}
._2_c00451{width:12.599065px;}
._9_c00451{width:14.379782px;}
._b_c00451{width:15.432253px;}
._11_c00451{width:18.289041px;}
._f_c00451{width:21.134140px;}
._10_c00451{width:22.227799px;}
._14_c00451{width:23.500388px;}
._7_c00451{width:33.093957px;}
._8_c00451{width:34.503673px;}
._1_c00451{width:199.476925px;}
.fc1_c00451{color:rgb(105,148,45);}
.fc0_c00451{color:rgb(35,31,32);}
.fs2_c00451{font-size:59.733096px;}
.fs0_c00451{font-size:66.209374px;}
.fs1_c00451{font-size:71.968771px;}
.y0_c00451{bottom:0.000000px;}
.y4_c00451{bottom:0.120938px;}
.y8_c00451{bottom:0.556171px;}
.y2_c00451{bottom:3.957898px;}
.ya_c00451{bottom:65.791352px;}
.y3_c00451{bottom:74.623320px;}
.y1_c00451{bottom:74.983320px;}
.y25_c00451{bottom:256.862326px;}
.y24_c00451{bottom:285.291064px;}
.y23_c00451{bottom:313.719053px;}
.y22_c00451{bottom:342.144342px;}
.y21_c00451{bottom:385.325274px;}
.y20_c00451{bottom:429.044107px;}
.y1f_c00451{bottom:457.471496px;}
.y1e_c00451{bottom:486.080984px;}
.y1d_c00451{bottom:529.440567px;}
.y1c_c00451{bottom:557.867205px;}
.y1b_c00451{bottom:586.292494px;}
.y1a_c00451{bottom:614.721983px;}
.y19_c00451{bottom:643.149371px;}
.y18_c00451{bottom:671.756010px;}
.y17_c00451{bottom:700.182649px;}
.y16_c00451{bottom:743.543581px;}
.y15_c00451{bottom:771.971570px;}
.y14_c00451{bottom:800.400308px;}
.y13_c00451{bottom:828.823497px;}
.y12_c00451{bottom:872.365930px;}
.y11_c00451{bottom:900.791218px;}
.y10_c00451{bottom:929.221307px;}
.yf_c00451{bottom:957.646596px;}
.ye_c00451{bottom:1001.186178px;}
.yd_c00451{bottom:1029.614167px;}
.yc_c00451{bottom:1058.042155px;}
.yb_c00451{bottom:1086.470894px;}
.y9_c00451{bottom:1106.080386px;}
.y7_c00451{bottom:1151.494902px;}
.y6_c00451{bottom:1172.185744px;}
.y5_c00451{bottom:1192.876585px;}
.h1_c00451{height:18.172260px;}
.h7_c00451{height:38.288915px;}
.h6_c00451{height:42.440208px;}
.h2_c00451{height:46.346561px;}
.h4_c00451{height:50.378140px;}
.h8_c00451{height:59.323599px;}
.h9_c00451{height:59.389808px;}
.h5_c00451{height:1262.431829px;}
.h3_c00451{height:1262.879062px;}
.h0_c00451{height:1263.000000px;}
.w17_c00451{width:2.700000px;}
.w12_c00451{width:4.676400px;}
.wc_c00451{width:4.680000px;}
.w6_c00451{width:5.038200px;}
.w16_c00451{width:6.474600px;}
.w9_c00451{width:6.476400px;}
.wf_c00451{width:7.376400px;}
.w13_c00451{width:7.378200px;}
.w15_c00451{width:8.094600px;}
.w14_c00451{width:8.274600px;}
.w7_c00451{width:8.276400px;}
.w8_c00451{width:8.278200px;}
.we_c00451{width:9.358200px;}
.wb_c00451{width:10.076400px;}
.w10_c00451{width:11.334600px;}
.w4_c00451{width:11.874600px;}
.w2_c00451{width:12.058200px;}
.wa_c00451{width:12.414600px;}
.w5_c00451{width:15.472800px;}
.w1_c00451{width:16.552980px;}
.w3_c00451{width:23.929200px;}
.w11_c00451{width:25.911000px;}
.wd_c00451{width:28.063800px;}
.w19_c00451{width:892.099575px;}
.w18_c00451{width:892.414744px;}
.w0_c00451{width:892.500000px;}
.x0_c00451{left:0.000000px;}
.x1e_c00451{left:113.887229px;}
.x1_c00451{left:128.331540px;}
.x1c_c00451{left:253.542308px;}
.x1b_c00451{left:269.015236px;}
.x1d_c00451{left:423.021349px;}
.x2_c00451{left:496.623600px;}
.x3_c00451{left:508.681800px;}
.x4_c00451{left:532.611000px;}
.x5_c00451{left:544.485600px;}
.x6_c00451{left:559.958400px;}
.x7_c00451{left:564.636600px;}
.x8_c00451{left:576.869400px;}
.x9_c00451{left:585.147600px;}
.xa_c00451{left:590.364000px;}
.xb_c00451{left:606.555000px;}
.xc_c00451{left:616.631400px;}
.xd_c00451{left:621.309600px;}
.xe_c00451{left:625.809600px;}
.xf_c00451{left:653.873400px;}
.x10_c00451{left:661.971600px;}
.x11_c00451{left:673.126200px;}
.x12_c00451{left:684.100800px;}
.x13_c00451{left:708.931800px;}
.x14_c00451{left:713.428200px;}
.x15_c00451{left:720.806400px;}
.x16_c00451{left:725.486400px;}
.x17_c00451{left:733.761000px;}
.x18_c00451{left:741.855600px;}
.x19_c00451{left:749.233800px;}
.x1a_c00451{left:755.708400px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:-14.713194pt;}
.ws1_c00451{word-spacing:0.000000pt;}
._a_c00451{margin-left:-1.865269pt;}
._3_c00451{margin-left:-0.900965pt;}
._0_c00451{width:0.979567pt;}
._e_c00451{width:1.948291pt;}
._d_c00451{width:2.902971pt;}
._c_c00451{width:4.267593pt;}
._5_c00451{width:5.915537pt;}
._4_c00451{width:6.996560pt;}
._6_c00451{width:7.919293pt;}
._12_c00451{width:8.852458pt;}
._13_c00451{width:9.910046pt;}
._2_c00451{width:11.199169pt;}
._9_c00451{width:12.782028pt;}
._b_c00451{width:13.717558pt;}
._11_c00451{width:16.256925pt;}
._f_c00451{width:18.785902pt;}
._10_c00451{width:19.758043pt;}
._14_c00451{width:20.889233pt;}
._7_c00451{width:29.416850pt;}
._8_c00451{width:30.669931pt;}
._1_c00451{width:177.312822pt;}
.fs2_c00451{font-size:53.096085pt;}
.fs0_c00451{font-size:58.852776pt;}
.fs1_c00451{font-size:63.972241pt;}
.y0_c00451{bottom:0.000000pt;}
.y4_c00451{bottom:0.107500pt;}
.y8_c00451{bottom:0.494374pt;}
.y2_c00451{bottom:3.518132pt;}
.ya_c00451{bottom:58.481202pt;}
.y3_c00451{bottom:66.331840pt;}
.y1_c00451{bottom:66.651840pt;}
.y25_c00451{bottom:228.322067pt;}
.y24_c00451{bottom:253.592057pt;}
.y23_c00451{bottom:278.861381pt;}
.y22_c00451{bottom:304.128304pt;}
.y21_c00451{bottom:342.511355pt;}
.y20_c00451{bottom:381.372540pt;}
.y1f_c00451{bottom:406.641329pt;}
.y1e_c00451{bottom:432.071986pt;}
.y1d_c00451{bottom:470.613837pt;}
.y1c_c00451{bottom:495.881960pt;}
.y1b_c00451{bottom:521.148884pt;}
.y1a_c00451{bottom:546.419540pt;}
.y19_c00451{bottom:571.688330pt;}
.y18_c00451{bottom:597.116453pt;}
.y17_c00451{bottom:622.384576pt;}
.y16_c00451{bottom:660.927628pt;}
.y15_c00451{bottom:686.196951pt;}
.y14_c00451{bottom:711.466941pt;}
.y13_c00451{bottom:736.731997pt;}
.y12_c00451{bottom:775.436382pt;}
.y11_c00451{bottom:800.703305pt;}
.y10_c00451{bottom:825.974495pt;}
.yf_c00451{bottom:851.241418pt;}
.ye_c00451{bottom:889.943269pt;}
.yd_c00451{bottom:915.212593pt;}
.yc_c00451{bottom:940.481916pt;}
.yb_c00451{bottom:965.751906pt;}
.y9_c00451{bottom:983.182565pt;}
.y7_c00451{bottom:1023.551024pt;}
.y6_c00451{bottom:1041.942883pt;}
.y5_c00451{bottom:1060.334742pt;}
.h1_c00451{height:16.153120pt;}
.h7_c00451{height:34.034591pt;}
.h6_c00451{height:37.724630pt;}
.h2_c00451{height:41.196944pt;}
.h4_c00451{height:44.780569pt;}
.h8_c00451{height:52.732088pt;}
.h9_c00451{height:52.790940pt;}
.h5_c00451{height:1122.161626pt;}
.h3_c00451{height:1122.559167pt;}
.h0_c00451{height:1122.666667pt;}
.w17_c00451{width:2.400000pt;}
.w12_c00451{width:4.156800pt;}
.wc_c00451{width:4.160000pt;}
.w6_c00451{width:4.478400pt;}
.w16_c00451{width:5.755200pt;}
.w9_c00451{width:5.756800pt;}
.wf_c00451{width:6.556800pt;}
.w13_c00451{width:6.558400pt;}
.w15_c00451{width:7.195200pt;}
.w14_c00451{width:7.355200pt;}
.w7_c00451{width:7.356800pt;}
.w8_c00451{width:7.358400pt;}
.we_c00451{width:8.318400pt;}
.wb_c00451{width:8.956800pt;}
.w10_c00451{width:10.075200pt;}
.w4_c00451{width:10.555200pt;}
.w2_c00451{width:10.718400pt;}
.wa_c00451{width:11.035200pt;}
.w5_c00451{width:13.753600pt;}
.w1_c00451{width:14.713760pt;}
.w3_c00451{width:21.270400pt;}
.w11_c00451{width:23.032000pt;}
.wd_c00451{width:24.945600pt;}
.w19_c00451{width:792.977400pt;}
.w18_c00451{width:793.257550pt;}
.w0_c00451{width:793.333333pt;}
.x0_c00451{left:0.000000pt;}
.x1e_c00451{left:101.233093pt;}
.x1_c00451{left:114.072480pt;}
.x1c_c00451{left:225.370940pt;}
.x1b_c00451{left:239.124654pt;}
.x1d_c00451{left:376.018977pt;}
.x2_c00451{left:441.443200pt;}
.x3_c00451{left:452.161600pt;}
.x4_c00451{left:473.432000pt;}
.x5_c00451{left:483.987200pt;}
.x6_c00451{left:497.740800pt;}
.x7_c00451{left:501.899200pt;}
.x8_c00451{left:512.772800pt;}
.x9_c00451{left:520.131200pt;}
.xa_c00451{left:524.768000pt;}
.xb_c00451{left:539.160000pt;}
.xc_c00451{left:548.116800pt;}
.xd_c00451{left:552.275200pt;}
.xe_c00451{left:556.275200pt;}
.xf_c00451{left:581.220800pt;}
.x10_c00451{left:588.419200pt;}
.x11_c00451{left:598.334400pt;}
.x12_c00451{left:608.089600pt;}
.x13_c00451{left:630.161600pt;}
.x14_c00451{left:634.158400pt;}
.x15_c00451{left:640.716800pt;}
.x16_c00451{left:644.876800pt;}
.x17_c00451{left:652.232000pt;}
.x18_c00451{left:659.427200pt;}
.x19_c00451{left:665.985600pt;}
.x1a_c00451{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_9efdd1e948cd1bd4ed77ee70.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:0.360019;font-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_c00452{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls2_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:77.555045px;}
.ls1_c00452{letter-spacing:77.560445px;}
.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.552343px;}
.ws1_c00452{word-spacing:0.000000px;}
._3_c00452{margin-left:-1.024496px;}
._0_c00452{width:1.102012px;}
._2_c00452{width:2.648968px;}
._4_c00452{width:3.776211px;}
._8_c00452{width:4.807218px;}
._9_c00452{width:5.907772px;}
._5_c00452{width:12.271346px;}
._7_c00452{width:13.644917px;}
._a_c00452{width:15.294428px;}
._6_c00452{width:49.153335px;}
._1_c00452{width:52.862459px;}
.fc1_c00452{color:rgb(105,148,45);}
.fc0_c00452{color:rgb(35,31,32);}
.fs2_c00452{font-size:59.733096px;}
.fs0_c00452{font-size:66.209374px;}
.fs1_c00452{font-size:71.968771px;}
.y0_c00452{bottom:0.000000px;}
.y4_c00452{bottom:0.120938px;}
.y8_c00452{bottom:0.556171px;}
.y2_c00452{bottom:3.957898px;}
.ya_c00452{bottom:65.791352px;}
.y3_c00452{bottom:74.623320px;}
.y1_c00452{bottom:74.983320px;}
.y22_c00452{bottom:183.275805px;}
.y21_c00452{bottom:211.883794px;}
.y20_c00452{bottom:240.311782px;}
.y1f_c00452{bottom:283.310015px;}
.y1e_c00452{bottom:327.210948px;}
.y1d_c00452{bottom:355.637586px;}
.y1c_c00452{bottom:399.000019px;}
.y1b_c00452{bottom:427.426658px;}
.y1a_c00452{bottom:455.853296px;}
.y19_c00452{bottom:484.279935px;}
.y18_c00452{bottom:527.459518px;}
.y17_c00452{bottom:571.181950px;}
.y16_c00452{bottom:599.608589px;}
.y15_c00452{bottom:658.260515px;}
.y14_c00452{bottom:715.657242px;}
.y13_c00452{bottom:745.342530px;}
.y12_c00452{bottom:774.850519px;}
.y11_c00452{bottom:804.537157px;}
.y10_c00452{bottom:849.155989px;}
.yf_c00452{bottom:892.515572px;}
.ye_c00452{bottom:920.940860px;}
.yd_c00452{bottom:949.368849px;}
.yc_c00452{bottom:1020.977920px;}
.yb_c00452{bottom:1087.548944px;}
.y9_c00452{bottom:1106.080386px;}
.y7_c00452{bottom:1151.494902px;}
.y6_c00452{bottom:1172.185744px;}
.y5_c00452{bottom:1192.876585px;}
.h1_c00452{height:18.172260px;}
.h7_c00452{height:38.288915px;}
.h6_c00452{height:42.440208px;}
.h2_c00452{height:46.346561px;}
.h4_c00452{height:50.378140px;}
.h8_c00452{height:53.580587px;}
.ha_c00452{height:59.323599px;}
.h9_c00452{height:59.389808px;}
.h5_c00452{height:1262.431829px;}
.h3_c00452{height:1262.879062px;}
.h0_c00452{height:1263.000000px;}
.w17_c00452{width:2.700000px;}
.w12_c00452{width:4.676400px;}
.wc_c00452{width:4.680000px;}
.w6_c00452{width:5.038200px;}
.w16_c00452{width:6.474600px;}
.w9_c00452{width:6.476400px;}
.wf_c00452{width:7.376400px;}
.w13_c00452{width:7.378200px;}
.w15_c00452{width:8.094600px;}
.w14_c00452{width:8.274600px;}
.w7_c00452{width:8.276400px;}
.w8_c00452{width:8.278200px;}
.we_c00452{width:9.358200px;}
.wb_c00452{width:10.076400px;}
.w10_c00452{width:11.334600px;}
.w4_c00452{width:11.874600px;}
.w2_c00452{width:12.058200px;}
.wa_c00452{width:12.414600px;}
.w5_c00452{width:15.472800px;}
.w3_c00452{width:23.929200px;}
.w1_c00452{width:24.830820px;}
.w11_c00452{width:25.911000px;}
.wd_c00452{width:28.063800px;}
.w19_c00452{width:892.099575px;}
.w18_c00452{width:892.414744px;}
.w0_c00452{width:892.500000px;}
.x0_c00452{left:0.000000px;}
.x1e_c00452{left:113.887229px;}
.x1_c00452{left:128.331540px;}
.x1f_c00452{left:140.874619px;}
.x20_c00452{left:141.954618px;}
.x22_c00452{left:167.866803px;}
.x21_c00452{left:168.946347px;}
.x1c_c00452{left:253.542308px;}
.x1b_c00452{left:269.015236px;}
.x1d_c00452{left:423.021349px;}
.x2_c00452{left:496.623600px;}
.x3_c00452{left:508.681800px;}
.x4_c00452{left:532.611000px;}
.x5_c00452{left:544.485600px;}
.x6_c00452{left:559.958400px;}
.x7_c00452{left:564.636600px;}
.x8_c00452{left:576.869400px;}
.x9_c00452{left:585.147600px;}
.xa_c00452{left:590.364000px;}
.xb_c00452{left:606.555000px;}
.xc_c00452{left:616.631400px;}
.xd_c00452{left:621.309600px;}
.xe_c00452{left:625.809600px;}
.xf_c00452{left:653.873400px;}
.x10_c00452{left:661.971600px;}
.x11_c00452{left:673.126200px;}
.x12_c00452{left:684.100800px;}
.x13_c00452{left:708.931800px;}
.x14_c00452{left:713.428200px;}
.x15_c00452{left:720.806400px;}
.x16_c00452{left:725.486400px;}
.x17_c00452{left:733.761000px;}
.x18_c00452{left:741.855600px;}
.x19_c00452{left:749.233800px;}
.x1a_c00452{left:755.708400px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls2_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:68.937818pt;}
.ls1_c00452{letter-spacing:68.942618pt;}
.ws0_c00452{word-spacing:-14.713194pt;}
.ws1_c00452{word-spacing:0.000000pt;}
._3_c00452{margin-left:-0.910663pt;}
._0_c00452{width:0.979567pt;}
._2_c00452{width:2.354638pt;}
._4_c00452{width:3.356632pt;}
._8_c00452{width:4.273082pt;}
._9_c00452{width:5.251353pt;}
._5_c00452{width:10.907863pt;}
._7_c00452{width:12.128815pt;}
._a_c00452{width:13.595047pt;}
._6_c00452{width:43.691853pt;}
._1_c00452{width:46.988852pt;}
.fs2_c00452{font-size:53.096085pt;}
.fs0_c00452{font-size:58.852776pt;}
.fs1_c00452{font-size:63.972241pt;}
.y0_c00452{bottom:0.000000pt;}
.y4_c00452{bottom:0.107500pt;}
.y8_c00452{bottom:0.494374pt;}
.y2_c00452{bottom:3.518132pt;}
.ya_c00452{bottom:58.481202pt;}
.y3_c00452{bottom:66.331840pt;}
.y1_c00452{bottom:66.651840pt;}
.y22_c00452{bottom:162.911827pt;}
.y21_c00452{bottom:188.341150pt;}
.y20_c00452{bottom:213.610473pt;}
.y1f_c00452{bottom:251.831125pt;}
.y1e_c00452{bottom:290.854176pt;}
.y1d_c00452{bottom:316.122299pt;}
.y1c_c00452{bottom:354.666684pt;}
.y1b_c00452{bottom:379.934807pt;}
.y1a_c00452{bottom:405.202930pt;}
.y19_c00452{bottom:430.471053pt;}
.y18_c00452{bottom:468.852905pt;}
.y17_c00452{bottom:507.717289pt;}
.y16_c00452{bottom:532.985412pt;}
.y15_c00452{bottom:585.120458pt;}
.y14_c00452{bottom:636.139771pt;}
.y13_c00452{bottom:662.526694pt;}
.y12_c00452{bottom:688.756017pt;}
.y11_c00452{bottom:715.144139pt;}
.y10_c00452{bottom:754.805323pt;}
.yf_c00452{bottom:793.347175pt;}
.ye_c00452{bottom:818.614098pt;}
.yd_c00452{bottom:843.883421pt;}
.yc_c00452{bottom:907.535929pt;}
.yb_c00452{bottom:966.710172pt;}
.y9_c00452{bottom:983.182565pt;}
.y7_c00452{bottom:1023.551024pt;}
.y6_c00452{bottom:1041.942883pt;}
.y5_c00452{bottom:1060.334742pt;}
.h1_c00452{height:16.153120pt;}
.h7_c00452{height:34.034591pt;}
.h6_c00452{height:37.724630pt;}
.h2_c00452{height:41.196944pt;}
.h4_c00452{height:44.780569pt;}
.h8_c00452{height:47.627189pt;}
.ha_c00452{height:52.732088pt;}
.h9_c00452{height:52.790940pt;}
.h5_c00452{height:1122.161626pt;}
.h3_c00452{height:1122.559167pt;}
.h0_c00452{height:1122.666667pt;}
.w17_c00452{width:2.400000pt;}
.w12_c00452{width:4.156800pt;}
.wc_c00452{width:4.160000pt;}
.w6_c00452{width:4.478400pt;}
.w16_c00452{width:5.755200pt;}
.w9_c00452{width:5.756800pt;}
.wf_c00452{width:6.556800pt;}
.w13_c00452{width:6.558400pt;}
.w15_c00452{width:7.195200pt;}
.w14_c00452{width:7.355200pt;}
.w7_c00452{width:7.356800pt;}
.w8_c00452{width:7.358400pt;}
.we_c00452{width:8.318400pt;}
.wb_c00452{width:8.956800pt;}
.w10_c00452{width:10.075200pt;}
.w4_c00452{width:10.555200pt;}
.w2_c00452{width:10.718400pt;}
.wa_c00452{width:11.035200pt;}
.w5_c00452{width:13.753600pt;}
.w3_c00452{width:21.270400pt;}
.w1_c00452{width:22.071840pt;}
.w11_c00452{width:23.032000pt;}
.wd_c00452{width:24.945600pt;}
.w19_c00452{width:792.977400pt;}
.w18_c00452{width:793.257550pt;}
.w0_c00452{width:793.333333pt;}
.x0_c00452{left:0.000000pt;}
.x1e_c00452{left:101.233093pt;}
.x1_c00452{left:114.072480pt;}
.x1f_c00452{left:125.221883pt;}
.x20_c00452{left:126.181883pt;}
.x22_c00452{left:149.214936pt;}
.x21_c00452{left:150.174531pt;}
.x1c_c00452{left:225.370940pt;}
.x1b_c00452{left:239.124654pt;}
.x1d_c00452{left:376.018977pt;}
.x2_c00452{left:441.443200pt;}
.x3_c00452{left:452.161600pt;}
.x4_c00452{left:473.432000pt;}
.x5_c00452{left:483.987200pt;}
.x6_c00452{left:497.740800pt;}
.x7_c00452{left:501.899200pt;}
.x8_c00452{left:512.772800pt;}
.x9_c00452{left:520.131200pt;}
.xa_c00452{left:524.768000pt;}
.xb_c00452{left:539.160000pt;}
.xc_c00452{left:548.116800pt;}
.xd_c00452{left:552.275200pt;}
.xe_c00452{left:556.275200pt;}
.xf_c00452{left:581.220800pt;}
.x10_c00452{left:588.419200pt;}
.x11_c00452{left:598.334400pt;}
.x12_c00452{left:608.089600pt;}
.x13_c00452{left:630.161600pt;}
.x14_c00452{left:634.158400pt;}
.x15_c00452{left:640.716800pt;}
.x16_c00452{left:644.876800pt;}
.x17_c00452{left:652.232000pt;}
.x18_c00452{left:659.427200pt;}
.x19_c00452{left:665.985600pt;}
.x1a_c00452{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_b4bb1e57c1f39978d3c33c4a.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.113000;font-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_c00453{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00453{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls0_c00453{letter-spacing:0.000000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:-16.552343px;}
.ws1_c00453{word-spacing:0.000000px;}
._2_c00453{margin-left:-1.163609px;}
._0_c00453{width:1.102012px;}
._9_c00453{width:2.201955px;}
._a_c00453{width:3.247856px;}
._8_c00453{width:5.235894px;}
._b_c00453{width:6.803078px;}
._4_c00453{width:9.203085px;}
._5_c00453{width:10.268177px;}
._7_c00453{width:12.166469px;}
._6_c00453{width:13.187750px;}
._c_c00453{width:18.053263px;}
._3_c00453{width:19.411129px;}
._1_c00453{width:20.930140px;}
.fc1_c00453{color:rgb(105,148,45);}
.fc0_c00453{color:rgb(35,31,32);}
.fs2_c00453{font-size:59.733096px;}
.fs0_c00453{font-size:66.209374px;}
.fs1_c00453{font-size:71.968771px;}
.y0_c00453{bottom:0.000000px;}
.y4_c00453{bottom:0.120938px;}
.y8_c00453{bottom:0.556171px;}
.y2_c00453{bottom:3.957898px;}
.ya_c00453{bottom:65.791352px;}
.y3_c00453{bottom:74.623320px;}
.y1_c00453{bottom:74.983320px;}
.y26_c00453{bottom:123.545379px;}
.y25_c00453{bottom:151.970668px;}
.y24_c00453{bottom:195.329500px;}
.y23_c00453{bottom:238.871933px;}
.y22_c00453{bottom:282.234366px;}
.y21_c00453{bottom:310.659654px;}
.y20_c00453{bottom:353.839237px;}
.y1f_c00453{bottom:397.560170px;}
.y1e_c00453{bottom:425.988158px;}
.y1d_c00453{bottom:469.527741px;}
.y1c_c00453{bottom:497.955729px;}
.y1b_c00453{bottom:526.381018px;}
.y1a_c00453{bottom:569.741951px;}
.y19_c00453{bottom:598.169939px;}
.y18_c00453{bottom:626.775228px;}
.y17_c00453{bottom:669.777661px;}
.y16_c00453{bottom:713.498593px;}
.y15_c00453{bottom:742.105232px;}
.y14_c00453{bottom:785.466164px;}
.y13_c00453{bottom:813.891453px;}
.y12_c00453{bottom:857.433886px;}
.y11_c00453{bottom:900.791368px;}
.y10_c00453{bottom:929.221457px;}
.yf_c00453{bottom:972.760289px;}
.ye_c00453{bottom:1001.186178px;}
.yd_c00453{bottom:1029.614167px;}
.yc_c00453{bottom:1058.042155px;}
.yb_c00453{bottom:1086.470894px;}
.y9_c00453{bottom:1106.080386px;}
.y7_c00453{bottom:1151.494902px;}
.y6_c00453{bottom:1172.185744px;}
.y5_c00453{bottom:1192.876585px;}
.h1_c00453{height:18.172260px;}
.h7_c00453{height:38.288915px;}
.h6_c00453{height:42.440208px;}
.h2_c00453{height:46.346561px;}
.h4_c00453{height:50.378140px;}
.h8_c00453{height:59.323599px;}
.h9_c00453{height:59.389808px;}
.h5_c00453{height:1262.431829px;}
.h3_c00453{height:1262.879062px;}
.h0_c00453{height:1263.000000px;}
.w17_c00453{width:2.700000px;}
.w12_c00453{width:4.676400px;}
.wc_c00453{width:4.680000px;}
.w6_c00453{width:5.038200px;}
.w16_c00453{width:6.474600px;}
.w9_c00453{width:6.476400px;}
.wf_c00453{width:7.376400px;}
.w13_c00453{width:7.378200px;}
.w15_c00453{width:8.094600px;}
.w14_c00453{width:8.274600px;}
.w7_c00453{width:8.276400px;}
.w8_c00453{width:8.278200px;}
.we_c00453{width:9.358200px;}
.wb_c00453{width:10.076400px;}
.w10_c00453{width:11.334600px;}
.w4_c00453{width:11.874600px;}
.w2_c00453{width:12.058200px;}
.wa_c00453{width:12.414600px;}
.w5_c00453{width:15.472800px;}
.w3_c00453{width:23.929200px;}
.w1_c00453{width:24.830820px;}
.w11_c00453{width:25.911000px;}
.wd_c00453{width:28.063800px;}
.w19_c00453{width:892.099575px;}
.w18_c00453{width:892.414744px;}
.w0_c00453{width:892.500000px;}
.x0_c00453{left:0.000000px;}
.x1e_c00453{left:113.887229px;}
.x1_c00453{left:128.331540px;}
.x21_c00453{left:140.880061px;}
.x1f_c00453{left:141.953868px;}
.x20_c00453{left:167.867802px;}
.x24_c00453{left:220.223294px;}
.x23_c00453{left:247.211634px;}
.x1c_c00453{left:253.542308px;}
.x1b_c00453{left:269.015236px;}
.x22_c00453{left:405.539949px;}
.x1d_c00453{left:423.021349px;}
.x2_c00453{left:496.623600px;}
.x3_c00453{left:508.681800px;}
.x4_c00453{left:532.611000px;}
.x5_c00453{left:544.485600px;}
.x6_c00453{left:559.958400px;}
.x7_c00453{left:564.636600px;}
.x8_c00453{left:576.869400px;}
.x9_c00453{left:585.147600px;}
.xa_c00453{left:590.364000px;}
.xb_c00453{left:606.555000px;}
.xc_c00453{left:616.631400px;}
.xd_c00453{left:621.309600px;}
.xe_c00453{left:625.809600px;}
.xf_c00453{left:653.873400px;}
.x10_c00453{left:661.971600px;}
.x11_c00453{left:673.126200px;}
.x12_c00453{left:684.100800px;}
.x13_c00453{left:708.931800px;}
.x14_c00453{left:713.428200px;}
.x15_c00453{left:720.806400px;}
.x16_c00453{left:725.486400px;}
.x17_c00453{left:733.761000px;}
.x18_c00453{left:741.855600px;}
.x19_c00453{left:749.233800px;}
.x1a_c00453{left:755.708400px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:-14.713194pt;}
.ws1_c00453{word-spacing:0.000000pt;}
._2_c00453{margin-left:-1.034319pt;}
._0_c00453{width:0.979567pt;}
._9_c00453{width:1.957293pt;}
._a_c00453{width:2.886983pt;}
._8_c00453{width:4.654128pt;}
._b_c00453{width:6.047180pt;}
._4_c00453{width:8.180520pt;}
._5_c00453{width:9.127268pt;}
._7_c00453{width:10.814639pt;}
._6_c00453{width:11.722444pt;}
._c_c00453{width:16.047345pt;}
._3_c00453{width:17.254337pt;}
._1_c00453{width:18.604569pt;}
.fs2_c00453{font-size:53.096085pt;}
.fs0_c00453{font-size:58.852776pt;}
.fs1_c00453{font-size:63.972241pt;}
.y0_c00453{bottom:0.000000pt;}
.y4_c00453{bottom:0.107500pt;}
.y8_c00453{bottom:0.494374pt;}
.y2_c00453{bottom:3.518132pt;}
.ya_c00453{bottom:58.481202pt;}
.y3_c00453{bottom:66.331840pt;}
.y1_c00453{bottom:66.651840pt;}
.y26_c00453{bottom:109.818115pt;}
.y25_c00453{bottom:135.085038pt;}
.y24_c00453{bottom:173.626223pt;}
.y23_c00453{bottom:212.330607pt;}
.y22_c00453{bottom:250.874992pt;}
.y21_c00453{bottom:276.141915pt;}
.y20_c00453{bottom:314.523766pt;}
.y1f_c00453{bottom:353.386817pt;}
.y1e_c00453{bottom:378.656141pt;}
.y1d_c00453{bottom:417.357992pt;}
.y1c_c00453{bottom:442.627315pt;}
.y1b_c00453{bottom:467.894238pt;}
.y1a_c00453{bottom:506.437289pt;}
.y19_c00453{bottom:531.706613pt;}
.y18_c00453{bottom:557.133536pt;}
.y17_c00453{bottom:595.357921pt;}
.y16_c00453{bottom:634.220972pt;}
.y15_c00453{bottom:659.649095pt;}
.y14_c00453{bottom:698.192146pt;}
.y13_c00453{bottom:723.459069pt;}
.y12_c00453{bottom:762.163454pt;}
.y11_c00453{bottom:800.703438pt;}
.y10_c00453{bottom:825.974628pt;}
.yf_c00453{bottom:864.675813pt;}
.ye_c00453{bottom:889.943269pt;}
.yd_c00453{bottom:915.212593pt;}
.yc_c00453{bottom:940.481916pt;}
.yb_c00453{bottom:965.751906pt;}
.y9_c00453{bottom:983.182565pt;}
.y7_c00453{bottom:1023.551024pt;}
.y6_c00453{bottom:1041.942883pt;}
.y5_c00453{bottom:1060.334742pt;}
.h1_c00453{height:16.153120pt;}
.h7_c00453{height:34.034591pt;}
.h6_c00453{height:37.724630pt;}
.h2_c00453{height:41.196944pt;}
.h4_c00453{height:44.780569pt;}
.h8_c00453{height:52.732088pt;}
.h9_c00453{height:52.790940pt;}
.h5_c00453{height:1122.161626pt;}
.h3_c00453{height:1122.559167pt;}
.h0_c00453{height:1122.666667pt;}
.w17_c00453{width:2.400000pt;}
.w12_c00453{width:4.156800pt;}
.wc_c00453{width:4.160000pt;}
.w6_c00453{width:4.478400pt;}
.w16_c00453{width:5.755200pt;}
.w9_c00453{width:5.756800pt;}
.wf_c00453{width:6.556800pt;}
.w13_c00453{width:6.558400pt;}
.w15_c00453{width:7.195200pt;}
.w14_c00453{width:7.355200pt;}
.w7_c00453{width:7.356800pt;}
.w8_c00453{width:7.358400pt;}
.we_c00453{width:8.318400pt;}
.wb_c00453{width:8.956800pt;}
.w10_c00453{width:10.075200pt;}
.w4_c00453{width:10.555200pt;}
.w2_c00453{width:10.718400pt;}
.wa_c00453{width:11.035200pt;}
.w5_c00453{width:13.753600pt;}
.w3_c00453{width:21.270400pt;}
.w1_c00453{width:22.071840pt;}
.w11_c00453{width:23.032000pt;}
.wd_c00453{width:24.945600pt;}
.w19_c00453{width:792.977400pt;}
.w18_c00453{width:793.257550pt;}
.w0_c00453{width:793.333333pt;}
.x0_c00453{left:0.000000pt;}
.x1e_c00453{left:101.233093pt;}
.x1_c00453{left:114.072480pt;}
.x21_c00453{left:125.226721pt;}
.x1f_c00453{left:126.181216pt;}
.x20_c00453{left:149.215824pt;}
.x24_c00453{left:195.754039pt;}
.x23_c00453{left:219.743675pt;}
.x1c_c00453{left:225.370940pt;}
.x1b_c00453{left:239.124654pt;}
.x22_c00453{left:360.479955pt;}
.x1d_c00453{left:376.018977pt;}
.x2_c00453{left:441.443200pt;}
.x3_c00453{left:452.161600pt;}
.x4_c00453{left:473.432000pt;}
.x5_c00453{left:483.987200pt;}
.x6_c00453{left:497.740800pt;}
.x7_c00453{left:501.899200pt;}
.x8_c00453{left:512.772800pt;}
.x9_c00453{left:520.131200pt;}
.xa_c00453{left:524.768000pt;}
.xb_c00453{left:539.160000pt;}
.xc_c00453{left:548.116800pt;}
.xd_c00453{left:552.275200pt;}
.xe_c00453{left:556.275200pt;}
.xf_c00453{left:581.220800pt;}
.x10_c00453{left:588.419200pt;}
.x11_c00453{left:598.334400pt;}
.x12_c00453{left:608.089600pt;}
.x13_c00453{left:630.161600pt;}
.x14_c00453{left:634.158400pt;}
.x15_c00453{left:640.716800pt;}
.x16_c00453{left:644.876800pt;}
.x17_c00453{left:652.232000pt;}
.x18_c00453{left:659.427200pt;}
.x19_c00453{left:665.985600pt;}
.x1a_c00453{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.113000;font-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_c00454{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls0_c00454{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00454{word-spacing:0.000000px;}
._1_c00454{margin-left:-1.930256px;}
._0_c00454{width:1.102012px;}
._5_c00454{width:2.171792px;}
._4_c00454{width:3.202743px;}
._2_c00454{width:4.259994px;}
._3_c00454{width:5.315958px;}
._c_c00454{width:6.548138px;}
._9_c00454{width:8.501854px;}
._8_c00454{width:10.249884px;}
._7_c00454{width:11.676460px;}
._6_c00454{width:13.192218px;}
._b_c00454{width:26.096023px;}
._a_c00454{width:56.565919px;}
.fc1_c00454{color:rgb(105,148,45);}
.fc0_c00454{color:rgb(35,31,32);}
.fs2_c00454{font-size:59.733096px;}
.fs0_c00454{font-size:66.209374px;}
.fs1_c00454{font-size:71.968771px;}
.y0_c00454{bottom:0.000000px;}
.y4_c00454{bottom:0.120938px;}
.y8_c00454{bottom:0.556171px;}
.y2_c00454{bottom:3.957898px;}
.ya_c00454{bottom:65.791352px;}
.y3_c00454{bottom:74.623320px;}
.y1_c00454{bottom:74.983320px;}
.y26_c00454{bottom:124.985079px;}
.y25_c00454{bottom:153.410367px;}
.y24_c00454{bottom:196.949200px;}
.y23_c00454{bottom:225.379288px;}
.y22_c00454{bottom:268.738121px;}
.y21_c00454{bottom:297.165510px;}
.y20_c00454{bottom:368.774581px;}
.y1f_c00454{bottom:412.494914px;}
.y1e_c00454{bottom:441.102302px;}
.y1d_c00454{bottom:469.528941px;}
.y1c_c00454{bottom:497.956929px;}
.y1b_c00454{bottom:526.382218px;}
.y1a_c00454{bottom:569.743151px;}
.y19_c00454{bottom:598.171139px;}
.y18_c00454{bottom:626.774928px;}
.y17_c00454{bottom:655.203666px;}
.y16_c00454{bottom:698.566099px;}
.y15_c00454{bottom:741.744932px;}
.y14_c00454{bottom:785.465864px;}
.y13_c00454{bottom:813.891153px;}
.y12_c00454{bottom:842.320642px;}
.y11_c00454{bottom:870.748030px;}
.y10_c00454{bottom:914.288363px;}
.yf_c00454{bottom:942.713651px;}
.ye_c00454{bottom:986.073234px;}
.yd_c00454{bottom:1014.501223px;}
.yc_c00454{bottom:1058.042155px;}
.yb_c00454{bottom:1086.470894px;}
.y9_c00454{bottom:1106.080386px;}
.y7_c00454{bottom:1151.494902px;}
.y6_c00454{bottom:1172.185744px;}
.y5_c00454{bottom:1192.876585px;}
.h1_c00454{height:18.172260px;}
.h7_c00454{height:38.288915px;}
.h6_c00454{height:42.440208px;}
.h2_c00454{height:46.346561px;}
.h4_c00454{height:50.378140px;}
.h8_c00454{height:59.323599px;}
.h9_c00454{height:59.389808px;}
.h5_c00454{height:1262.431829px;}
.h3_c00454{height:1262.879062px;}
.h0_c00454{height:1263.000000px;}
.w17_c00454{width:2.700000px;}
.w12_c00454{width:4.676400px;}
.wc_c00454{width:4.680000px;}
.w6_c00454{width:5.038200px;}
.w16_c00454{width:6.474600px;}
.w9_c00454{width:6.476400px;}
.wf_c00454{width:7.376400px;}
.w13_c00454{width:7.378200px;}
.w15_c00454{width:8.094600px;}
.w14_c00454{width:8.274600px;}
.w7_c00454{width:8.276400px;}
.w8_c00454{width:8.278200px;}
.we_c00454{width:9.358200px;}
.wb_c00454{width:10.076400px;}
.w10_c00454{width:11.334600px;}
.w4_c00454{width:11.874600px;}
.w2_c00454{width:12.058200px;}
.wa_c00454{width:12.414600px;}
.w5_c00454{width:15.472800px;}
.w3_c00454{width:23.929200px;}
.w1_c00454{width:24.830820px;}
.w11_c00454{width:25.911000px;}
.wd_c00454{width:28.063800px;}
.w19_c00454{width:892.099575px;}
.w18_c00454{width:892.414744px;}
.w0_c00454{width:892.500000px;}
.x0_c00454{left:0.000000px;}
.x1e_c00454{left:113.887229px;}
.x1_c00454{left:128.331540px;}
.x21_c00454{left:140.876939px;}
.x22_c00454{left:167.863271px;}
.x20_c00454{left:220.225434px;}
.x1f_c00454{left:247.210776px;}
.x1c_c00454{left:253.542308px;}
.x1b_c00454{left:269.015236px;}
.x1d_c00454{left:423.021349px;}
.x2_c00454{left:496.623600px;}
.x3_c00454{left:508.681800px;}
.x4_c00454{left:532.611000px;}
.x5_c00454{left:544.485600px;}
.x6_c00454{left:559.958400px;}
.x7_c00454{left:564.636600px;}
.x8_c00454{left:576.869400px;}
.x9_c00454{left:585.147600px;}
.xa_c00454{left:590.364000px;}
.xb_c00454{left:606.555000px;}
.xc_c00454{left:616.631400px;}
.xd_c00454{left:621.309600px;}
.xe_c00454{left:625.809600px;}
.xf_c00454{left:653.873400px;}
.x10_c00454{left:661.971600px;}
.x11_c00454{left:673.126200px;}
.x12_c00454{left:684.100800px;}
.x13_c00454{left:708.931800px;}
.x14_c00454{left:713.428200px;}
.x15_c00454{left:720.806400px;}
.x16_c00454{left:725.486400px;}
.x17_c00454{left:733.761000px;}
.x18_c00454{left:741.855600px;}
.x19_c00454{left:749.233800px;}
.x1a_c00454{left:755.708400px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws0_c00454{word-spacing:-14.713194pt;}
.ws1_c00454{word-spacing:0.000000pt;}
._1_c00454{margin-left:-1.715783pt;}
._0_c00454{width:0.979567pt;}
._5_c00454{width:1.930482pt;}
._4_c00454{width:2.846882pt;}
._2_c00454{width:3.786661pt;}
._3_c00454{width:4.725296pt;}
._c_c00454{width:5.820567pt;}
._9_c00454{width:7.557203pt;}
._8_c00454{width:9.111008pt;}
._7_c00454{width:10.379075pt;}
._6_c00454{width:11.726416pt;}
._b_c00454{width:23.196465pt;}
._a_c00454{width:50.280817pt;}
.fs2_c00454{font-size:53.096085pt;}
.fs0_c00454{font-size:58.852776pt;}
.fs1_c00454{font-size:63.972241pt;}
.y0_c00454{bottom:0.000000pt;}
.y4_c00454{bottom:0.107500pt;}
.y8_c00454{bottom:0.494374pt;}
.y2_c00454{bottom:3.518132pt;}
.ya_c00454{bottom:58.481202pt;}
.y3_c00454{bottom:66.331840pt;}
.y1_c00454{bottom:66.651840pt;}
.y26_c00454{bottom:111.097848pt;}
.y25_c00454{bottom:136.364771pt;}
.y24_c00454{bottom:175.065955pt;}
.y23_c00454{bottom:200.337145pt;}
.y22_c00454{bottom:238.878330pt;}
.y21_c00454{bottom:264.147120pt;}
.y20_c00454{bottom:327.799628pt;}
.y1f_c00454{bottom:366.662145pt;}
.y1e_c00454{bottom:392.090935pt;}
.y1d_c00454{bottom:417.359058pt;}
.y1c_c00454{bottom:442.628382pt;}
.y1b_c00454{bottom:467.895305pt;}
.y1a_c00454{bottom:506.438356pt;}
.y19_c00454{bottom:531.707679pt;}
.y18_c00454{bottom:557.133269pt;}
.y17_c00454{bottom:582.403259pt;}
.y16_c00454{bottom:620.947644pt;}
.y15_c00454{bottom:659.328828pt;}
.y14_c00454{bottom:698.191879pt;}
.y13_c00454{bottom:723.458803pt;}
.y12_c00454{bottom:748.729459pt;}
.y11_c00454{bottom:773.998249pt;}
.y10_c00454{bottom:812.700767pt;}
.yf_c00454{bottom:837.967690pt;}
.ye_c00454{bottom:876.509541pt;}
.yd_c00454{bottom:901.778865pt;}
.yc_c00454{bottom:940.481916pt;}
.yb_c00454{bottom:965.751906pt;}
.y9_c00454{bottom:983.182565pt;}
.y7_c00454{bottom:1023.551024pt;}
.y6_c00454{bottom:1041.942883pt;}
.y5_c00454{bottom:1060.334742pt;}
.h1_c00454{height:16.153120pt;}
.h7_c00454{height:34.034591pt;}
.h6_c00454{height:37.724630pt;}
.h2_c00454{height:41.196944pt;}
.h4_c00454{height:44.780569pt;}
.h8_c00454{height:52.732088pt;}
.h9_c00454{height:52.790940pt;}
.h5_c00454{height:1122.161626pt;}
.h3_c00454{height:1122.559167pt;}
.h0_c00454{height:1122.666667pt;}
.w17_c00454{width:2.400000pt;}
.w12_c00454{width:4.156800pt;}
.wc_c00454{width:4.160000pt;}
.w6_c00454{width:4.478400pt;}
.w16_c00454{width:5.755200pt;}
.w9_c00454{width:5.756800pt;}
.wf_c00454{width:6.556800pt;}
.w13_c00454{width:6.558400pt;}
.w15_c00454{width:7.195200pt;}
.w14_c00454{width:7.355200pt;}
.w7_c00454{width:7.356800pt;}
.w8_c00454{width:7.358400pt;}
.we_c00454{width:8.318400pt;}
.wb_c00454{width:8.956800pt;}
.w10_c00454{width:10.075200pt;}
.w4_c00454{width:10.555200pt;}
.w2_c00454{width:10.718400pt;}
.wa_c00454{width:11.035200pt;}
.w5_c00454{width:13.753600pt;}
.w3_c00454{width:21.270400pt;}
.w1_c00454{width:22.071840pt;}
.w11_c00454{width:23.032000pt;}
.wd_c00454{width:24.945600pt;}
.w19_c00454{width:792.977400pt;}
.w18_c00454{width:793.257550pt;}
.w0_c00454{width:793.333333pt;}
.x0_c00454{left:0.000000pt;}
.x1e_c00454{left:101.233093pt;}
.x1_c00454{left:114.072480pt;}
.x21_c00454{left:125.223946pt;}
.x22_c00454{left:149.211796pt;}
.x20_c00454{left:195.755941pt;}
.x1f_c00454{left:219.742912pt;}
.x1c_c00454{left:225.370940pt;}
.x1b_c00454{left:239.124654pt;}
.x1d_c00454{left:376.018977pt;}
.x2_c00454{left:441.443200pt;}
.x3_c00454{left:452.161600pt;}
.x4_c00454{left:473.432000pt;}
.x5_c00454{left:483.987200pt;}
.x6_c00454{left:497.740800pt;}
.x7_c00454{left:501.899200pt;}
.x8_c00454{left:512.772800pt;}
.x9_c00454{left:520.131200pt;}
.xa_c00454{left:524.768000pt;}
.xb_c00454{left:539.160000pt;}
.xc_c00454{left:548.116800pt;}
.xd_c00454{left:552.275200pt;}
.xe_c00454{left:556.275200pt;}
.xf_c00454{left:581.220800pt;}
.x10_c00454{left:588.419200pt;}
.x11_c00454{left:598.334400pt;}
.x12_c00454{left:608.089600pt;}
.x13_c00454{left:630.161600pt;}
.x14_c00454{left:634.158400pt;}
.x15_c00454{left:640.716800pt;}
.x16_c00454{left:644.876800pt;}
.x17_c00454{left:652.232000pt;}
.x18_c00454{left:659.427200pt;}
.x19_c00454{left:665.985600pt;}
.x1a_c00454{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.113000;font-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_c00455{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:-16.552343px;}
.ws1_c00455{word-spacing:0.000000px;}
._2_c00455{margin-left:-1.196523px;}
._0_c00455{width:1.102012px;}
._3_c00455{width:2.897409px;}
._7_c00455{width:4.064425px;}
._6_c00455{width:5.097896px;}
._5_c00455{width:6.309078px;}
._b_c00455{width:7.671851px;}
._a_c00455{width:8.751876px;}
._1_c00455{width:10.128742px;}
._9_c00455{width:11.182109px;}
._8_c00455{width:12.683136px;}
._d_c00455{width:14.841641px;}
._4_c00455{width:21.121593px;}
._c_c00455{width:49.153335px;}
.fc1_c00455{color:rgb(105,148,45);}
.fc0_c00455{color:rgb(35,31,32);}
.fs2_c00455{font-size:59.733096px;}
.fs0_c00455{font-size:66.209374px;}
.fs1_c00455{font-size:71.968771px;}
.y0_c00455{bottom:0.000000px;}
.y4_c00455{bottom:0.120938px;}
.y8_c00455{bottom:0.556171px;}
.y2_c00455{bottom:3.957898px;}
.ya_c00455{bottom:65.791352px;}
.y3_c00455{bottom:74.623320px;}
.y1_c00455{bottom:74.983320px;}
.y26_c00455{bottom:213.503943px;}
.y25_c00455{bottom:241.930582px;}
.y24_c00455{bottom:285.291514px;}
.y23_c00455{bottom:313.718153px;}
.y22_c00455{bottom:342.144792px;}
.y21_c00455{bottom:385.685724px;}
.y20_c00455{bottom:414.112363px;}
.y1f_c00455{bottom:457.471946px;}
.y1e_c00455{bottom:486.079934px;}
.y1d_c00455{bottom:514.145223px;}
.y1c_c00455{bottom:557.869005px;}
.y1b_c00455{bottom:586.294294px;}
.y1a_c00455{bottom:629.835227px;}
.y19_c00455{bottom:658.261865px;}
.y18_c00455{bottom:686.689854px;}
.y17_c00455{bottom:715.115743px;}
.y16_c00455{bottom:743.543731px;}
.y15_c00455{bottom:787.082564px;}
.y14_c00455{bottom:815.511302px;}
.y13_c00455{bottom:843.937941px;}
.y12_c00455{bottom:872.365930px;}
.y11_c00455{bottom:900.791218px;}
.y10_c00455{bottom:929.221307px;}
.yf_c00455{bottom:957.646596px;}
.ye_c00455{bottom:1001.186178px;}
.yd_c00455{bottom:1029.614167px;}
.yc_c00455{bottom:1058.042155px;}
.yb_c00455{bottom:1086.470894px;}
.y9_c00455{bottom:1106.080386px;}
.y7_c00455{bottom:1151.494902px;}
.y6_c00455{bottom:1172.185744px;}
.y5_c00455{bottom:1192.876585px;}
.h1_c00455{height:18.172260px;}
.h7_c00455{height:38.288915px;}
.h6_c00455{height:42.440208px;}
.h2_c00455{height:46.346561px;}
.h4_c00455{height:50.378140px;}
.h8_c00455{height:59.323599px;}
.h9_c00455{height:59.389808px;}
.h5_c00455{height:1262.431829px;}
.h3_c00455{height:1262.879062px;}
.h0_c00455{height:1263.000000px;}
.w17_c00455{width:2.700000px;}
.w12_c00455{width:4.676400px;}
.wc_c00455{width:4.680000px;}
.w6_c00455{width:5.038200px;}
.w16_c00455{width:6.474600px;}
.w9_c00455{width:6.476400px;}
.wf_c00455{width:7.376400px;}
.w13_c00455{width:7.378200px;}
.w15_c00455{width:8.094600px;}
.w14_c00455{width:8.274600px;}
.w7_c00455{width:8.276400px;}
.w8_c00455{width:8.278200px;}
.we_c00455{width:9.358200px;}
.wb_c00455{width:10.076400px;}
.w10_c00455{width:11.334600px;}
.w4_c00455{width:11.874600px;}
.w2_c00455{width:12.058200px;}
.wa_c00455{width:12.414600px;}
.w5_c00455{width:15.472800px;}
.w3_c00455{width:23.929200px;}
.w1_c00455{width:24.830820px;}
.w11_c00455{width:25.911000px;}
.wd_c00455{width:28.063800px;}
.w19_c00455{width:892.099575px;}
.w18_c00455{width:892.414744px;}
.w0_c00455{width:892.500000px;}
.x0_c00455{left:0.000000px;}
.x1e_c00455{left:113.887229px;}
.x1_c00455{left:128.331540px;}
.x1f_c00455{left:140.874619px;}
.x1c_c00455{left:253.542308px;}
.x1b_c00455{left:269.015236px;}
.x1d_c00455{left:423.021349px;}
.x2_c00455{left:496.623600px;}
.x3_c00455{left:508.681800px;}
.x4_c00455{left:532.611000px;}
.x5_c00455{left:544.485600px;}
.x6_c00455{left:559.958400px;}
.x7_c00455{left:564.636600px;}
.x8_c00455{left:576.869400px;}
.x9_c00455{left:585.147600px;}
.xa_c00455{left:590.364000px;}
.xb_c00455{left:606.555000px;}
.xc_c00455{left:616.631400px;}
.xd_c00455{left:621.309600px;}
.xe_c00455{left:625.809600px;}
.xf_c00455{left:653.873400px;}
.x10_c00455{left:661.971600px;}
.x11_c00455{left:673.126200px;}
.x12_c00455{left:684.100800px;}
.x13_c00455{left:708.931800px;}
.x14_c00455{left:713.428200px;}
.x15_c00455{left:720.806400px;}
.x16_c00455{left:725.486400px;}
.x17_c00455{left:733.761000px;}
.x18_c00455{left:741.855600px;}
.x19_c00455{left:749.233800px;}
.x1a_c00455{left:755.708400px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws0_c00455{word-spacing:-14.713194pt;}
.ws1_c00455{word-spacing:0.000000pt;}
._2_c00455{margin-left:-1.063576pt;}
._0_c00455{width:0.979567pt;}
._3_c00455{width:2.575475pt;}
._7_c00455{width:3.612822pt;}
._6_c00455{width:4.531463pt;}
._5_c00455{width:5.608069pt;}
._b_c00455{width:6.819423pt;}
._a_c00455{width:7.779445pt;}
._1_c00455{width:9.003327pt;}
._9_c00455{width:9.939653pt;}
._8_c00455{width:11.273899pt;}
._d_c00455{width:13.192570pt;}
._4_c00455{width:18.774749pt;}
._c_c00455{width:43.691853pt;}
.fs2_c00455{font-size:53.096085pt;}
.fs0_c00455{font-size:58.852776pt;}
.fs1_c00455{font-size:63.972241pt;}
.y0_c00455{bottom:0.000000pt;}
.y4_c00455{bottom:0.107500pt;}
.y8_c00455{bottom:0.494374pt;}
.y2_c00455{bottom:3.518132pt;}
.ya_c00455{bottom:58.481202pt;}
.y3_c00455{bottom:66.331840pt;}
.y1_c00455{bottom:66.651840pt;}
.y26_c00455{bottom:189.781283pt;}
.y25_c00455{bottom:215.049406pt;}
.y24_c00455{bottom:253.592457pt;}
.y23_c00455{bottom:278.860581pt;}
.y22_c00455{bottom:304.128704pt;}
.y21_c00455{bottom:342.831755pt;}
.y20_c00455{bottom:368.099878pt;}
.y1f_c00455{bottom:406.641729pt;}
.y1e_c00455{bottom:432.071053pt;}
.y1d_c00455{bottom:457.017976pt;}
.y1c_c00455{bottom:495.883560pt;}
.y1b_c00455{bottom:521.150484pt;}
.y1a_c00455{bottom:559.853535pt;}
.y19_c00455{bottom:585.121658pt;}
.y18_c00455{bottom:610.390981pt;}
.y17_c00455{bottom:635.658438pt;}
.y16_c00455{bottom:660.927761pt;}
.y15_c00455{bottom:699.628946pt;}
.y14_c00455{bottom:724.898935pt;}
.y13_c00455{bottom:750.167059pt;}
.y12_c00455{bottom:775.436382pt;}
.y11_c00455{bottom:800.703305pt;}
.y10_c00455{bottom:825.974495pt;}
.yf_c00455{bottom:851.241418pt;}
.ye_c00455{bottom:889.943269pt;}
.yd_c00455{bottom:915.212593pt;}
.yc_c00455{bottom:940.481916pt;}
.yb_c00455{bottom:965.751906pt;}
.y9_c00455{bottom:983.182565pt;}
.y7_c00455{bottom:1023.551024pt;}
.y6_c00455{bottom:1041.942883pt;}
.y5_c00455{bottom:1060.334742pt;}
.h1_c00455{height:16.153120pt;}
.h7_c00455{height:34.034591pt;}
.h6_c00455{height:37.724630pt;}
.h2_c00455{height:41.196944pt;}
.h4_c00455{height:44.780569pt;}
.h8_c00455{height:52.732088pt;}
.h9_c00455{height:52.790940pt;}
.h5_c00455{height:1122.161626pt;}
.h3_c00455{height:1122.559167pt;}
.h0_c00455{height:1122.666667pt;}
.w17_c00455{width:2.400000pt;}
.w12_c00455{width:4.156800pt;}
.wc_c00455{width:4.160000pt;}
.w6_c00455{width:4.478400pt;}
.w16_c00455{width:5.755200pt;}
.w9_c00455{width:5.756800pt;}
.wf_c00455{width:6.556800pt;}
.w13_c00455{width:6.558400pt;}
.w15_c00455{width:7.195200pt;}
.w14_c00455{width:7.355200pt;}
.w7_c00455{width:7.356800pt;}
.w8_c00455{width:7.358400pt;}
.we_c00455{width:8.318400pt;}
.wb_c00455{width:8.956800pt;}
.w10_c00455{width:10.075200pt;}
.w4_c00455{width:10.555200pt;}
.w2_c00455{width:10.718400pt;}
.wa_c00455{width:11.035200pt;}
.w5_c00455{width:13.753600pt;}
.w3_c00455{width:21.270400pt;}
.w1_c00455{width:22.071840pt;}
.w11_c00455{width:23.032000pt;}
.wd_c00455{width:24.945600pt;}
.w19_c00455{width:792.977400pt;}
.w18_c00455{width:793.257550pt;}
.w0_c00455{width:793.333333pt;}
.x0_c00455{left:0.000000pt;}
.x1e_c00455{left:101.233093pt;}
.x1_c00455{left:114.072480pt;}
.x1f_c00455{left:125.221883pt;}
.x1c_c00455{left:225.370940pt;}
.x1b_c00455{left:239.124654pt;}
.x1d_c00455{left:376.018977pt;}
.x2_c00455{left:441.443200pt;}
.x3_c00455{left:452.161600pt;}
.x4_c00455{left:473.432000pt;}
.x5_c00455{left:483.987200pt;}
.x6_c00455{left:497.740800pt;}
.x7_c00455{left:501.899200pt;}
.x8_c00455{left:512.772800pt;}
.x9_c00455{left:520.131200pt;}
.xa_c00455{left:524.768000pt;}
.xb_c00455{left:539.160000pt;}
.xc_c00455{left:548.116800pt;}
.xd_c00455{left:552.275200pt;}
.xe_c00455{left:556.275200pt;}
.xf_c00455{left:581.220800pt;}
.x10_c00455{left:588.419200pt;}
.x11_c00455{left:598.334400pt;}
.x12_c00455{left:608.089600pt;}
.x13_c00455{left:630.161600pt;}
.x14_c00455{left:634.158400pt;}
.x15_c00455{left:640.716800pt;}
.x16_c00455{left:644.876800pt;}
.x17_c00455{left:652.232000pt;}
.x18_c00455{left:659.427200pt;}
.x19_c00455{left:665.985600pt;}
.x1a_c00455{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:1.112000;font-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_c00456{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:-16.552343px;}
.ws1_c00456{word-spacing:0.000000px;}
._3_c00456{margin-left:-1.512005px;}
._0_c00456{width:1.102012px;}
._2_c00456{width:2.997144px;}
._7_c00456{width:4.019174px;}
._e_c00456{width:5.195223px;}
._d_c00456{width:6.247069px;}
._b_c00456{width:8.996976px;}
._a_c00456{width:10.148486px;}
._4_c00456{width:14.446242px;}
._5_c00456{width:15.531244px;}
._c_c00456{width:17.635193px;}
._9_c00456{width:21.434054px;}
._8_c00456{width:22.668981px;}
._6_c00456{width:49.150885px;}
._1_c00456{width:52.862459px;}
.fc1_c00456{color:rgb(105,148,45);}
.fc0_c00456{color:rgb(35,31,32);}
.fs2_c00456{font-size:59.733096px;}
.fs0_c00456{font-size:66.209374px;}
.fs1_c00456{font-size:71.968771px;}
.y0_c00456{bottom:0.000000px;}
.y4_c00456{bottom:0.120938px;}
.y8_c00456{bottom:0.556171px;}
.y2_c00456{bottom:3.957898px;}
.ya_c00456{bottom:65.791352px;}
.y3_c00456{bottom:74.623320px;}
.y1_c00456{bottom:74.983320px;}
.y20_c00456{bottom:233.476135px;}
.y1f_c00456{bottom:261.902774px;}
.y1e_c00456{bottom:290.329412px;}
.y1d_c00456{bottom:318.936051px;}
.y1c_c00456{bottom:362.295634px;}
.y1b_c00456{bottom:390.723622px;}
.y1a_c00456{bottom:440.019753px;}
.y19_c00456{bottom:483.560085px;}
.y18_c00456{bottom:511.988824px;}
.y17_c00456{bottom:555.527656px;}
.y16_c00456{bottom:583.956395px;}
.y15_c00456{bottom:612.383034px;}
.y14_c00456{bottom:661.680514px;}
.y13_c00456{bottom:705.219346px;}
.y12_c00456{bottom:733.828085px;}
.y11_c00456{bottom:805.257156px;}
.y10_c00456{bottom:849.155989px;}
.yf_c00456{bottom:892.515572px;}
.ye_c00456{bottom:920.940860px;}
.yd_c00456{bottom:949.368849px;}
.yc_c00456{bottom:1020.977920px;}
.yb_c00456{bottom:1087.548944px;}
.y9_c00456{bottom:1106.080386px;}
.y7_c00456{bottom:1151.494902px;}
.y6_c00456{bottom:1172.185744px;}
.y5_c00456{bottom:1192.876585px;}
.h1_c00456{height:18.172260px;}
.h7_c00456{height:38.288915px;}
.h6_c00456{height:42.440208px;}
.h2_c00456{height:46.346561px;}
.h4_c00456{height:50.378140px;}
.h8_c00456{height:53.580587px;}
.ha_c00456{height:59.323599px;}
.h9_c00456{height:59.389808px;}
.h5_c00456{height:1262.431829px;}
.h3_c00456{height:1262.879062px;}
.h0_c00456{height:1263.000000px;}
.w17_c00456{width:2.700000px;}
.w12_c00456{width:4.676400px;}
.wc_c00456{width:4.680000px;}
.w6_c00456{width:5.038200px;}
.w16_c00456{width:6.474600px;}
.w9_c00456{width:6.476400px;}
.wf_c00456{width:7.376400px;}
.w13_c00456{width:7.378200px;}
.w15_c00456{width:8.094600px;}
.w14_c00456{width:8.274600px;}
.w7_c00456{width:8.276400px;}
.w8_c00456{width:8.278200px;}
.we_c00456{width:9.358200px;}
.wb_c00456{width:10.076400px;}
.w10_c00456{width:11.334600px;}
.w4_c00456{width:11.874600px;}
.w2_c00456{width:12.058200px;}
.wa_c00456{width:12.414600px;}
.w5_c00456{width:15.472800px;}
.w3_c00456{width:23.929200px;}
.w1_c00456{width:24.830820px;}
.w11_c00456{width:25.911000px;}
.wd_c00456{width:28.063800px;}
.w19_c00456{width:892.099575px;}
.w18_c00456{width:892.414744px;}
.w0_c00456{width:892.500000px;}
.x0_c00456{left:0.000000px;}
.x1e_c00456{left:113.887229px;}
.x1_c00456{left:128.331540px;}
.x1f_c00456{left:140.874619px;}
.x20_c00456{left:181.356425px;}
.x1c_c00456{left:253.542308px;}
.x1b_c00456{left:269.015236px;}
.x1d_c00456{left:423.021349px;}
.x2_c00456{left:496.623600px;}
.x3_c00456{left:508.681800px;}
.x4_c00456{left:532.611000px;}
.x5_c00456{left:544.485600px;}
.x6_c00456{left:559.958400px;}
.x7_c00456{left:564.636600px;}
.x8_c00456{left:576.869400px;}
.x9_c00456{left:585.147600px;}
.xa_c00456{left:590.364000px;}
.xb_c00456{left:606.555000px;}
.xc_c00456{left:616.631400px;}
.xd_c00456{left:621.309600px;}
.xe_c00456{left:625.809600px;}
.xf_c00456{left:653.873400px;}
.x10_c00456{left:661.971600px;}
.x11_c00456{left:673.126200px;}
.x12_c00456{left:684.100800px;}
.x13_c00456{left:708.931800px;}
.x14_c00456{left:713.428200px;}
.x15_c00456{left:720.806400px;}
.x16_c00456{left:725.486400px;}
.x17_c00456{left:733.761000px;}
.x18_c00456{left:741.855600px;}
.x19_c00456{left:749.233800px;}
.x1a_c00456{left:755.708400px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:-14.713194pt;}
.ws1_c00456{word-spacing:0.000000pt;}
._3_c00456{margin-left:-1.344004pt;}
._0_c00456{width:0.979567pt;}
._2_c00456{width:2.664128pt;}
._7_c00456{width:3.572599pt;}
._e_c00456{width:4.617976pt;}
._d_c00456{width:5.552950pt;}
._b_c00456{width:7.997312pt;}
._a_c00456{width:9.020877pt;}
._4_c00456{width:12.841104pt;}
._5_c00456{width:13.805550pt;}
._c_c00456{width:15.675727pt;}
._9_c00456{width:19.052492pt;}
._8_c00456{width:20.150205pt;}
._6_c00456{width:43.689676pt;}
._1_c00456{width:46.988852pt;}
.fs2_c00456{font-size:53.096085pt;}
.fs0_c00456{font-size:58.852776pt;}
.fs1_c00456{font-size:63.972241pt;}
.y0_c00456{bottom:0.000000pt;}
.y4_c00456{bottom:0.107500pt;}
.y8_c00456{bottom:0.494374pt;}
.y2_c00456{bottom:3.518132pt;}
.ya_c00456{bottom:58.481202pt;}
.y3_c00456{bottom:66.331840pt;}
.y1_c00456{bottom:66.651840pt;}
.y20_c00456{bottom:207.534342pt;}
.y1f_c00456{bottom:232.802466pt;}
.y1e_c00456{bottom:258.070589pt;}
.y1d_c00456{bottom:283.498712pt;}
.y1c_c00456{bottom:322.040563pt;}
.y1b_c00456{bottom:347.309886pt;}
.y1a_c00456{bottom:391.128669pt;}
.y19_c00456{bottom:429.831187pt;}
.y18_c00456{bottom:455.101177pt;}
.y17_c00456{bottom:493.802361pt;}
.y16_c00456{bottom:519.072351pt;}
.y15_c00456{bottom:544.340474pt;}
.y14_c00456{bottom:588.160457pt;}
.y13_c00456{bottom:626.861641pt;}
.y12_c00456{bottom:652.291631pt;}
.y11_c00456{bottom:715.784139pt;}
.y10_c00456{bottom:754.805323pt;}
.yf_c00456{bottom:793.347175pt;}
.ye_c00456{bottom:818.614098pt;}
.yd_c00456{bottom:843.883421pt;}
.yc_c00456{bottom:907.535929pt;}
.yb_c00456{bottom:966.710172pt;}
.y9_c00456{bottom:983.182565pt;}
.y7_c00456{bottom:1023.551024pt;}
.y6_c00456{bottom:1041.942883pt;}
.y5_c00456{bottom:1060.334742pt;}
.h1_c00456{height:16.153120pt;}
.h7_c00456{height:34.034591pt;}
.h6_c00456{height:37.724630pt;}
.h2_c00456{height:41.196944pt;}
.h4_c00456{height:44.780569pt;}
.h8_c00456{height:47.627189pt;}
.ha_c00456{height:52.732088pt;}
.h9_c00456{height:52.790940pt;}
.h5_c00456{height:1122.161626pt;}
.h3_c00456{height:1122.559167pt;}
.h0_c00456{height:1122.666667pt;}
.w17_c00456{width:2.400000pt;}
.w12_c00456{width:4.156800pt;}
.wc_c00456{width:4.160000pt;}
.w6_c00456{width:4.478400pt;}
.w16_c00456{width:5.755200pt;}
.w9_c00456{width:5.756800pt;}
.wf_c00456{width:6.556800pt;}
.w13_c00456{width:6.558400pt;}
.w15_c00456{width:7.195200pt;}
.w14_c00456{width:7.355200pt;}
.w7_c00456{width:7.356800pt;}
.w8_c00456{width:7.358400pt;}
.we_c00456{width:8.318400pt;}
.wb_c00456{width:8.956800pt;}
.w10_c00456{width:10.075200pt;}
.w4_c00456{width:10.555200pt;}
.w2_c00456{width:10.718400pt;}
.wa_c00456{width:11.035200pt;}
.w5_c00456{width:13.753600pt;}
.w3_c00456{width:21.270400pt;}
.w1_c00456{width:22.071840pt;}
.w11_c00456{width:23.032000pt;}
.wd_c00456{width:24.945600pt;}
.w19_c00456{width:792.977400pt;}
.w18_c00456{width:793.257550pt;}
.w0_c00456{width:793.333333pt;}
.x0_c00456{left:0.000000pt;}
.x1e_c00456{left:101.233093pt;}
.x1_c00456{left:114.072480pt;}
.x1f_c00456{left:125.221883pt;}
.x20_c00456{left:161.205711pt;}
.x1c_c00456{left:225.370940pt;}
.x1b_c00456{left:239.124654pt;}
.x1d_c00456{left:376.018977pt;}
.x2_c00456{left:441.443200pt;}
.x3_c00456{left:452.161600pt;}
.x4_c00456{left:473.432000pt;}
.x5_c00456{left:483.987200pt;}
.x6_c00456{left:497.740800pt;}
.x7_c00456{left:501.899200pt;}
.x8_c00456{left:512.772800pt;}
.x9_c00456{left:520.131200pt;}
.xa_c00456{left:524.768000pt;}
.xb_c00456{left:539.160000pt;}
.xc_c00456{left:548.116800pt;}
.xd_c00456{left:552.275200pt;}
.xe_c00456{left:556.275200pt;}
.xf_c00456{left:581.220800pt;}
.x10_c00456{left:588.419200pt;}
.x11_c00456{left:598.334400pt;}
.x12_c00456{left:608.089600pt;}
.x13_c00456{left:630.161600pt;}
.x14_c00456{left:634.158400pt;}
.x15_c00456{left:640.716800pt;}
.x16_c00456{left:644.876800pt;}
.x17_c00456{left:652.232000pt;}
.x18_c00456{left:659.427200pt;}
.x19_c00456{left:665.985600pt;}
.x1a_c00456{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00457;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.112000;font-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_c00457{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls0_c00457{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00457{word-spacing:0.000000px;}
._a_c00457{margin-left:-2.109942px;}
._2_c00457{margin-left:-1.008353px;}
._0_c00457{width:1.102012px;}
._4_c00457{width:2.592292px;}
._3_c00457{width:3.656680px;}
._c_c00457{width:4.732156px;}
._7_c00457{width:5.739322px;}
._9_c00457{width:7.390131px;}
._b_c00457{width:14.157829px;}
._8_c00457{width:15.280001px;}
._6_c00457{width:27.198911px;}
._5_c00457{width:28.387227px;}
._1_c00457{width:56.568368px;}
.fc1_c00457{color:rgb(105,148,45);}
.fc0_c00457{color:rgb(35,31,32);}
.fs2_c00457{font-size:59.733096px;}
.fs0_c00457{font-size:66.209374px;}
.fs1_c00457{font-size:71.968771px;}
.y0_c00457{bottom:0.000000px;}
.y4_c00457{bottom:0.120938px;}
.y8_c00457{bottom:0.556171px;}
.y2_c00457{bottom:3.957898px;}
.ya_c00457{bottom:65.791352px;}
.y3_c00457{bottom:74.623320px;}
.y1_c00457{bottom:74.983320px;}
.y24_c00457{bottom:169.962561px;}
.y23_c00457{bottom:198.389199px;}
.y22_c00457{bottom:241.751632px;}
.y21_c00457{bottom:270.178271px;}
.y20_c00457{bottom:313.717853px;}
.y1f_c00457{bottom:342.144492px;}
.y1e_c00457{bottom:385.505424px;}
.y1d_c00457{bottom:414.110713px;}
.y1c_c00457{bottom:463.229543px;}
.y1b_c00457{bottom:506.949876px;}
.y1a_c00457{bottom:535.378614px;}
.y19_c00457{bottom:563.803903px;}
.y18_c00457{bottom:592.230542px;}
.y17_c00457{bottom:635.772974px;}
.y16_c00457{bottom:664.200963px;}
.y15_c00457{bottom:692.627602px;}
.y14_c00457{bottom:735.987184px;}
.y13_c00457{bottom:764.412473px;}
.y12_c00457{bottom:792.842561px;}
.y11_c00457{bottom:836.381394px;}
.y10_c00457{bottom:864.810133px;}
.yf_c00457{bottom:893.236771px;}
.ye_c00457{bottom:942.533502px;}
.yd_c00457{bottom:986.073084px;}
.yc_c00457{bottom:1014.499723px;}
.yb_c00457{bottom:1086.110894px;}
.y9_c00457{bottom:1106.080386px;}
.y7_c00457{bottom:1151.494902px;}
.y6_c00457{bottom:1172.185744px;}
.y5_c00457{bottom:1192.876585px;}
.h1_c00457{height:18.172260px;}
.h7_c00457{height:38.288915px;}
.h6_c00457{height:42.440208px;}
.h2_c00457{height:46.346561px;}
.h4_c00457{height:50.378140px;}
.h9_c00457{height:59.323599px;}
.h8_c00457{height:59.389808px;}
.h5_c00457{height:1262.431829px;}
.h3_c00457{height:1262.879062px;}
.h0_c00457{height:1263.000000px;}
.w17_c00457{width:2.700000px;}
.w12_c00457{width:4.676400px;}
.wc_c00457{width:4.680000px;}
.w6_c00457{width:5.038200px;}
.w16_c00457{width:6.474600px;}
.w9_c00457{width:6.476400px;}
.wf_c00457{width:7.376400px;}
.w13_c00457{width:7.378200px;}
.w15_c00457{width:8.094600px;}
.w14_c00457{width:8.274600px;}
.w7_c00457{width:8.276400px;}
.w8_c00457{width:8.278200px;}
.we_c00457{width:9.358200px;}
.wb_c00457{width:10.076400px;}
.w10_c00457{width:11.334600px;}
.w4_c00457{width:11.874600px;}
.w2_c00457{width:12.058200px;}
.wa_c00457{width:12.414600px;}
.w5_c00457{width:15.472800px;}
.w3_c00457{width:23.929200px;}
.w1_c00457{width:24.830820px;}
.w11_c00457{width:25.911000px;}
.wd_c00457{width:28.063800px;}
.w19_c00457{width:892.099575px;}
.w18_c00457{width:892.414744px;}
.w0_c00457{width:892.500000px;}
.x0_c00457{left:0.000000px;}
.x1e_c00457{left:113.887229px;}
.x1_c00457{left:128.331540px;}
.x1f_c00457{left:140.874619px;}
.x20_c00457{left:181.353771px;}
.x1c_c00457{left:253.542308px;}
.x1b_c00457{left:269.015236px;}
.x1d_c00457{left:423.021349px;}
.x2_c00457{left:496.623600px;}
.x3_c00457{left:508.681800px;}
.x4_c00457{left:532.611000px;}
.x5_c00457{left:544.485600px;}
.x6_c00457{left:559.958400px;}
.x7_c00457{left:564.636600px;}
.x8_c00457{left:576.869400px;}
.x9_c00457{left:585.147600px;}
.xa_c00457{left:590.364000px;}
.xb_c00457{left:606.555000px;}
.xc_c00457{left:616.631400px;}
.xd_c00457{left:621.309600px;}
.xe_c00457{left:625.809600px;}
.xf_c00457{left:653.873400px;}
.x10_c00457{left:661.971600px;}
.x11_c00457{left:673.126200px;}
.x12_c00457{left:684.100800px;}
.x13_c00457{left:708.931800px;}
.x14_c00457{left:713.428200px;}
.x15_c00457{left:720.806400px;}
.x16_c00457{left:725.486400px;}
.x17_c00457{left:733.761000px;}
.x18_c00457{left:741.855600px;}
.x19_c00457{left:749.233800px;}
.x1a_c00457{left:755.708400px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:-14.713194pt;}
.ws1_c00457{word-spacing:0.000000pt;}
._a_c00457{margin-left:-1.875504pt;}
._2_c00457{margin-left:-0.896313pt;}
._0_c00457{width:0.979567pt;}
._4_c00457{width:2.304259pt;}
._3_c00457{width:3.250382pt;}
._c_c00457{width:4.206361pt;}
._7_c00457{width:5.101620pt;}
._9_c00457{width:6.569005pt;}
._b_c00457{width:12.584737pt;}
._8_c00457{width:13.582223pt;}
._6_c00457{width:24.176809pt;}
._5_c00457{width:25.233091pt;}
._1_c00457{width:50.282994pt;}
.fs2_c00457{font-size:53.096085pt;}
.fs0_c00457{font-size:58.852776pt;}
.fs1_c00457{font-size:63.972241pt;}
.y0_c00457{bottom:0.000000pt;}
.y4_c00457{bottom:0.107500pt;}
.y8_c00457{bottom:0.494374pt;}
.y2_c00457{bottom:3.518132pt;}
.ya_c00457{bottom:58.481202pt;}
.y3_c00457{bottom:66.331840pt;}
.y1_c00457{bottom:66.651840pt;}
.y24_c00457{bottom:151.077832pt;}
.y23_c00457{bottom:176.345955pt;}
.y22_c00457{bottom:214.890339pt;}
.y21_c00457{bottom:240.158463pt;}
.y20_c00457{bottom:278.860314pt;}
.y1f_c00457{bottom:304.128437pt;}
.y1e_c00457{bottom:342.671488pt;}
.y1d_c00457{bottom:368.098411pt;}
.y1c_c00457{bottom:411.759594pt;}
.y1b_c00457{bottom:450.622112pt;}
.y1a_c00457{bottom:475.892102pt;}
.y19_c00457{bottom:501.159025pt;}
.y18_c00457{bottom:526.427148pt;}
.y17_c00457{bottom:565.131533pt;}
.y16_c00457{bottom:590.400856pt;}
.y15_c00457{bottom:615.668979pt;}
.y14_c00457{bottom:654.210830pt;}
.y13_c00457{bottom:679.477754pt;}
.y12_c00457{bottom:704.748944pt;}
.y11_c00457{bottom:743.450128pt;}
.y10_c00457{bottom:768.720118pt;}
.yf_c00457{bottom:793.988241pt;}
.ye_c00457{bottom:837.807557pt;}
.yd_c00457{bottom:876.509408pt;}
.yc_c00457{bottom:901.777531pt;}
.yb_c00457{bottom:965.431906pt;}
.y9_c00457{bottom:983.182565pt;}
.y7_c00457{bottom:1023.551024pt;}
.y6_c00457{bottom:1041.942883pt;}
.y5_c00457{bottom:1060.334742pt;}
.h1_c00457{height:16.153120pt;}
.h7_c00457{height:34.034591pt;}
.h6_c00457{height:37.724630pt;}
.h2_c00457{height:41.196944pt;}
.h4_c00457{height:44.780569pt;}
.h9_c00457{height:52.732088pt;}
.h8_c00457{height:52.790940pt;}
.h5_c00457{height:1122.161626pt;}
.h3_c00457{height:1122.559167pt;}
.h0_c00457{height:1122.666667pt;}
.w17_c00457{width:2.400000pt;}
.w12_c00457{width:4.156800pt;}
.wc_c00457{width:4.160000pt;}
.w6_c00457{width:4.478400pt;}
.w16_c00457{width:5.755200pt;}
.w9_c00457{width:5.756800pt;}
.wf_c00457{width:6.556800pt;}
.w13_c00457{width:6.558400pt;}
.w15_c00457{width:7.195200pt;}
.w14_c00457{width:7.355200pt;}
.w7_c00457{width:7.356800pt;}
.w8_c00457{width:7.358400pt;}
.we_c00457{width:8.318400pt;}
.wb_c00457{width:8.956800pt;}
.w10_c00457{width:10.075200pt;}
.w4_c00457{width:10.555200pt;}
.w2_c00457{width:10.718400pt;}
.wa_c00457{width:11.035200pt;}
.w5_c00457{width:13.753600pt;}
.w3_c00457{width:21.270400pt;}
.w1_c00457{width:22.071840pt;}
.w11_c00457{width:23.032000pt;}
.wd_c00457{width:24.945600pt;}
.w19_c00457{width:792.977400pt;}
.w18_c00457{width:793.257550pt;}
.w0_c00457{width:793.333333pt;}
.x0_c00457{left:0.000000pt;}
.x1e_c00457{left:101.233093pt;}
.x1_c00457{left:114.072480pt;}
.x1f_c00457{left:125.221883pt;}
.x20_c00457{left:161.203352pt;}
.x1c_c00457{left:225.370940pt;}
.x1b_c00457{left:239.124654pt;}
.x1d_c00457{left:376.018977pt;}
.x2_c00457{left:441.443200pt;}
.x3_c00457{left:452.161600pt;}
.x4_c00457{left:473.432000pt;}
.x5_c00457{left:483.987200pt;}
.x6_c00457{left:497.740800pt;}
.x7_c00457{left:501.899200pt;}
.x8_c00457{left:512.772800pt;}
.x9_c00457{left:520.131200pt;}
.xa_c00457{left:524.768000pt;}
.xb_c00457{left:539.160000pt;}
.xc_c00457{left:548.116800pt;}
.xd_c00457{left:552.275200pt;}
.xe_c00457{left:556.275200pt;}
.xf_c00457{left:581.220800pt;}
.x10_c00457{left:588.419200pt;}
.x11_c00457{left:598.334400pt;}
.x12_c00457{left:608.089600pt;}
.x13_c00457{left:630.161600pt;}
.x14_c00457{left:634.158400pt;}
.x15_c00457{left:640.716800pt;}
.x16_c00457{left:644.876800pt;}
.x17_c00457{left:652.232000pt;}
.x18_c00457{left:659.427200pt;}
.x19_c00457{left:665.985600pt;}
.x1a_c00457{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:1.112000;font-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_c00458{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls0_c00458{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00458{word-spacing:0.000000px;}
._1_c00458{margin-left:-1.092955px;}
._0_c00458{width:1.102012px;}
._3_c00458{width:2.753923px;}
._2_c00458{width:3.772924px;}
._4_c00458{width:5.221170px;}
._c_c00458{width:9.054581px;}
._6_c00458{width:10.270282px;}
._5_c00458{width:11.719817px;}
._b_c00458{width:14.630904px;}
._9_c00458{width:39.658045px;}
._8_c00458{width:41.311840px;}
._7_c00458{width:49.153335px;}
._a_c00458{width:199.476925px;}
.fc1_c00458{color:rgb(105,148,45);}
.fc0_c00458{color:rgb(35,31,32);}
.fs2_c00458{font-size:59.733096px;}
.fs0_c00458{font-size:66.209374px;}
.fs1_c00458{font-size:71.968771px;}
.y0_c00458{bottom:0.000000px;}
.y4_c00458{bottom:0.120938px;}
.y8_c00458{bottom:0.556171px;}
.y2_c00458{bottom:3.957898px;}
.ya_c00458{bottom:65.791352px;}
.y3_c00458{bottom:74.623320px;}
.y1_c00458{bottom:74.983320px;}
.y25_c00458{bottom:103.934237px;}
.y24_c00458{bottom:147.473820px;}
.y23_c00458{bottom:175.900458px;}
.y22_c00458{bottom:204.328447px;}
.y21_c00458{bottom:247.329380px;}
.y20_c00458{bottom:291.228962px;}
.y1f_c00458{bottom:319.655601px;}
.y1e_c00458{bottom:348.082239px;}
.y1d_c00458{bottom:376.510228px;}
.y1c_c00458{bottom:419.511161px;}
.y1b_c00458{bottom:486.261434px;}
.y1a_c00458{bottom:503.353627px;}
.y19_c00458{bottom:548.870809px;}
.y18_c00458{bottom:577.298198px;}
.y17_c00458{bottom:605.723486px;}
.y16_c00458{bottom:649.083819px;}
.y15_c00458{bottom:677.513908px;}
.y14_c00458{bottom:749.120129px;}
.y13_c00458{bottom:792.841061px;}
.y12_c00458{bottom:821.447700px;}
.y11_c00458{bottom:864.808033px;}
.y10_c00458{bottom:893.236771px;}
.yf_c00458{bottom:936.774254px;}
.ye_c00458{bottom:965.201642px;}
.yd_c00458{bottom:993.631131px;}
.yc_c00458{bottom:1036.992064px;}
.yb_c00458{bottom:1086.290894px;}
.y9_c00458{bottom:1106.080386px;}
.y7_c00458{bottom:1151.494902px;}
.y6_c00458{bottom:1172.185744px;}
.y5_c00458{bottom:1192.876585px;}
.h1_c00458{height:18.172260px;}
.h7_c00458{height:38.288915px;}
.h6_c00458{height:42.440208px;}
.h2_c00458{height:46.346561px;}
.h4_c00458{height:50.378140px;}
.ha_c00458{height:53.580587px;}
.h9_c00458{height:59.323599px;}
.h8_c00458{height:59.389808px;}
.h5_c00458{height:1262.431829px;}
.h3_c00458{height:1262.879062px;}
.h0_c00458{height:1263.000000px;}
.w17_c00458{width:2.700000px;}
.w12_c00458{width:4.676400px;}
.wc_c00458{width:4.680000px;}
.w6_c00458{width:5.038200px;}
.w16_c00458{width:6.474600px;}
.w9_c00458{width:6.476400px;}
.wf_c00458{width:7.376400px;}
.w13_c00458{width:7.378200px;}
.w15_c00458{width:8.094600px;}
.w14_c00458{width:8.274600px;}
.w7_c00458{width:8.276400px;}
.w8_c00458{width:8.278200px;}
.we_c00458{width:9.358200px;}
.wb_c00458{width:10.076400px;}
.w10_c00458{width:11.334600px;}
.w4_c00458{width:11.874600px;}
.w2_c00458{width:12.058200px;}
.wa_c00458{width:12.414600px;}
.w5_c00458{width:15.472800px;}
.w3_c00458{width:23.929200px;}
.w1_c00458{width:25.190820px;}
.w11_c00458{width:25.911000px;}
.wd_c00458{width:28.063800px;}
.w19_c00458{width:892.099575px;}
.w18_c00458{width:892.414744px;}
.w0_c00458{width:892.500000px;}
.x0_c00458{left:0.000000px;}
.x1e_c00458{left:113.887229px;}
.x1_c00458{left:128.331540px;}
.x20_c00458{left:140.874692px;}
.x21_c00458{left:167.863311px;}
.x1f_c00458{left:181.357802px;}
.x1c_c00458{left:253.542308px;}
.x1b_c00458{left:269.015236px;}
.x1d_c00458{left:423.021349px;}
.x2_c00458{left:496.623600px;}
.x3_c00458{left:508.681800px;}
.x4_c00458{left:532.611000px;}
.x5_c00458{left:544.485600px;}
.x6_c00458{left:559.958400px;}
.x7_c00458{left:564.636600px;}
.x8_c00458{left:576.869400px;}
.x9_c00458{left:585.147600px;}
.xa_c00458{left:590.364000px;}
.xb_c00458{left:606.555000px;}
.xc_c00458{left:616.631400px;}
.xd_c00458{left:621.309600px;}
.xe_c00458{left:625.809600px;}
.xf_c00458{left:653.873400px;}
.x10_c00458{left:661.971600px;}
.x11_c00458{left:673.126200px;}
.x12_c00458{left:684.100800px;}
.x13_c00458{left:708.931800px;}
.x14_c00458{left:713.428200px;}
.x15_c00458{left:720.806400px;}
.x16_c00458{left:725.486400px;}
.x17_c00458{left:733.761000px;}
.x18_c00458{left:741.855600px;}
.x19_c00458{left:749.233800px;}
.x1a_c00458{left:755.708400px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws0_c00458{word-spacing:-14.713194pt;}
.ws1_c00458{word-spacing:0.000000pt;}
._1_c00458{margin-left:-0.971516pt;}
._0_c00458{width:0.979567pt;}
._3_c00458{width:2.447932pt;}
._2_c00458{width:3.353710pt;}
._4_c00458{width:4.641040pt;}
._c_c00458{width:8.048517pt;}
._6_c00458{width:9.129140pt;}
._5_c00458{width:10.417615pt;}
._b_c00458{width:13.005248pt;}
._9_c00458{width:35.251595pt;}
._8_c00458{width:36.721636pt;}
._7_c00458{width:43.691853pt;}
._a_c00458{width:177.312822pt;}
.fs2_c00458{font-size:53.096085pt;}
.fs0_c00458{font-size:58.852776pt;}
.fs1_c00458{font-size:63.972241pt;}
.y0_c00458{bottom:0.000000pt;}
.y4_c00458{bottom:0.107500pt;}
.y8_c00458{bottom:0.494374pt;}
.y2_c00458{bottom:3.518132pt;}
.ya_c00458{bottom:58.481202pt;}
.y3_c00458{bottom:66.331840pt;}
.y1_c00458{bottom:66.651840pt;}
.y25_c00458{bottom:92.385988pt;}
.y24_c00458{bottom:131.087840pt;}
.y23_c00458{bottom:156.355963pt;}
.y22_c00458{bottom:181.625286pt;}
.y21_c00458{bottom:219.848337pt;}
.y20_c00458{bottom:258.870189pt;}
.y1f_c00458{bottom:284.138312pt;}
.y1e_c00458{bottom:309.406435pt;}
.y1d_c00458{bottom:334.675758pt;}
.y1c_c00458{bottom:372.898810pt;}
.y1b_c00458{bottom:432.232386pt;}
.y1a_c00458{bottom:447.425446pt;}
.y19_c00458{bottom:487.885164pt;}
.y18_c00458{bottom:513.153953pt;}
.y17_c00458{bottom:538.420877pt;}
.y16_c00458{bottom:576.963395pt;}
.y15_c00458{bottom:602.234585pt;}
.y14_c00458{bottom:665.884559pt;}
.y13_c00458{bottom:704.747610pt;}
.y12_c00458{bottom:730.175733pt;}
.y11_c00458{bottom:768.718251pt;}
.y10_c00458{bottom:793.988241pt;}
.yf_c00458{bottom:832.688226pt;}
.ye_c00458{bottom:857.957016pt;}
.yd_c00458{bottom:883.227672pt;}
.yc_c00458{bottom:921.770723pt;}
.yb_c00458{bottom:965.591906pt;}
.y9_c00458{bottom:983.182565pt;}
.y7_c00458{bottom:1023.551024pt;}
.y6_c00458{bottom:1041.942883pt;}
.y5_c00458{bottom:1060.334742pt;}
.h1_c00458{height:16.153120pt;}
.h7_c00458{height:34.034591pt;}
.h6_c00458{height:37.724630pt;}
.h2_c00458{height:41.196944pt;}
.h4_c00458{height:44.780569pt;}
.ha_c00458{height:47.627189pt;}
.h9_c00458{height:52.732088pt;}
.h8_c00458{height:52.790940pt;}
.h5_c00458{height:1122.161626pt;}
.h3_c00458{height:1122.559167pt;}
.h0_c00458{height:1122.666667pt;}
.w17_c00458{width:2.400000pt;}
.w12_c00458{width:4.156800pt;}
.wc_c00458{width:4.160000pt;}
.w6_c00458{width:4.478400pt;}
.w16_c00458{width:5.755200pt;}
.w9_c00458{width:5.756800pt;}
.wf_c00458{width:6.556800pt;}
.w13_c00458{width:6.558400pt;}
.w15_c00458{width:7.195200pt;}
.w14_c00458{width:7.355200pt;}
.w7_c00458{width:7.356800pt;}
.w8_c00458{width:7.358400pt;}
.we_c00458{width:8.318400pt;}
.wb_c00458{width:8.956800pt;}
.w10_c00458{width:10.075200pt;}
.w4_c00458{width:10.555200pt;}
.w2_c00458{width:10.718400pt;}
.wa_c00458{width:11.035200pt;}
.w5_c00458{width:13.753600pt;}
.w3_c00458{width:21.270400pt;}
.w1_c00458{width:22.391840pt;}
.w11_c00458{width:23.032000pt;}
.wd_c00458{width:24.945600pt;}
.w19_c00458{width:792.977400pt;}
.w18_c00458{width:793.257550pt;}
.w0_c00458{width:793.333333pt;}
.x0_c00458{left:0.000000pt;}
.x1e_c00458{left:101.233093pt;}
.x1_c00458{left:114.072480pt;}
.x20_c00458{left:125.221948pt;}
.x21_c00458{left:149.211832pt;}
.x1f_c00458{left:161.206935pt;}
.x1c_c00458{left:225.370940pt;}
.x1b_c00458{left:239.124654pt;}
.x1d_c00458{left:376.018977pt;}
.x2_c00458{left:441.443200pt;}
.x3_c00458{left:452.161600pt;}
.x4_c00458{left:473.432000pt;}
.x5_c00458{left:483.987200pt;}
.x6_c00458{left:497.740800pt;}
.x7_c00458{left:501.899200pt;}
.x8_c00458{left:512.772800pt;}
.x9_c00458{left:520.131200pt;}
.xa_c00458{left:524.768000pt;}
.xb_c00458{left:539.160000pt;}
.xc_c00458{left:548.116800pt;}
.xd_c00458{left:552.275200pt;}
.xe_c00458{left:556.275200pt;}
.xf_c00458{left:581.220800pt;}
.x10_c00458{left:588.419200pt;}
.x11_c00458{left:598.334400pt;}
.x12_c00458{left:608.089600pt;}
.x13_c00458{left:630.161600pt;}
.x14_c00458{left:634.158400pt;}
.x15_c00458{left:640.716800pt;}
.x16_c00458{left:644.876800pt;}
.x17_c00458{left:652.232000pt;}
.x18_c00458{left:659.427200pt;}
.x19_c00458{left:665.985600pt;}
.x1a_c00458{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_b4bb1e57c1f39978d3c33c4a.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.113000;font-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_c00459{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00459{word-spacing:0.000000px;}
._2_c00459{margin-left:-1.201446px;}
._0_c00459{width:1.102012px;}
._6_c00459{width:2.220436px;}
._1_c00459{width:3.305151px;}
._7_c00459{width:4.599639px;}
._b_c00459{width:7.905354px;}
._a_c00459{width:9.056481px;}
._c_c00459{width:10.460308px;}
._5_c00459{width:11.565693px;}
._4_c00459{width:13.134214px;}
._9_c00459{width:19.193503px;}
._d_c00459{width:20.400754px;}
._8_c00459{width:133.267488px;}
._3_c00459{width:199.476925px;}
.fc1_c00459{color:rgb(105,148,45);}
.fc0_c00459{color:rgb(35,31,32);}
.fs2_c00459{font-size:59.733096px;}
.fs0_c00459{font-size:66.209374px;}
.fs1_c00459{font-size:71.968771px;}
.y0_c00459{bottom:0.000000px;}
.y4_c00459{bottom:0.120938px;}
.y8_c00459{bottom:0.556171px;}
.y2_c00459{bottom:3.957898px;}
.ya_c00459{bottom:65.791352px;}
.y3_c00459{bottom:74.623320px;}
.y1_c00459{bottom:74.983320px;}
.y27_c00459{bottom:110.051085px;}
.y26_c00459{bottom:138.477723px;}
.y25_c00459{bottom:181.838656px;}
.y24_c00459{bottom:210.446644px;}
.y23_c00459{bottom:253.806227px;}
.y22_c00459{bottom:282.232866px;}
.y21_c00459{bottom:325.772448px;}
.y20_c00459{bottom:354.200437px;}
.y1f_c00459{bottom:382.629176px;}
.y1e_c00459{bottom:425.989508px;}
.y1d_c00459{bottom:454.416147px;}
.y1c_c00459{bottom:482.843535px;}
.y1b_c00459{bottom:526.382368px;}
.y1a_c00459{bottom:554.809007px;}
.y19_c00459{bottom:583.237745px;}
.y18_c00459{bottom:626.778678px;}
.y17_c00459{bottom:655.205316px;}
.y16_c00459{bottom:683.631955px;}
.y15_c00459{bottom:712.059944px;}
.y14_c00459{bottom:755.059527px;}
.y13_c00459{bottom:798.960459px;}
.y12_c00459{bottom:827.387098px;}
.y11_c00459{bottom:870.388030px;}
.y10_c00459{bottom:914.288363px;}
.yf_c00459{bottom:942.713651px;}
.ye_c00459{bottom:986.073234px;}
.yd_c00459{bottom:1014.501223px;}
.yc_c00459{bottom:1058.042155px;}
.yb_c00459{bottom:1086.470894px;}
.y9_c00459{bottom:1106.080386px;}
.y7_c00459{bottom:1151.494902px;}
.y6_c00459{bottom:1172.185744px;}
.y5_c00459{bottom:1192.876585px;}
.h1_c00459{height:18.172260px;}
.h7_c00459{height:38.288915px;}
.h6_c00459{height:42.440208px;}
.h2_c00459{height:46.346561px;}
.h4_c00459{height:50.378140px;}
.h8_c00459{height:59.323599px;}
.h9_c00459{height:59.389808px;}
.h5_c00459{height:1262.431829px;}
.h3_c00459{height:1262.879062px;}
.h0_c00459{height:1263.000000px;}
.w17_c00459{width:2.700000px;}
.w12_c00459{width:4.676400px;}
.wc_c00459{width:4.680000px;}
.w6_c00459{width:5.038200px;}
.w16_c00459{width:6.474600px;}
.w9_c00459{width:6.476400px;}
.wf_c00459{width:7.376400px;}
.w13_c00459{width:7.378200px;}
.w15_c00459{width:8.094600px;}
.w14_c00459{width:8.274600px;}
.w7_c00459{width:8.276400px;}
.w8_c00459{width:8.278200px;}
.we_c00459{width:9.358200px;}
.wb_c00459{width:10.076400px;}
.w10_c00459{width:11.334600px;}
.w4_c00459{width:11.874600px;}
.w2_c00459{width:12.058200px;}
.wa_c00459{width:12.414600px;}
.w5_c00459{width:15.472800px;}
.w3_c00459{width:23.929200px;}
.w1_c00459{width:25.190820px;}
.w11_c00459{width:25.911000px;}
.wd_c00459{width:28.063800px;}
.w19_c00459{width:892.099575px;}
.w18_c00459{width:892.414744px;}
.w0_c00459{width:892.500000px;}
.x0_c00459{left:0.000000px;}
.x1e_c00459{left:113.887229px;}
.x1_c00459{left:128.331540px;}
.x1f_c00459{left:167.862411px;}
.x1c_c00459{left:253.542308px;}
.x1b_c00459{left:269.015236px;}
.x1d_c00459{left:423.021349px;}
.x2_c00459{left:496.623600px;}
.x3_c00459{left:508.681800px;}
.x4_c00459{left:532.611000px;}
.x5_c00459{left:544.485600px;}
.x6_c00459{left:559.958400px;}
.x7_c00459{left:564.636600px;}
.x8_c00459{left:576.869400px;}
.x9_c00459{left:585.147600px;}
.xa_c00459{left:590.364000px;}
.xb_c00459{left:606.555000px;}
.xc_c00459{left:616.631400px;}
.xd_c00459{left:621.309600px;}
.xe_c00459{left:625.809600px;}
.xf_c00459{left:653.873400px;}
.x10_c00459{left:661.971600px;}
.x11_c00459{left:673.126200px;}
.x12_c00459{left:684.100800px;}
.x13_c00459{left:708.931800px;}
.x14_c00459{left:713.428200px;}
.x15_c00459{left:720.806400px;}
.x16_c00459{left:725.486400px;}
.x17_c00459{left:733.761000px;}
.x18_c00459{left:741.855600px;}
.x19_c00459{left:749.233800px;}
.x1a_c00459{left:755.708400px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws0_c00459{word-spacing:-14.713194pt;}
.ws1_c00459{word-spacing:0.000000pt;}
._2_c00459{margin-left:-1.067952pt;}
._0_c00459{width:0.979567pt;}
._6_c00459{width:1.973721pt;}
._1_c00459{width:2.937912pt;}
._7_c00459{width:4.088568pt;}
._b_c00459{width:7.026981pt;}
._a_c00459{width:8.050205pt;}
._c_c00459{width:9.298052pt;}
._5_c00459{width:10.280616pt;}
._4_c00459{width:11.674857pt;}
._9_c00459{width:17.060891pt;}
._d_c00459{width:18.134004pt;}
._8_c00459{width:118.459989pt;}
._3_c00459{width:177.312822pt;}
.fs2_c00459{font-size:53.096085pt;}
.fs0_c00459{font-size:58.852776pt;}
.fs1_c00459{font-size:63.972241pt;}
.y0_c00459{bottom:0.000000pt;}
.y4_c00459{bottom:0.107500pt;}
.y8_c00459{bottom:0.494374pt;}
.y2_c00459{bottom:3.518132pt;}
.ya_c00459{bottom:58.481202pt;}
.y3_c00459{bottom:66.331840pt;}
.y1_c00459{bottom:66.651840pt;}
.y27_c00459{bottom:97.823186pt;}
.y26_c00459{bottom:123.091309pt;}
.y25_c00459{bottom:161.634361pt;}
.y24_c00459{bottom:187.063684pt;}
.y23_c00459{bottom:225.605535pt;}
.y22_c00459{bottom:250.873658pt;}
.y21_c00459{bottom:289.575510pt;}
.y20_c00459{bottom:314.844833pt;}
.y1f_c00459{bottom:340.114823pt;}
.y1e_c00459{bottom:378.657341pt;}
.y1d_c00459{bottom:403.925464pt;}
.y1c_c00459{bottom:429.194254pt;}
.y1b_c00459{bottom:467.895438pt;}
.y1a_c00459{bottom:493.163561pt;}
.y19_c00459{bottom:518.433551pt;}
.y18_c00459{bottom:557.136603pt;}
.y17_c00459{bottom:582.404726pt;}
.y16_c00459{bottom:607.672849pt;}
.y15_c00459{bottom:632.942172pt;}
.y14_c00459{bottom:671.164024pt;}
.y13_c00459{bottom:710.187075pt;}
.y12_c00459{bottom:735.455198pt;}
.y11_c00459{bottom:773.678249pt;}
.y10_c00459{bottom:812.700767pt;}
.yf_c00459{bottom:837.967690pt;}
.ye_c00459{bottom:876.509541pt;}
.yd_c00459{bottom:901.778865pt;}
.yc_c00459{bottom:940.481916pt;}
.yb_c00459{bottom:965.751906pt;}
.y9_c00459{bottom:983.182565pt;}
.y7_c00459{bottom:1023.551024pt;}
.y6_c00459{bottom:1041.942883pt;}
.y5_c00459{bottom:1060.334742pt;}
.h1_c00459{height:16.153120pt;}
.h7_c00459{height:34.034591pt;}
.h6_c00459{height:37.724630pt;}
.h2_c00459{height:41.196944pt;}
.h4_c00459{height:44.780569pt;}
.h8_c00459{height:52.732088pt;}
.h9_c00459{height:52.790940pt;}
.h5_c00459{height:1122.161626pt;}
.h3_c00459{height:1122.559167pt;}
.h0_c00459{height:1122.666667pt;}
.w17_c00459{width:2.400000pt;}
.w12_c00459{width:4.156800pt;}
.wc_c00459{width:4.160000pt;}
.w6_c00459{width:4.478400pt;}
.w16_c00459{width:5.755200pt;}
.w9_c00459{width:5.756800pt;}
.wf_c00459{width:6.556800pt;}
.w13_c00459{width:6.558400pt;}
.w15_c00459{width:7.195200pt;}
.w14_c00459{width:7.355200pt;}
.w7_c00459{width:7.356800pt;}
.w8_c00459{width:7.358400pt;}
.we_c00459{width:8.318400pt;}
.wb_c00459{width:8.956800pt;}
.w10_c00459{width:10.075200pt;}
.w4_c00459{width:10.555200pt;}
.w2_c00459{width:10.718400pt;}
.wa_c00459{width:11.035200pt;}
.w5_c00459{width:13.753600pt;}
.w3_c00459{width:21.270400pt;}
.w1_c00459{width:22.391840pt;}
.w11_c00459{width:23.032000pt;}
.wd_c00459{width:24.945600pt;}
.w19_c00459{width:792.977400pt;}
.w18_c00459{width:793.257550pt;}
.w0_c00459{width:793.333333pt;}
.x0_c00459{left:0.000000pt;}
.x1e_c00459{left:101.233093pt;}
.x1_c00459{left:114.072480pt;}
.x1f_c00459{left:149.211032pt;}
.x1c_c00459{left:225.370940pt;}
.x1b_c00459{left:239.124654pt;}
.x1d_c00459{left:376.018977pt;}
.x2_c00459{left:441.443200pt;}
.x3_c00459{left:452.161600pt;}
.x4_c00459{left:473.432000pt;}
.x5_c00459{left:483.987200pt;}
.x6_c00459{left:497.740800pt;}
.x7_c00459{left:501.899200pt;}
.x8_c00459{left:512.772800pt;}
.x9_c00459{left:520.131200pt;}
.xa_c00459{left:524.768000pt;}
.xb_c00459{left:539.160000pt;}
.xc_c00459{left:548.116800pt;}
.xd_c00459{left:552.275200pt;}
.xe_c00459{left:556.275200pt;}
.xf_c00459{left:581.220800pt;}
.x10_c00459{left:588.419200pt;}
.x11_c00459{left:598.334400pt;}
.x12_c00459{left:608.089600pt;}
.x13_c00459{left:630.161600pt;}
.x14_c00459{left:634.158400pt;}
.x15_c00459{left:640.716800pt;}
.x16_c00459{left:644.876800pt;}
.x17_c00459{left:652.232000pt;}
.x18_c00459{left:659.427200pt;}
.x19_c00459{left:665.985600pt;}
.x1a_c00459{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.112000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.113000;font-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_c00460{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls0_c00460{letter-spacing:0.000000px;}
.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.552343px;}
.ws1_c00460{word-spacing:0.000000px;}
._2_c00460{margin-left:-1.299708px;}
._0_c00460{width:1.102012px;}
._8_c00460{width:2.616740px;}
._d_c00460{width:5.375051px;}
._c_c00460{width:6.495423px;}
._b_c00460{width:7.968420px;}
._9_c00460{width:11.070211px;}
._a_c00460{width:12.334543px;}
._6_c00460{width:14.150335px;}
._5_c00460{width:15.294404px;}
._4_c00460{width:18.069532px;}
._7_c00460{width:19.181850px;}
._e_c00460{width:41.966137px;}
._3_c00460{width:149.819075px;}
._1_c00460{width:199.476925px;}
.fc1_c00460{color:rgb(105,148,45);}
.fc0_c00460{color:rgb(35,31,32);}
.fs2_c00460{font-size:59.733096px;}
.fs0_c00460{font-size:66.209374px;}
.fs1_c00460{font-size:71.968771px;}
.y0_c00460{bottom:0.000000px;}
.y4_c00460{bottom:0.120938px;}
.y8_c00460{bottom:0.556171px;}
.y2_c00460{bottom:3.957898px;}
.ya_c00460{bottom:65.791352px;}
.y3_c00460{bottom:74.623320px;}
.y1_c00460{bottom:74.983320px;}
.y21_c00460{bottom:265.682322px;}
.y20_c00460{bottom:309.220555px;}
.y1f_c00460{bottom:337.648544px;}
.y1e_c00460{bottom:366.076532px;}
.y1d_c00460{bottom:394.503171px;}
.y1c_c00460{bottom:437.502754px;}
.y1b_c00460{bottom:481.403686px;}
.y1a_c00460{bottom:509.831675px;}
.y19_c00460{bottom:553.192607px;}
.y18_c00460{bottom:581.797896px;}
.y17_c00460{bottom:625.160329px;}
.y16_c00460{bottom:653.586967px;}
.y15_c00460{bottom:682.012256px;}
.y14_c00460{bottom:725.193189px;}
.y13_c00460{bottom:768.912771px;}
.y12_c00460{bottom:797.340760px;}
.y11_c00460{bottom:840.881692px;}
.y10_c00460{bottom:869.309681px;}
.yf_c00460{bottom:912.309264px;}
.ye_c00460{bottom:956.208096px;}
.yd_c00460{bottom:999.569029px;}
.yc_c00460{bottom:1043.109961px;}
.yb_c00460{bottom:1086.470894px;}
.y9_c00460{bottom:1106.080386px;}
.y7_c00460{bottom:1151.494902px;}
.y6_c00460{bottom:1172.185744px;}
.y5_c00460{bottom:1192.876585px;}
.h1_c00460{height:18.172260px;}
.h7_c00460{height:38.288915px;}
.h6_c00460{height:42.440208px;}
.h2_c00460{height:46.346561px;}
.h4_c00460{height:50.378140px;}
.h8_c00460{height:59.323599px;}
.h9_c00460{height:59.389808px;}
.h5_c00460{height:1262.431829px;}
.h3_c00460{height:1262.879062px;}
.h0_c00460{height:1263.000000px;}
.w17_c00460{width:2.700000px;}
.w12_c00460{width:4.676400px;}
.wc_c00460{width:4.680000px;}
.w6_c00460{width:5.038200px;}
.w16_c00460{width:6.474600px;}
.w9_c00460{width:6.476400px;}
.wf_c00460{width:7.376400px;}
.w13_c00460{width:7.378200px;}
.w15_c00460{width:8.094600px;}
.w14_c00460{width:8.274600px;}
.w7_c00460{width:8.276400px;}
.w8_c00460{width:8.278200px;}
.we_c00460{width:9.358200px;}
.wb_c00460{width:10.076400px;}
.w10_c00460{width:11.334600px;}
.w4_c00460{width:11.874600px;}
.w2_c00460{width:12.058200px;}
.wa_c00460{width:12.414600px;}
.w5_c00460{width:15.472800px;}
.w3_c00460{width:23.929200px;}
.w1_c00460{width:24.830820px;}
.w11_c00460{width:25.911000px;}
.wd_c00460{width:28.063800px;}
.w19_c00460{width:892.099575px;}
.w18_c00460{width:892.414744px;}
.w0_c00460{width:892.500000px;}
.x0_c00460{left:0.000000px;}
.x1e_c00460{left:113.887229px;}
.x1_c00460{left:128.331540px;}
.x1f_c00460{left:167.863311px;}
.x1c_c00460{left:253.542308px;}
.x1b_c00460{left:269.015236px;}
.x1d_c00460{left:423.021349px;}
.x2_c00460{left:496.623600px;}
.x3_c00460{left:508.681800px;}
.x4_c00460{left:532.611000px;}
.x5_c00460{left:544.485600px;}
.x6_c00460{left:559.958400px;}
.x7_c00460{left:564.636600px;}
.x8_c00460{left:576.869400px;}
.x9_c00460{left:585.147600px;}
.xa_c00460{left:590.364000px;}
.xb_c00460{left:606.555000px;}
.xc_c00460{left:616.631400px;}
.xd_c00460{left:621.309600px;}
.xe_c00460{left:625.809600px;}
.xf_c00460{left:653.873400px;}
.x10_c00460{left:661.971600px;}
.x11_c00460{left:673.126200px;}
.x12_c00460{left:684.100800px;}
.x13_c00460{left:708.931800px;}
.x14_c00460{left:713.428200px;}
.x15_c00460{left:720.806400px;}
.x16_c00460{left:725.486400px;}
.x17_c00460{left:733.761000px;}
.x18_c00460{left:741.855600px;}
.x19_c00460{left:749.233800px;}
.x1a_c00460{left:755.708400px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:-14.713194pt;}
.ws1_c00460{word-spacing:0.000000pt;}
._2_c00460{margin-left:-1.155296pt;}
._0_c00460{width:0.979567pt;}
._8_c00460{width:2.325991pt;}
._d_c00460{width:4.777823pt;}
._c_c00460{width:5.773710pt;}
._b_c00460{width:7.083040pt;}
._9_c00460{width:9.840188pt;}
._a_c00460{width:10.964038pt;}
._6_c00460{width:12.578075pt;}
._5_c00460{width:13.595026pt;}
._4_c00460{width:16.061806pt;}
._7_c00460{width:17.050534pt;}
._e_c00460{width:37.303233pt;}
._3_c00460{width:133.172511pt;}
._1_c00460{width:177.312822pt;}
.fs2_c00460{font-size:53.096085pt;}
.fs0_c00460{font-size:58.852776pt;}
.fs1_c00460{font-size:63.972241pt;}
.y0_c00460{bottom:0.000000pt;}
.y4_c00460{bottom:0.107500pt;}
.y8_c00460{bottom:0.494374pt;}
.y2_c00460{bottom:3.518132pt;}
.ya_c00460{bottom:58.481202pt;}
.y3_c00460{bottom:66.331840pt;}
.y1_c00460{bottom:66.651840pt;}
.y21_c00460{bottom:236.162064pt;}
.y20_c00460{bottom:274.862715pt;}
.y1f_c00460{bottom:300.132039pt;}
.y1e_c00460{bottom:325.401362pt;}
.y1d_c00460{bottom:350.669485pt;}
.y1c_c00460{bottom:388.891337pt;}
.y1b_c00460{bottom:427.914388pt;}
.y1a_c00460{bottom:453.183711pt;}
.y19_c00460{bottom:491.726762pt;}
.y18_c00460{bottom:517.153685pt;}
.y17_c00460{bottom:555.698070pt;}
.y16_c00460{bottom:580.966193pt;}
.y15_c00460{bottom:606.233116pt;}
.y14_c00460{bottom:644.616168pt;}
.y13_c00460{bottom:683.478019pt;}
.y12_c00460{bottom:708.747342pt;}
.y11_c00460{bottom:747.450393pt;}
.y10_c00460{bottom:772.719716pt;}
.yf_c00460{bottom:810.941568pt;}
.ye_c00460{bottom:849.962752pt;}
.yd_c00460{bottom:888.505803pt;}
.yc_c00460{bottom:927.208855pt;}
.yb_c00460{bottom:965.751906pt;}
.y9_c00460{bottom:983.182565pt;}
.y7_c00460{bottom:1023.551024pt;}
.y6_c00460{bottom:1041.942883pt;}
.y5_c00460{bottom:1060.334742pt;}
.h1_c00460{height:16.153120pt;}
.h7_c00460{height:34.034591pt;}
.h6_c00460{height:37.724630pt;}
.h2_c00460{height:41.196944pt;}
.h4_c00460{height:44.780569pt;}
.h8_c00460{height:52.732088pt;}
.h9_c00460{height:52.790940pt;}
.h5_c00460{height:1122.161626pt;}
.h3_c00460{height:1122.559167pt;}
.h0_c00460{height:1122.666667pt;}
.w17_c00460{width:2.400000pt;}
.w12_c00460{width:4.156800pt;}
.wc_c00460{width:4.160000pt;}
.w6_c00460{width:4.478400pt;}
.w16_c00460{width:5.755200pt;}
.w9_c00460{width:5.756800pt;}
.wf_c00460{width:6.556800pt;}
.w13_c00460{width:6.558400pt;}
.w15_c00460{width:7.195200pt;}
.w14_c00460{width:7.355200pt;}
.w7_c00460{width:7.356800pt;}
.w8_c00460{width:7.358400pt;}
.we_c00460{width:8.318400pt;}
.wb_c00460{width:8.956800pt;}
.w10_c00460{width:10.075200pt;}
.w4_c00460{width:10.555200pt;}
.w2_c00460{width:10.718400pt;}
.wa_c00460{width:11.035200pt;}
.w5_c00460{width:13.753600pt;}
.w3_c00460{width:21.270400pt;}
.w1_c00460{width:22.071840pt;}
.w11_c00460{width:23.032000pt;}
.wd_c00460{width:24.945600pt;}
.w19_c00460{width:792.977400pt;}
.w18_c00460{width:793.257550pt;}
.w0_c00460{width:793.333333pt;}
.x0_c00460{left:0.000000pt;}
.x1e_c00460{left:101.233093pt;}
.x1_c00460{left:114.072480pt;}
.x1f_c00460{left:149.211832pt;}
.x1c_c00460{left:225.370940pt;}
.x1b_c00460{left:239.124654pt;}
.x1d_c00460{left:376.018977pt;}
.x2_c00460{left:441.443200pt;}
.x3_c00460{left:452.161600pt;}
.x4_c00460{left:473.432000pt;}
.x5_c00460{left:483.987200pt;}
.x6_c00460{left:497.740800pt;}
.x7_c00460{left:501.899200pt;}
.x8_c00460{left:512.772800pt;}
.x9_c00460{left:520.131200pt;}
.xa_c00460{left:524.768000pt;}
.xb_c00460{left:539.160000pt;}
.xc_c00460{left:548.116800pt;}
.xd_c00460{left:552.275200pt;}
.xe_c00460{left:556.275200pt;}
.xf_c00460{left:581.220800pt;}
.x10_c00460{left:588.419200pt;}
.x11_c00460{left:598.334400pt;}
.x12_c00460{left:608.089600pt;}
.x13_c00460{left:630.161600pt;}
.x14_c00460{left:634.158400pt;}
.x15_c00460{left:640.716800pt;}
.x16_c00460{left:644.876800pt;}
.x17_c00460{left:652.232000pt;}
.x18_c00460{left:659.427200pt;}
.x19_c00460{left:665.985600pt;}
.x1a_c00460{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00461;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.112000;font-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_c00461{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00461{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:-16.552343px;}
.ws1_c00461{word-spacing:0.000000px;}
._8_c00461{margin-left:-2.317157px;}
._4_c00461{margin-left:-1.162695px;}
._0_c00461{width:1.102012px;}
._7_c00461{width:2.355634px;}
._c_c00461{width:3.423529px;}
._b_c00461{width:4.490107px;}
._d_c00461{width:6.358182px;}
._6_c00461{width:7.491639px;}
._3_c00461{width:10.996690px;}
._5_c00461{width:15.528078px;}
._9_c00461{width:20.356342px;}
._a_c00461{width:21.517343px;}
._2_c00461{width:133.267488px;}
._1_c00461{width:199.476925px;}
.fc1_c00461{color:rgb(105,148,45);}
.fc0_c00461{color:rgb(35,31,32);}
.fs2_c00461{font-size:59.733096px;}
.fs0_c00461{font-size:66.209374px;}
.fs1_c00461{font-size:71.968771px;}
.y0_c00461{bottom:0.000000px;}
.y4_c00461{bottom:0.120938px;}
.y8_c00461{bottom:0.556171px;}
.y2_c00461{bottom:3.957898px;}
.ya_c00461{bottom:65.791352px;}
.y3_c00461{bottom:74.623320px;}
.y1_c00461{bottom:74.983320px;}
.y22_c00461{bottom:270.179471px;}
.y21_c00461{bottom:298.786859px;}
.y20_c00461{bottom:327.213498px;}
.y1f_c00461{bottom:355.640136px;}
.y1e_c00461{bottom:384.066775px;}
.y1d_c00461{bottom:427.429208px;}
.y1c_c00461{bottom:455.855846px;}
.y1b_c00461{bottom:499.036779px;}
.y1a_c00461{bottom:542.755011px;}
.y19_c00461{bottom:571.181650px;}
.y18_c00461{bottom:614.364083px;}
.y17_c00461{bottom:658.084415px;}
.y16_c00461{bottom:686.511804px;}
.y15_c00461{bottom:715.118443px;}
.y14_c00461{bottom:758.479375px;}
.y13_c00461{bottom:795.901810px;}
.y12_c00461{bottom:824.328449px;}
.y11_c00461{bottom:867.868031px;}
.y10_c00461{bottom:911.228964px;}
.yf_c00461{bottom:939.655603px;}
.ye_c00461{bottom:982.838035px;}
.yd_c00461{bottom:1026.197618px;}
.yc_c00461{bottom:1063.981403px;}
.yb_c00461{bottom:1087.548944px;}
.y9_c00461{bottom:1106.080386px;}
.y7_c00461{bottom:1151.494902px;}
.y6_c00461{bottom:1172.185744px;}
.y5_c00461{bottom:1192.876585px;}
.h1_c00461{height:18.172260px;}
.h7_c00461{height:38.288915px;}
.h6_c00461{height:42.440208px;}
.h2_c00461{height:46.346561px;}
.h4_c00461{height:50.378140px;}
.h8_c00461{height:53.580587px;}
.ha_c00461{height:59.323599px;}
.h9_c00461{height:59.389808px;}
.h5_c00461{height:1262.431829px;}
.h3_c00461{height:1262.879062px;}
.h0_c00461{height:1263.000000px;}
.w17_c00461{width:2.700000px;}
.w12_c00461{width:4.676400px;}
.wc_c00461{width:4.680000px;}
.w6_c00461{width:5.038200px;}
.w16_c00461{width:6.474600px;}
.w9_c00461{width:6.476400px;}
.wf_c00461{width:7.376400px;}
.w13_c00461{width:7.378200px;}
.w15_c00461{width:8.094600px;}
.w14_c00461{width:8.274600px;}
.w7_c00461{width:8.276400px;}
.w8_c00461{width:8.278200px;}
.we_c00461{width:9.358200px;}
.wb_c00461{width:10.076400px;}
.w10_c00461{width:11.334600px;}
.w4_c00461{width:11.874600px;}
.w2_c00461{width:12.058200px;}
.wa_c00461{width:12.414600px;}
.w5_c00461{width:15.472800px;}
.w3_c00461{width:23.929200px;}
.w1_c00461{width:24.830820px;}
.w11_c00461{width:25.911000px;}
.wd_c00461{width:28.063800px;}
.w19_c00461{width:892.099575px;}
.w18_c00461{width:892.414744px;}
.w0_c00461{width:892.500000px;}
.x0_c00461{left:0.000000px;}
.x1e_c00461{left:113.887229px;}
.x1_c00461{left:128.331540px;}
.x1f_c00461{left:167.862411px;}
.x1c_c00461{left:253.542308px;}
.x1b_c00461{left:269.015236px;}
.x1d_c00461{left:423.021349px;}
.x2_c00461{left:496.623600px;}
.x3_c00461{left:508.681800px;}
.x4_c00461{left:532.611000px;}
.x5_c00461{left:544.485600px;}
.x6_c00461{left:559.958400px;}
.x7_c00461{left:564.636600px;}
.x8_c00461{left:576.869400px;}
.x9_c00461{left:585.147600px;}
.xa_c00461{left:590.364000px;}
.xb_c00461{left:606.555000px;}
.xc_c00461{left:616.631400px;}
.xd_c00461{left:621.309600px;}
.xe_c00461{left:625.809600px;}
.xf_c00461{left:653.873400px;}
.x10_c00461{left:661.971600px;}
.x11_c00461{left:673.126200px;}
.x12_c00461{left:684.100800px;}
.x13_c00461{left:708.931800px;}
.x14_c00461{left:713.428200px;}
.x15_c00461{left:720.806400px;}
.x16_c00461{left:725.486400px;}
.x17_c00461{left:733.761000px;}
.x18_c00461{left:741.855600px;}
.x19_c00461{left:749.233800px;}
.x1a_c00461{left:755.708400px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws0_c00461{word-spacing:-14.713194pt;}
.ws1_c00461{word-spacing:0.000000pt;}
._8_c00461{margin-left:-2.059695pt;}
._4_c00461{margin-left:-1.033507pt;}
._0_c00461{width:0.979567pt;}
._7_c00461{width:2.093897pt;}
._c_c00461{width:3.043137pt;}
._b_c00461{width:3.991206pt;}
._d_c00461{width:5.651717pt;}
._6_c00461{width:6.659235pt;}
._3_c00461{width:9.774836pt;}
._5_c00461{width:13.802736pt;}
._9_c00461{width:18.094526pt;}
._a_c00461{width:19.126527pt;}
._2_c00461{width:118.459989pt;}
._1_c00461{width:177.312822pt;}
.fs2_c00461{font-size:53.096085pt;}
.fs0_c00461{font-size:58.852776pt;}
.fs1_c00461{font-size:63.972241pt;}
.y0_c00461{bottom:0.000000pt;}
.y4_c00461{bottom:0.107500pt;}
.y8_c00461{bottom:0.494374pt;}
.y2_c00461{bottom:3.518132pt;}
.ya_c00461{bottom:58.481202pt;}
.y3_c00461{bottom:66.331840pt;}
.y1_c00461{bottom:66.651840pt;}
.y22_c00461{bottom:240.159529pt;}
.y21_c00461{bottom:265.588319pt;}
.y20_c00461{bottom:290.856442pt;}
.y1f_c00461{bottom:316.124566pt;}
.y1e_c00461{bottom:341.392689pt;}
.y1d_c00461{bottom:379.937073pt;}
.y1c_c00461{bottom:405.205197pt;}
.y1b_c00461{bottom:443.588248pt;}
.y1a_c00461{bottom:482.448899pt;}
.y19_c00461{bottom:507.717022pt;}
.y18_c00461{bottom:546.101407pt;}
.y17_c00461{bottom:584.963925pt;}
.y16_c00461{bottom:610.232715pt;}
.y15_c00461{bottom:635.660838pt;}
.y14_c00461{bottom:674.203889pt;}
.y13_c00461{bottom:707.468276pt;}
.y12_c00461{bottom:732.736399pt;}
.y11_c00461{bottom:771.438250pt;}
.y10_c00461{bottom:809.981301pt;}
.yf_c00461{bottom:835.249425pt;}
.ye_c00461{bottom:873.633809pt;}
.yd_c00461{bottom:912.175661pt;}
.yc_c00461{bottom:945.761247pt;}
.yb_c00461{bottom:966.710172pt;}
.y9_c00461{bottom:983.182565pt;}
.y7_c00461{bottom:1023.551024pt;}
.y6_c00461{bottom:1041.942883pt;}
.y5_c00461{bottom:1060.334742pt;}
.h1_c00461{height:16.153120pt;}
.h7_c00461{height:34.034591pt;}
.h6_c00461{height:37.724630pt;}
.h2_c00461{height:41.196944pt;}
.h4_c00461{height:44.780569pt;}
.h8_c00461{height:47.627189pt;}
.ha_c00461{height:52.732088pt;}
.h9_c00461{height:52.790940pt;}
.h5_c00461{height:1122.161626pt;}
.h3_c00461{height:1122.559167pt;}
.h0_c00461{height:1122.666667pt;}
.w17_c00461{width:2.400000pt;}
.w12_c00461{width:4.156800pt;}
.wc_c00461{width:4.160000pt;}
.w6_c00461{width:4.478400pt;}
.w16_c00461{width:5.755200pt;}
.w9_c00461{width:5.756800pt;}
.wf_c00461{width:6.556800pt;}
.w13_c00461{width:6.558400pt;}
.w15_c00461{width:7.195200pt;}
.w14_c00461{width:7.355200pt;}
.w7_c00461{width:7.356800pt;}
.w8_c00461{width:7.358400pt;}
.we_c00461{width:8.318400pt;}
.wb_c00461{width:8.956800pt;}
.w10_c00461{width:10.075200pt;}
.w4_c00461{width:10.555200pt;}
.w2_c00461{width:10.718400pt;}
.wa_c00461{width:11.035200pt;}
.w5_c00461{width:13.753600pt;}
.w3_c00461{width:21.270400pt;}
.w1_c00461{width:22.071840pt;}
.w11_c00461{width:23.032000pt;}
.wd_c00461{width:24.945600pt;}
.w19_c00461{width:792.977400pt;}
.w18_c00461{width:793.257550pt;}
.w0_c00461{width:793.333333pt;}
.x0_c00461{left:0.000000pt;}
.x1e_c00461{left:101.233093pt;}
.x1_c00461{left:114.072480pt;}
.x1f_c00461{left:149.211032pt;}
.x1c_c00461{left:225.370940pt;}
.x1b_c00461{left:239.124654pt;}
.x1d_c00461{left:376.018977pt;}
.x2_c00461{left:441.443200pt;}
.x3_c00461{left:452.161600pt;}
.x4_c00461{left:473.432000pt;}
.x5_c00461{left:483.987200pt;}
.x6_c00461{left:497.740800pt;}
.x7_c00461{left:501.899200pt;}
.x8_c00461{left:512.772800pt;}
.x9_c00461{left:520.131200pt;}
.xa_c00461{left:524.768000pt;}
.xb_c00461{left:539.160000pt;}
.xc_c00461{left:548.116800pt;}
.xd_c00461{left:552.275200pt;}
.xe_c00461{left:556.275200pt;}
.xf_c00461{left:581.220800pt;}
.x10_c00461{left:588.419200pt;}
.x11_c00461{left:598.334400pt;}
.x12_c00461{left:608.089600pt;}
.x13_c00461{left:630.161600pt;}
.x14_c00461{left:634.158400pt;}
.x15_c00461{left:640.716800pt;}
.x16_c00461{left:644.876800pt;}
.x17_c00461{left:652.232000pt;}
.x18_c00461{left:659.427200pt;}
.x19_c00461{left:665.985600pt;}
.x1a_c00461{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_bf4a27b4fc7bbe0a2a6f132a.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.112000;font-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_c00462{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:-16.552343px;}
.ws1_c00462{word-spacing:0.000000px;}
._e_c00462{margin-left:-3.900100px;}
._c_c00462{margin-left:-2.200052px;}
._2_c00462{margin-left:-1.129888px;}
._0_c00462{width:1.102012px;}
._d_c00462{width:2.103882px;}
._5_c00462{width:3.753575px;}
._6_c00462{width:4.960944px;}
._8_c00462{width:6.061213px;}
._3_c00462{width:7.086797px;}
._1_c00462{width:8.093540px;}
._7_c00462{width:9.364832px;}
._b_c00462{width:11.260403px;}
._9_c00462{width:20.216331px;}
._a_c00462{width:21.305724px;}
._4_c00462{width:35.331915px;}
.fc1_c00462{color:rgb(105,148,45);}
.fc0_c00462{color:rgb(35,31,32);}
.fs2_c00462{font-size:59.733096px;}
.fs0_c00462{font-size:66.209374px;}
.fs1_c00462{font-size:71.968771px;}
.y0_c00462{bottom:0.000000px;}
.y4_c00462{bottom:0.120938px;}
.y8_c00462{bottom:0.556171px;}
.y2_c00462{bottom:3.957898px;}
.ya_c00462{bottom:65.791352px;}
.y3_c00462{bottom:74.623320px;}
.y1_c00462{bottom:74.983320px;}
.y22_c00462{bottom:230.054787px;}
.y21_c00462{bottom:368.235031px;}
.y20_c00462{bottom:460.352844px;}
.y1f_c00462{bottom:522.423270px;}
.y1e_c00462{bottom:553.371257px;}
.y1d_c00462{bottom:584.316545px;}
.y1c_c00462{bottom:615.442432px;}
.y1b_c00462{bottom:646.389070px;}
.y1a_c00462{bottom:665.821097px;}
.y19_c00462{bottom:680.754056px;}
.y18_c00462{bottom:696.225050px;}
.y17_c00462{bottom:717.277542px;}
.y16_c00462{bottom:752.362978px;}
.y15_c00462{bottom:780.249616px;}
.y14_c00462{bottom:808.676255px;}
.y13_c00462{bottom:837.106344px;}
.y12_c00462{bottom:865.531632px;}
.y11_c00462{bottom:894.139621px;}
.y10_c00462{bottom:922.566260px;}
.yf_c00462{bottom:950.991548px;}
.ye_c00462{bottom:979.420287px;}
.yd_c00462{bottom:1007.849775px;}
.yc_c00462{bottom:1036.276414px;}
.yb_c00462{bottom:1087.548944px;}
.y9_c00462{bottom:1106.080386px;}
.y7_c00462{bottom:1151.494902px;}
.y6_c00462{bottom:1172.185744px;}
.y5_c00462{bottom:1192.876585px;}
.h1_c00462{height:18.172260px;}
.h7_c00462{height:38.288915px;}
.h6_c00462{height:42.440208px;}
.h2_c00462{height:46.346561px;}
.h4_c00462{height:50.378140px;}
.h8_c00462{height:53.580587px;}
.h9_c00462{height:59.323599px;}
.ha_c00462{height:64.484019px;}
.h5_c00462{height:1262.431829px;}
.h3_c00462{height:1262.879062px;}
.h0_c00462{height:1263.000000px;}
.w17_c00462{width:2.700000px;}
.w12_c00462{width:4.676400px;}
.wc_c00462{width:4.680000px;}
.w6_c00462{width:5.038200px;}
.w16_c00462{width:6.474600px;}
.w9_c00462{width:6.476400px;}
.wf_c00462{width:7.376400px;}
.w13_c00462{width:7.378200px;}
.w15_c00462{width:8.094600px;}
.w14_c00462{width:8.274600px;}
.w7_c00462{width:8.276400px;}
.w8_c00462{width:8.278200px;}
.we_c00462{width:9.358200px;}
.wb_c00462{width:10.076400px;}
.w10_c00462{width:11.334600px;}
.w4_c00462{width:11.874600px;}
.w2_c00462{width:12.058200px;}
.wa_c00462{width:12.414600px;}
.w5_c00462{width:15.472800px;}
.w3_c00462{width:23.929200px;}
.w1_c00462{width:24.830820px;}
.w11_c00462{width:25.911000px;}
.wd_c00462{width:28.063800px;}
.w19_c00462{width:892.099575px;}
.w18_c00462{width:892.414744px;}
.w0_c00462{width:892.500000px;}
.x0_c00462{left:0.000000px;}
.x1e_c00462{left:113.887229px;}
.x1_c00462{left:128.331540px;}
.x1f_c00462{left:167.865308px;}
.x20_c00462{left:180.639303px;}
.x1c_c00462{left:253.542308px;}
.x1b_c00462{left:269.015236px;}
.x21_c00462{left:348.323908px;}
.x23_c00462{left:356.238316px;}
.x22_c00462{left:403.915755px;}
.x1d_c00462{left:423.021349px;}
.x2_c00462{left:496.623600px;}
.x3_c00462{left:508.681800px;}
.x4_c00462{left:532.611000px;}
.x5_c00462{left:544.485600px;}
.x6_c00462{left:559.958400px;}
.x7_c00462{left:564.636600px;}
.x8_c00462{left:576.869400px;}
.x9_c00462{left:585.147600px;}
.xa_c00462{left:590.364000px;}
.xb_c00462{left:606.555000px;}
.xc_c00462{left:616.631400px;}
.xd_c00462{left:621.309600px;}
.xe_c00462{left:625.809600px;}
.xf_c00462{left:653.873400px;}
.x10_c00462{left:661.971600px;}
.x11_c00462{left:673.126200px;}
.x12_c00462{left:684.100800px;}
.x13_c00462{left:708.931800px;}
.x14_c00462{left:713.428200px;}
.x15_c00462{left:720.806400px;}
.x16_c00462{left:725.486400px;}
.x17_c00462{left:733.761000px;}
.x18_c00462{left:741.855600px;}
.x19_c00462{left:749.233800px;}
.x1a_c00462{left:755.708400px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws0_c00462{word-spacing:-14.713194pt;}
.ws1_c00462{word-spacing:0.000000pt;}
._e_c00462{margin-left:-3.466756pt;}
._c_c00462{margin-left:-1.955602pt;}
._2_c00462{margin-left:-1.004345pt;}
._0_c00462{width:0.979567pt;}
._d_c00462{width:1.870117pt;}
._5_c00462{width:3.336511pt;}
._6_c00462{width:4.409728pt;}
._8_c00462{width:5.387745pt;}
._3_c00462{width:6.299375pt;}
._1_c00462{width:7.194258pt;}
._7_c00462{width:8.324295pt;}
._b_c00462{width:10.009247pt;}
._9_c00462{width:17.970072pt;}
._a_c00462{width:18.938421pt;}
._4_c00462{width:31.406147pt;}
.fs2_c00462{font-size:53.096085pt;}
.fs0_c00462{font-size:58.852776pt;}
.fs1_c00462{font-size:63.972241pt;}
.y0_c00462{bottom:0.000000pt;}
.y4_c00462{bottom:0.107500pt;}
.y8_c00462{bottom:0.494374pt;}
.y2_c00462{bottom:3.518132pt;}
.ya_c00462{bottom:58.481202pt;}
.y3_c00462{bottom:66.331840pt;}
.y1_c00462{bottom:66.651840pt;}
.y22_c00462{bottom:204.493144pt;}
.y21_c00462{bottom:327.320028pt;}
.y20_c00462{bottom:409.202528pt;}
.y1f_c00462{bottom:464.376240pt;}
.y1e_c00462{bottom:491.885562pt;}
.y1d_c00462{bottom:519.392484pt;}
.y1c_c00462{bottom:547.059940pt;}
.y1b_c00462{bottom:574.568062pt;}
.y1a_c00462{bottom:591.840975pt;}
.y19_c00462{bottom:605.114717pt;}
.y18_c00462{bottom:618.866711pt;}
.y17_c00462{bottom:637.580037pt;}
.y16_c00462{bottom:668.767091pt;}
.y15_c00462{bottom:693.555215pt;}
.y14_c00462{bottom:718.823338pt;}
.y13_c00462{bottom:744.094528pt;}
.y12_c00462{bottom:769.361451pt;}
.y11_c00462{bottom:794.790774pt;}
.y10_c00462{bottom:820.058897pt;}
.yf_c00462{bottom:845.325821pt;}
.ye_c00462{bottom:870.595810pt;}
.yd_c00462{bottom:895.866467pt;}
.yc_c00462{bottom:921.134590pt;}
.yb_c00462{bottom:966.710172pt;}
.y9_c00462{bottom:983.182565pt;}
.y7_c00462{bottom:1023.551024pt;}
.y6_c00462{bottom:1041.942883pt;}
.y5_c00462{bottom:1060.334742pt;}
.h1_c00462{height:16.153120pt;}
.h7_c00462{height:34.034591pt;}
.h6_c00462{height:37.724630pt;}
.h2_c00462{height:41.196944pt;}
.h4_c00462{height:44.780569pt;}
.h8_c00462{height:47.627189pt;}
.h9_c00462{height:52.732088pt;}
.ha_c00462{height:57.319128pt;}
.h5_c00462{height:1122.161626pt;}
.h3_c00462{height:1122.559167pt;}
.h0_c00462{height:1122.666667pt;}
.w17_c00462{width:2.400000pt;}
.w12_c00462{width:4.156800pt;}
.wc_c00462{width:4.160000pt;}
.w6_c00462{width:4.478400pt;}
.w16_c00462{width:5.755200pt;}
.w9_c00462{width:5.756800pt;}
.wf_c00462{width:6.556800pt;}
.w13_c00462{width:6.558400pt;}
.w15_c00462{width:7.195200pt;}
.w14_c00462{width:7.355200pt;}
.w7_c00462{width:7.356800pt;}
.w8_c00462{width:7.358400pt;}
.we_c00462{width:8.318400pt;}
.wb_c00462{width:8.956800pt;}
.w10_c00462{width:10.075200pt;}
.w4_c00462{width:10.555200pt;}
.w2_c00462{width:10.718400pt;}
.wa_c00462{width:11.035200pt;}
.w5_c00462{width:13.753600pt;}
.w3_c00462{width:21.270400pt;}
.w1_c00462{width:22.071840pt;}
.w11_c00462{width:23.032000pt;}
.wd_c00462{width:24.945600pt;}
.w19_c00462{width:792.977400pt;}
.w18_c00462{width:793.257550pt;}
.w0_c00462{width:793.333333pt;}
.x0_c00462{left:0.000000pt;}
.x1e_c00462{left:101.233093pt;}
.x1_c00462{left:114.072480pt;}
.x1f_c00462{left:149.213607pt;}
.x20_c00462{left:160.568269pt;}
.x1c_c00462{left:225.370940pt;}
.x1b_c00462{left:239.124654pt;}
.x21_c00462{left:309.621251pt;}
.x23_c00462{left:316.656281pt;}
.x22_c00462{left:359.036227pt;}
.x1d_c00462{left:376.018977pt;}
.x2_c00462{left:441.443200pt;}
.x3_c00462{left:452.161600pt;}
.x4_c00462{left:473.432000pt;}
.x5_c00462{left:483.987200pt;}
.x6_c00462{left:497.740800pt;}
.x7_c00462{left:501.899200pt;}
.x8_c00462{left:512.772800pt;}
.x9_c00462{left:520.131200pt;}
.xa_c00462{left:524.768000pt;}
.xb_c00462{left:539.160000pt;}
.xc_c00462{left:548.116800pt;}
.xd_c00462{left:552.275200pt;}
.xe_c00462{left:556.275200pt;}
.xf_c00462{left:581.220800pt;}
.x10_c00462{left:588.419200pt;}
.x11_c00462{left:598.334400pt;}
.x12_c00462{left:608.089600pt;}
.x13_c00462{left:630.161600pt;}
.x14_c00462{left:634.158400pt;}
.x15_c00462{left:640.716800pt;}
.x16_c00462{left:644.876800pt;}
.x17_c00462{left:652.232000pt;}
.x18_c00462{left:659.427200pt;}
.x19_c00462{left:665.985600pt;}
.x1a_c00462{left:671.740800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0869dde36bdfe9adf75f1fb.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:0.916000;font-style:normal;font-weight:normal;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_facae377e98be2b098279295.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00463{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls1_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:0.019523px;}
.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:-16.571867px;}
.ws0_c00463{word-spacing:-16.552343px;}
.ws2_c00463{word-spacing:0.000000px;}
._0_c00463{width:1.102012px;}
.fc1_c00463{color:rgb(105,148,45);}
.fc0_c00463{color:rgb(35,31,32);}
.fs2_c00463{font-size:59.733096px;}
.fs0_c00463{font-size:66.209374px;}
.fs1_c00463{font-size:71.968771px;}
.y0_c00463{bottom:0.000000px;}
.y3_c00463{bottom:0.120938px;}
.y2_c00463{bottom:3.959248px;}
.y9_c00463{bottom:66.226586px;}
.y1_c00463{bottom:76.063320px;}
.y8_c00463{bottom:82.416529px;}
.y7_c00463{bottom:1106.515620px;}
.y6_c00463{bottom:1151.494902px;}
.y5_c00463{bottom:1172.185744px;}
.y4_c00463{bottom:1192.876585px;}
.h1_c00463{height:18.352260px;}
.h6_c00463{height:38.288915px;}
.h5_c00463{height:42.440208px;}
.h2_c00463{height:46.346561px;}
.h4_c00463{height:50.378140px;}
.h3_c00463{height:1262.879062px;}
.h0_c00463{height:1263.000000px;}
.w16_c00463{width:2.518200px;}
.wc_c00463{width:4.678200px;}
.w12_c00463{width:4.680000px;}
.wb_c00463{width:5.038200px;}
.w5_c00463{width:5.040000px;}
.w15_c00463{width:6.474600px;}
.w8_c00463{width:6.476400px;}
.w13_c00463{width:7.374600px;}
.wf_c00463{width:7.378200px;}
.w14_c00463{width:8.096400px;}
.w7_c00463{width:8.272800px;}
.w6_c00463{width:8.274600px;}
.we_c00463{width:9.354600px;}
.wa_c00463{width:10.076400px;}
.w3_c00463{width:11.876400px;}
.w1_c00463{width:12.054600px;}
.w9_c00463{width:12.418200px;}
.w10_c00463{width:15.296400px;}
.w4_c00463{width:15.471000px;}
.w2_c00463{width:23.929200px;}
.w11_c00463{width:25.905600px;}
.wd_c00463{width:28.067400px;}
.w17_c00463{width:892.414744px;}
.w0_c00463{width:892.500000px;}
.x0_c00463{left:0.000000px;}
.x1d_c00463{left:113.925198px;}
.x1b_c00463{left:253.542308px;}
.x1a_c00463{left:269.015236px;}
.x1c_c00463{left:423.021349px;}
.x1_c00463{left:518.756400px;}
.x2_c00463{left:530.811000px;}
.x3_c00463{left:554.740200px;}
.x4_c00463{left:566.616600px;}
.x5_c00463{left:582.087600px;}
.x6_c00463{left:586.767600px;}
.x7_c00463{left:599.002200px;}
.x8_c00463{left:607.275000px;}
.x9_c00463{left:612.491400px;}
.xa_c00463{left:628.686000px;}
.xb_c00463{left:638.762400px;}
.xc_c00463{left:643.440600px;}
.xd_c00463{left:647.938800px;}
.xe_c00463{left:676.006200px;}
.xf_c00463{left:684.100800px;}
.x10_c00463{left:691.479000px;}
.x11_c00463{left:706.415400px;}
.x12_c00463{left:731.241000px;}
.x13_c00463{left:735.741000px;}
.x14_c00463{left:743.115600px;}
.x15_c00463{left:747.793800px;}
.x16_c00463{left:756.068400px;}
.x17_c00463{left:764.164800px;}
.x18_c00463{left:771.543000px;}
.x19_c00463{left:778.017600px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls1_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:0.017354pt;}
.ws1_c00463{word-spacing:-14.730548pt;}
.ws0_c00463{word-spacing:-14.713194pt;}
.ws2_c00463{word-spacing:0.000000pt;}
._0_c00463{width:0.979567pt;}
.fs2_c00463{font-size:53.096085pt;}
.fs0_c00463{font-size:58.852776pt;}
.fs1_c00463{font-size:63.972241pt;}
.y0_c00463{bottom:0.000000pt;}
.y3_c00463{bottom:0.107500pt;}
.y2_c00463{bottom:3.519332pt;}
.y9_c00463{bottom:58.868076pt;}
.y1_c00463{bottom:67.611840pt;}
.y8_c00463{bottom:73.259137pt;}
.y7_c00463{bottom:983.569440pt;}
.y6_c00463{bottom:1023.551024pt;}
.y5_c00463{bottom:1041.942883pt;}
.y4_c00463{bottom:1060.334742pt;}
.h1_c00463{height:16.313120pt;}
.h6_c00463{height:34.034591pt;}
.h5_c00463{height:37.724630pt;}
.h2_c00463{height:41.196944pt;}
.h4_c00463{height:44.780569pt;}
.h3_c00463{height:1122.559167pt;}
.h0_c00463{height:1122.666667pt;}
.w16_c00463{width:2.238400pt;}
.wc_c00463{width:4.158400pt;}
.w12_c00463{width:4.160000pt;}
.wb_c00463{width:4.478400pt;}
.w5_c00463{width:4.480000pt;}
.w15_c00463{width:5.755200pt;}
.w8_c00463{width:5.756800pt;}
.w13_c00463{width:6.555200pt;}
.wf_c00463{width:6.558400pt;}
.w14_c00463{width:7.196800pt;}
.w7_c00463{width:7.353600pt;}
.w6_c00463{width:7.355200pt;}
.we_c00463{width:8.315200pt;}
.wa_c00463{width:8.956800pt;}
.w3_c00463{width:10.556800pt;}
.w1_c00463{width:10.715200pt;}
.w9_c00463{width:11.038400pt;}
.w10_c00463{width:13.596800pt;}
.w4_c00463{width:13.752000pt;}
.w2_c00463{width:21.270400pt;}
.w11_c00463{width:23.027200pt;}
.wd_c00463{width:24.948800pt;}
.w17_c00463{width:793.257550pt;}
.w0_c00463{width:793.333333pt;}
.x0_c00463{left:0.000000pt;}
.x1d_c00463{left:101.266843pt;}
.x1b_c00463{left:225.370940pt;}
.x1a_c00463{left:239.124654pt;}
.x1c_c00463{left:376.018977pt;}
.x1_c00463{left:461.116800pt;}
.x2_c00463{left:471.832000pt;}
.x3_c00463{left:493.102400pt;}
.x4_c00463{left:503.659200pt;}
.x5_c00463{left:517.411200pt;}
.x6_c00463{left:521.571200pt;}
.x7_c00463{left:532.446400pt;}
.x8_c00463{left:539.800000pt;}
.x9_c00463{left:544.436800pt;}
.xa_c00463{left:558.832000pt;}
.xb_c00463{left:567.788800pt;}
.xc_c00463{left:571.947200pt;}
.xd_c00463{left:575.945600pt;}
.xe_c00463{left:600.894400pt;}
.xf_c00463{left:608.089600pt;}
.x10_c00463{left:614.648000pt;}
.x11_c00463{left:627.924800pt;}
.x12_c00463{left:649.992000pt;}
.x13_c00463{left:653.992000pt;}
.x14_c00463{left:660.547200pt;}
.x15_c00463{left:664.705600pt;}
.x16_c00463{left:672.060800pt;}
.x17_c00463{left:679.257600pt;}
.x18_c00463{left:685.816000pt;}
.x19_c00463{left:691.571200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.113000;font-style: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.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls0_c00464{letter-spacing:0.000000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:0.000000px;}
._0_c00464{margin-left:-1.031213px;}
.fc0_c00464{color:rgb(35,31,32);}
.fs0_c00464{font-size:120.185952px;}
.y0_c00464{bottom:0.000000px;}
.y1_c00464{bottom:0.120938px;}
.y3_c00464{bottom:428.761141px;}
.y2_c00464{bottom:480.577870px;}
.h2_c00464{height:107.806799px;}
.h1_c00464{height:1262.879062px;}
.h0_c00464{height:1263.000000px;}
.w1_c00464{width:892.414744px;}
.w0_c00464{width:892.500000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:431.843171px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
._0_c00464{margin-left:-0.916634pt;}
.fs0_c00464{font-size:106.831957pt;}
.y0_c00464{bottom:0.000000pt;}
.y1_c00464{bottom:0.107500pt;}
.y3_c00464{bottom:381.121014pt;}
.y2_c00464{bottom:427.180329pt;}
.h2_c00464{height:95.828266pt;}
.h1_c00464{height:1122.559167pt;}
.h0_c00464{height:1122.666667pt;}
.w1_c00464{width:793.257550pt;}
.w0_c00464{width:793.333333pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:383.860596pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.113000;font-style: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.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:0.000000px;}
.fc0_c00465{color:rgb(35,31,32);}
.fs0_c00465{font-size:107.951957px;}
.y0_c00465{bottom:0.000000px;}
.y1_c00465{bottom:0.120938px;}
.y2_c00465{bottom:483.457869px;}
.h2_c00465{height:96.832905px;}
.h1_c00465{height:1262.879062px;}
.h0_c00465{height:1263.000000px;}
.w1_c00465{width:892.414744px;}
.w0_c00465{width:892.500000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:115.545198px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
.fs0_c00465{font-size:95.957295pt;}
.y0_c00465{bottom:0.000000pt;}
.y1_c00465{bottom:0.107500pt;}
.y2_c00465{bottom:429.740328pt;}
.h2_c00465{height:86.073694pt;}
.h1_c00465{height:1122.559167pt;}
.h0_c00465{height:1122.666667pt;}
.w1_c00465{width:793.257550pt;}
.w0_c00465{width:793.333333pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:102.706842pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.107000;font-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_c00466{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls0_c00466{letter-spacing:0.000000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00466{word-spacing:-22.489802px;}
.ws3_c00466{word-spacing:-14.204182px;}
.ws2_c00466{word-spacing:-13.020119px;}
.ws4_c00466{word-spacing:0.000000px;}
.ws1_c00466{word-spacing:77.036738px;}
._14_c00466{margin-left:-6.410973px;}
._13_c00466{margin-left:-5.245348px;}
._3_c00466{margin-left:-3.965365px;}
._5_c00466{margin-left:-2.298813px;}
._2_c00466{margin-left:-1.171893px;}
._1_c00466{width:1.539031px;}
._4_c00466{width:2.815000px;}
._0_c00466{width:4.683097px;}
._1c_c00466{width:7.615241px;}
._2a_c00466{width:8.724397px;}
._d_c00466{width:19.035506px;}
._1b_c00466{width:20.308595px;}
._29_c00466{width:24.092673px;}
._12_c00466{width:31.653603px;}
._25_c00466{width:32.722243px;}
._11_c00466{width:59.213588px;}
._1a_c00466{width:68.175879px;}
._19_c00466{width:75.175455px;}
._24_c00466{width:79.533259px;}
._18_c00466{width:128.623587px;}
._a_c00466{width:129.923251px;}
._8_c00466{width:139.549574px;}
._c_c00466{width:148.393027px;}
._f_c00466{width:167.397408px;}
._16_c00466{width:171.531531px;}
._9_c00466{width:176.192461px;}
._1d_c00466{width:193.214233px;}
._6_c00466{width:211.709891px;}
._b_c00466{width:215.018117px;}
._1f_c00466{width:232.072134px;}
._1e_c00466{width:240.759179px;}
._21_c00466{width:371.211605px;}
._15_c00466{width:432.481536px;}
._7_c00466{width:471.608940px;}
._26_c00466{width:519.671530px;}
._e_c00466{width:845.611295px;}
._17_c00466{width:870.623049px;}
._10_c00466{width:948.960295px;}
._20_c00466{width:991.493642px;}
._28_c00466{width:1021.047054px;}
._23_c00466{width:1051.303556px;}
._27_c00466{width:1249.134272px;}
._22_c00466{width:1279.813343px;}
.fc0_c00466{color:rgb(35,31,32);}
.fs2_c00466{font-size:46.834961px;}
.fs1_c00466{font-size:51.094180px;}
.fs0_c00466{font-size:80.898568px;}
.y0_c00466{bottom:0.000000px;}
.y37_c00466{bottom:0.120938px;}
.y1_c00466{bottom:0.556171px;}
.y36_c00466{bottom:2.879281px;}
.y39_c00466{bottom:68.744500px;}
.y35_c00466{bottom:70.124040px;}
.y38_c00466{bottom:72.882383px;}
.y34_c00466{bottom:174.461509px;}
.y33_c00466{bottom:201.269498px;}
.y32_c00466{bottom:223.758239px;}
.y31_c00466{bottom:245.889095px;}
.y30_c00466{bottom:260.823464px;}
.y2f_c00466{bottom:275.755718px;}
.y2e_c00466{bottom:300.227308px;}
.y2d_c00466{bottom:322.714999px;}
.y2c_c00466{bottom:345.027191px;}
.y2b_c00466{bottom:367.153637px;}
.y2a_c00466{bottom:382.087301px;}
.y29_c00466{bottom:397.021670px;}
.y28_c00466{bottom:421.488910px;}
.y27_c00466{bottom:443.978551px;}
.y26_c00466{bottom:466.290142px;}
.y25_c00466{bottom:488.601088px;}
.y24_c00466{bottom:503.534752px;}
.y23_c00466{bottom:518.289121px;}
.y22_c00466{bottom:542.756511px;}
.y21_c00466{bottom:565.424502px;}
.y20_c00466{bottom:587.734593px;}
.y1f_c00466{bottom:609.865450px;}
.y1e_c00466{bottom:624.799819px;}
.y1d_c00466{bottom:639.732073px;}
.y1c_c00466{bottom:664.198863px;}
.y1b_c00466{bottom:686.692104px;}
.y1a_c00466{bottom:709.000845px;}
.y19_c00466{bottom:725.014539px;}
.y18_c00466{bottom:747.322395px;}
.y17_c00466{bottom:762.075354px;}
.y16_c00466{bottom:777.009018px;}
.y15_c00466{bottom:801.476408px;}
.y14_c00466{bottom:823.967549px;}
.y13_c00466{bottom:846.458390px;}
.y12_c00466{bottom:868.768481px;}
.y11_c00466{bottom:890.898872px;}
.y10_c00466{bottom:905.831831px;}
.yf_c00466{bottom:920.764085px;}
.ye_c00466{bottom:935.698454px;}
.yd_c00466{bottom:960.165845px;}
.yc_c00466{bottom:982.654136px;}
.yb_c00466{bottom:1004.965727px;}
.ya_c00466{bottom:1020.977920px;}
.y9_c00466{bottom:1043.108866px;}
.y8_c00466{bottom:1058.043940px;}
.y7_c00466{bottom:1072.976899px;}
.y6_c00466{bottom:1097.447890px;}
.y5_c00466{bottom:1121.374380px;}
.y4_c00466{bottom:1167.611712px;}
.y3_c00466{bottom:1197.478350px;}
.y2_c00466{bottom:1222.486340px;}
.hb_c00466{height:14.393700px;}
.h5_c00466{height:42.010960px;}
.h6_c00466{height:45.831479px;}
.h8_c00466{height:45.833279px;}
.ha_c00466{height:45.834479px;}
.h7_c00466{height:45.844679px;}
.h9_c00466{height:45.845879px;}
.h4_c00466{height:47.262116px;}
.h3_c00466{height:47.364304px;}
.h2_c00466{height:74.992972px;}
.h1_c00466{height:1262.431829px;}
.hc_c00466{height:1262.879062px;}
.h0_c00466{height:1263.000000px;}
.w2_c00466{width:40.482000px;}
.w1_c00466{width:892.099575px;}
.w3_c00466{width:892.414744px;}
.w0_c00466{width:892.500000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:107.230682px;}
.x2_c00466{left:205.105793px;}
.x3_c00466{left:402.835835px;}
.x4_c00466{left:532.558592px;}
.x5_c00466{left:575.199036px;}
.x6_c00466{left:796.372200px;}
.x7_c00466{left:859.149500px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:-19.990935pt;}
.ws3_c00466{word-spacing:-12.625939pt;}
.ws2_c00466{word-spacing:-11.573439pt;}
.ws4_c00466{word-spacing:0.000000pt;}
.ws1_c00466{word-spacing:68.477101pt;}
._14_c00466{margin-left:-5.698643pt;}
._13_c00466{margin-left:-4.662531pt;}
._3_c00466{margin-left:-3.524769pt;}
._5_c00466{margin-left:-2.043390pt;}
._2_c00466{margin-left:-1.041682pt;}
._1_c00466{width:1.368027pt;}
._4_c00466{width:2.502222pt;}
._0_c00466{width:4.162753pt;}
._1c_c00466{width:6.769103pt;}
._2a_c00466{width:7.755020pt;}
._d_c00466{width:16.920450pt;}
._1b_c00466{width:18.052084pt;}
._29_c00466{width:21.415709pt;}
._12_c00466{width:28.136536pt;}
._25_c00466{width:29.086438pt;}
._11_c00466{width:52.634301pt;}
._1a_c00466{width:60.600781pt;}
._19_c00466{width:66.822627pt;}
._24_c00466{width:70.696231pt;}
._18_c00466{width:114.332077pt;}
._a_c00466{width:115.487334pt;}
._8_c00466{width:124.044066pt;}
._c_c00466{width:131.904913pt;}
._f_c00466{width:148.797696pt;}
._16_c00466{width:152.472472pt;}
._9_c00466{width:156.615521pt;}
._1d_c00466{width:171.745985pt;}
._6_c00466{width:188.186570pt;}
._b_c00466{width:191.127215pt;}
._1f_c00466{width:206.286342pt;}
._1e_c00466{width:214.008159pt;}
._21_c00466{width:329.965871pt;}
._15_c00466{width:384.428032pt;}
._7_c00466{width:419.207947pt;}
._26_c00466{width:461.930249pt;}
._e_c00466{width:751.654485pt;}
._17_c00466{width:773.887155pt;}
._10_c00466{width:843.520262pt;}
._20_c00466{width:881.327682pt;}
._28_c00466{width:907.597382pt;}
._23_c00466{width:934.492049pt;}
._27_c00466{width:1110.341575pt;}
._22_c00466{width:1137.611860pt;}
.fs2_c00466{font-size:41.631077pt;}
.fs1_c00466{font-size:45.417048pt;}
.fs0_c00466{font-size:71.909838pt;}
.y0_c00466{bottom:0.000000pt;}
.y37_c00466{bottom:0.107500pt;}
.y1_c00466{bottom:0.494374pt;}
.y36_c00466{bottom:2.559361pt;}
.y39_c00466{bottom:61.106222pt;}
.y35_c00466{bottom:62.332480pt;}
.y38_c00466{bottom:64.784341pt;}
.y34_c00466{bottom:155.076897pt;}
.y33_c00466{bottom:178.906221pt;}
.y32_c00466{bottom:198.896213pt;}
.y31_c00466{bottom:218.568085pt;}
.y30_c00466{bottom:231.843079pt;}
.y2f_c00466{bottom:245.116194pt;}
.y2e_c00466{bottom:266.868719pt;}
.y2d_c00466{bottom:286.857777pt;}
.y2c_c00466{bottom:306.690836pt;}
.y2b_c00466{bottom:326.358788pt;}
.y2a_c00466{bottom:339.633156pt;}
.y29_c00466{bottom:352.908151pt;}
.y28_c00466{bottom:374.656809pt;}
.y27_c00466{bottom:394.647601pt;}
.y26_c00466{bottom:414.480126pt;}
.y25_c00466{bottom:434.312078pt;}
.y24_c00466{bottom:447.586446pt;}
.y23_c00466{bottom:460.701441pt;}
.y22_c00466{bottom:482.450232pt;}
.y21_c00466{bottom:502.599558pt;}
.y20_c00466{bottom:522.430750pt;}
.y1f_c00466{bottom:542.102622pt;}
.y1e_c00466{bottom:555.377617pt;}
.y1d_c00466{bottom:568.650731pt;}
.y1c_c00466{bottom:590.398989pt;}
.y1b_c00466{bottom:610.392981pt;}
.y1a_c00466{bottom:630.222973pt;}
.y19_c00466{bottom:644.457368pt;}
.y18_c00466{bottom:664.286573pt;}
.y17_c00466{bottom:677.400314pt;}
.y16_c00466{bottom:690.674682pt;}
.y15_c00466{bottom:712.423474pt;}
.y14_c00466{bottom:732.415599pt;}
.y13_c00466{bottom:752.407458pt;}
.y12_c00466{bottom:772.238650pt;}
.y11_c00466{bottom:791.910109pt;}
.y10_c00466{bottom:805.183850pt;}
.yf_c00466{bottom:818.456965pt;}
.ye_c00466{bottom:831.731959pt;}
.yd_c00466{bottom:853.480751pt;}
.yc_c00466{bottom:873.470343pt;}
.yb_c00466{bottom:893.302868pt;}
.ya_c00466{bottom:907.535929pt;}
.y9_c00466{bottom:927.207881pt;}
.y8_c00466{bottom:940.483503pt;}
.y7_c00466{bottom:953.757244pt;}
.y6_c00466{bottom:975.509235pt;}
.y5_c00466{bottom:996.777227pt;}
.y4_c00466{bottom:1037.877077pt;}
.y3_c00466{bottom:1064.425200pt;}
.y2_c00466{bottom:1086.654524pt;}
.hb_c00466{height:12.794400pt;}
.h5_c00466{height:37.343076pt;}
.h6_c00466{height:40.739093pt;}
.h8_c00466{height:40.740693pt;}
.ha_c00466{height:40.741759pt;}
.h7_c00466{height:40.750826pt;}
.h9_c00466{height:40.751892pt;}
.h4_c00466{height:42.010770pt;}
.h3_c00466{height:42.101604pt;}
.h2_c00466{height:66.660420pt;}
.h1_c00466{height:1122.161626pt;}
.hc_c00466{height:1122.559167pt;}
.h0_c00466{height:1122.666667pt;}
.w2_c00466{width:35.984000pt;}
.w1_c00466{width:792.977400pt;}
.w3_c00466{width:793.257550pt;}
.w0_c00466{width:793.333333pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:95.316162pt;}
.x2_c00466{left:182.316260pt;}
.x3_c00466{left:358.076298pt;}
.x4_c00466{left:473.385415pt;}
.x5_c00466{left:511.288032pt;}
.x6_c00466{left:707.886400pt;}
.x7_c00466{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.137000;font-style:normal;font-weight:normal;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_15f79470968d99875de04212.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.107000;font-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_c00467{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:-22.489802px;}
.ws4_c00467{word-spacing:-17.755519px;}
.ws5_c00467{word-spacing:-15.388178px;}
.ws2_c00467{word-spacing:-14.204182px;}
.ws3_c00467{word-spacing:-13.020119px;}
.ws6_c00467{word-spacing:0.000000px;}
.ws1_c00467{word-spacing:77.036738px;}
._21_c00467{margin-left:-8.464090px;}
._17_c00467{margin-left:-6.891146px;}
._d_c00467{margin-left:-5.061774px;}
._3_c00467{margin-left:-3.965365px;}
._5_c00467{margin-left:-2.298813px;}
._2_c00467{margin-left:-1.171893px;}
._1_c00467{width:1.539031px;}
._4_c00467{width:2.815000px;}
._0_c00467{width:4.683097px;}
._c_c00467{width:6.428024px;}
._1f_c00467{width:7.641196px;}
._20_c00467{width:8.769304px;}
._23_c00467{width:16.251074px;}
._26_c00467{width:18.012993px;}
._25_c00467{width:20.070645px;}
._24_c00467{width:21.328017px;}
._f_c00467{width:27.815943px;}
._e_c00467{width:62.825653px;}
._1e_c00467{width:70.943689px;}
._16_c00467{width:75.242232px;}
._22_c00467{width:79.472867px;}
._a_c00467{width:129.923251px;}
._8_c00467{width:139.549574px;}
._10_c00467{width:159.329462px;}
._14_c00467{width:167.852325px;}
._9_c00467{width:176.192461px;}
._11_c00467{width:201.521065px;}
._6_c00467{width:211.709891px;}
._b_c00467{width:215.018117px;}
._1c_c00467{width:223.717011px;}
._18_c00467{width:231.794366px;}
._1a_c00467{width:237.330684px;}
._12_c00467{width:241.047581px;}
._1b_c00467{width:244.603482px;}
._19_c00467{width:274.569877px;}
._27_c00467{width:290.967700px;}
._7_c00467{width:471.608940px;}
._13_c00467{width:547.057553px;}
._15_c00467{width:991.493642px;}
._1d_c00467{width:1021.047054px;}
._28_c00467{width:1051.309556px;}
.fc0_c00467{color:rgb(35,31,32);}
.fs4_c00467{font-size:46.834961px;}
.fs1_c00467{font-size:51.094180px;}
.fs5_c00467{font-size:55.353158px;}
.fs2_c00467{font-size:63.868774px;}
.fs3_c00467{font-size:68.126973px;}
.fs0_c00467{font-size:80.898568px;}
.y0_c00467{bottom:0.000000px;}
.y39_c00467{bottom:0.120938px;}
.y1_c00467{bottom:0.556171px;}
.y38_c00467{bottom:2.879281px;}
.y22_c00467{bottom:3.599475px;}
.y3b_c00467{bottom:68.744500px;}
.y37_c00467{bottom:70.124040px;}
.y3a_c00467{bottom:72.882383px;}
.y36_c00467{bottom:164.024063px;}
.y35_c00467{bottom:186.334154px;}
.y34_c00467{bottom:208.824245px;}
.y33_c00467{bottom:231.133736px;}
.y32_c00467{bottom:253.443977px;}
.y31_c00467{bottom:269.456171px;}
.y30_c00467{bottom:291.768512px;}
.y2f_c00467{bottom:307.780705px;}
.y2e_c00467{bottom:329.913062px;}
.y2d_c00467{bottom:344.847431px;}
.y2c_c00467{bottom:359.779685px;}
.y2b_c00467{bottom:384.248575px;}
.y2a_c00467{bottom:406.737166px;}
.y29_c00467{bottom:429.046657px;}
.y28_c00467{bottom:451.356013px;}
.y27_c00467{bottom:466.289677px;}
.y26_c00467{bottom:481.042636px;}
.y25_c00467{bottom:505.512126px;}
.y24_c00467{bottom:524.943119px;}
.y21_c00467{bottom:557.884800px;}
.y23_c00467{bottom:558.768105px;}
.y20_c00467{bottom:560.928104px;}
.y1f_c00467{bottom:589.713093px;}
.y1e_c00467{bottom:616.521982px;}
.y1d_c00467{bottom:638.832073px;}
.y1c_c00467{bottom:660.960394px;}
.y1b_c00467{bottom:675.894058px;}
.y1a_c00467{bottom:700.365198px;}
.y19_c00467{bottom:722.852739px;}
.y18_c00467{bottom:745.343580px;}
.y17_c00467{bottom:767.653672px;}
.y16_c00467{bottom:789.963763px;}
.y14_c00467{bottom:812.273854px;}
.y15_c00467{bottom:828.285447px;}
.y13_c00467{bottom:828.286047px;}
.y12_c00467{bottom:850.596288px;}
.y11_c00467{bottom:866.608482px;}
.y10_c00467{bottom:888.735813px;}
.yf_c00467{bottom:903.673002px;}
.ye_c00467{bottom:918.605961px;}
.yd_c00467{bottom:943.072751px;}
.yc_c00467{bottom:965.565842px;}
.yb_c00467{bottom:988.057433px;}
.ya_c00467{bottom:1010.183550px;}
.y9_c00467{bottom:1025.117919px;}
.y8_c00467{bottom:1049.588909px;}
.y7_c00467{bottom:1068.839901px;}
.y6_c00467{bottom:1094.567891px;}
.y5_c00467{bottom:1121.374380px;}
.y4_c00467{bottom:1167.611712px;}
.y3_c00467{bottom:1197.478350px;}
.y2_c00467{bottom:1222.486340px;}
.h10_c00467{height:14.393700px;}
.hc_c00467{height:18.532800px;}
.h7_c00467{height:42.010960px;}
.h8_c00467{height:45.831479px;}
.ha_c00467{height:45.833879px;}
.hf_c00467{height:45.836279px;}
.he_c00467{height:45.837479px;}
.h9_c00467{height:45.844679px;}
.h4_c00467{height:47.262116px;}
.h3_c00467{height:47.364304px;}
.hd_c00467{height:51.312377px;}
.h5_c00467{height:59.078616px;}
.hb_c00467{height:59.206354px;}
.h6_c00467{height:63.153704px;}
.h2_c00467{height:74.992972px;}
.h1_c00467{height:1262.431829px;}
.h11_c00467{height:1262.879062px;}
.h0_c00467{height:1263.000000px;}
.w3_c00467{width:40.482000px;}
.w2_c00467{width:198.988200px;}
.w1_c00467{width:892.099575px;}
.w4_c00467{width:892.414744px;}
.w0_c00467{width:892.500000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:107.230682px;}
.x2_c00467{left:205.105793px;}
.x4_c00467{left:402.835835px;}
.x6_c00467{left:409.314211px;}
.x3_c00467{left:532.557094px;}
.x5_c00467{left:575.196684px;}
.x7_c00467{left:578.309400px;}
.x9_c00467{left:796.372200px;}
.x8_c00467{left:838.962039px;}
.xa_c00467{left:859.149500px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:-19.990935pt;}
.ws4_c00467{word-spacing:-15.782684pt;}
.ws5_c00467{word-spacing:-13.678380pt;}
.ws2_c00467{word-spacing:-12.625939pt;}
.ws3_c00467{word-spacing:-11.573439pt;}
.ws6_c00467{word-spacing:0.000000pt;}
.ws1_c00467{word-spacing:68.477101pt;}
._21_c00467{margin-left:-7.523635pt;}
._17_c00467{margin-left:-6.125464pt;}
._d_c00467{margin-left:-4.499355pt;}
._3_c00467{margin-left:-3.524769pt;}
._5_c00467{margin-left:-2.043390pt;}
._2_c00467{margin-left:-1.041682pt;}
._1_c00467{width:1.368027pt;}
._4_c00467{width:2.502222pt;}
._0_c00467{width:4.162753pt;}
._c_c00467{width:5.713799pt;}
._1f_c00467{width:6.792174pt;}
._20_c00467{width:7.794937pt;}
._23_c00467{width:14.445399pt;}
._26_c00467{width:16.011549pt;}
._25_c00467{width:17.840573pt;}
._24_c00467{width:18.958237pt;}
._f_c00467{width:24.725282pt;}
._e_c00467{width:55.845025pt;}
._1e_c00467{width:63.061057pt;}
._16_c00467{width:66.881984pt;}
._22_c00467{width:70.642549pt;}
._a_c00467{width:115.487334pt;}
._8_c00467{width:124.044066pt;}
._10_c00467{width:141.626188pt;}
._14_c00467{width:149.202067pt;}
._9_c00467{width:156.615521pt;}
._11_c00467{width:179.129835pt;}
._6_c00467{width:188.186570pt;}
._b_c00467{width:191.127215pt;}
._1c_c00467{width:198.859565pt;}
._18_c00467{width:206.039436pt;}
._1a_c00467{width:210.960608pt;}
._12_c00467{width:214.264516pt;}
._1b_c00467{width:217.425318pt;}
._19_c00467{width:244.062113pt;}
._27_c00467{width:258.637956pt;}
._7_c00467{width:419.207947pt;}
._13_c00467{width:486.273380pt;}
._15_c00467{width:881.327682pt;}
._1d_c00467{width:907.597382pt;}
._28_c00467{width:934.497383pt;}
.fs4_c00467{font-size:41.631077pt;}
.fs1_c00467{font-size:45.417048pt;}
.fs5_c00467{font-size:49.202807pt;}
.fs2_c00467{font-size:56.772244pt;}
.fs3_c00467{font-size:60.557309pt;}
.fs0_c00467{font-size:71.909838pt;}
.y0_c00467{bottom:0.000000pt;}
.y39_c00467{bottom:0.107500pt;}
.y1_c00467{bottom:0.494374pt;}
.y38_c00467{bottom:2.559361pt;}
.y22_c00467{bottom:3.199534pt;}
.y3b_c00467{bottom:61.106222pt;}
.y37_c00467{bottom:62.332480pt;}
.y3a_c00467{bottom:64.784341pt;}
.y36_c00467{bottom:145.799167pt;}
.y35_c00467{bottom:165.630359pt;}
.y34_c00467{bottom:185.621551pt;}
.y33_c00467{bottom:205.452210pt;}
.y32_c00467{bottom:225.283535pt;}
.y31_c00467{bottom:239.516596pt;}
.y30_c00467{bottom:259.349788pt;}
.y2f_c00467{bottom:273.582849pt;}
.y2e_c00467{bottom:293.256055pt;}
.y2d_c00467{bottom:306.531049pt;}
.y2c_c00467{bottom:319.804164pt;}
.y2b_c00467{bottom:341.554289pt;}
.y2a_c00467{bottom:361.544147pt;}
.y29_c00467{bottom:381.374806pt;}
.y28_c00467{bottom:401.205345pt;}
.y27_c00467{bottom:414.479713pt;}
.y26_c00467{bottom:427.593454pt;}
.y25_c00467{bottom:449.344112pt;}
.y24_c00467{bottom:466.616105pt;}
.y21_c00467{bottom:495.897600pt;}
.y23_c00467{bottom:496.682760pt;}
.y20_c00467{bottom:498.602759pt;}
.y1f_c00467{bottom:524.189416pt;}
.y1e_c00467{bottom:548.019540pt;}
.y1d_c00467{bottom:567.850732pt;}
.y1c_c00467{bottom:587.520350pt;}
.y1b_c00467{bottom:600.794718pt;}
.y1a_c00467{bottom:622.546843pt;}
.y19_c00467{bottom:642.535768pt;}
.y18_c00467{bottom:662.527627pt;}
.y17_c00467{bottom:682.358819pt;}
.y16_c00467{bottom:702.190011pt;}
.y14_c00467{bottom:722.021203pt;}
.y15_c00467{bottom:736.253731pt;}
.y13_c00467{bottom:736.254264pt;}
.y12_c00467{bottom:756.085590pt;}
.y11_c00467{bottom:770.318651pt;}
.y10_c00467{bottom:789.987389pt;}
.yf_c00467{bottom:803.264891pt;}
.ye_c00467{bottom:816.538632pt;}
.yd_c00467{bottom:838.286890pt;}
.yc_c00467{bottom:858.280749pt;}
.yb_c00467{bottom:878.273274pt;}
.ya_c00467{bottom:897.940933pt;}
.y9_c00467{bottom:911.215928pt;}
.y8_c00467{bottom:932.967919pt;}
.y7_c00467{bottom:950.079912pt;}
.y6_c00467{bottom:972.949236pt;}
.y5_c00467{bottom:996.777227pt;}
.y4_c00467{bottom:1037.877077pt;}
.y3_c00467{bottom:1064.425200pt;}
.y2_c00467{bottom:1086.654524pt;}
.h10_c00467{height:12.794400pt;}
.hc_c00467{height:16.473600pt;}
.h7_c00467{height:37.343076pt;}
.h8_c00467{height:40.739093pt;}
.ha_c00467{height:40.741226pt;}
.hf_c00467{height:40.743359pt;}
.he_c00467{height:40.744426pt;}
.h9_c00467{height:40.750826pt;}
.h4_c00467{height:42.010770pt;}
.h3_c00467{height:42.101604pt;}
.hd_c00467{height:45.611002pt;}
.h5_c00467{height:52.514326pt;}
.hb_c00467{height:52.627870pt;}
.h6_c00467{height:56.136626pt;}
.h2_c00467{height:66.660420pt;}
.h1_c00467{height:1122.161626pt;}
.h11_c00467{height:1122.559167pt;}
.h0_c00467{height:1122.666667pt;}
.w3_c00467{width:35.984000pt;}
.w2_c00467{width:176.878400pt;}
.w1_c00467{width:792.977400pt;}
.w4_c00467{width:793.257550pt;}
.w0_c00467{width:793.333333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:95.316162pt;}
.x2_c00467{left:182.316260pt;}
.x4_c00467{left:358.076298pt;}
.x6_c00467{left:363.834854pt;}
.x3_c00467{left:473.384084pt;}
.x5_c00467{left:511.285941pt;}
.x7_c00467{left:514.052800pt;}
.x9_c00467{left:707.886400pt;}
.x8_c00467{left:745.744035pt;}
.xa_c00467{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.107000;font-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_c00468{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls0_c00468{letter-spacing:0.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:-22.489802px;}
.ws3_c00468{word-spacing:-17.755519px;}
.ws4_c00468{word-spacing:-15.388178px;}
.ws2_c00468{word-spacing:-14.204182px;}
.ws5_c00468{word-spacing:0.000000px;}
.ws1_c00468{word-spacing:77.036738px;}
._18_c00468{margin-left:-8.464090px;}
._e_c00468{margin-left:-6.039055px;}
._24_c00468{margin-left:-5.010272px;}
._3_c00468{margin-left:-3.965365px;}
._5_c00468{margin-left:-2.298813px;}
._2_c00468{margin-left:-1.171893px;}
._1_c00468{width:1.539031px;}
._4_c00468{width:2.815000px;}
._0_c00468{width:4.683097px;}
._1f_c00468{width:7.569245px;}
._d_c00468{width:27.815968px;}
._23_c00468{width:49.212664px;}
._c_c00468{width:58.572541px;}
._19_c00468{width:70.213996px;}
._1e_c00468{width:79.091497px;}
._a_c00468{width:129.923251px;}
._8_c00468{width:139.549574px;}
._12_c00468{width:167.922717px;}
._9_c00468{width:176.192461px;}
._13_c00468{width:201.521065px;}
._6_c00468{width:211.709891px;}
._b_c00468{width:215.018117px;}
._16_c00468{width:222.620602px;}
._f_c00468{width:231.794366px;}
._14_c00468{width:237.330684px;}
._10_c00468{width:240.721531px;}
._15_c00468{width:243.802612px;}
._11_c00468{width:274.876462px;}
._20_c00468{width:462.104681px;}
._7_c00468{width:471.608940px;}
._25_c00468{width:487.162676px;}
._1a_c00468{width:491.656533px;}
._21_c00468{width:506.769037px;}
._1c_c00468{width:536.320889px;}
._1b_c00468{width:576.935925px;}
._1d_c00468{width:991.493642px;}
._17_c00468{width:1021.047054px;}
._22_c00468{width:1051.309556px;}
.fc0_c00468{color:rgb(35,31,32);}
.fs2_c00468{font-size:46.834961px;}
.fs1_c00468{font-size:51.094180px;}
.fs4_c00468{font-size:55.353158px;}
.fs3_c00468{font-size:63.868774px;}
.fs5_c00468{font-size:68.126973px;}
.fs0_c00468{font-size:80.898568px;}
.y0_c00468{bottom:0.000000px;}
.y3d_c00468{bottom:0.120938px;}
.y1_c00468{bottom:0.556171px;}
.y3c_c00468{bottom:2.879281px;}
.y1a_c00468{bottom:3.595184px;}
.y3f_c00468{bottom:68.744500px;}
.y3b_c00468{bottom:70.124040px;}
.y3e_c00468{bottom:72.882383px;}
.y3a_c00468{bottom:154.490667px;}
.y39_c00468{bottom:176.800758px;}
.y38_c00468{bottom:199.111284px;}
.y37_c00468{bottom:213.864243px;}
.y36_c00468{bottom:238.333133px;}
.y35_c00468{bottom:261.003674px;}
.y34_c00468{bottom:283.310915px;}
.y33_c00468{bottom:299.324609px;}
.y32_c00468{bottom:321.636950px;}
.y31_c00468{bottom:337.647794px;}
.y2f_c00468{bottom:359.956535px;}
.y2e_c00468{bottom:375.970228px;}
.y30_c00468{bottom:375.970978px;}
.y2d_c00468{bottom:398.278969px;}
.y2c_c00468{bottom:414.292663px;}
.y2b_c00468{bottom:436.425394px;}
.y2a_c00468{bottom:451.357648px;}
.y29_c00468{bottom:475.825038px;}
.y28_c00468{bottom:498.316029px;}
.y27_c00468{bottom:520.626120px;}
.y26_c00468{bottom:542.935611px;}
.y25_c00468{bottom:565.246227px;}
.y24_c00468{bottom:580.180597px;}
.y23_c00468{bottom:604.648737px;}
.y22_c00468{bottom:627.139578px;}
.y21_c00468{bottom:649.446969px;}
.y20_c00468{bottom:671.758560px;}
.y1f_c00468{bottom:694.069086px;}
.y1e_c00468{bottom:709.002045px;}
.y1d_c00468{bottom:733.470035px;}
.y1c_c00468{bottom:752.722527px;}
.y19_c00468{bottom:785.664000px;}
.y1b_c00468{bottom:786.549014px;}
.y18_c00468{bottom:788.703013px;}
.y17_c00468{bottom:817.492502px;}
.y16_c00468{bottom:844.298391px;}
.y15_c00468{bottom:866.608482px;}
.y14_c00468{bottom:888.917973px;}
.y13_c00468{bottom:911.409564px;}
.y11_c00468{bottom:933.718305px;}
.y12_c00468{bottom:949.730499px;}
.y10_c00468{bottom:949.732749px;}
.yf_c00468{bottom:972.041490px;}
.ye_c00468{bottom:988.053683px;}
.yc_c00468{bottom:1010.363924px;}
.yd_c00468{bottom:1026.376868px;}
.yb_c00468{bottom:1026.377618px;}
.ya_c00468{bottom:1048.687709px;}
.y9_c00468{bottom:1064.701403px;}
.y8_c00468{bottom:1086.827759px;}
.y7_c00468{bottom:1101.762128px;}
.y6_c00468{bottom:1116.694382px;}
.y5_c00468{bottom:1141.166872px;}
.y4_c00468{bottom:1167.611712px;}
.y3_c00468{bottom:1197.478350px;}
.y2_c00468{bottom:1222.486340px;}
.hd_c00468{height:14.393700px;}
.h9_c00468{height:18.531000px;}
.h5_c00468{height:42.010960px;}
.h6_c00468{height:45.831479px;}
.hc_c00468{height:45.833879px;}
.h7_c00468{height:45.839879px;}
.h4_c00468{height:47.262116px;}
.h3_c00468{height:47.364304px;}
.ha_c00468{height:51.312377px;}
.h8_c00468{height:59.206354px;}
.hb_c00468{height:63.153704px;}
.h2_c00468{height:74.992972px;}
.h1_c00468{height:1262.431829px;}
.he_c00468{height:1262.879062px;}
.h0_c00468{height:1263.000000px;}
.w3_c00468{width:40.482000px;}
.w2_c00468{width:198.988200px;}
.w1_c00468{width:892.099575px;}
.w4_c00468{width:892.414744px;}
.w0_c00468{width:892.500000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:107.230682px;}
.x2_c00468{left:205.105793px;}
.x3_c00468{left:402.835835px;}
.x6_c00468{left:409.314211px;}
.x4_c00468{left:532.557094px;}
.x5_c00468{left:575.199036px;}
.x7_c00468{left:578.309400px;}
.x9_c00468{left:796.372200px;}
.x8_c00468{left:831.403542px;}
.xa_c00468{left:859.149500px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:-19.990935pt;}
.ws3_c00468{word-spacing:-15.782684pt;}
.ws4_c00468{word-spacing:-13.678380pt;}
.ws2_c00468{word-spacing:-12.625939pt;}
.ws5_c00468{word-spacing:0.000000pt;}
.ws1_c00468{word-spacing:68.477101pt;}
._18_c00468{margin-left:-7.523635pt;}
._e_c00468{margin-left:-5.368049pt;}
._24_c00468{margin-left:-4.453575pt;}
._3_c00468{margin-left:-3.524769pt;}
._5_c00468{margin-left:-2.043390pt;}
._2_c00468{margin-left:-1.041682pt;}
._1_c00468{width:1.368027pt;}
._4_c00468{width:2.502222pt;}
._0_c00468{width:4.162753pt;}
._1f_c00468{width:6.728218pt;}
._d_c00468{width:24.725305pt;}
._23_c00468{width:43.744591pt;}
._c_c00468{width:52.064481pt;}
._19_c00468{width:62.412441pt;}
._1e_c00468{width:70.303552pt;}
._a_c00468{width:115.487334pt;}
._8_c00468{width:124.044066pt;}
._12_c00468{width:149.264638pt;}
._9_c00468{width:156.615521pt;}
._13_c00468{width:179.129835pt;}
._6_c00468{width:188.186570pt;}
._b_c00468{width:191.127215pt;}
._16_c00468{width:197.884979pt;}
._f_c00468{width:206.039436pt;}
._14_c00468{width:210.960608pt;}
._10_c00468{width:213.974694pt;}
._15_c00468{width:216.713433pt;}
._11_c00468{width:244.334633pt;}
._20_c00468{width:410.759717pt;}
._7_c00468{width:419.207947pt;}
._25_c00468{width:433.033490pt;}
._1a_c00468{width:437.028029pt;}
._21_c00468{width:450.461366pt;}
._1c_c00468{width:476.729679pt;}
._1b_c00468{width:512.831933pt;}
._1d_c00468{width:881.327682pt;}
._17_c00468{width:907.597382pt;}
._22_c00468{width:934.497383pt;}
.fs2_c00468{font-size:41.631077pt;}
.fs1_c00468{font-size:45.417048pt;}
.fs4_c00468{font-size:49.202807pt;}
.fs3_c00468{font-size:56.772244pt;}
.fs5_c00468{font-size:60.557309pt;}
.fs0_c00468{font-size:71.909838pt;}
.y0_c00468{bottom:0.000000pt;}
.y3d_c00468{bottom:0.107500pt;}
.y1_c00468{bottom:0.494374pt;}
.y3c_c00468{bottom:2.559361pt;}
.y1a_c00468{bottom:3.195719pt;}
.y3f_c00468{bottom:61.106222pt;}
.y3b_c00468{bottom:62.332480pt;}
.y3e_c00468{bottom:64.784341pt;}
.y3a_c00468{bottom:137.325037pt;}
.y39_c00468{bottom:157.156229pt;}
.y38_c00468{bottom:176.987808pt;}
.y37_c00468{bottom:190.101549pt;}
.y36_c00468{bottom:211.851674pt;}
.y35_c00468{bottom:232.003266pt;}
.y34_c00468{bottom:251.831925pt;}
.y33_c00468{bottom:266.066319pt;}
.y32_c00468{bottom:285.899511pt;}
.y31_c00468{bottom:300.131372pt;}
.y2f_c00468{bottom:319.961364pt;}
.y2e_c00468{bottom:334.195758pt;}
.y30_c00468{bottom:334.196425pt;}
.y2d_c00468{bottom:354.025750pt;}
.y2c_c00468{bottom:368.260145pt;}
.y2b_c00468{bottom:387.933684pt;}
.y2a_c00468{bottom:401.206798pt;}
.y29_c00468{bottom:422.955590pt;}
.y28_c00468{bottom:442.947582pt;}
.y27_c00468{bottom:462.778774pt;}
.y26_c00468{bottom:482.609432pt;}
.y25_c00468{bottom:502.441091pt;}
.y24_c00468{bottom:515.716086pt;}
.y23_c00468{bottom:537.465544pt;}
.y22_c00468{bottom:557.457402pt;}
.y21_c00468{bottom:577.286194pt;}
.y20_c00468{bottom:597.118720pt;}
.y1f_c00468{bottom:616.950299pt;}
.y1e_c00468{bottom:630.224040pt;}
.y1d_c00468{bottom:651.973365pt;}
.y1c_c00468{bottom:669.086691pt;}
.y19_c00468{bottom:698.368000pt;}
.y1b_c00468{bottom:699.154679pt;}
.y18_c00468{bottom:701.069345pt;}
.y17_c00468{bottom:726.660001pt;}
.y16_c00468{bottom:750.487459pt;}
.y15_c00468{bottom:770.318651pt;}
.y14_c00468{bottom:790.149309pt;}
.y13_c00468{bottom:810.141835pt;}
.y11_c00468{bottom:829.971827pt;}
.y12_c00468{bottom:844.204888pt;}
.y10_c00468{bottom:844.206888pt;}
.yf_c00468{bottom:864.036880pt;}
.ye_c00468{bottom:878.269941pt;}
.yc_c00468{bottom:898.101266pt;}
.yd_c00468{bottom:912.334994pt;}
.yb_c00468{bottom:912.335660pt;}
.ya_c00468{bottom:932.166853pt;}
.y9_c00468{bottom:946.401247pt;}
.y8_c00468{bottom:966.069119pt;}
.y7_c00468{bottom:979.344114pt;}
.y6_c00468{bottom:992.617228pt;}
.y5_c00468{bottom:1014.370553pt;}
.y4_c00468{bottom:1037.877077pt;}
.y3_c00468{bottom:1064.425200pt;}
.y2_c00468{bottom:1086.654524pt;}
.hd_c00468{height:12.794400pt;}
.h9_c00468{height:16.472000pt;}
.h5_c00468{height:37.343076pt;}
.h6_c00468{height:40.739093pt;}
.hc_c00468{height:40.741226pt;}
.h7_c00468{height:40.746559pt;}
.h4_c00468{height:42.010770pt;}
.h3_c00468{height:42.101604pt;}
.ha_c00468{height:45.611002pt;}
.h8_c00468{height:52.627870pt;}
.hb_c00468{height:56.136626pt;}
.h2_c00468{height:66.660420pt;}
.h1_c00468{height:1122.161626pt;}
.he_c00468{height:1122.559167pt;}
.h0_c00468{height:1122.666667pt;}
.w3_c00468{width:35.984000pt;}
.w2_c00468{width:176.878400pt;}
.w1_c00468{width:792.977400pt;}
.w4_c00468{width:793.257550pt;}
.w0_c00468{width:793.333333pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:95.316162pt;}
.x2_c00468{left:182.316260pt;}
.x3_c00468{left:358.076298pt;}
.x6_c00468{left:363.834854pt;}
.x4_c00468{left:473.384084pt;}
.x5_c00468{left:511.288032pt;}
.x7_c00468{left:514.052800pt;}
.x9_c00468{left:707.886400pt;}
.x8_c00468{left:739.025371pt;}
.xa_c00468{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.107000;font-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_c00469{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:-22.489802px;}
.ws3_c00469{word-spacing:-17.755519px;}
.ws4_c00469{word-spacing:-15.388178px;}
.ws2_c00469{word-spacing:-14.204182px;}
.ws5_c00469{word-spacing:0.000000px;}
.ws1_c00469{word-spacing:77.036738px;}
._18_c00469{margin-left:-8.464090px;}
._e_c00469{margin-left:-5.885690px;}
._3_c00469{margin-left:-3.965365px;}
._5_c00469{margin-left:-2.298813px;}
._2_c00469{margin-left:-1.171893px;}
._1_c00469{width:1.539031px;}
._4_c00469{width:2.815000px;}
._0_c00469{width:4.683097px;}
._20_c00469{width:8.167206px;}
._1f_c00469{width:9.210870px;}
._d_c00469{width:27.816019px;}
._c_c00469{width:32.297012px;}
._15_c00469{width:58.572120px;}
._19_c00469{width:79.238249px;}
._1e_c00469{width:83.097272px;}
._a_c00469{width:129.923251px;}
._8_c00469{width:139.549574px;}
._16_c00469{width:150.379076px;}
._13_c00469{width:167.920822px;}
._9_c00469{width:176.192461px;}
._17_c00469{width:201.521065px;}
._6_c00469{width:211.709891px;}
._b_c00469{width:215.018117px;}
._10_c00469{width:231.794366px;}
._11_c00469{width:240.722042px;}
._12_c00469{width:274.877136px;}
._7_c00469{width:471.608940px;}
._1a_c00469{width:477.966781px;}
._1c_c00469{width:512.888837px;}
._f_c00469{width:538.291339px;}
._1b_c00469{width:576.936287px;}
._1d_c00469{width:991.493642px;}
._14_c00469{width:1051.309556px;}
.fc0_c00469{color:rgb(35,31,32);}
.fs2_c00469{font-size:46.834961px;}
.fs1_c00469{font-size:51.094180px;}
.fs4_c00469{font-size:55.353158px;}
.fs3_c00469{font-size:63.868774px;}
.fs5_c00469{font-size:68.126973px;}
.fs0_c00469{font-size:80.898568px;}
.y0_c00469{bottom:0.000000px;}
.y2b_c00469{bottom:0.120938px;}
.y1_c00469{bottom:0.556171px;}
.y2e_c00469{bottom:2.879281px;}
.y13_c00469{bottom:3.597548px;}
.y2a_c00469{bottom:3.599216px;}
.y30_c00469{bottom:68.744500px;}
.y2d_c00469{bottom:70.124040px;}
.y2f_c00469{bottom:72.882383px;}
.y29_c00469{bottom:456.771600px;}
.y2c_c00469{bottom:458.089879px;}
.y28_c00469{bottom:459.814645px;}
.y27_c00469{bottom:488.601133px;}
.y26_c00469{bottom:515.408522px;}
.y25_c00469{bottom:537.715913px;}
.y24_c00469{bottom:560.028105px;}
.y23_c00469{bottom:582.159996px;}
.y22_c00469{bottom:597.092955px;}
.y21_c00469{bottom:612.026619px;}
.y20_c00469{bottom:626.959578px;}
.y1f_c00469{bottom:651.426368px;}
.y1e_c00469{bottom:673.918559px;}
.y1d_c00469{bottom:696.225950px;}
.y1c_c00469{bottom:718.717541px;}
.y1b_c00469{bottom:740.846132px;}
.y1a_c00469{bottom:755.780501px;}
.y19_c00469{bottom:770.711360px;}
.y18_c00469{bottom:785.647139px;}
.y17_c00469{bottom:800.401508px;}
.y16_c00469{bottom:824.867999px;}
.y15_c00469{bottom:844.300491px;}
.y12_c00469{bottom:877.242600px;}
.y14_c00469{bottom:878.126977px;}
.y11_c00469{bottom:880.283976px;}
.y10_c00469{bottom:909.068365px;}
.yf_c00469{bottom:935.879354px;}
.ye_c00469{bottom:958.190945px;}
.yd_c00469{bottom:980.317301px;}
.yc_c00469{bottom:995.251670px;}
.yb_c00469{bottom:1010.183925px;}
.ya_c00469{bottom:1034.651315px;}
.y9_c00469{bottom:1057.143206px;}
.y8_c00469{bottom:1079.455397px;}
.y7_c00469{bottom:1101.762128px;}
.y6_c00469{bottom:1116.694382px;}
.y5_c00469{bottom:1141.166872px;}
.y4_c00469{bottom:1167.611712px;}
.y3_c00469{bottom:1197.478350px;}
.y2_c00469{bottom:1222.486340px;}
.he_c00469{height:14.393700px;}
.hc_c00469{height:18.531000px;}
.h8_c00469{height:18.534600px;}
.h5_c00469{height:42.010960px;}
.h6_c00469{height:45.831479px;}
.hb_c00469{height:45.833879px;}
.h4_c00469{height:47.262116px;}
.h3_c00469{height:47.364304px;}
.h9_c00469{height:51.312377px;}
.h7_c00469{height:59.206354px;}
.ha_c00469{height:63.153704px;}
.h2_c00469{height:74.992972px;}
.h1_c00469{height:1262.431829px;}
.hd_c00469{height:1262.879062px;}
.h0_c00469{height:1263.000000px;}
.w4_c00469{width:40.482000px;}
.w2_c00469{width:198.988200px;}
.w1_c00469{width:892.099575px;}
.w3_c00469{width:892.414744px;}
.w0_c00469{width:892.500000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:107.230682px;}
.x2_c00469{left:205.105793px;}
.x5_c00469{left:409.314211px;}
.x3_c00469{left:532.557094px;}
.x4_c00469{left:575.194172px;}
.x6_c00469{left:578.309400px;}
.x8_c00469{left:796.372200px;}
.x7_c00469{left:831.403542px;}
.x9_c00469{left:859.149500px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:-19.990935pt;}
.ws3_c00469{word-spacing:-15.782684pt;}
.ws4_c00469{word-spacing:-13.678380pt;}
.ws2_c00469{word-spacing:-12.625939pt;}
.ws5_c00469{word-spacing:0.000000pt;}
.ws1_c00469{word-spacing:68.477101pt;}
._18_c00469{margin-left:-7.523635pt;}
._e_c00469{margin-left:-5.231725pt;}
._3_c00469{margin-left:-3.524769pt;}
._5_c00469{margin-left:-2.043390pt;}
._2_c00469{margin-left:-1.041682pt;}
._1_c00469{width:1.368027pt;}
._4_c00469{width:2.502222pt;}
._0_c00469{width:4.162753pt;}
._20_c00469{width:7.259739pt;}
._1f_c00469{width:8.187440pt;}
._d_c00469{width:24.725350pt;}
._c_c00469{width:28.708455pt;}
._15_c00469{width:52.064106pt;}
._19_c00469{width:70.433999pt;}
._1e_c00469{width:73.864242pt;}
._a_c00469{width:115.487334pt;}
._8_c00469{width:124.044066pt;}
._16_c00469{width:133.670290pt;}
._13_c00469{width:149.262953pt;}
._9_c00469{width:156.615521pt;}
._17_c00469{width:179.129835pt;}
._6_c00469{width:188.186570pt;}
._b_c00469{width:191.127215pt;}
._10_c00469{width:206.039436pt;}
._11_c00469{width:213.975148pt;}
._12_c00469{width:244.335232pt;}
._7_c00469{width:419.207947pt;}
._1a_c00469{width:424.859361pt;}
._1c_c00469{width:455.901189pt;}
._f_c00469{width:478.481190pt;}
._1b_c00469{width:512.832255pt;}
._1d_c00469{width:881.327682pt;}
._14_c00469{width:934.497383pt;}
.fs2_c00469{font-size:41.631077pt;}
.fs1_c00469{font-size:45.417048pt;}
.fs4_c00469{font-size:49.202807pt;}
.fs3_c00469{font-size:56.772244pt;}
.fs5_c00469{font-size:60.557309pt;}
.fs0_c00469{font-size:71.909838pt;}
.y0_c00469{bottom:0.000000pt;}
.y2b_c00469{bottom:0.107500pt;}
.y1_c00469{bottom:0.494374pt;}
.y2e_c00469{bottom:2.559361pt;}
.y13_c00469{bottom:3.197820pt;}
.y2a_c00469{bottom:3.199303pt;}
.y30_c00469{bottom:61.106222pt;}
.y2d_c00469{bottom:62.332480pt;}
.y2f_c00469{bottom:64.784341pt;}
.y29_c00469{bottom:406.019200pt;}
.y2c_c00469{bottom:407.191004pt;}
.y28_c00469{bottom:408.724129pt;}
.y27_c00469{bottom:434.312118pt;}
.y26_c00469{bottom:458.140909pt;}
.y25_c00469{bottom:477.969701pt;}
.y24_c00469{bottom:497.802760pt;}
.y23_c00469{bottom:517.475552pt;}
.y22_c00469{bottom:530.749293pt;}
.y21_c00469{bottom:544.023661pt;}
.y20_c00469{bottom:557.297402pt;}
.y1f_c00469{bottom:579.045660pt;}
.y1e_c00469{bottom:599.038719pt;}
.y1d_c00469{bottom:618.867511pt;}
.y1c_c00469{bottom:638.860037pt;}
.y1b_c00469{bottom:658.529895pt;}
.y1a_c00469{bottom:671.804890pt;}
.y19_c00469{bottom:685.076765pt;}
.y18_c00469{bottom:698.353013pt;}
.y17_c00469{bottom:711.468007pt;}
.y16_c00469{bottom:733.215999pt;}
.y15_c00469{bottom:750.489325pt;}
.y12_c00469{bottom:779.771200pt;}
.y14_c00469{bottom:780.557313pt;}
.y11_c00469{bottom:782.474646pt;}
.y10_c00469{bottom:808.060769pt;}
.yf_c00469{bottom:831.892759pt;}
.ye_c00469{bottom:851.725285pt;}
.yd_c00469{bottom:871.393157pt;}
.yc_c00469{bottom:884.668152pt;}
.yb_c00469{bottom:897.941266pt;}
.ya_c00469{bottom:919.690058pt;}
.y9_c00469{bottom:939.682850pt;}
.y8_c00469{bottom:959.515908pt;}
.y7_c00469{bottom:979.344114pt;}
.y6_c00469{bottom:992.617228pt;}
.y5_c00469{bottom:1014.370553pt;}
.y4_c00469{bottom:1037.877077pt;}
.y3_c00469{bottom:1064.425200pt;}
.y2_c00469{bottom:1086.654524pt;}
.he_c00469{height:12.794400pt;}
.hc_c00469{height:16.472000pt;}
.h8_c00469{height:16.475200pt;}
.h5_c00469{height:37.343076pt;}
.h6_c00469{height:40.739093pt;}
.hb_c00469{height:40.741226pt;}
.h4_c00469{height:42.010770pt;}
.h3_c00469{height:42.101604pt;}
.h9_c00469{height:45.611002pt;}
.h7_c00469{height:52.627870pt;}
.ha_c00469{height:56.136626pt;}
.h2_c00469{height:66.660420pt;}
.h1_c00469{height:1122.161626pt;}
.hd_c00469{height:1122.559167pt;}
.h0_c00469{height:1122.666667pt;}
.w4_c00469{width:35.984000pt;}
.w2_c00469{width:176.878400pt;}
.w1_c00469{width:792.977400pt;}
.w3_c00469{width:793.257550pt;}
.w0_c00469{width:793.333333pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:95.316162pt;}
.x2_c00469{left:182.316260pt;}
.x5_c00469{left:363.834854pt;}
.x3_c00469{left:473.384084pt;}
.x4_c00469{left:511.283709pt;}
.x6_c00469{left:514.052800pt;}
.x8_c00469{left:707.886400pt;}
.x7_c00469{left:739.025371pt;}
.x9_c00469{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.107000;font-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_c00470{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls0_c00470{letter-spacing:0.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:-22.489802px;}
.ws2_c00470{word-spacing:-14.204182px;}
.ws3_c00470{word-spacing:0.000000px;}
.ws1_c00470{word-spacing:77.036738px;}
._27_c00470{margin-left:-6.396488px;}
._e_c00470{margin-left:-5.272204px;}
._3_c00470{margin-left:-3.965365px;}
._5_c00470{margin-left:-2.298813px;}
._2_c00470{margin-left:-1.171893px;}
._1_c00470{width:1.539031px;}
._4_c00470{width:2.815000px;}
._0_c00470{width:4.683097px;}
._1d_c00470{width:8.006719px;}
._1c_c00470{width:9.267308px;}
._1e_c00470{width:11.264924px;}
._d_c00470{width:27.816030px;}
._26_c00470{width:32.721962px;}
._2a_c00470{width:54.848156px;}
._c_c00470{width:59.334906px;}
._25_c00470{width:63.856139px;}
._1b_c00470{width:83.255152px;}
._a_c00470{width:129.923251px;}
._8_c00470{width:139.549574px;}
._12_c00470{width:167.921011px;}
._9_c00470{width:176.192461px;}
._1f_c00470{width:187.158767px;}
._15_c00470{width:201.521065px;}
._6_c00470{width:211.709891px;}
._b_c00470{width:215.018117px;}
._10_c00470{width:231.794366px;}
._23_c00470{width:244.325219px;}
._f_c00470{width:252.536033px;}
._21_c00470{width:274.598326px;}
._28_c00470{width:330.074469px;}
._17_c00470{width:345.408810px;}
._19_c00470{width:358.405114px;}
._18_c00470{width:379.818114px;}
._14_c00470{width:405.368795px;}
._22_c00470{width:426.018560px;}
._7_c00470{width:471.608940px;}
._20_c00470{width:572.997715px;}
._16_c00470{width:917.861622px;}
._11_c00470{width:947.820521px;}
._1a_c00470{width:991.493642px;}
._24_c00470{width:1021.041054px;}
._13_c00470{width:1051.303556px;}
._29_c00470{width:1279.818200px;}
.fc0_c00470{color:rgb(35,31,32);}
.fs3_c00470{font-size:46.834961px;}
.fs1_c00470{font-size:51.094180px;}
.fs2_c00470{font-size:68.126973px;}
.fs0_c00470{font-size:80.898568px;}
.y0_c00470{bottom:0.000000px;}
.y3f_c00470{bottom:0.120938px;}
.y1_c00470{bottom:0.556171px;}
.y3e_c00470{bottom:2.879281px;}
.y41_c00470{bottom:68.744500px;}
.y3d_c00470{bottom:70.124040px;}
.y40_c00470{bottom:72.882383px;}
.y3c_c00470{bottom:106.452391px;}
.y3b_c00470{bottom:121.384645px;}
.y3a_c00470{bottom:136.139014px;}
.y39_c00470{bottom:151.071268px;}
.y38_c00470{bottom:175.543008px;}
.y37_c00470{bottom:198.209649px;}
.y36_c00470{bottom:220.520490px;}
.y35_c00470{bottom:242.829231px;}
.y34_c00470{bottom:264.961363px;}
.y33_c00470{bottom:279.894322px;}
.y32_c00470{bottom:294.826576px;}
.y31_c00470{bottom:309.760945px;}
.y30_c00470{bottom:324.693199px;}
.y2f_c00470{bottom:349.163589px;}
.y2e_c00470{bottom:371.652930px;}
.y2d_c00470{bottom:393.961671px;}
.y2c_c00470{bottom:416.091312px;}
.y2b_c00470{bottom:431.026386px;}
.y2a_c00470{bottom:445.960755px;}
.y29_c00470{bottom:460.893009px;}
.y28_c00470{bottom:475.825968px;}
.y27_c00470{bottom:490.759632px;}
.y26_c00470{bottom:515.225522px;}
.y25_c00470{bottom:537.720263px;}
.y24_c00470{bottom:560.029005px;}
.y23_c00470{bottom:582.339096px;}
.y22_c00470{bottom:604.643907px;}
.y21_c00470{bottom:619.579686px;}
.y20_c00470{bottom:634.331940px;}
.y1f_c00470{bottom:649.264899px;}
.y1e_c00470{bottom:664.198563px;}
.y1d_c00470{bottom:688.668953px;}
.y1c_c00470{bottom:711.156794px;}
.y1b_c00470{bottom:733.650485px;}
.y1a_c00470{bottom:755.959226px;}
.y19_c00470{bottom:778.269317px;}
.y18_c00470{bottom:800.581508px;}
.y17_c00470{bottom:822.889259px;}
.y16_c00470{bottom:837.644334px;}
.y15_c00470{bottom:852.577293px;}
.y14_c00470{bottom:867.513072px;}
.y13_c00470{bottom:882.443931px;}
.y12_c00470{bottom:897.377595px;}
.y11_c00470{bottom:912.311964px;}
.y10_c00470{bottom:936.777854px;}
.yf_c00470{bottom:959.265845px;}
.ye_c00470{bottom:981.577436px;}
.yd_c00470{bottom:1003.705892px;}
.yc_c00470{bottom:1018.641671px;}
.yb_c00470{bottom:1033.572530px;}
.ya_c00470{bottom:1048.505489px;}
.y9_c00470{bottom:1063.439153px;}
.y8_c00470{bottom:1078.374932px;}
.y7_c00470{bottom:1093.127891px;}
.y6_c00470{bottom:1117.594382px;}
.y5_c00470{bottom:1137.026874px;}
.y4_c00470{bottom:1167.611712px;}
.y3_c00470{bottom:1197.478350px;}
.y2_c00470{bottom:1222.486340px;}
.hc_c00470{height:14.393700px;}
.h6_c00470{height:42.010960px;}
.h7_c00470{height:45.831479px;}
.ha_c00470{height:45.834479px;}
.hb_c00470{height:45.839879px;}
.h9_c00470{height:45.840479px;}
.h8_c00470{height:45.845879px;}
.h4_c00470{height:47.262116px;}
.h3_c00470{height:47.364304px;}
.h5_c00470{height:63.153704px;}
.h2_c00470{height:74.992972px;}
.h1_c00470{height:1262.431829px;}
.hd_c00470{height:1262.879062px;}
.h0_c00470{height:1263.000000px;}
.w2_c00470{width:40.482000px;}
.w1_c00470{width:892.099575px;}
.w3_c00470{width:892.414744px;}
.w0_c00470{width:892.500000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:107.230682px;}
.x2_c00470{left:205.105793px;}
.x3_c00470{left:532.558592px;}
.x4_c00470{left:796.372200px;}
.x5_c00470{left:859.149500px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws0_c00470{word-spacing:-19.990935pt;}
.ws2_c00470{word-spacing:-12.625939pt;}
.ws3_c00470{word-spacing:0.000000pt;}
.ws1_c00470{word-spacing:68.477101pt;}
._27_c00470{margin-left:-5.685768pt;}
._e_c00470{margin-left:-4.686404pt;}
._3_c00470{margin-left:-3.524769pt;}
._5_c00470{margin-left:-2.043390pt;}
._2_c00470{margin-left:-1.041682pt;}
._1_c00470{width:1.368027pt;}
._4_c00470{width:2.502222pt;}
._0_c00470{width:4.162753pt;}
._1d_c00470{width:7.117083pt;}
._1c_c00470{width:8.237607pt;}
._1e_c00470{width:10.013266pt;}
._d_c00470{width:24.725360pt;}
._26_c00470{width:29.086188pt;}
._2a_c00470{width:48.753917pt;}
._c_c00470{width:52.742139pt;}
._25_c00470{width:56.761013pt;}
._1b_c00470{width:74.004580pt;}
._a_c00470{width:115.487334pt;}
._8_c00470{width:124.044066pt;}
._12_c00470{width:149.263121pt;}
._9_c00470{width:156.615521pt;}
._1f_c00470{width:166.363349pt;}
._15_c00470{width:179.129835pt;}
._6_c00470{width:188.186570pt;}
._b_c00470{width:191.127215pt;}
._10_c00470{width:206.039436pt;}
._23_c00470{width:217.177972pt;}
._f_c00470{width:224.476474pt;}
._21_c00470{width:244.087401pt;}
._28_c00470{width:293.399528pt;}
._17_c00470{width:307.030054pt;}
._19_c00470{width:318.582324pt;}
._18_c00470{width:337.616101pt;}
._14_c00470{width:360.327818pt;}
._22_c00470{width:378.683164pt;}
._7_c00470{width:419.207947pt;}
._20_c00470{width:509.331302pt;}
._16_c00470{width:815.876997pt;}
._11_c00470{width:842.507129pt;}
._1a_c00470{width:881.327682pt;}
._24_c00470{width:907.592048pt;}
._13_c00470{width:934.492049pt;}
._29_c00470{width:1137.616177pt;}
.fs3_c00470{font-size:41.631077pt;}
.fs1_c00470{font-size:45.417048pt;}
.fs2_c00470{font-size:60.557309pt;}
.fs0_c00470{font-size:71.909838pt;}
.y0_c00470{bottom:0.000000pt;}
.y3f_c00470{bottom:0.107500pt;}
.y1_c00470{bottom:0.494374pt;}
.y3e_c00470{bottom:2.559361pt;}
.y41_c00470{bottom:61.106222pt;}
.y3d_c00470{bottom:62.332480pt;}
.y40_c00470{bottom:64.784341pt;}
.y3c_c00470{bottom:94.624348pt;}
.y3b_c00470{bottom:107.897462pt;}
.y3a_c00470{bottom:121.012457pt;}
.y39_c00470{bottom:134.285572pt;}
.y38_c00470{bottom:156.038230pt;}
.y37_c00470{bottom:176.186355pt;}
.y36_c00470{bottom:196.018214pt;}
.y35_c00470{bottom:215.848206pt;}
.y34_c00470{bottom:235.521211pt;}
.y33_c00470{bottom:248.794953pt;}
.y32_c00470{bottom:262.068067pt;}
.y31_c00470{bottom:275.343062pt;}
.y30_c00470{bottom:288.616177pt;}
.y2f_c00470{bottom:310.367635pt;}
.y2e_c00470{bottom:330.358160pt;}
.y2d_c00470{bottom:350.188152pt;}
.y2c_c00470{bottom:369.858944pt;}
.y2b_c00470{bottom:383.134565pt;}
.y2a_c00470{bottom:396.409560pt;}
.y29_c00470{bottom:409.682675pt;}
.y28_c00470{bottom:422.956416pt;}
.y27_c00470{bottom:436.230784pt;}
.y26_c00470{bottom:457.978242pt;}
.y25_c00470{bottom:477.973568pt;}
.y24_c00470{bottom:497.803560pt;}
.y23_c00470{bottom:517.634752pt;}
.y22_c00470{bottom:537.461250pt;}
.y21_c00470{bottom:550.737498pt;}
.y20_c00470{bottom:563.850613pt;}
.y1f_c00470{bottom:577.124355pt;}
.y1e_c00470{bottom:590.398723pt;}
.y1d_c00470{bottom:612.150181pt;}
.y1c_c00470{bottom:632.139373pt;}
.y1b_c00470{bottom:652.133765pt;}
.y1a_c00470{bottom:671.963757pt;}
.y19_c00470{bottom:691.794949pt;}
.y18_c00470{bottom:711.628007pt;}
.y17_c00470{bottom:731.457119pt;}
.y16_c00470{bottom:744.572741pt;}
.y15_c00470{bottom:757.846482pt;}
.y14_c00470{bottom:771.122730pt;}
.y13_c00470{bottom:784.394605pt;}
.y12_c00470{bottom:797.668973pt;}
.y11_c00470{bottom:810.943968pt;}
.y10_c00470{bottom:832.691426pt;}
.yf_c00470{bottom:852.680751pt;}
.ye_c00470{bottom:872.513276pt;}
.yd_c00470{bottom:892.183015pt;}
.yc_c00470{bottom:905.459263pt;}
.yb_c00470{bottom:918.731138pt;}
.ya_c00470{bottom:932.004879pt;}
.y9_c00470{bottom:945.279247pt;}
.y8_c00470{bottom:958.555495pt;}
.y7_c00470{bottom:971.669237pt;}
.y6_c00470{bottom:993.417228pt;}
.y5_c00470{bottom:1010.690554pt;}
.y4_c00470{bottom:1037.877077pt;}
.y3_c00470{bottom:1064.425200pt;}
.y2_c00470{bottom:1086.654524pt;}
.hc_c00470{height:12.794400pt;}
.h6_c00470{height:37.343076pt;}
.h7_c00470{height:40.739093pt;}
.ha_c00470{height:40.741759pt;}
.hb_c00470{height:40.746559pt;}
.h9_c00470{height:40.747093pt;}
.h8_c00470{height:40.751892pt;}
.h4_c00470{height:42.010770pt;}
.h3_c00470{height:42.101604pt;}
.h5_c00470{height:56.136626pt;}
.h2_c00470{height:66.660420pt;}
.h1_c00470{height:1122.161626pt;}
.hd_c00470{height:1122.559167pt;}
.h0_c00470{height:1122.666667pt;}
.w2_c00470{width:35.984000pt;}
.w1_c00470{width:792.977400pt;}
.w3_c00470{width:793.257550pt;}
.w0_c00470{width:793.333333pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:95.316162pt;}
.x2_c00470{left:182.316260pt;}
.x3_c00470{left:473.385415pt;}
.x4_c00470{left:707.886400pt;}
.x5_c00470{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.107000;font-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_c00471{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:-22.489802px;}
.ws3_c00471{word-spacing:-17.755519px;}
.ws4_c00471{word-spacing:-15.388178px;}
.ws2_c00471{word-spacing:-14.204182px;}
.ws5_c00471{word-spacing:0.000000px;}
.ws1_c00471{word-spacing:77.036738px;}
._20_c00471{margin-left:-8.464090px;}
._1b_c00471{margin-left:-6.173055px;}
._19_c00471{margin-left:-5.165130px;}
._3_c00471{margin-left:-3.965365px;}
._5_c00471{margin-left:-2.298813px;}
._2_c00471{margin-left:-1.171893px;}
._1_c00471{width:1.539031px;}
._4_c00471{width:2.815000px;}
._0_c00471{width:4.683097px;}
._1a_c00471{width:8.104361px;}
._1c_c00471{width:9.356825px;}
._18_c00471{width:27.816035px;}
._28_c00471{width:31.653526px;}
._26_c00471{width:32.722355px;}
._21_c00471{width:36.309819px;}
._25_c00471{width:44.652245px;}
._27_c00471{width:50.045292px;}
._17_c00471{width:78.698573px;}
._a_c00471{width:129.923251px;}
._8_c00471{width:139.549574px;}
._f_c00471{width:167.921011px;}
._9_c00471{width:176.192461px;}
._11_c00471{width:201.520554px;}
._6_c00471{width:211.709891px;}
._b_c00471{width:215.018117px;}
._d_c00471{width:231.794366px;}
._1e_c00471{width:241.048092px;}
._c_c00471{width:252.536033px;}
._1d_c00471{width:290.967700px;}
._22_c00471{width:336.157547px;}
._13_c00471{width:345.408810px;}
._15_c00471{width:358.405114px;}
._14_c00471{width:379.818114px;}
._10_c00471{width:405.368799px;}
._7_c00471{width:471.608940px;}
._1f_c00471{width:547.057200px;}
._23_c00471{width:607.335546px;}
._12_c00471{width:917.862128px;}
._e_c00471{width:947.820521px;}
._16_c00471{width:991.493642px;}
._29_c00471{width:1021.041054px;}
._24_c00471{width:1051.309556px;}
.fc0_c00471{color:rgb(35,31,32);}
.fs2_c00471{font-size:46.834961px;}
.fs1_c00471{font-size:51.094180px;}
.fs4_c00471{font-size:55.353158px;}
.fs3_c00471{font-size:63.868774px;}
.fs5_c00471{font-size:68.126973px;}
.fs0_c00471{font-size:80.898568px;}
.y0_c00471{bottom:0.000000px;}
.y36_c00471{bottom:0.120938px;}
.y1_c00471{bottom:0.556171px;}
.y39_c00471{bottom:2.879281px;}
.y15_c00471{bottom:3.594265px;}
.y35_c00471{bottom:3.598400px;}
.y3b_c00471{bottom:68.744500px;}
.y38_c00471{bottom:70.124040px;}
.y3a_c00471{bottom:72.882383px;}
.y34_c00471{bottom:245.907000px;}
.y37_c00471{bottom:247.404463px;}
.y33_c00471{bottom:248.949229px;}
.y32_c00471{bottom:277.734067px;}
.y31_c00471{bottom:304.540857px;}
.y30_c00471{bottom:326.853048px;}
.y2f_c00471{bottom:342.866741px;}
.y2e_c00471{bottom:365.175483px;}
.y2d_c00471{bottom:387.664974px;}
.y2c_c00471{bottom:403.498667px;}
.y2b_c00471{bottom:425.810693px;}
.y2a_c00471{bottom:440.743652px;}
.y29_c00471{bottom:465.211042px;}
.y28_c00471{bottom:487.701133px;}
.y27_c00471{bottom:509.832770px;}
.y26_c00471{bottom:524.764334px;}
.y25_c00471{bottom:539.697998px;}
.y24_c00471{bottom:554.628857px;}
.y23_c00471{bottom:569.384636px;}
.y22_c00471{bottom:584.317595px;}
.y21_c00471{bottom:608.786485px;}
.y20_c00471{bottom:631.455226px;}
.y1f_c00471{bottom:653.763967px;}
.y1e_c00471{bottom:676.074058px;}
.y1d_c00471{bottom:698.204164px;}
.y1c_c00471{bottom:713.139943px;}
.y1b_c00471{bottom:728.072902px;}
.y1a_c00471{bottom:743.005156px;}
.y19_c00471{bottom:757.939525px;}
.y18_c00471{bottom:782.409016px;}
.y17_c00471{bottom:801.658508px;}
.y14_c00471{bottom:834.602400px;}
.y16_c00471{bottom:835.483494px;}
.y13_c00471{bottom:837.640494px;}
.y12_c00471{bottom:866.429382px;}
.y11_c00471{bottom:893.235871px;}
.y10_c00471{bottom:915.545962px;}
.yf_c00471{bottom:937.856443px;}
.ye_c00471{bottom:952.609403px;}
.yd_c00471{bottom:967.545182px;}
.yc_c00471{bottom:982.477436px;}
.yb_c00471{bottom:1006.946326px;}
.ya_c00471{bottom:1029.436867px;}
.y9_c00471{bottom:1051.926958px;}
.y8_c00471{bottom:1074.234349px;}
.y7_c00471{bottom:1096.548040px;}
.y6_c00471{bottom:1118.856781px;}
.y5_c00471{bottom:1141.346872px;}
.y4_c00471{bottom:1167.611712px;}
.y3_c00471{bottom:1197.478350px;}
.y2_c00471{bottom:1222.486340px;}
.he_c00471{height:14.393700px;}
.h9_c00471{height:18.531000px;}
.h6_c00471{height:42.010960px;}
.h5_c00471{height:45.831479px;}
.hc_c00471{height:45.836879px;}
.h7_c00471{height:45.845879px;}
.h4_c00471{height:47.262116px;}
.h3_c00471{height:47.364304px;}
.ha_c00471{height:51.312377px;}
.h8_c00471{height:59.206354px;}
.hb_c00471{height:63.153704px;}
.h2_c00471{height:74.992972px;}
.h1_c00471{height:1262.431829px;}
.hd_c00471{height:1262.879062px;}
.h0_c00471{height:1263.000000px;}
.w4_c00471{width:40.482000px;}
.w2_c00471{width:198.988200px;}
.w1_c00471{width:892.099575px;}
.w3_c00471{width:892.414744px;}
.w0_c00471{width:892.500000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:107.230682px;}
.x2_c00471{left:205.105793px;}
.x8_c00471{left:402.835835px;}
.x5_c00471{left:409.314211px;}
.x3_c00471{left:532.557094px;}
.x4_c00471{left:575.196684px;}
.x6_c00471{left:578.309400px;}
.xa_c00471{left:796.372200px;}
.x7_c00471{left:824.029545px;}
.x9_c00471{left:831.441511px;}
.xb_c00471{left:859.149500px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:-19.990935pt;}
.ws3_c00471{word-spacing:-15.782684pt;}
.ws4_c00471{word-spacing:-13.678380pt;}
.ws2_c00471{word-spacing:-12.625939pt;}
.ws5_c00471{word-spacing:0.000000pt;}
.ws1_c00471{word-spacing:68.477101pt;}
._20_c00471{margin-left:-7.523635pt;}
._1b_c00471{margin-left:-5.487160pt;}
._19_c00471{margin-left:-4.591226pt;}
._3_c00471{margin-left:-3.524769pt;}
._5_c00471{margin-left:-2.043390pt;}
._2_c00471{margin-left:-1.041682pt;}
._1_c00471{width:1.368027pt;}
._4_c00471{width:2.502222pt;}
._0_c00471{width:4.162753pt;}
._1a_c00471{width:7.203877pt;}
._1c_c00471{width:8.317178pt;}
._18_c00471{width:24.725364pt;}
._28_c00471{width:28.136468pt;}
._26_c00471{width:29.086538pt;}
._21_c00471{width:32.275395pt;}
._25_c00471{width:39.690884pt;}
._27_c00471{width:44.484704pt;}
._17_c00471{width:69.954287pt;}
._a_c00471{width:115.487334pt;}
._8_c00471{width:124.044066pt;}
._f_c00471{width:149.263121pt;}
._9_c00471{width:156.615521pt;}
._11_c00471{width:179.129381pt;}
._6_c00471{width:188.186570pt;}
._b_c00471{width:191.127215pt;}
._d_c00471{width:206.039436pt;}
._1e_c00471{width:214.264970pt;}
._c_c00471{width:224.476474pt;}
._1d_c00471{width:258.637956pt;}
._22_c00471{width:298.806709pt;}
._13_c00471{width:307.030054pt;}
._15_c00471{width:318.582324pt;}
._14_c00471{width:337.616101pt;}
._10_c00471{width:360.327822pt;}
._7_c00471{width:419.207947pt;}
._1f_c00471{width:486.273067pt;}
._23_c00471{width:539.853818pt;}
._12_c00471{width:815.877447pt;}
._e_c00471{width:842.507129pt;}
._16_c00471{width:881.327682pt;}
._29_c00471{width:907.592048pt;}
._24_c00471{width:934.497383pt;}
.fs2_c00471{font-size:41.631077pt;}
.fs1_c00471{font-size:45.417048pt;}
.fs4_c00471{font-size:49.202807pt;}
.fs3_c00471{font-size:56.772244pt;}
.fs5_c00471{font-size:60.557309pt;}
.fs0_c00471{font-size:71.909838pt;}
.y0_c00471{bottom:0.000000pt;}
.y36_c00471{bottom:0.107500pt;}
.y1_c00471{bottom:0.494374pt;}
.y39_c00471{bottom:2.559361pt;}
.y15_c00471{bottom:3.194902pt;}
.y35_c00471{bottom:3.198578pt;}
.y3b_c00471{bottom:61.106222pt;}
.y38_c00471{bottom:62.332480pt;}
.y3a_c00471{bottom:64.784341pt;}
.y34_c00471{bottom:218.584000pt;}
.y37_c00471{bottom:219.915079pt;}
.y33_c00471{bottom:221.288204pt;}
.y32_c00471{bottom:246.874727pt;}
.y31_c00471{bottom:270.702984pt;}
.y30_c00471{bottom:290.536043pt;}
.y2f_c00471{bottom:304.770437pt;}
.y2e_c00471{bottom:324.600429pt;}
.y2d_c00471{bottom:344.591088pt;}
.y2c_c00471{bottom:358.665482pt;}
.y2b_c00471{bottom:378.498394pt;}
.y2a_c00471{bottom:391.772135pt;}
.y29_c00471{bottom:413.520927pt;}
.y28_c00471{bottom:433.512119pt;}
.y27_c00471{bottom:453.184684pt;}
.y26_c00471{bottom:466.457185pt;}
.y25_c00471{bottom:479.731554pt;}
.y24_c00471{bottom:493.003428pt;}
.y23_c00471{bottom:506.119676pt;}
.y22_c00471{bottom:519.393418pt;}
.y21_c00471{bottom:541.143542pt;}
.y20_c00471{bottom:561.293534pt;}
.y1f_c00471{bottom:581.123526pt;}
.y1e_c00471{bottom:600.954718pt;}
.y1d_c00471{bottom:620.625924pt;}
.y1c_c00471{bottom:633.902172pt;}
.y1b_c00471{bottom:647.175913pt;}
.y1a_c00471{bottom:660.449028pt;}
.y19_c00471{bottom:673.724023pt;}
.y18_c00471{bottom:695.474681pt;}
.y17_c00471{bottom:712.585340pt;}
.y14_c00471{bottom:741.868800pt;}
.y16_c00471{bottom:742.651995pt;}
.y13_c00471{bottom:744.569328pt;}
.y12_c00471{bottom:770.159451pt;}
.y11_c00471{bottom:793.987441pt;}
.y10_c00471{bottom:813.818633pt;}
.yf_c00471{bottom:833.650172pt;}
.ye_c00471{bottom:846.763913pt;}
.yd_c00471{bottom:860.040161pt;}
.yc_c00471{bottom:873.313276pt;}
.yb_c00471{bottom:895.063401pt;}
.ya_c00471{bottom:915.054993pt;}
.y9_c00471{bottom:935.046185pt;}
.y8_c00471{bottom:954.874977pt;}
.y7_c00471{bottom:974.709369pt;}
.y6_c00471{bottom:994.539361pt;}
.y5_c00471{bottom:1014.530553pt;}
.y4_c00471{bottom:1037.877077pt;}
.y3_c00471{bottom:1064.425200pt;}
.y2_c00471{bottom:1086.654524pt;}
.he_c00471{height:12.794400pt;}
.h9_c00471{height:16.472000pt;}
.h6_c00471{height:37.343076pt;}
.h5_c00471{height:40.739093pt;}
.hc_c00471{height:40.743893pt;}
.h7_c00471{height:40.751892pt;}
.h4_c00471{height:42.010770pt;}
.h3_c00471{height:42.101604pt;}
.ha_c00471{height:45.611002pt;}
.h8_c00471{height:52.627870pt;}
.hb_c00471{height:56.136626pt;}
.h2_c00471{height:66.660420pt;}
.h1_c00471{height:1122.161626pt;}
.hd_c00471{height:1122.559167pt;}
.h0_c00471{height:1122.666667pt;}
.w4_c00471{width:35.984000pt;}
.w2_c00471{width:176.878400pt;}
.w1_c00471{width:792.977400pt;}
.w3_c00471{width:793.257550pt;}
.w0_c00471{width:793.333333pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:95.316162pt;}
.x2_c00471{left:182.316260pt;}
.x8_c00471{left:358.076298pt;}
.x5_c00471{left:363.834854pt;}
.x3_c00471{left:473.384084pt;}
.x4_c00471{left:511.285941pt;}
.x6_c00471{left:514.052800pt;}
.xa_c00471{left:707.886400pt;}
.x7_c00471{left:732.470707pt;}
.x9_c00471{left:739.059121pt;}
.xb_c00471{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.137000;font-style:normal;font-weight:normal;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_15f79470968d99875de04212.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.107000;font-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_c00472{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00472{word-spacing:-22.489802px;}
.ws4_c00472{word-spacing:-17.755519px;}
.ws5_c00472{word-spacing:-15.388178px;}
.ws3_c00472{word-spacing:-14.204182px;}
.ws2_c00472{word-spacing:-13.020119px;}
.ws6_c00472{word-spacing:0.000000px;}
.ws1_c00472{word-spacing:77.036738px;}
._19_c00472{margin-left:-8.464090px;}
._18_c00472{margin-left:-6.543212px;}
._e_c00472{margin-left:-5.343210px;}
._3_c00472{margin-left:-3.965365px;}
._5_c00472{margin-left:-2.298813px;}
._2_c00472{margin-left:-1.171893px;}
._1_c00472{width:1.539031px;}
._4_c00472{width:2.815000px;}
._0_c00472{width:4.683097px;}
._17_c00472{width:7.846394px;}
._14_c00472{width:9.596222px;}
._20_c00472{width:20.308643px;}
._c_c00472{width:23.693789px;}
._1b_c00472{width:27.816050px;}
._d_c00472{width:32.722258px;}
._13_c00472{width:70.443947px;}
._16_c00472{width:87.514690px;}
._1a_c00472{width:88.563918px;}
._a_c00472{width:129.923251px;}
._1f_c00472{width:138.323178px;}
._8_c00472{width:139.549574px;}
._11_c00472{width:167.921011px;}
._1c_c00472{width:171.969724px;}
._9_c00472{width:176.192461px;}
._6_c00472{width:211.709891px;}
._b_c00472{width:215.018117px;}
._22_c00472{width:232.072998px;}
._21_c00472{width:240.651665px;}
._23_c00472{width:244.325535px;}
._24_c00472{width:265.852443px;}
._f_c00472{width:399.307037px;}
._15_c00472{width:449.031117px;}
._7_c00472{width:471.608940px;}
._25_c00472{width:572.927686px;}
._1d_c00472{width:887.914103px;}
._1e_c00472{width:991.472905px;}
._12_c00472{width:1051.303556px;}
._10_c00472{width:1279.818647px;}
.fc0_c00472{color:rgb(35,31,32);}
.fs3_c00472{font-size:46.834961px;}
.fs1_c00472{font-size:51.094180px;}
.fs5_c00472{font-size:55.353158px;}
.fs4_c00472{font-size:63.868774px;}
.fs2_c00472{font-size:68.126973px;}
.fs0_c00472{font-size:80.898568px;}
.y0_c00472{bottom:0.000000px;}
.y30_c00472{bottom:0.120938px;}
.y1_c00472{bottom:0.556171px;}
.y33_c00472{bottom:2.879281px;}
.y2f_c00472{bottom:3.597182px;}
.y1c_c00472{bottom:3.599418px;}
.y35_c00472{bottom:68.744500px;}
.y32_c00472{bottom:70.124040px;}
.y34_c00472{bottom:72.882383px;}
.y2e_c00472{bottom:291.787200px;}
.y31_c00472{bottom:293.103445px;}
.y2d_c00472{bottom:294.828211px;}
.y2c_c00472{bottom:323.613949px;}
.y2b_c00472{bottom:350.425238px;}
.y2a_c00472{bottom:372.733979px;}
.y29_c00472{bottom:395.044221px;}
.y28_c00472{bottom:411.057164px;}
.y27_c00472{bottom:433.183985px;}
.y26_c00472{bottom:448.117649px;}
.y25_c00472{bottom:472.585790px;}
.y24_c00472{bottom:495.079031px;}
.y23_c00472{bottom:517.389272px;}
.y22_c00472{bottom:533.401465px;}
.y21_c00472{bottom:565.248102px;}
.y20_c00472{bottom:584.497595px;}
.y1f_c00472{bottom:610.227084px;}
.y1e_c00472{bottom:669.598561px;}
.y1b_c00472{bottom:702.541800px;}
.y1d_c00472{bottom:703.605047px;}
.y1a_c00472{bottom:705.585046px;}
.y19_c00472{bottom:734.367785px;}
.y18_c00472{bottom:761.178924px;}
.y17_c00472{bottom:783.669015px;}
.y16_c00472{bottom:805.796076px;}
.y15_c00472{bottom:820.729740px;}
.y14_c00472{bottom:835.661994px;}
.y13_c00472{bottom:860.131635px;}
.y12_c00472{bottom:882.621876px;}
.y11_c00472{bottom:904.933467px;}
.y10_c00472{bottom:927.062913px;}
.yf_c00472{bottom:941.997282px;}
.ye_c00472{bottom:956.930946px;}
.yd_c00472{bottom:981.397736px;}
.yc_c00472{bottom:1003.884227px;}
.yb_c00472{bottom:1026.376418px;}
.ya_c00472{bottom:1048.505489px;}
.y9_c00472{bottom:1063.439153px;}
.y8_c00472{bottom:1078.374932px;}
.y7_c00472{bottom:1093.127891px;}
.y6_c00472{bottom:1117.594382px;}
.y5_c00472{bottom:1137.026874px;}
.y4_c00472{bottom:1167.611712px;}
.y3_c00472{bottom:1197.478350px;}
.y2_c00472{bottom:1222.486340px;}
.h10_c00472{height:14.393700px;}
.he_c00472{height:18.525600px;}
.hb_c00472{height:18.531000px;}
.h6_c00472{height:42.010960px;}
.h7_c00472{height:45.831479px;}
.h9_c00472{height:45.833879px;}
.h8_c00472{height:45.854279px;}
.h4_c00472{height:47.262116px;}
.h3_c00472{height:47.364304px;}
.hc_c00472{height:51.312377px;}
.hd_c00472{height:59.078616px;}
.ha_c00472{height:59.206354px;}
.h5_c00472{height:63.153704px;}
.h2_c00472{height:74.992972px;}
.h1_c00472{height:1262.431829px;}
.hf_c00472{height:1262.879062px;}
.h0_c00472{height:1263.000000px;}
.w5_c00472{width:40.482000px;}
.w3_c00472{width:190.350000px;}
.w2_c00472{width:198.988200px;}
.w1_c00472{width:892.099575px;}
.w4_c00472{width:892.414744px;}
.w0_c00472{width:892.500000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:107.230682px;}
.x2_c00472{left:205.105793px;}
.x8_c00472{left:402.839513px;}
.x5_c00472{left:409.314211px;}
.x3_c00472{left:532.558592px;}
.x4_c00472{left:575.194172px;}
.x6_c00472{left:578.309400px;}
.x9_c00472{left:586.947600px;}
.xb_c00472{left:796.372200px;}
.xa_c00472{left:831.441511px;}
.x7_c00472{left:838.962039px;}
.xc_c00472{left:859.149500px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:-19.990935pt;}
.ws4_c00472{word-spacing:-15.782684pt;}
.ws5_c00472{word-spacing:-13.678380pt;}
.ws3_c00472{word-spacing:-12.625939pt;}
.ws2_c00472{word-spacing:-11.573439pt;}
.ws6_c00472{word-spacing:0.000000pt;}
.ws1_c00472{word-spacing:68.477101pt;}
._19_c00472{margin-left:-7.523635pt;}
._18_c00472{margin-left:-5.816189pt;}
._e_c00472{margin-left:-4.749520pt;}
._3_c00472{margin-left:-3.524769pt;}
._5_c00472{margin-left:-2.043390pt;}
._2_c00472{margin-left:-1.041682pt;}
._1_c00472{width:1.368027pt;}
._4_c00472{width:2.502222pt;}
._0_c00472{width:4.162753pt;}
._17_c00472{width:6.974573pt;}
._14_c00472{width:8.529975pt;}
._20_c00472{width:18.052127pt;}
._c_c00472{width:21.061146pt;}
._1b_c00472{width:24.725378pt;}
._d_c00472{width:29.086452pt;}
._13_c00472{width:62.616842pt;}
._16_c00472{width:77.790836pt;}
._1a_c00472{width:78.723483pt;}
._a_c00472{width:115.487334pt;}
._1f_c00472{width:122.953936pt;}
._8_c00472{width:124.044066pt;}
._11_c00472{width:149.263121pt;}
._1c_c00472{width:152.861977pt;}
._9_c00472{width:156.615521pt;}
._6_c00472{width:188.186570pt;}
._b_c00472{width:191.127215pt;}
._22_c00472{width:206.287109pt;}
._21_c00472{width:213.912591pt;}
._23_c00472{width:217.178254pt;}
._24_c00472{width:236.313283pt;}
._f_c00472{width:354.939589pt;}
._15_c00472{width:399.138771pt;}
._7_c00472{width:419.207947pt;}
._25_c00472{width:509.269054pt;}
._1d_c00472{width:789.256981pt;}
._1e_c00472{width:881.309249pt;}
._12_c00472{width:934.492049pt;}
._10_c00472{width:1137.616575pt;}
.fs3_c00472{font-size:41.631077pt;}
.fs1_c00472{font-size:45.417048pt;}
.fs5_c00472{font-size:49.202807pt;}
.fs4_c00472{font-size:56.772244pt;}
.fs2_c00472{font-size:60.557309pt;}
.fs0_c00472{font-size:71.909838pt;}
.y0_c00472{bottom:0.000000pt;}
.y30_c00472{bottom:0.107500pt;}
.y1_c00472{bottom:0.494374pt;}
.y33_c00472{bottom:2.559361pt;}
.y2f_c00472{bottom:3.197495pt;}
.y1c_c00472{bottom:3.199482pt;}
.y35_c00472{bottom:61.106222pt;}
.y32_c00472{bottom:62.332480pt;}
.y34_c00472{bottom:64.784341pt;}
.y2e_c00472{bottom:259.366400pt;}
.y31_c00472{bottom:260.536396pt;}
.y2d_c00472{bottom:262.069521pt;}
.y2c_c00472{bottom:287.656844pt;}
.y2b_c00472{bottom:311.489101pt;}
.y2a_c00472{bottom:331.319093pt;}
.y29_c00472{bottom:351.150418pt;}
.y28_c00472{bottom:365.384146pt;}
.y27_c00472{bottom:385.052431pt;}
.y26_c00472{bottom:398.326799pt;}
.y25_c00472{bottom:420.076257pt;}
.y24_c00472{bottom:440.070249pt;}
.y23_c00472{bottom:459.901575pt;}
.y22_c00472{bottom:474.134636pt;}
.y21_c00472{bottom:502.442758pt;}
.y20_c00472{bottom:519.553418pt;}
.y1f_c00472{bottom:542.424075pt;}
.y1e_c00472{bottom:595.198721pt;}
.y1b_c00472{bottom:624.481600pt;}
.y1d_c00472{bottom:625.426709pt;}
.y1a_c00472{bottom:627.186708pt;}
.y19_c00472{bottom:652.771364pt;}
.y18_c00472{bottom:676.603488pt;}
.y17_c00472{bottom:696.594680pt;}
.y16_c00472{bottom:716.263179pt;}
.y15_c00472{bottom:729.537547pt;}
.y14_c00472{bottom:742.810662pt;}
.y13_c00472{bottom:764.561453pt;}
.y12_c00472{bottom:784.552778pt;}
.y11_c00472{bottom:804.385304pt;}
.y10_c00472{bottom:824.055922pt;}
.yf_c00472{bottom:837.330917pt;}
.ye_c00472{bottom:850.605285pt;}
.yd_c00472{bottom:872.353543pt;}
.yc_c00472{bottom:892.341535pt;}
.yb_c00472{bottom:912.334594pt;}
.ya_c00472{bottom:932.004879pt;}
.y9_c00472{bottom:945.279247pt;}
.y8_c00472{bottom:958.555495pt;}
.y7_c00472{bottom:971.669237pt;}
.y6_c00472{bottom:993.417228pt;}
.y5_c00472{bottom:1010.690554pt;}
.y4_c00472{bottom:1037.877077pt;}
.y3_c00472{bottom:1064.425200pt;}
.y2_c00472{bottom:1086.654524pt;}
.h10_c00472{height:12.794400pt;}
.he_c00472{height:16.467200pt;}
.hb_c00472{height:16.472000pt;}
.h6_c00472{height:37.343076pt;}
.h7_c00472{height:40.739093pt;}
.h9_c00472{height:40.741226pt;}
.h8_c00472{height:40.759359pt;}
.h4_c00472{height:42.010770pt;}
.h3_c00472{height:42.101604pt;}
.hc_c00472{height:45.611002pt;}
.hd_c00472{height:52.514326pt;}
.ha_c00472{height:52.627870pt;}
.h5_c00472{height:56.136626pt;}
.h2_c00472{height:66.660420pt;}
.h1_c00472{height:1122.161626pt;}
.hf_c00472{height:1122.559167pt;}
.h0_c00472{height:1122.666667pt;}
.w5_c00472{width:35.984000pt;}
.w3_c00472{width:169.200000pt;}
.w2_c00472{width:176.878400pt;}
.w1_c00472{width:792.977400pt;}
.w4_c00472{width:793.257550pt;}
.w0_c00472{width:793.333333pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:95.316162pt;}
.x2_c00472{left:182.316260pt;}
.x8_c00472{left:358.079568pt;}
.x5_c00472{left:363.834854pt;}
.x3_c00472{left:473.385415pt;}
.x4_c00472{left:511.283709pt;}
.x6_c00472{left:514.052800pt;}
.x9_c00472{left:521.731200pt;}
.xb_c00472{left:707.886400pt;}
.xa_c00472{left:739.059121pt;}
.x7_c00472{left:745.744035pt;}
.xc_c00472{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.107000;font-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_c00473{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:-22.489802px;}
.ws3_c00473{word-spacing:-17.755519px;}
.ws4_c00473{word-spacing:-15.388178px;}
.ws2_c00473{word-spacing:-14.204182px;}
.ws5_c00473{word-spacing:-13.020119px;}
.ws6_c00473{word-spacing:0.000000px;}
.ws1_c00473{word-spacing:77.036738px;}
._13_c00473{margin-left:-8.464090px;}
._14_c00473{margin-left:-6.390140px;}
._e_c00473{margin-left:-5.240029px;}
._3_c00473{margin-left:-3.965365px;}
._5_c00473{margin-left:-2.298813px;}
._2_c00473{margin-left:-1.171893px;}
._1_c00473{width:1.539031px;}
._4_c00473{width:2.815000px;}
._0_c00473{width:4.683097px;}
._1b_c00473{width:11.299599px;}
._1a_c00473{width:16.386625px;}
._1c_c00473{width:17.445957px;}
._18_c00473{width:23.693749px;}
._d_c00473{width:32.722079px;}
._c_c00473{width:37.086558px;}
._15_c00473{width:44.738379px;}
._a_c00473{width:129.923251px;}
._8_c00473{width:139.549574px;}
._11_c00473{width:167.921011px;}
._9_c00473{width:176.192461px;}
._6_c00473{width:211.709891px;}
._b_c00473{width:215.018117px;}
._f_c00473{width:228.778012px;}
._16_c00473{width:237.862655px;}
._19_c00473{width:399.203856px;}
._7_c00473{width:471.608940px;}
._12_c00473{width:1051.303556px;}
._10_c00473{width:1279.819713px;}
._17_c00473{width:1351.901329px;}
.fc0_c00473{color:rgb(35,31,32);}
.fs3_c00473{font-size:46.834961px;}
.fs1_c00473{font-size:51.094180px;}
.fs5_c00473{font-size:55.353158px;}
.fs4_c00473{font-size:63.868774px;}
.fs2_c00473{font-size:68.126973px;}
.fs0_c00473{font-size:80.898568px;}
.y0_c00473{bottom:0.000000px;}
.y2d_c00473{bottom:0.120938px;}
.y1_c00473{bottom:0.556171px;}
.y30_c00473{bottom:2.879281px;}
.y2c_c00473{bottom:3.598038px;}
.ye_c00473{bottom:3.599309px;}
.y32_c00473{bottom:68.744500px;}
.y2f_c00473{bottom:70.124040px;}
.y31_c00473{bottom:72.882383px;}
.y2b_c00473{bottom:401.356800px;}
.y2e_c00473{bottom:402.673901px;}
.y2a_c00473{bottom:404.398667px;}
.y29_c00473{bottom:433.187255px;}
.y28_c00473{bottom:459.993895px;}
.y27_c00473{bottom:482.302636px;}
.y26_c00473{bottom:504.613252px;}
.y25_c00473{bottom:519.367621px;}
.y24_c00473{bottom:543.835911px;}
.y23_c00473{bottom:566.504502px;}
.y22_c00473{bottom:588.814593px;}
.y21_c00473{bottom:610.946469px;}
.y20_c00473{bottom:625.878033px;}
.y1f_c00473{bottom:640.811697px;}
.y1e_c00473{bottom:655.746066px;}
.y1d_c00473{bottom:680.214956px;}
.y1c_c00473{bottom:702.704447px;}
.y1b_c00473{bottom:725.014539px;}
.y1a_c00473{bottom:747.321915px;}
.y19_c00473{bottom:762.071364px;}
.y18_c00473{bottom:777.008553px;}
.y17_c00473{bottom:791.941512px;}
.y16_c00473{bottom:816.410402px;}
.y15_c00473{bottom:838.902893px;}
.y14_c00473{bottom:861.394484px;}
.y13_c00473{bottom:883.522715px;}
.y12_c00473{bottom:898.454969px;}
.y11_c00473{bottom:922.925959px;}
.y10_c00473{bottom:942.176952px;}
.yd_c00473{bottom:975.115800px;}
.yf_c00473{bottom:976.000438px;}
.yc_c00473{bottom:978.158937px;}
.yb_c00473{bottom:1006.946326px;}
.ya_c00473{bottom:1033.753565px;}
.y9_c00473{bottom:1056.064406px;}
.y8_c00473{bottom:1078.374932px;}
.y7_c00473{bottom:1093.127891px;}
.y6_c00473{bottom:1117.594382px;}
.y5_c00473{bottom:1137.026874px;}
.y4_c00473{bottom:1167.611712px;}
.y3_c00473{bottom:1197.478350px;}
.y2_c00473{bottom:1222.486340px;}
.h11_c00473{height:14.393700px;}
.hf_c00473{height:18.531000px;}
.ha_c00473{height:18.536400px;}
.h6_c00473{height:42.010960px;}
.h7_c00473{height:45.831479px;}
.hc_c00473{height:45.833879px;}
.he_c00473{height:45.834479px;}
.h8_c00473{height:45.842879px;}
.hd_c00473{height:45.845879px;}
.h4_c00473{height:47.262116px;}
.h3_c00473{height:47.364304px;}
.hb_c00473{height:51.312377px;}
.h9_c00473{height:59.206354px;}
.h5_c00473{height:63.153704px;}
.h2_c00473{height:74.992972px;}
.h1_c00473{height:1262.431829px;}
.h10_c00473{height:1262.879062px;}
.h0_c00473{height:1263.000000px;}
.w4_c00473{width:40.482000px;}
.w2_c00473{width:190.350000px;}
.w1_c00473{width:892.099575px;}
.w3_c00473{width:892.414744px;}
.w0_c00473{width:892.500000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:107.230682px;}
.x2_c00473{left:205.105793px;}
.x5_c00473{left:409.314211px;}
.x3_c00473{left:532.558592px;}
.x4_c00473{left:575.194172px;}
.x6_c00473{left:586.947600px;}
.x9_c00473{left:796.372200px;}
.x8_c00473{left:831.441511px;}
.x7_c00473{left:838.962039px;}
.xa_c00473{left:859.149500px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:-19.990935pt;}
.ws3_c00473{word-spacing:-15.782684pt;}
.ws4_c00473{word-spacing:-13.678380pt;}
.ws2_c00473{word-spacing:-12.625939pt;}
.ws5_c00473{word-spacing:-11.573439pt;}
.ws6_c00473{word-spacing:0.000000pt;}
.ws1_c00473{word-spacing:68.477101pt;}
._13_c00473{margin-left:-7.523635pt;}
._14_c00473{margin-left:-5.680124pt;}
._e_c00473{margin-left:-4.657803pt;}
._3_c00473{margin-left:-3.524769pt;}
._5_c00473{margin-left:-2.043390pt;}
._2_c00473{margin-left:-1.041682pt;}
._1_c00473{width:1.368027pt;}
._4_c00473{width:2.502222pt;}
._0_c00473{width:4.162753pt;}
._1b_c00473{width:10.044088pt;}
._1a_c00473{width:14.565889pt;}
._1c_c00473{width:15.507517pt;}
._18_c00473{width:21.061111pt;}
._d_c00473{width:29.086293pt;}
._c_c00473{width:32.965829pt;}
._15_c00473{width:39.767448pt;}
._a_c00473{width:115.487334pt;}
._8_c00473{width:124.044066pt;}
._11_c00473{width:149.263121pt;}
._9_c00473{width:156.615521pt;}
._6_c00473{width:188.186570pt;}
._b_c00473{width:191.127215pt;}
._f_c00473{width:203.358233pt;}
._16_c00473{width:211.433471pt;}
._19_c00473{width:354.847872pt;}
._7_c00473{width:419.207947pt;}
._12_c00473{width:934.492049pt;}
._10_c00473{width:1137.617523pt;}
._17_c00473{width:1201.690070pt;}
.fs3_c00473{font-size:41.631077pt;}
.fs1_c00473{font-size:45.417048pt;}
.fs5_c00473{font-size:49.202807pt;}
.fs4_c00473{font-size:56.772244pt;}
.fs2_c00473{font-size:60.557309pt;}
.fs0_c00473{font-size:71.909838pt;}
.y0_c00473{bottom:0.000000pt;}
.y2d_c00473{bottom:0.107500pt;}
.y1_c00473{bottom:0.494374pt;}
.y30_c00473{bottom:2.559361pt;}
.y2c_c00473{bottom:3.198256pt;}
.ye_c00473{bottom:3.199385pt;}
.y32_c00473{bottom:61.106222pt;}
.y2f_c00473{bottom:62.332480pt;}
.y31_c00473{bottom:64.784341pt;}
.y2b_c00473{bottom:356.761600pt;}
.y2e_c00473{bottom:357.932357pt;}
.y2a_c00473{bottom:359.465482pt;}
.y29_c00473{bottom:385.055338pt;}
.y28_c00473{bottom:408.883462pt;}
.y27_c00473{bottom:428.713454pt;}
.y26_c00473{bottom:448.545113pt;}
.y25_c00473{bottom:461.660107pt;}
.y24_c00473{bottom:483.409699pt;}
.y23_c00473{bottom:503.559557pt;}
.y22_c00473{bottom:523.390749pt;}
.y21_c00473{bottom:543.063528pt;}
.y20_c00473{bottom:556.336030pt;}
.y1f_c00473{bottom:569.610398pt;}
.y1e_c00473{bottom:582.885392pt;}
.y1d_c00473{bottom:604.635517pt;}
.y1c_c00473{bottom:624.626176pt;}
.y1b_c00473{bottom:644.457368pt;}
.y1a_c00473{bottom:664.286146pt;}
.y19_c00473{bottom:677.396768pt;}
.y18_c00473{bottom:690.674269pt;}
.y17_c00473{bottom:703.948010pt;}
.y16_c00473{bottom:725.698135pt;}
.y15_c00473{bottom:745.691460pt;}
.y14_c00473{bottom:765.683986pt;}
.y13_c00473{bottom:785.353525pt;}
.y12_c00473{bottom:798.626639pt;}
.y11_c00473{bottom:820.378631pt;}
.y10_c00473{bottom:837.490624pt;}
.yd_c00473{bottom:866.769600pt;}
.yf_c00473{bottom:867.555945pt;}
.yc_c00473{bottom:869.474611pt;}
.yb_c00473{bottom:895.063401pt;}
.ya_c00473{bottom:918.892058pt;}
.y9_c00473{bottom:938.723917pt;}
.y8_c00473{bottom:958.555495pt;}
.y7_c00473{bottom:971.669237pt;}
.y6_c00473{bottom:993.417228pt;}
.y5_c00473{bottom:1010.690554pt;}
.y4_c00473{bottom:1037.877077pt;}
.y3_c00473{bottom:1064.425200pt;}
.y2_c00473{bottom:1086.654524pt;}
.h11_c00473{height:12.794400pt;}
.hf_c00473{height:16.472000pt;}
.ha_c00473{height:16.476800pt;}
.h6_c00473{height:37.343076pt;}
.h7_c00473{height:40.739093pt;}
.hc_c00473{height:40.741226pt;}
.he_c00473{height:40.741759pt;}
.h8_c00473{height:40.749226pt;}
.hd_c00473{height:40.751892pt;}
.h4_c00473{height:42.010770pt;}
.h3_c00473{height:42.101604pt;}
.hb_c00473{height:45.611002pt;}
.h9_c00473{height:52.627870pt;}
.h5_c00473{height:56.136626pt;}
.h2_c00473{height:66.660420pt;}
.h1_c00473{height:1122.161626pt;}
.h10_c00473{height:1122.559167pt;}
.h0_c00473{height:1122.666667pt;}
.w4_c00473{width:35.984000pt;}
.w2_c00473{width:169.200000pt;}
.w1_c00473{width:792.977400pt;}
.w3_c00473{width:793.257550pt;}
.w0_c00473{width:793.333333pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:95.316162pt;}
.x2_c00473{left:182.316260pt;}
.x5_c00473{left:363.834854pt;}
.x3_c00473{left:473.385415pt;}
.x4_c00473{left:511.283709pt;}
.x6_c00473{left:521.731200pt;}
.x9_c00473{left:707.886400pt;}
.x8_c00473{left:739.059121pt;}
.x7_c00473{left:745.744035pt;}
.xa_c00473{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.107000;font-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_c00474{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:-22.489802px;}
.ws3_c00474{word-spacing:-17.755519px;}
.ws4_c00474{word-spacing:-15.388178px;}
.ws2_c00474{word-spacing:-14.204182px;}
.ws5_c00474{word-spacing:0.000000px;}
.ws1_c00474{word-spacing:77.036738px;}
._14_c00474{margin-left:-8.464090px;}
._15_c00474{margin-left:-6.390140px;}
._e_c00474{margin-left:-5.046587px;}
._3_c00474{margin-left:-3.965365px;}
._5_c00474{margin-left:-2.298813px;}
._2_c00474{margin-left:-1.171893px;}
._1_c00474{width:1.539031px;}
._4_c00474{width:2.815000px;}
._0_c00474{width:4.683097px;}
._d_c00474{width:32.722238px;}
._c_c00474{width:58.871716px;}
._13_c00474{width:79.552308px;}
._a_c00474{width:129.923251px;}
._8_c00474{width:139.549574px;}
._11_c00474{width:168.248257px;}
._9_c00474{width:176.192461px;}
._f_c00474{width:207.880254px;}
._6_c00474{width:211.709891px;}
._b_c00474{width:215.018117px;}
._7_c00474{width:471.608940px;}
._12_c00474{width:1021.047054px;}
._10_c00474{width:1249.145827px;}
.fc0_c00474{color:rgb(35,31,32);}
.fs3_c00474{font-size:46.834961px;}
.fs1_c00474{font-size:51.094180px;}
.fs5_c00474{font-size:55.353158px;}
.fs4_c00474{font-size:63.868774px;}
.fs2_c00474{font-size:68.126973px;}
.fs0_c00474{font-size:80.898568px;}
.y0_c00474{bottom:0.000000px;}
.y16_c00474{bottom:0.120938px;}
.y1_c00474{bottom:0.556171px;}
.y1b_c00474{bottom:2.879281px;}
.y15_c00474{bottom:3.596063px;}
.y1d_c00474{bottom:68.744500px;}
.y1a_c00474{bottom:70.124040px;}
.y1c_c00474{bottom:72.882383px;}
.y19_c00474{bottom:745.599264px;}
.y18_c00474{bottom:806.233740px;}
.y14_c00474{bottom:838.920600px;}
.y17_c00474{bottom:840.235726px;}
.y13_c00474{bottom:841.960492px;}
.y12_c00474{bottom:870.746980px;}
.y11_c00474{bottom:897.553770px;}
.y10_c00474{bottom:919.865961px;}
.yf_c00474{bottom:941.995407px;}
.ye_c00474{bottom:956.930481px;}
.yd_c00474{bottom:971.863440px;}
.yc_c00474{bottom:996.332330px;}
.yb_c00474{bottom:1018.818821px;}
.ya_c00474{bottom:1041.128912px;}
.y9_c00474{bottom:1063.439153px;}
.y8_c00474{bottom:1078.374932px;}
.y7_c00474{bottom:1093.127891px;}
.y6_c00474{bottom:1117.594382px;}
.y5_c00474{bottom:1137.026874px;}
.y4_c00474{bottom:1167.611712px;}
.y3_c00474{bottom:1197.478350px;}
.y2_c00474{bottom:1222.486340px;}
.he_c00474{height:14.393700px;}
.hb_c00474{height:18.531000px;}
.h6_c00474{height:42.010960px;}
.h7_c00474{height:45.831479px;}
.h9_c00474{height:45.836279px;}
.h8_c00474{height:45.851879px;}
.h4_c00474{height:47.262116px;}
.h3_c00474{height:47.364304px;}
.hd_c00474{height:51.312377px;}
.ha_c00474{height:59.206354px;}
.h5_c00474{height:63.153704px;}
.h2_c00474{height:74.992972px;}
.h1_c00474{height:1262.431829px;}
.hc_c00474{height:1262.879062px;}
.h0_c00474{height:1263.000000px;}
.w4_c00474{width:40.482000px;}
.w2_c00474{width:190.350000px;}
.w1_c00474{width:892.099575px;}
.w3_c00474{width:892.414744px;}
.w0_c00474{width:892.500000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:107.230682px;}
.x2_c00474{left:205.105793px;}
.x5_c00474{left:409.314211px;}
.x3_c00474{left:532.557094px;}
.x4_c00474{left:575.199036px;}
.x6_c00474{left:586.947600px;}
.x8_c00474{left:796.372200px;}
.x7_c00474{left:831.441511px;}
.x9_c00474{left:859.149500px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:-19.990935pt;}
.ws3_c00474{word-spacing:-15.782684pt;}
.ws4_c00474{word-spacing:-13.678380pt;}
.ws2_c00474{word-spacing:-12.625939pt;}
.ws5_c00474{word-spacing:0.000000pt;}
.ws1_c00474{word-spacing:68.477101pt;}
._14_c00474{margin-left:-7.523635pt;}
._15_c00474{margin-left:-5.680124pt;}
._e_c00474{margin-left:-4.485855pt;}
._3_c00474{margin-left:-3.524769pt;}
._5_c00474{margin-left:-2.043390pt;}
._2_c00474{margin-left:-1.041682pt;}
._1_c00474{width:1.368027pt;}
._4_c00474{width:2.502222pt;}
._0_c00474{width:4.162753pt;}
._d_c00474{width:29.086434pt;}
._c_c00474{width:52.330414pt;}
._13_c00474{width:70.713163pt;}
._a_c00474{width:115.487334pt;}
._8_c00474{width:124.044066pt;}
._11_c00474{width:149.554006pt;}
._9_c00474{width:156.615521pt;}
._f_c00474{width:184.782448pt;}
._6_c00474{width:188.186570pt;}
._b_c00474{width:191.127215pt;}
._7_c00474{width:419.207947pt;}
._12_c00474{width:907.597382pt;}
._10_c00474{width:1110.351846pt;}
.fs3_c00474{font-size:41.631077pt;}
.fs1_c00474{font-size:45.417048pt;}
.fs5_c00474{font-size:49.202807pt;}
.fs4_c00474{font-size:56.772244pt;}
.fs2_c00474{font-size:60.557309pt;}
.fs0_c00474{font-size:71.909838pt;}
.y0_c00474{bottom:0.000000pt;}
.y16_c00474{bottom:0.107500pt;}
.y1_c00474{bottom:0.494374pt;}
.y1b_c00474{bottom:2.559361pt;}
.y15_c00474{bottom:3.196500pt;}
.y1d_c00474{bottom:61.106222pt;}
.y1a_c00474{bottom:62.332480pt;}
.y1c_c00474{bottom:64.784341pt;}
.y19_c00474{bottom:662.754902pt;}
.y18_c00474{bottom:716.652213pt;}
.y14_c00474{bottom:745.707200pt;}
.y17_c00474{bottom:746.876201pt;}
.y13_c00474{bottom:748.409326pt;}
.y12_c00474{bottom:773.997316pt;}
.y11_c00474{bottom:797.825573pt;}
.y10_c00474{bottom:817.658632pt;}
.yf_c00474{bottom:837.329250pt;}
.ye_c00474{bottom:850.604872pt;}
.yd_c00474{bottom:863.878613pt;}
.yc_c00474{bottom:885.628738pt;}
.yb_c00474{bottom:905.616730pt;}
.ya_c00474{bottom:925.447922pt;}
.y9_c00474{bottom:945.279247pt;}
.y8_c00474{bottom:958.555495pt;}
.y7_c00474{bottom:971.669237pt;}
.y6_c00474{bottom:993.417228pt;}
.y5_c00474{bottom:1010.690554pt;}
.y4_c00474{bottom:1037.877077pt;}
.y3_c00474{bottom:1064.425200pt;}
.y2_c00474{bottom:1086.654524pt;}
.he_c00474{height:12.794400pt;}
.hb_c00474{height:16.472000pt;}
.h6_c00474{height:37.343076pt;}
.h7_c00474{height:40.739093pt;}
.h9_c00474{height:40.743359pt;}
.h8_c00474{height:40.757226pt;}
.h4_c00474{height:42.010770pt;}
.h3_c00474{height:42.101604pt;}
.hd_c00474{height:45.611002pt;}
.ha_c00474{height:52.627870pt;}
.h5_c00474{height:56.136626pt;}
.h2_c00474{height:66.660420pt;}
.h1_c00474{height:1122.161626pt;}
.hc_c00474{height:1122.559167pt;}
.h0_c00474{height:1122.666667pt;}
.w4_c00474{width:35.984000pt;}
.w2_c00474{width:169.200000pt;}
.w1_c00474{width:792.977400pt;}
.w3_c00474{width:793.257550pt;}
.w0_c00474{width:793.333333pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:95.316162pt;}
.x2_c00474{left:182.316260pt;}
.x5_c00474{left:363.834854pt;}
.x3_c00474{left:473.384084pt;}
.x4_c00474{left:511.288032pt;}
.x6_c00474{left:521.731200pt;}
.x8_c00474{left:707.886400pt;}
.x7_c00474{left:739.059121pt;}
.x9_c00474{left:763.688445pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.107000;font-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_c00475{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00475{word-spacing:-22.489802px;}
.ws3_c00475{word-spacing:-14.204182px;}
.ws2_c00475{word-spacing:-13.020119px;}
.ws4_c00475{word-spacing:0.000000px;}
.ws1_c00475{word-spacing:77.036738px;}
._1a_c00475{margin-left:-6.707066px;}
._f_c00475{margin-left:-5.000804px;}
._3_c00475{margin-left:-3.965365px;}
._5_c00475{margin-left:-2.298813px;}
._2_c00475{margin-left:-1.171893px;}
._1_c00475{width:1.539031px;}
._4_c00475{width:2.815000px;}
._0_c00475{width:4.683097px;}
._c_c00475{width:6.920321px;}
._19_c00475{width:8.646580px;}
._15_c00475{width:20.308845px;}
._e_c00475{width:37.223707px;}
._14_c00475{width:96.419879px;}
._d_c00475{width:126.431049px;}
._a_c00475{width:129.923251px;}
._8_c00475{width:139.549574px;}
._12_c00475{width:167.851820px;}
._10_c00475{width:171.969724px;}
._9_c00475{width:176.192461px;}
._6_c00475{width:211.709891px;}
._b_c00475{width:215.018117px;}
._1c_c00475{width:231.794366px;}
._17_c00475{width:240.651839px;}
._1b_c00475{width:355.876525px;}
._16_c00475{width:439.835142px;}
._7_c00475{width:471.608940px;}
._18_c00475{width:547.057195px;}
._11_c00475{width:887.926103px;}
._1d_c00475{width:947.816705px;}
._13_c00475{width:991.487642px;}
._1e_c00475{width:1051.303556px;}
.fc0_c00475{color:rgb(35,31,32);}
.fs2_c00475{font-size:46.834961px;}
.fs1_c00475{font-size:51.094180px;}
.fs0_c00475{font-size:80.898568px;}
.y0_c00475{bottom:0.000000px;}
.y1e_c00475{bottom:0.120938px;}
.y1_c00475{bottom:0.556171px;}
.y1d_c00475{bottom:2.879281px;}
.y20_c00475{bottom:68.744500px;}
.y1c_c00475{bottom:70.124040px;}
.y1f_c00475{bottom:72.882383px;}
.y1b_c00475{bottom:683.271805px;}
.y1a_c00475{bottom:710.079945px;}
.y19_c00475{bottom:732.570036px;}
.y18_c00475{bottom:754.701912px;}
.y17_c00475{bottom:769.631361px;}
.y16_c00475{bottom:784.567140px;}
.y15_c00475{bottom:799.321509px;}
.y14_c00475{bottom:823.790399px;}
.y13_c00475{bottom:846.458390px;}
.y12_c00475{bottom:868.768481px;}
.y11_c00475{bottom:890.898872px;}
.y10_c00475{bottom:905.831831px;}
.yf_c00475{bottom:920.764085px;}
.ye_c00475{bottom:935.698454px;}
.yd_c00475{bottom:960.165845px;}
.yc_c00475{bottom:982.654136px;}
.yb_c00475{bottom:1004.965727px;}
.ya_c00475{bottom:1020.977920px;}
.y9_c00475{bottom:1043.108866px;}
.y8_c00475{bottom:1058.043940px;}
.y7_c00475{bottom:1072.976899px;}
.y6_c00475{bottom:1097.447890px;}
.y5_c00475{bottom:1121.374380px;}
.y4_c00475{bottom:1167.611712px;}
.y3_c00475{bottom:1197.478350px;}
.y2_c00475{bottom:1222.486340px;}
.ha_c00475{height:14.393700px;}
.h5_c00475{height:42.010960px;}
.h6_c00475{height:45.831479px;}
.h9_c00475{height:45.833879px;}
.h8_c00475{height:45.839879px;}
.h7_c00475{height:45.844679px;}
.h4_c00475{height:47.262116px;}
.h3_c00475{height:47.364304px;}
.h2_c00475{height:74.992972px;}
.h1_c00475{height:1262.431829px;}
.hb_c00475{height:1262.879062px;}
.h0_c00475{height:1263.000000px;}
.w2_c00475{width:40.482000px;}
.w1_c00475{width:892.099575px;}
.w3_c00475{width:892.414744px;}
.w0_c00475{width:892.500000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:107.230682px;}
.x2_c00475{left:205.105793px;}
.x3_c00475{left:402.835835px;}
.x4_c00475{left:532.558592px;}
.x5_c00475{left:575.194172px;}
.x6_c00475{left:796.372200px;}
.x7_c00475{left:851.774003px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws0_c00475{word-spacing:-19.990935pt;}
.ws3_c00475{word-spacing:-12.625939pt;}
.ws2_c00475{word-spacing:-11.573439pt;}
.ws4_c00475{word-spacing:0.000000pt;}
.ws1_c00475{word-spacing:68.477101pt;}
._1a_c00475{margin-left:-5.961836pt;}
._f_c00475{margin-left:-4.445159pt;}
._3_c00475{margin-left:-3.524769pt;}
._5_c00475{margin-left:-2.043390pt;}
._2_c00475{margin-left:-1.041682pt;}
._1_c00475{width:1.368027pt;}
._4_c00475{width:2.502222pt;}
._0_c00475{width:4.162753pt;}
._c_c00475{width:6.151397pt;}
._19_c00475{width:7.685849pt;}
._15_c00475{width:18.052307pt;}
._e_c00475{width:33.087740pt;}
._14_c00475{width:85.706559pt;}
._d_c00475{width:112.383154pt;}
._a_c00475{width:115.487334pt;}
._8_c00475{width:124.044066pt;}
._12_c00475{width:149.201617pt;}
._10_c00475{width:152.861977pt;}
._9_c00475{width:156.615521pt;}
._6_c00475{width:188.186570pt;}
._b_c00475{width:191.127215pt;}
._1c_c00475{width:206.039436pt;}
._17_c00475{width:213.912746pt;}
._1b_c00475{width:316.334689pt;}
._16_c00475{width:390.964571pt;}
._7_c00475{width:419.207947pt;}
._18_c00475{width:486.273062pt;}
._11_c00475{width:789.267647pt;}
._1d_c00475{width:842.503738pt;}
._13_c00475{width:881.322349pt;}
._1e_c00475{width:934.492049pt;}
.fs2_c00475{font-size:41.631077pt;}
.fs1_c00475{font-size:45.417048pt;}
.fs0_c00475{font-size:71.909838pt;}
.y0_c00475{bottom:0.000000pt;}
.y1e_c00475{bottom:0.107500pt;}
.y1_c00475{bottom:0.494374pt;}
.y1d_c00475{bottom:2.559361pt;}
.y20_c00475{bottom:61.106222pt;}
.y1c_c00475{bottom:62.332480pt;}
.y1f_c00475{bottom:64.784341pt;}
.y1b_c00475{bottom:607.352716pt;}
.y1a_c00475{bottom:631.182173pt;}
.y19_c00475{bottom:651.173365pt;}
.y18_c00475{bottom:670.846144pt;}
.y17_c00475{bottom:684.116765pt;}
.y16_c00475{bottom:697.393013pt;}
.y15_c00475{bottom:710.508008pt;}
.y14_c00475{bottom:732.258132pt;}
.y13_c00475{bottom:752.407458pt;}
.y12_c00475{bottom:772.238650pt;}
.y11_c00475{bottom:791.910109pt;}
.y10_c00475{bottom:805.183850pt;}
.yf_c00475{bottom:818.456965pt;}
.ye_c00475{bottom:831.731959pt;}
.yd_c00475{bottom:853.480751pt;}
.yc_c00475{bottom:873.470343pt;}
.yb_c00475{bottom:893.302868pt;}
.ya_c00475{bottom:907.535929pt;}
.y9_c00475{bottom:927.207881pt;}
.y8_c00475{bottom:940.483503pt;}
.y7_c00475{bottom:953.757244pt;}
.y6_c00475{bottom:975.509235pt;}
.y5_c00475{bottom:996.777227pt;}
.y4_c00475{bottom:1037.877077pt;}
.y3_c00475{bottom:1064.425200pt;}
.y2_c00475{bottom:1086.654524pt;}
.ha_c00475{height:12.794400pt;}
.h5_c00475{height:37.343076pt;}
.h6_c00475{height:40.739093pt;}
.h9_c00475{height:40.741226pt;}
.h8_c00475{height:40.746559pt;}
.h7_c00475{height:40.750826pt;}
.h4_c00475{height:42.010770pt;}
.h3_c00475{height:42.101604pt;}
.h2_c00475{height:66.660420pt;}
.h1_c00475{height:1122.161626pt;}
.hb_c00475{height:1122.559167pt;}
.h0_c00475{height:1122.666667pt;}
.w2_c00475{width:35.984000pt;}
.w1_c00475{width:792.977400pt;}
.w3_c00475{width:793.257550pt;}
.w0_c00475{width:793.333333pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:95.316162pt;}
.x2_c00475{left:182.316260pt;}
.x3_c00475{left:358.076298pt;}
.x4_c00475{left:473.385415pt;}
.x5_c00475{left:511.283709pt;}
.x6_c00475{left:707.886400pt;}
.x7_c00475{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.137000;font-style:normal;font-weight:normal;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_15f79470968d99875de04212.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.107000;font-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_c00476{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00476{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00476{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:-22.489802px;}
.ws2_c00476{word-spacing:-14.204182px;}
.ws3_c00476{word-spacing:0.000000px;}
.ws1_c00476{word-spacing:77.036738px;}
._1e_c00476{margin-left:-6.089689px;}
._c_c00476{margin-left:-5.061774px;}
._3_c00476{margin-left:-3.965365px;}
._5_c00476{margin-left:-2.298813px;}
._2_c00476{margin-left:-1.171893px;}
._1_c00476{width:1.539031px;}
._4_c00476{width:2.815000px;}
._0_c00476{width:4.683097px;}
._1d_c00476{width:7.750430px;}
._e_c00476{width:8.759606px;}
._18_c00476{width:19.035430px;}
._d_c00476{width:20.644649px;}
._15_c00476{width:24.614600px;}
._20_c00476{width:58.887716px;}
._19_c00476{width:120.632098px;}
._a_c00476{width:129.923251px;}
._17_c00476{width:134.215266px;}
._8_c00476{width:139.549574px;}
._12_c00476{width:167.921011px;}
._9_c00476{width:176.192461px;}
._1a_c00476{width:201.520554px;}
._6_c00476{width:211.709891px;}
._b_c00476{width:215.018117px;}
._10_c00476{width:231.794366px;}
._1f_c00476{width:355.876525px;}
._13_c00476{width:359.600823px;}
._f_c00476{width:367.330165px;}
._7_c00476{width:471.608940px;}
._21_c00476{width:563.986203px;}
._1b_c00476{width:917.859001px;}
._11_c00476{width:947.816979px;}
._1c_c00476{width:1021.047054px;}
._14_c00476{width:1051.303556px;}
._16_c00476{width:1279.819866px;}
.fc0_c00476{color:rgb(35,31,32);}
.fs3_c00476{font-size:46.834961px;}
.fs1_c00476{font-size:51.094180px;}
.fs2_c00476{font-size:63.868774px;}
.fs0_c00476{font-size:80.898568px;}
.y0_c00476{bottom:0.000000px;}
.y30_c00476{bottom:0.120938px;}
.y1_c00476{bottom:0.556171px;}
.y2f_c00476{bottom:2.879281px;}
.y32_c00476{bottom:68.744500px;}
.y2e_c00476{bottom:70.124040px;}
.y31_c00476{bottom:72.882383px;}
.y2d_c00476{bottom:277.734067px;}
.y2c_c00476{bottom:304.541907px;}
.y2b_c00476{bottom:326.852748px;}
.y2a_c00476{bottom:349.341489px;}
.y29_c00476{bottom:365.175183px;}
.y28_c00476{bottom:387.486039px;}
.y27_c00476{bottom:402.418293px;}
.y26_c00476{bottom:417.172662px;}
.y25_c00476{bottom:441.642752px;}
.y24_c00476{bottom:464.311043px;}
.y23_c00476{bottom:486.621134px;}
.y22_c00476{bottom:508.751525px;}
.y21_c00476{bottom:523.684484px;}
.y20_c00476{bottom:538.618148px;}
.y1f_c00476{bottom:553.551107px;}
.y1e_c00476{bottom:578.018497px;}
.y1d_c00476{bottom:600.511288px;}
.y1c_c00476{bottom:622.820029px;}
.y1b_c00476{bottom:638.832223px;}
.y1a_c00476{bottom:670.498860px;}
.y19_c00476{bottom:693.169851px;}
.y18_c00476{bottom:715.478592px;}
.y17_c00476{bottom:737.788833px;}
.y16_c00476{bottom:753.801027px;}
.y15_c00476{bottom:775.929348px;}
.y14_c00476{bottom:790.863012px;}
.y13_c00476{bottom:815.330402px;}
.y12_c00476{bottom:837.821543px;}
.y11_c00476{bottom:860.311634px;}
.y10_c00476{bottom:882.622476px;}
.yf_c00476{bottom:904.753467px;}
.ye_c00476{bottom:929.219357px;}
.yd_c00476{bottom:951.708998px;}
.yc_c00476{bottom:974.197739px;}
.yb_c00476{bottom:996.509930px;}
.ya_c00476{bottom:1018.642286px;}
.y9_c00476{bottom:1033.574540px;}
.y8_c00476{bottom:1048.508909px;}
.y7_c00476{bottom:1072.976899px;}
.y6_c00476{bottom:1094.567891px;}
.y5_c00476{bottom:1121.374380px;}
.y4_c00476{bottom:1167.611712px;}
.y3_c00476{bottom:1197.478350px;}
.y2_c00476{bottom:1222.486340px;}
.hb_c00476{height:14.393700px;}
.h6_c00476{height:42.010960px;}
.h7_c00476{height:45.831479px;}
.h9_c00476{height:45.833279px;}
.ha_c00476{height:45.836279px;}
.h8_c00476{height:45.839279px;}
.h4_c00476{height:47.262116px;}
.h3_c00476{height:47.364304px;}
.h5_c00476{height:59.078616px;}
.h2_c00476{height:74.992972px;}
.h1_c00476{height:1262.431829px;}
.hc_c00476{height:1262.879062px;}
.h0_c00476{height:1263.000000px;}
.w2_c00476{width:40.482000px;}
.w1_c00476{width:892.099575px;}
.w3_c00476{width:892.414744px;}
.w0_c00476{width:892.500000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:107.230682px;}
.x2_c00476{left:205.105793px;}
.x5_c00476{left:395.459293px;}
.x6_c00476{left:402.835835px;}
.x3_c00476{left:532.558592px;}
.x7_c00476{left:575.194172px;}
.x4_c00476{left:796.320460px;}
.x8_c00476{left:851.774003px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:-19.990935pt;}
.ws2_c00476{word-spacing:-12.625939pt;}
.ws3_c00476{word-spacing:0.000000pt;}
.ws1_c00476{word-spacing:68.477101pt;}
._1e_c00476{margin-left:-5.413057pt;}
._c_c00476{margin-left:-4.499355pt;}
._3_c00476{margin-left:-3.524769pt;}
._5_c00476{margin-left:-2.043390pt;}
._2_c00476{margin-left:-1.041682pt;}
._1_c00476{width:1.368027pt;}
._4_c00476{width:2.502222pt;}
._0_c00476{width:4.162753pt;}
._1d_c00476{width:6.889272pt;}
._e_c00476{width:7.786317pt;}
._18_c00476{width:16.920382pt;}
._d_c00476{width:18.350799pt;}
._15_c00476{width:21.879644pt;}
._20_c00476{width:52.344636pt;}
._19_c00476{width:107.228531pt;}
._a_c00476{width:115.487334pt;}
._17_c00476{width:119.302458pt;}
._8_c00476{width:124.044066pt;}
._12_c00476{width:149.263121pt;}
._9_c00476{width:156.615521pt;}
._1a_c00476{width:179.129381pt;}
._6_c00476{width:188.186570pt;}
._b_c00476{width:191.127215pt;}
._10_c00476{width:206.039436pt;}
._1f_c00476{width:316.334689pt;}
._13_c00476{width:319.645176pt;}
._f_c00476{width:326.515702pt;}
._7_c00476{width:419.207947pt;}
._21_c00476{width:501.321069pt;}
._1b_c00476{width:815.874667pt;}
._11_c00476{width:842.503982pt;}
._1c_c00476{width:907.597382pt;}
._14_c00476{width:934.492049pt;}
._16_c00476{width:1137.617659pt;}
.fs3_c00476{font-size:41.631077pt;}
.fs1_c00476{font-size:45.417048pt;}
.fs2_c00476{font-size:56.772244pt;}
.fs0_c00476{font-size:71.909838pt;}
.y0_c00476{bottom:0.000000pt;}
.y30_c00476{bottom:0.107500pt;}
.y1_c00476{bottom:0.494374pt;}
.y2f_c00476{bottom:2.559361pt;}
.y32_c00476{bottom:61.106222pt;}
.y2e_c00476{bottom:62.332480pt;}
.y31_c00476{bottom:64.784341pt;}
.y2d_c00476{bottom:246.874727pt;}
.y2c_c00476{bottom:270.703917pt;}
.y2b_c00476{bottom:290.535776pt;}
.y2a_c00476{bottom:310.525768pt;}
.y29_c00476{bottom:324.600162pt;}
.y28_c00476{bottom:344.432034pt;}
.y27_c00476{bottom:357.705149pt;}
.y26_c00476{bottom:370.820144pt;}
.y25_c00476{bottom:392.571335pt;}
.y24_c00476{bottom:412.720927pt;}
.y23_c00476{bottom:432.552119pt;}
.y22_c00476{bottom:452.223578pt;}
.y21_c00476{bottom:465.497319pt;}
.y20_c00476{bottom:478.771687pt;}
.y1f_c00476{bottom:492.045429pt;}
.y1e_c00476{bottom:513.794220pt;}
.y1d_c00476{bottom:533.787812pt;}
.y1c_c00476{bottom:553.617804pt;}
.y1b_c00476{bottom:567.850865pt;}
.y1a_c00476{bottom:595.998987pt;}
.y19_c00476{bottom:616.150979pt;}
.y18_c00476{bottom:635.980971pt;}
.y17_c00476{bottom:655.812296pt;}
.y16_c00476{bottom:670.045357pt;}
.y15_c00476{bottom:689.714976pt;}
.y14_c00476{bottom:702.989344pt;}
.y13_c00476{bottom:724.738136pt;}
.y12_c00476{bottom:744.730261pt;}
.y11_c00476{bottom:764.721453pt;}
.y10_c00476{bottom:784.553312pt;}
.yf_c00476{bottom:804.225304pt;}
.ye_c00476{bottom:825.972762pt;}
.yd_c00476{bottom:845.963554pt;}
.yc_c00476{bottom:865.953546pt;}
.yb_c00476{bottom:885.786604pt;}
.ya_c00476{bottom:905.459810pt;}
.y9_c00476{bottom:918.732925pt;}
.y8_c00476{bottom:932.007919pt;}
.y7_c00476{bottom:953.757244pt;}
.y6_c00476{bottom:972.949236pt;}
.y5_c00476{bottom:996.777227pt;}
.y4_c00476{bottom:1037.877077pt;}
.y3_c00476{bottom:1064.425200pt;}
.y2_c00476{bottom:1086.654524pt;}
.hb_c00476{height:12.794400pt;}
.h6_c00476{height:37.343076pt;}
.h7_c00476{height:40.739093pt;}
.h9_c00476{height:40.740693pt;}
.ha_c00476{height:40.743359pt;}
.h8_c00476{height:40.746026pt;}
.h4_c00476{height:42.010770pt;}
.h3_c00476{height:42.101604pt;}
.h5_c00476{height:52.514326pt;}
.h2_c00476{height:66.660420pt;}
.h1_c00476{height:1122.161626pt;}
.hc_c00476{height:1122.559167pt;}
.h0_c00476{height:1122.666667pt;}
.w2_c00476{width:35.984000pt;}
.w1_c00476{width:792.977400pt;}
.w3_c00476{width:793.257550pt;}
.w0_c00476{width:793.333333pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:95.316162pt;}
.x2_c00476{left:182.316260pt;}
.x5_c00476{left:351.519372pt;}
.x6_c00476{left:358.076298pt;}
.x3_c00476{left:473.385415pt;}
.x7_c00476{left:511.283709pt;}
.x4_c00476{left:707.840409pt;}
.x8_c00476{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.137000;font-style:normal;font-weight:normal;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_15f79470968d99875de04212.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.107000;font-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_c00477{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:-22.489802px;}
.ws3_c00477{word-spacing:-14.204182px;}
.ws2_c00477{word-spacing:-13.020119px;}
.ws4_c00477{word-spacing:0.000000px;}
.ws1_c00477{word-spacing:77.036738px;}
._1b_c00477{margin-left:-6.115120px;}
._c_c00477{margin-left:-5.061774px;}
._3_c00477{margin-left:-3.965365px;}
._5_c00477{margin-left:-2.298813px;}
._2_c00477{margin-left:-1.171893px;}
._1_c00477{width:1.539031px;}
._4_c00477{width:2.815000px;}
._0_c00477{width:4.683097px;}
._19_c00477{width:8.450896px;}
._1a_c00477{width:9.567473px;}
._e_c00477{width:20.308387px;}
._18_c00477{width:23.004343px;}
._15_c00477{width:27.816147px;}
._14_c00477{width:118.683381px;}
._a_c00477{width:129.923251px;}
._d_c00477{width:134.213861px;}
._8_c00477{width:139.549574px;}
._12_c00477{width:168.248251px;}
._9_c00477{width:176.192461px;}
._6_c00477{width:211.709891px;}
._b_c00477{width:215.018117px;}
._f_c00477{width:231.794366px;}
._10_c00477{width:240.721531px;}
._11_c00477{width:244.604182px;}
._16_c00477{width:274.876114px;}
._1c_c00477{width:371.440141px;}
._1f_c00477{width:414.699642px;}
._1e_c00477{width:432.274394px;}
._7_c00477{width:471.608940px;}
._13_c00477{width:1021.039854px;}
._17_c00477{width:1051.319554px;}
._1d_c00477{width:1279.813343px;}
.fc0_c00477{color:rgb(35,31,32);}
.fs3_c00477{font-size:46.834961px;}
.fs1_c00477{font-size:51.094180px;}
.fs2_c00477{font-size:63.868774px;}
.fs0_c00477{font-size:80.898568px;}
.y0_c00477{bottom:0.000000px;}
.y2c_c00477{bottom:0.120938px;}
.y1_c00477{bottom:0.556171px;}
.y2b_c00477{bottom:2.879281px;}
.y2e_c00477{bottom:68.744500px;}
.y2a_c00477{bottom:70.124040px;}
.y2d_c00477{bottom:72.882383px;}
.y29_c00477{bottom:427.788157px;}
.y28_c00477{bottom:488.601133px;}
.y27_c00477{bottom:515.408072px;}
.y26_c00477{bottom:537.720263px;}
.y25_c00477{bottom:560.029005px;}
.y24_c00477{bottom:582.339096px;}
.y23_c00477{bottom:604.649067px;}
.y22_c00477{bottom:619.582026px;}
.y21_c00477{bottom:634.335690px;}
.y20_c00477{bottom:649.270059px;}
.y1f_c00477{bottom:664.202313px;}
.y1e_c00477{bottom:679.136682px;}
.y1d_c00477{bottom:694.071051px;}
.y1c_c00477{bottom:718.535441px;}
.y1b_c00477{bottom:741.030932px;}
.y1a_c00477{bottom:763.339673px;}
.y19_c00477{bottom:779.351867px;}
.y17_c00477{bottom:801.662108px;}
.y16_c00477{bottom:817.674302px;}
.y18_c00477{bottom:817.675052px;}
.y15_c00477{bottom:839.983043px;}
.y14_c00477{bottom:855.995236px;}
.y13_c00477{bottom:887.661874px;}
.y12_c00477{bottom:910.327014px;}
.y11_c00477{bottom:932.635756px;}
.y10_c00477{bottom:948.650199px;}
.ye_c00477{bottom:970.958940px;}
.yf_c00477{bottom:986.971134px;}
.yd_c00477{bottom:986.973384px;}
.yc_c00477{bottom:1009.283475px;}
.yb_c00477{bottom:1025.297918px;}
.ya_c00477{bottom:1047.426900px;}
.y9_c00477{bottom:1062.359859px;}
.y8_c00477{bottom:1077.294933px;}
.y7_c00477{bottom:1092.047892px;}
.y6_c00477{bottom:1116.515882px;}
.y5_c00477{bottom:1138.286873px;}
.y4_c00477{bottom:1167.611712px;}
.y3_c00477{bottom:1197.478350px;}
.y2_c00477{bottom:1222.486340px;}
.ha_c00477{height:14.393700px;}
.h6_c00477{height:42.010960px;}
.h7_c00477{height:45.831479px;}
.h9_c00477{height:45.835679px;}
.h8_c00477{height:45.851279px;}
.h4_c00477{height:47.262116px;}
.h3_c00477{height:47.364304px;}
.h5_c00477{height:59.078616px;}
.h2_c00477{height:74.992972px;}
.h1_c00477{height:1262.431829px;}
.hb_c00477{height:1262.879062px;}
.h0_c00477{height:1263.000000px;}
.w2_c00477{width:40.482000px;}
.w1_c00477{width:892.099575px;}
.w3_c00477{width:892.414744px;}
.w0_c00477{width:892.500000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:107.230682px;}
.x2_c00477{left:205.105793px;}
.x3_c00477{left:402.835835px;}
.x4_c00477{left:532.558892px;}
.x5_c00477{left:575.194172px;}
.x6_c00477{left:796.372200px;}
.x7_c00477{left:851.774003px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:-19.990935pt;}
.ws3_c00477{word-spacing:-12.625939pt;}
.ws2_c00477{word-spacing:-11.573439pt;}
.ws4_c00477{word-spacing:0.000000pt;}
.ws1_c00477{word-spacing:68.477101pt;}
._1b_c00477{margin-left:-5.435663pt;}
._c_c00477{margin-left:-4.499355pt;}
._3_c00477{margin-left:-3.524769pt;}
._5_c00477{margin-left:-2.043390pt;}
._2_c00477{margin-left:-1.041682pt;}
._1_c00477{width:1.368027pt;}
._4_c00477{width:2.502222pt;}
._0_c00477{width:4.162753pt;}
._19_c00477{width:7.511908pt;}
._1a_c00477{width:8.504420pt;}
._e_c00477{width:18.051900pt;}
._18_c00477{width:20.448305pt;}
._15_c00477{width:24.725464pt;}
._14_c00477{width:105.496339pt;}
._a_c00477{width:115.487334pt;}
._d_c00477{width:119.301209pt;}
._8_c00477{width:124.044066pt;}
._12_c00477{width:149.554001pt;}
._9_c00477{width:156.615521pt;}
._6_c00477{width:188.186570pt;}
._b_c00477{width:191.127215pt;}
._f_c00477{width:206.039436pt;}
._10_c00477{width:213.974694pt;}
._11_c00477{width:217.425940pt;}
._16_c00477{width:244.334324pt;}
._1c_c00477{width:330.169014pt;}
._1f_c00477{width:368.621904pt;}
._1e_c00477{width:384.243906pt;}
._7_c00477{width:419.207947pt;}
._13_c00477{width:907.590982pt;}
._17_c00477{width:934.506270pt;}
._1d_c00477{width:1137.611860pt;}
.fs3_c00477{font-size:41.631077pt;}
.fs1_c00477{font-size:45.417048pt;}
.fs2_c00477{font-size:56.772244pt;}
.fs0_c00477{font-size:71.909838pt;}
.y0_c00477{bottom:0.000000pt;}
.y2c_c00477{bottom:0.107500pt;}
.y1_c00477{bottom:0.494374pt;}
.y2b_c00477{bottom:2.559361pt;}
.y2e_c00477{bottom:61.106222pt;}
.y2a_c00477{bottom:62.332480pt;}
.y2d_c00477{bottom:64.784341pt;}
.y29_c00477{bottom:380.256140pt;}
.y28_c00477{bottom:434.312118pt;}
.y27_c00477{bottom:458.140509pt;}
.y26_c00477{bottom:477.973568pt;}
.y25_c00477{bottom:497.803560pt;}
.y24_c00477{bottom:517.634752pt;}
.y23_c00477{bottom:537.465837pt;}
.y22_c00477{bottom:550.739578pt;}
.y21_c00477{bottom:563.853947pt;}
.y20_c00477{bottom:577.128941pt;}
.y1f_c00477{bottom:590.402056pt;}
.y1e_c00477{bottom:603.677051pt;}
.y1d_c00477{bottom:616.952045pt;}
.y1c_c00477{bottom:638.698170pt;}
.y1b_c00477{bottom:658.694162pt;}
.y1a_c00477{bottom:678.524154pt;}
.y19_c00477{bottom:692.757215pt;}
.y17_c00477{bottom:712.588540pt;}
.y16_c00477{bottom:726.821601pt;}
.y18_c00477{bottom:726.822268pt;}
.y15_c00477{bottom:746.651593pt;}
.y14_c00477{bottom:760.884654pt;}
.y13_c00477{bottom:789.032776pt;}
.y12_c00477{bottom:809.179568pt;}
.y11_c00477{bottom:829.009560pt;}
.y10_c00477{bottom:843.244621pt;}
.ye_c00477{bottom:863.074614pt;}
.yf_c00477{bottom:877.307674pt;}
.yd_c00477{bottom:877.309674pt;}
.yc_c00477{bottom:897.140867pt;}
.yb_c00477{bottom:911.375928pt;}
.ya_c00477{bottom:931.046133pt;}
.y9_c00477{bottom:944.319874pt;}
.y8_c00477{bottom:957.595496pt;}
.y7_c00477{bottom:970.709237pt;}
.y6_c00477{bottom:992.458562pt;}
.y5_c00477{bottom:1011.810554pt;}
.y4_c00477{bottom:1037.877077pt;}
.y3_c00477{bottom:1064.425200pt;}
.y2_c00477{bottom:1086.654524pt;}
.ha_c00477{height:12.794400pt;}
.h6_c00477{height:37.343076pt;}
.h7_c00477{height:40.739093pt;}
.h9_c00477{height:40.742826pt;}
.h8_c00477{height:40.756692pt;}
.h4_c00477{height:42.010770pt;}
.h3_c00477{height:42.101604pt;}
.h5_c00477{height:52.514326pt;}
.h2_c00477{height:66.660420pt;}
.h1_c00477{height:1122.161626pt;}
.hb_c00477{height:1122.559167pt;}
.h0_c00477{height:1122.666667pt;}
.w2_c00477{width:35.984000pt;}
.w1_c00477{width:792.977400pt;}
.w3_c00477{width:793.257550pt;}
.w0_c00477{width:793.333333pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:95.316162pt;}
.x2_c00477{left:182.316260pt;}
.x3_c00477{left:358.076298pt;}
.x4_c00477{left:473.385681pt;}
.x5_c00477{left:511.283709pt;}
.x6_c00477{left:707.886400pt;}
.x7_c00477{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.107000;font-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_c00478{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls0_c00478{letter-spacing:0.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:-22.489802px;}
.ws2_c00478{word-spacing:-14.204182px;}
.ws3_c00478{word-spacing:-13.020119px;}
.ws4_c00478{word-spacing:0.000000px;}
.ws1_c00478{word-spacing:77.036738px;}
._f_c00478{margin-left:-5.139341px;}
._3_c00478{margin-left:-3.965365px;}
._5_c00478{margin-left:-2.298813px;}
._2_c00478{margin-left:-1.171893px;}
._1_c00478{width:1.539031px;}
._4_c00478{width:2.815000px;}
._0_c00478{width:4.683097px;}
._c_c00478{width:6.128955px;}
._1f_c00478{width:8.338360px;}
._21_c00478{width:9.504894px;}
._18_c00478{width:18.816751px;}
._1e_c00478{width:20.308481px;}
._25_c00478{width:27.816224px;}
._e_c00478{width:37.224139px;}
._20_c00478{width:79.669921px;}
._d_c00478{width:83.101326px;}
._1d_c00478{width:97.543881px;}
._24_c00478{width:105.829987px;}
._a_c00478{width:129.923251px;}
._8_c00478{width:139.549574px;}
._13_c00478{width:168.248257px;}
._9_c00478{width:176.192461px;}
._1a_c00478{width:201.521065px;}
._6_c00478{width:211.709891px;}
._b_c00478{width:215.018117px;}
._11_c00478{width:231.398966px;}
._27_c00478{width:239.990521px;}
._1b_c00478{width:241.047933px;}
._23_c00478{width:244.238941px;}
._1c_c00478{width:274.511573px;}
._16_c00478{width:286.834608px;}
._7_c00478{width:471.608940px;}
._26_c00478{width:474.769770px;}
._10_c00478{width:564.627518px;}
._19_c00478{width:606.531291px;}
._22_c00478{width:654.296997px;}
._12_c00478{width:917.531287px;}
._14_c00478{width:947.796219px;}
._15_c00478{width:1021.047054px;}
._17_c00478{width:1051.303556px;}
.fc0_c00478{color:rgb(35,31,32);}
.fs2_c00478{font-size:46.834961px;}
.fs1_c00478{font-size:51.094180px;}
.fs0_c00478{font-size:80.898568px;}
.y0_c00478{bottom:0.000000px;}
.y2e_c00478{bottom:0.120938px;}
.y1_c00478{bottom:0.556171px;}
.y2d_c00478{bottom:2.879281px;}
.y30_c00478{bottom:68.744500px;}
.y2c_c00478{bottom:70.124040px;}
.y2f_c00478{bottom:72.882383px;}
.y2b_c00478{bottom:341.606292px;}
.y2a_c00478{bottom:368.416081px;}
.y29_c00478{bottom:390.726172px;}
.y28_c00478{bottom:413.033788px;}
.y27_c00478{bottom:427.968157px;}
.y26_c00478{bottom:452.436898px;}
.y25_c00478{bottom:474.925039px;}
.y24_c00478{bottom:497.236630px;}
.y23_c00478{bottom:519.367576px;}
.y22_c00478{bottom:534.301240px;}
.y21_c00478{bottom:549.235609px;}
.y20_c00478{bottom:573.702999px;}
.y1f_c00478{bottom:596.188740px;}
.y1e_c00478{bottom:618.679581px;}
.y1d_c00478{bottom:640.812972px;}
.y1c_c00478{bottom:655.745931px;}
.y1b_c00478{bottom:670.678185px;}
.y1a_c00478{bottom:685.432554px;}
.y19_c00478{bottom:709.899945px;}
.y18_c00478{bottom:732.569436px;}
.y17_c00478{bottom:754.881027px;}
.y16_c00478{bottom:777.008553px;}
.y15_c00478{bottom:791.941512px;}
.y14_c00478{bottom:816.410402px;}
.y13_c00478{bottom:838.902893px;}
.y12_c00478{bottom:861.394484px;}
.y11_c00478{bottom:883.522520px;}
.y10_c00478{bottom:898.457594px;}
.yf_c00478{bottom:913.211963px;}
.ye_c00478{bottom:937.677254px;}
.yd_c00478{bottom:960.346744px;}
.yc_c00478{bottom:982.654136px;}
.yb_c00478{bottom:998.666329px;}
.ya_c00478{bottom:1020.977920px;}
.y9_c00478{bottom:1043.108866px;}
.y8_c00478{bottom:1058.043940px;}
.y7_c00478{bottom:1072.976899px;}
.y6_c00478{bottom:1097.447890px;}
.y5_c00478{bottom:1121.374380px;}
.y4_c00478{bottom:1167.611712px;}
.y3_c00478{bottom:1197.478350px;}
.y2_c00478{bottom:1222.486340px;}
.ha_c00478{height:14.393700px;}
.h5_c00478{height:42.010960px;}
.h6_c00478{height:45.831479px;}
.h8_c00478{height:45.833879px;}
.h7_c00478{height:45.842279px;}
.h9_c00478{height:45.848879px;}
.h4_c00478{height:47.262116px;}
.h3_c00478{height:47.364304px;}
.h2_c00478{height:74.992972px;}
.h1_c00478{height:1262.431829px;}
.hb_c00478{height:1262.879062px;}
.h0_c00478{height:1263.000000px;}
.w2_c00478{width:40.482000px;}
.w1_c00478{width:892.099575px;}
.w3_c00478{width:892.414744px;}
.w0_c00478{width:892.500000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:107.230682px;}
.x2_c00478{left:205.105793px;}
.x3_c00478{left:395.461190px;}
.x4_c00478{left:532.557094px;}
.x5_c00478{left:575.199036px;}
.x6_c00478{left:796.372200px;}
.x7_c00478{left:851.774003px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:-19.990935pt;}
.ws2_c00478{word-spacing:-12.625939pt;}
.ws3_c00478{word-spacing:-11.573439pt;}
.ws4_c00478{word-spacing:0.000000pt;}
.ws1_c00478{word-spacing:68.477101pt;}
._f_c00478{margin-left:-4.568303pt;}
._3_c00478{margin-left:-3.524769pt;}
._5_c00478{margin-left:-2.043390pt;}
._2_c00478{margin-left:-1.041682pt;}
._1_c00478{width:1.368027pt;}
._4_c00478{width:2.502222pt;}
._0_c00478{width:4.162753pt;}
._c_c00478{width:5.447960pt;}
._1f_c00478{width:7.411875pt;}
._21_c00478{width:8.448795pt;}
._18_c00478{width:16.726001pt;}
._1e_c00478{width:18.051983pt;}
._25_c00478{width:24.725532pt;}
._e_c00478{width:33.088124pt;}
._20_c00478{width:70.817707pt;}
._d_c00478{width:73.867846pt;}
._1d_c00478{width:86.705672pt;}
._24_c00478{width:94.071099pt;}
._a_c00478{width:115.487334pt;}
._8_c00478{width:124.044066pt;}
._13_c00478{width:149.554006pt;}
._9_c00478{width:156.615521pt;}
._1a_c00478{width:179.129835pt;}
._6_c00478{width:188.186570pt;}
._b_c00478{width:191.127215pt;}
._11_c00478{width:205.687970pt;}
._27_c00478{width:213.324907pt;}
._1b_c00478{width:214.264830pt;}
._23_c00478{width:217.101281pt;}
._1c_c00478{width:244.010287pt;}
._16_c00478{width:254.964096pt;}
._7_c00478{width:419.207947pt;}
._26_c00478{width:422.017573pt;}
._10_c00478{width:501.891127pt;}
._19_c00478{width:539.138926pt;}
._22_c00478{width:581.597331pt;}
._12_c00478{width:815.583367pt;}
._14_c00478{width:842.485528pt;}
._15_c00478{width:907.597382pt;}
._17_c00478{width:934.492049pt;}
.fs2_c00478{font-size:41.631077pt;}
.fs1_c00478{font-size:45.417048pt;}
.fs0_c00478{font-size:71.909838pt;}
.y0_c00478{bottom:0.000000pt;}
.y2e_c00478{bottom:0.107500pt;}
.y1_c00478{bottom:0.494374pt;}
.y2d_c00478{bottom:2.559361pt;}
.y30_c00478{bottom:61.106222pt;}
.y2c_c00478{bottom:62.332480pt;}
.y2f_c00478{bottom:64.784341pt;}
.y2b_c00478{bottom:303.650037pt;}
.y2a_c00478{bottom:327.480961pt;}
.y29_c00478{bottom:347.312153pt;}
.y28_c00478{bottom:367.141145pt;}
.y27_c00478{bottom:380.416140pt;}
.y26_c00478{bottom:402.166131pt;}
.y25_c00478{bottom:422.155590pt;}
.y24_c00478{bottom:441.988115pt;}
.y23_c00478{bottom:461.660067pt;}
.y22_c00478{bottom:474.934435pt;}
.y21_c00478{bottom:488.209430pt;}
.y20_c00478{bottom:509.958221pt;}
.y1f_c00478{bottom:529.945547pt;}
.y1e_c00478{bottom:549.937405pt;}
.y1d_c00478{bottom:569.611531pt;}
.y1c_c00478{bottom:582.885272pt;}
.y1b_c00478{bottom:596.158387pt;}
.y1a_c00478{bottom:609.273382pt;}
.y19_c00478{bottom:631.022173pt;}
.y18_c00478{bottom:651.172832pt;}
.y17_c00478{bottom:671.005357pt;}
.y16_c00478{bottom:690.674269pt;}
.y15_c00478{bottom:703.948010pt;}
.y14_c00478{bottom:725.698135pt;}
.y13_c00478{bottom:745.691460pt;}
.y12_c00478{bottom:765.683986pt;}
.y11_c00478{bottom:785.353351pt;}
.y10_c00478{bottom:798.628973pt;}
.yf_c00478{bottom:811.743967pt;}
.ye_c00478{bottom:833.490892pt;}
.yd_c00478{bottom:853.641551pt;}
.yc_c00478{bottom:873.470343pt;}
.yb_c00478{bottom:887.703404pt;}
.ya_c00478{bottom:907.535929pt;}
.y9_c00478{bottom:927.207881pt;}
.y8_c00478{bottom:940.483503pt;}
.y7_c00478{bottom:953.757244pt;}
.y6_c00478{bottom:975.509235pt;}
.y5_c00478{bottom:996.777227pt;}
.y4_c00478{bottom:1037.877077pt;}
.y3_c00478{bottom:1064.425200pt;}
.y2_c00478{bottom:1086.654524pt;}
.ha_c00478{height:12.794400pt;}
.h5_c00478{height:37.343076pt;}
.h6_c00478{height:40.739093pt;}
.h8_c00478{height:40.741226pt;}
.h7_c00478{height:40.748693pt;}
.h9_c00478{height:40.754559pt;}
.h4_c00478{height:42.010770pt;}
.h3_c00478{height:42.101604pt;}
.h2_c00478{height:66.660420pt;}
.h1_c00478{height:1122.161626pt;}
.hb_c00478{height:1122.559167pt;}
.h0_c00478{height:1122.666667pt;}
.w2_c00478{width:35.984000pt;}
.w1_c00478{width:792.977400pt;}
.w3_c00478{width:793.257550pt;}
.w0_c00478{width:793.333333pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:95.316162pt;}
.x2_c00478{left:182.316260pt;}
.x3_c00478{left:351.521058pt;}
.x4_c00478{left:473.384084pt;}
.x5_c00478{left:511.288032pt;}
.x6_c00478{left:707.886400pt;}
.x7_c00478{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.107000;font-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_c00479{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-22.489802px;}
.ws2_c00479{word-spacing:-14.204182px;}
.ws3_c00479{word-spacing:0.000000px;}
.ws1_c00479{word-spacing:77.036738px;}
._e_c00479{margin-left:-5.404283px;}
._3_c00479{margin-left:-3.965365px;}
._5_c00479{margin-left:-2.298813px;}
._2_c00479{margin-left:-1.171893px;}
._1_c00479{width:1.539031px;}
._4_c00479{width:2.815000px;}
._0_c00479{width:4.683097px;}
._16_c00479{width:7.683420px;}
._1c_c00479{width:19.035524px;}
._d_c00479{width:32.722233px;}
._a_c00479{width:129.923251px;}
._1b_c00479{width:135.111650px;}
._8_c00479{width:139.549574px;}
._c_c00479{width:148.694907px;}
._1d_c00479{width:158.998834px;}
._11_c00479{width:167.921011px;}
._9_c00479{width:176.192461px;}
._1e_c00479{width:201.521065px;}
._6_c00479{width:211.709891px;}
._b_c00479{width:215.018117px;}
._17_c00479{width:234.763032px;}
._13_c00479{width:256.724204px;}
._1a_c00479{width:304.062240px;}
._12_c00479{width:325.665902px;}
._18_c00479{width:350.038049px;}
._14_c00479{width:388.789793px;}
._7_c00479{width:471.608940px;}
._f_c00479{width:547.110046px;}
._19_c00479{width:643.699841px;}
._1f_c00479{width:917.857786px;}
._20_c00479{width:1021.047054px;}
._15_c00479{width:1051.303556px;}
._10_c00479{width:1279.807638px;}
.fc0_c00479{color:rgb(35,31,32);}
.fs2_c00479{font-size:46.834961px;}
.fs1_c00479{font-size:51.094180px;}
.fs0_c00479{font-size:80.898568px;}
.y0_c00479{bottom:0.000000px;}
.y31_c00479{bottom:0.120938px;}
.y1_c00479{bottom:0.556171px;}
.y30_c00479{bottom:2.879281px;}
.y33_c00479{bottom:68.744500px;}
.y2f_c00479{bottom:70.124040px;}
.y32_c00479{bottom:72.882383px;}
.y2e_c00479{bottom:329.910947px;}
.y2d_c00479{bottom:356.720436px;}
.y2c_c00479{bottom:379.029177px;}
.y2b_c00479{bottom:401.338533px;}
.y2a_c00479{bottom:416.092902px;}
.y29_c00479{bottom:431.025156px;}
.y28_c00479{bottom:455.496146px;}
.y27_c00479{bottom:478.164137px;}
.y25_c00479{bottom:500.474978px;}
.y26_c00479{bottom:516.485822px;}
.y24_c00479{bottom:516.487172px;}
.y23_c00479{bottom:538.795913px;}
.y22_c00479{bottom:554.808107px;}
.y21_c00479{bottom:576.939158px;}
.y20_c00479{bottom:591.872822px;}
.y1f_c00479{bottom:606.807191px;}
.y1e_c00479{bottom:621.559445px;}
.y1d_c00479{bottom:636.492404px;}
.y1c_c00479{bottom:651.426068px;}
.y1b_c00479{bottom:675.892858px;}
.y1a_c00479{bottom:698.383249px;}
.y19_c00479{bottom:720.874090px;}
.y18_c00479{bottom:743.184181px;}
.y17_c00479{bottom:765.494272px;}
.y16_c00479{bottom:787.803013px;}
.y15_c00479{bottom:810.112640px;}
.y14_c00479{bottom:824.866304px;}
.y13_c00479{bottom:839.802083px;}
.y12_c00479{bottom:854.732942px;}
.y11_c00479{bottom:869.667311px;}
.y10_c00479{bottom:884.600975px;}
.yf_c00479{bottom:909.069265px;}
.ye_c00479{bottom:931.559956px;}
.yd_c00479{bottom:953.867347px;}
.yc_c00479{bottom:976.178938px;}
.yb_c00479{bottom:998.666329px;}
.ya_c00479{bottom:1020.977920px;}
.y9_c00479{bottom:1043.108866px;}
.y8_c00479{bottom:1058.043940px;}
.y7_c00479{bottom:1072.976899px;}
.y6_c00479{bottom:1097.447890px;}
.y5_c00479{bottom:1121.374380px;}
.y4_c00479{bottom:1167.611712px;}
.y3_c00479{bottom:1197.478350px;}
.y2_c00479{bottom:1222.486340px;}
.h9_c00479{height:14.393700px;}
.h5_c00479{height:42.010960px;}
.h6_c00479{height:45.831479px;}
.h7_c00479{height:45.837479px;}
.h8_c00479{height:45.838679px;}
.h4_c00479{height:47.262116px;}
.h3_c00479{height:47.364304px;}
.h2_c00479{height:74.992972px;}
.h1_c00479{height:1262.431829px;}
.ha_c00479{height:1262.879062px;}
.h0_c00479{height:1263.000000px;}
.w2_c00479{width:40.482000px;}
.w1_c00479{width:892.099575px;}
.w3_c00479{width:892.414744px;}
.w0_c00479{width:892.500000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:107.230682px;}
.x2_c00479{left:205.105793px;}
.x4_c00479{left:402.835835px;}
.x3_c00479{left:532.558592px;}
.x5_c00479{left:575.199036px;}
.x6_c00479{left:796.372200px;}
.x7_c00479{left:851.774003px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:-19.990935pt;}
.ws2_c00479{word-spacing:-12.625939pt;}
.ws3_c00479{word-spacing:0.000000pt;}
.ws1_c00479{word-spacing:68.477101pt;}
._e_c00479{margin-left:-4.803807pt;}
._3_c00479{margin-left:-3.524769pt;}
._5_c00479{margin-left:-2.043390pt;}
._2_c00479{margin-left:-1.041682pt;}
._1_c00479{width:1.368027pt;}
._4_c00479{width:2.502222pt;}
._0_c00479{width:4.162753pt;}
._16_c00479{width:6.829707pt;}
._1c_c00479{width:16.920466pt;}
._d_c00479{width:29.086429pt;}
._a_c00479{width:115.487334pt;}
._1b_c00479{width:120.099245pt;}
._8_c00479{width:124.044066pt;}
._c_c00479{width:132.173251pt;}
._1d_c00479{width:141.332297pt;}
._11_c00479{width:149.263121pt;}
._9_c00479{width:156.615521pt;}
._1e_c00479{width:179.129835pt;}
._6_c00479{width:188.186570pt;}
._b_c00479{width:191.127215pt;}
._17_c00479{width:208.678250pt;}
._13_c00479{width:228.199292pt;}
._1a_c00479{width:270.277547pt;}
._12_c00479{width:289.480802pt;}
._18_c00479{width:311.144932pt;}
._14_c00479{width:345.590927pt;}
._7_c00479{width:419.207947pt;}
._f_c00479{width:486.320041pt;}
._19_c00479{width:572.177636pt;}
._1f_c00479{width:815.873587pt;}
._20_c00479{width:907.597382pt;}
._15_c00479{width:934.492049pt;}
._10_c00479{width:1137.606790pt;}
.fs2_c00479{font-size:41.631077pt;}
.fs1_c00479{font-size:45.417048pt;}
.fs0_c00479{font-size:71.909838pt;}
.y0_c00479{bottom:0.000000pt;}
.y31_c00479{bottom:0.107500pt;}
.y1_c00479{bottom:0.494374pt;}
.y30_c00479{bottom:2.559361pt;}
.y33_c00479{bottom:61.106222pt;}
.y2f_c00479{bottom:62.332480pt;}
.y32_c00479{bottom:64.784341pt;}
.y2e_c00479{bottom:293.254175pt;}
.y2d_c00479{bottom:317.084832pt;}
.y2c_c00479{bottom:336.914824pt;}
.y2b_c00479{bottom:356.745363pt;}
.y2a_c00479{bottom:369.860357pt;}
.y29_c00479{bottom:383.133472pt;}
.y28_c00479{bottom:404.885463pt;}
.y27_c00479{bottom:425.034789pt;}
.y25_c00479{bottom:444.866647pt;}
.y26_c00479{bottom:459.098508pt;}
.y24_c00479{bottom:459.099708pt;}
.y23_c00479{bottom:478.929700pt;}
.y22_c00479{bottom:493.162761pt;}
.y21_c00479{bottom:512.834807pt;}
.y20_c00479{bottom:526.109175pt;}
.y1f_c00479{bottom:539.384170pt;}
.y1e_c00479{bottom:552.497284pt;}
.y1d_c00479{bottom:565.771026pt;}
.y1c_c00479{bottom:579.045394pt;}
.y1b_c00479{bottom:600.793652pt;}
.y1a_c00479{bottom:620.785110pt;}
.y19_c00479{bottom:640.776969pt;}
.y18_c00479{bottom:660.608161pt;}
.y17_c00479{bottom:680.439353pt;}
.y16_c00479{bottom:700.269345pt;}
.y15_c00479{bottom:720.100124pt;}
.y14_c00479{bottom:733.214492pt;}
.y13_c00479{bottom:746.490740pt;}
.y12_c00479{bottom:759.762615pt;}
.y11_c00479{bottom:773.037610pt;}
.y10_c00479{bottom:786.311978pt;}
.yf_c00479{bottom:808.061569pt;}
.ye_c00479{bottom:828.053294pt;}
.yd_c00479{bottom:847.882086pt;}
.yc_c00479{bottom:867.714612pt;}
.yb_c00479{bottom:887.703404pt;}
.ya_c00479{bottom:907.535929pt;}
.y9_c00479{bottom:927.207881pt;}
.y8_c00479{bottom:940.483503pt;}
.y7_c00479{bottom:953.757244pt;}
.y6_c00479{bottom:975.509235pt;}
.y5_c00479{bottom:996.777227pt;}
.y4_c00479{bottom:1037.877077pt;}
.y3_c00479{bottom:1064.425200pt;}
.y2_c00479{bottom:1086.654524pt;}
.h9_c00479{height:12.794400pt;}
.h5_c00479{height:37.343076pt;}
.h6_c00479{height:40.739093pt;}
.h7_c00479{height:40.744426pt;}
.h8_c00479{height:40.745493pt;}
.h4_c00479{height:42.010770pt;}
.h3_c00479{height:42.101604pt;}
.h2_c00479{height:66.660420pt;}
.h1_c00479{height:1122.161626pt;}
.ha_c00479{height:1122.559167pt;}
.h0_c00479{height:1122.666667pt;}
.w2_c00479{width:35.984000pt;}
.w1_c00479{width:792.977400pt;}
.w3_c00479{width:793.257550pt;}
.w0_c00479{width:793.333333pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:95.316162pt;}
.x2_c00479{left:182.316260pt;}
.x4_c00479{left:358.076298pt;}
.x3_c00479{left:473.385415pt;}
.x5_c00479{left:511.288032pt;}
.x6_c00479{left:707.886400pt;}
.x7_c00479{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.107000;font-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_c00480{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:-22.489802px;}
.ws2_c00480{word-spacing:-14.204182px;}
.ws3_c00480{word-spacing:0.000000px;}
.ws1_c00480{word-spacing:77.036738px;}
._d_c00480{margin-left:-5.874655px;}
._3_c00480{margin-left:-3.965365px;}
._5_c00480{margin-left:-2.298813px;}
._2_c00480{margin-left:-1.171893px;}
._1_c00480{width:1.539031px;}
._4_c00480{width:2.815000px;}
._0_c00480{width:4.683097px;}
._c_c00480{width:5.737451px;}
._f_c00480{width:27.815958px;}
._a_c00480{width:129.923251px;}
._8_c00480{width:139.549574px;}
._e_c00480{width:165.530765px;}
._13_c00480{width:167.921011px;}
._9_c00480{width:176.192461px;}
._6_c00480{width:211.709891px;}
._b_c00480{width:215.018117px;}
._11_c00480{width:231.794366px;}
._16_c00480{width:442.609027px;}
._7_c00480{width:471.608940px;}
._18_c00480{width:495.940003px;}
._10_c00480{width:532.705424px;}
._15_c00480{width:606.819523px;}
._17_c00480{width:610.170692px;}
._12_c00480{width:947.812090px;}
._14_c00480{width:1051.303556px;}
.fc0_c00480{color:rgb(35,31,32);}
.fs2_c00480{font-size:46.834961px;}
.fs1_c00480{font-size:51.094180px;}
.fs0_c00480{font-size:80.898568px;}
.y0_c00480{bottom:0.000000px;}
.y24_c00480{bottom:0.120938px;}
.y1_c00480{bottom:0.556171px;}
.y23_c00480{bottom:2.879281px;}
.y26_c00480{bottom:68.744500px;}
.y22_c00480{bottom:70.124040px;}
.y25_c00480{bottom:72.882383px;}
.y21_c00480{bottom:508.749725px;}
.y20_c00480{bottom:535.558314px;}
.y1f_c00480{bottom:557.868405px;}
.y1e_c00480{bottom:580.359996px;}
.y1d_c00480{bottom:602.669488px;}
.y1c_c00480{bottom:624.979579px;}
.y1b_c00480{bottom:647.109070px;}
.y1a_c00480{bottom:671.578860px;}
.y19_c00480{bottom:694.246701px;}
.y18_c00480{bottom:716.557542px;}
.y17_c00480{bottom:738.688773px;}
.y16_c00480{bottom:753.621027px;}
.y15_c00480{bottom:778.089317px;}
.y14_c00480{bottom:800.577158px;}
.y13_c00480{bottom:823.067999px;}
.y12_c00480{bottom:845.200115px;}
.y11_c00480{bottom:860.134485px;}
.y10_c00480{bottom:884.601125px;}
.yf_c00480{bottom:907.089266px;}
.ye_c00480{bottom:929.401457px;}
.yd_c00480{bottom:951.530573px;}
.yc_c00480{bottom:966.464942px;}
.yb_c00480{bottom:990.933832px;}
.ya_c00480{bottom:1013.606323px;}
.y9_c00480{bottom:1035.916414px;}
.y8_c00480{bottom:1058.043940px;}
.y7_c00480{bottom:1072.976899px;}
.y6_c00480{bottom:1097.447890px;}
.y5_c00480{bottom:1121.374380px;}
.y4_c00480{bottom:1167.611712px;}
.y3_c00480{bottom:1197.478350px;}
.y2_c00480{bottom:1222.486340px;}
.h9_c00480{height:14.393700px;}
.h5_c00480{height:42.010960px;}
.h6_c00480{height:45.831479px;}
.h7_c00480{height:45.842279px;}
.h8_c00480{height:45.848879px;}
.h4_c00480{height:47.262116px;}
.h3_c00480{height:47.364304px;}
.h2_c00480{height:74.992972px;}
.h1_c00480{height:1262.431829px;}
.ha_c00480{height:1262.879062px;}
.h0_c00480{height:1263.000000px;}
.w2_c00480{width:40.482000px;}
.w1_c00480{width:892.099575px;}
.w3_c00480{width:892.414744px;}
.w0_c00480{width:892.500000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:107.230682px;}
.x2_c00480{left:205.105793px;}
.x3_c00480{left:532.558592px;}
.x4_c00480{left:575.194172px;}
.x5_c00480{left:796.372200px;}
.x6_c00480{left:851.774003px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:-19.990935pt;}
.ws2_c00480{word-spacing:-12.625939pt;}
.ws3_c00480{word-spacing:0.000000pt;}
.ws1_c00480{word-spacing:68.477101pt;}
._d_c00480{margin-left:-5.221916pt;}
._3_c00480{margin-left:-3.524769pt;}
._5_c00480{margin-left:-2.043390pt;}
._2_c00480{margin-left:-1.041682pt;}
._1_c00480{width:1.368027pt;}
._4_c00480{width:2.502222pt;}
._0_c00480{width:4.162753pt;}
._c_c00480{width:5.099956pt;}
._f_c00480{width:24.725296pt;}
._a_c00480{width:115.487334pt;}
._8_c00480{width:124.044066pt;}
._e_c00480{width:147.138458pt;}
._13_c00480{width:149.263121pt;}
._9_c00480{width:156.615521pt;}
._6_c00480{width:188.186570pt;}
._b_c00480{width:191.127215pt;}
._11_c00480{width:206.039436pt;}
._16_c00480{width:393.430246pt;}
._7_c00480{width:419.207947pt;}
._18_c00480{width:440.835558pt;}
._10_c00480{width:473.515933pt;}
._15_c00480{width:539.395131pt;}
._17_c00480{width:542.373948pt;}
._12_c00480{width:842.499636pt;}
._14_c00480{width:934.492049pt;}
.fs2_c00480{font-size:41.631077pt;}
.fs1_c00480{font-size:45.417048pt;}
.fs0_c00480{font-size:71.909838pt;}
.y0_c00480{bottom:0.000000pt;}
.y24_c00480{bottom:0.107500pt;}
.y1_c00480{bottom:0.494374pt;}
.y23_c00480{bottom:2.559361pt;}
.y26_c00480{bottom:61.106222pt;}
.y22_c00480{bottom:62.332480pt;}
.y25_c00480{bottom:64.784341pt;}
.y21_c00480{bottom:452.221978pt;}
.y20_c00480{bottom:476.051835pt;}
.y1f_c00480{bottom:495.883027pt;}
.y1e_c00480{bottom:515.875552pt;}
.y1d_c00480{bottom:535.706211pt;}
.y1c_c00480{bottom:555.537403pt;}
.y1b_c00480{bottom:575.208062pt;}
.y1a_c00480{bottom:596.958987pt;}
.y19_c00480{bottom:617.108179pt;}
.y18_c00480{bottom:636.940037pt;}
.y17_c00480{bottom:656.612243pt;}
.y16_c00480{bottom:669.885357pt;}
.y15_c00480{bottom:691.634949pt;}
.y14_c00480{bottom:711.624141pt;}
.y13_c00480{bottom:731.615999pt;}
.y12_c00480{bottom:751.288992pt;}
.y11_c00480{bottom:764.563986pt;}
.y10_c00480{bottom:786.312111pt;}
.yf_c00480{bottom:806.301570pt;}
.ye_c00480{bottom:826.134628pt;}
.yd_c00480{bottom:845.804954pt;}
.yc_c00480{bottom:859.079948pt;}
.yb_c00480{bottom:880.830073pt;}
.ya_c00480{bottom:900.983398pt;}
.y9_c00480{bottom:920.814590pt;}
.y8_c00480{bottom:940.483503pt;}
.y7_c00480{bottom:953.757244pt;}
.y6_c00480{bottom:975.509235pt;}
.y5_c00480{bottom:996.777227pt;}
.y4_c00480{bottom:1037.877077pt;}
.y3_c00480{bottom:1064.425200pt;}
.y2_c00480{bottom:1086.654524pt;}
.h9_c00480{height:12.794400pt;}
.h5_c00480{height:37.343076pt;}
.h6_c00480{height:40.739093pt;}
.h7_c00480{height:40.748693pt;}
.h8_c00480{height:40.754559pt;}
.h4_c00480{height:42.010770pt;}
.h3_c00480{height:42.101604pt;}
.h2_c00480{height:66.660420pt;}
.h1_c00480{height:1122.161626pt;}
.ha_c00480{height:1122.559167pt;}
.h0_c00480{height:1122.666667pt;}
.w2_c00480{width:35.984000pt;}
.w1_c00480{width:792.977400pt;}
.w3_c00480{width:793.257550pt;}
.w0_c00480{width:793.333333pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:95.316162pt;}
.x2_c00480{left:182.316260pt;}
.x3_c00480{left:473.385415pt;}
.x4_c00480{left:511.283709pt;}
.x5_c00480{left:707.886400pt;}
.x6_c00480{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.137000;font-style:normal;font-weight:normal;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_15f79470968d99875de04212.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.107000;font-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_c00481{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:-22.489802px;}
.ws2_c00481{word-spacing:-14.204182px;}
.ws3_c00481{word-spacing:-13.020119px;}
.ws4_c00481{word-spacing:0.000000px;}
.ws1_c00481{word-spacing:77.036738px;}
._19_c00481{margin-left:-11.156534px;}
._18_c00481{margin-left:-6.357716px;}
._c_c00481{margin-left:-5.061774px;}
._3_c00481{margin-left:-3.965365px;}
._5_c00481{margin-left:-2.298813px;}
._2_c00481{margin-left:-1.171893px;}
._1_c00481{width:1.539031px;}
._4_c00481{width:2.815000px;}
._0_c00481{width:4.683097px;}
._1a_c00481{width:8.439708px;}
._e_c00481{width:32.722233px;}
._d_c00481{width:80.453183px;}
._a_c00481{width:129.923251px;}
._8_c00481{width:139.549574px;}
._13_c00481{width:141.346142px;}
._10_c00481{width:167.921011px;}
._16_c00481{width:171.920317px;}
._9_c00481{width:176.192461px;}
._6_c00481{width:211.709891px;}
._b_c00481{width:215.018117px;}
._15_c00481{width:282.070318px;}
._12_c00481{width:290.817709px;}
._14_c00481{width:303.718744px;}
._7_c00481{width:471.608940px;}
._17_c00481{width:1021.041054px;}
._11_c00481{width:1051.303556px;}
._f_c00481{width:1279.813113px;}
.fc0_c00481{color:rgb(35,31,32);}
.fs3_c00481{font-size:46.834961px;}
.fs1_c00481{font-size:51.094180px;}
.fs2_c00481{font-size:63.868774px;}
.fs0_c00481{font-size:80.898568px;}
.y0_c00481{bottom:0.000000px;}
.y37_c00481{bottom:0.120938px;}
.y1_c00481{bottom:0.556171px;}
.y36_c00481{bottom:2.879281px;}
.y39_c00481{bottom:68.744500px;}
.y35_c00481{bottom:70.124040px;}
.y38_c00481{bottom:72.882383px;}
.y34_c00481{bottom:125.705978px;}
.y33_c00481{bottom:148.014509px;}
.y32_c00481{bottom:162.766763px;}
.y31_c00481{bottom:187.236554px;}
.y30_c00481{bottom:209.905295px;}
.y2f_c00481{bottom:232.216136px;}
.y2e_c00481{bottom:254.526227px;}
.y2d_c00481{bottom:276.654083px;}
.y2c_c00481{bottom:291.588452px;}
.y2b_c00481{bottom:306.520706px;}
.y2a_c00481{bottom:330.988096px;}
.y29_c00481{bottom:353.479687px;}
.y28_c00481{bottom:375.971878px;}
.y27_c00481{bottom:398.279269px;}
.y26_c00481{bottom:420.590860px;}
.y25_c00481{bottom:442.898101px;}
.y24_c00481{bottom:458.912545px;}
.y23_c00481{bottom:481.222636px;}
.y22_c00481{bottom:503.534752px;}
.y21_c00481{bottom:518.289121px;}
.y20_c00481{bottom:542.756511px;}
.y1f_c00481{bottom:565.426902px;}
.y1e_c00481{bottom:587.736993px;}
.y1d_c00481{bottom:610.047835px;}
.y1c_c00481{bottom:632.357926px;}
.y1b_c00481{bottom:654.846667px;}
.y1a_c00481{bottom:670.678860px;}
.y19_c00481{bottom:693.171051px;}
.y18_c00481{bottom:715.297782px;}
.y17_c00481{bottom:730.230036px;}
.y16_c00481{bottom:754.698927px;}
.y15_c00481{bottom:777.188868px;}
.y14_c00481{bottom:799.501059px;}
.y13_c00481{bottom:821.988450px;}
.y12_c00481{bottom:844.298541px;}
.y11_c00481{bottom:866.608632px;}
.y10_c00481{bottom:888.919473px;}
.yf_c00481{bottom:911.231499px;}
.ye_c00481{bottom:925.984458px;}
.yd_c00481{bottom:950.452598px;}
.yc_c00481{bottom:973.117889px;}
.yb_c00481{bottom:995.430230px;}
.ya_c00481{bottom:1011.442424px;}
.y9_c00481{bottom:1033.574540px;}
.y8_c00481{bottom:1048.508909px;}
.y7_c00481{bottom:1072.976899px;}
.y6_c00481{bottom:1094.567891px;}
.y5_c00481{bottom:1121.374380px;}
.y4_c00481{bottom:1167.611712px;}
.y3_c00481{bottom:1197.478350px;}
.y2_c00481{bottom:1222.486340px;}
.hc_c00481{height:14.393700px;}
.h6_c00481{height:42.010960px;}
.h7_c00481{height:45.831479px;}
.h9_c00481{height:45.832079px;}
.ha_c00481{height:45.836279px;}
.hb_c00481{height:45.845279px;}
.h8_c00481{height:45.853679px;}
.h4_c00481{height:47.262116px;}
.h3_c00481{height:47.364304px;}
.h5_c00481{height:59.078616px;}
.h2_c00481{height:74.992972px;}
.h1_c00481{height:1262.431829px;}
.hd_c00481{height:1262.879062px;}
.h0_c00481{height:1263.000000px;}
.w2_c00481{width:40.482000px;}
.w1_c00481{width:892.099575px;}
.w3_c00481{width:892.414744px;}
.w0_c00481{width:892.500000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:107.230682px;}
.x2_c00481{left:205.105793px;}
.x3_c00481{left:402.835835px;}
.x4_c00481{left:532.558592px;}
.x5_c00481{left:796.372200px;}
.x6_c00481{left:851.774003px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:-19.990935pt;}
.ws2_c00481{word-spacing:-12.625939pt;}
.ws3_c00481{word-spacing:-11.573439pt;}
.ws4_c00481{word-spacing:0.000000pt;}
.ws1_c00481{word-spacing:68.477101pt;}
._19_c00481{margin-left:-9.916919pt;}
._18_c00481{margin-left:-5.651303pt;}
._c_c00481{margin-left:-4.499355pt;}
._3_c00481{margin-left:-3.524769pt;}
._5_c00481{margin-left:-2.043390pt;}
._2_c00481{margin-left:-1.041682pt;}
._1_c00481{width:1.368027pt;}
._4_c00481{width:2.502222pt;}
._0_c00481{width:4.162753pt;}
._1a_c00481{width:7.501963pt;}
._e_c00481{width:29.086429pt;}
._d_c00481{width:71.513940pt;}
._a_c00481{width:115.487334pt;}
._8_c00481{width:124.044066pt;}
._13_c00481{width:125.641015pt;}
._10_c00481{width:149.263121pt;}
._16_c00481{width:152.818060pt;}
._9_c00481{width:156.615521pt;}
._6_c00481{width:188.186570pt;}
._b_c00481{width:191.127215pt;}
._15_c00481{width:250.729171pt;}
._12_c00481{width:258.504630pt;}
._14_c00481{width:269.972217pt;}
._7_c00481{width:419.207947pt;}
._17_c00481{width:907.592048pt;}
._11_c00481{width:934.492049pt;}
._f_c00481{width:1137.611656pt;}
.fs3_c00481{font-size:41.631077pt;}
.fs1_c00481{font-size:45.417048pt;}
.fs2_c00481{font-size:56.772244pt;}
.fs0_c00481{font-size:71.909838pt;}
.y0_c00481{bottom:0.000000pt;}
.y37_c00481{bottom:0.107500pt;}
.y1_c00481{bottom:0.494374pt;}
.y36_c00481{bottom:2.559361pt;}
.y39_c00481{bottom:61.106222pt;}
.y35_c00481{bottom:62.332480pt;}
.y38_c00481{bottom:64.784341pt;}
.y34_c00481{bottom:111.738647pt;}
.y33_c00481{bottom:131.568453pt;}
.y32_c00481{bottom:144.681568pt;}
.y31_c00481{bottom:166.432492pt;}
.y30_c00481{bottom:186.582484pt;}
.y2f_c00481{bottom:206.414343pt;}
.y2e_c00481{bottom:226.245535pt;}
.y2d_c00481{bottom:245.914740pt;}
.y2c_c00481{bottom:259.189735pt;}
.y2b_c00481{bottom:272.462850pt;}
.y2a_c00481{bottom:294.211641pt;}
.y29_c00481{bottom:314.204166pt;}
.y28_c00481{bottom:334.197225pt;}
.y27_c00481{bottom:354.026017pt;}
.y26_c00481{bottom:373.858543pt;}
.y25_c00481{bottom:393.687201pt;}
.y24_c00481{bottom:407.922262pt;}
.y23_c00481{bottom:427.753454pt;}
.y22_c00481{bottom:447.586446pt;}
.y21_c00481{bottom:460.701441pt;}
.y20_c00481{bottom:482.450232pt;}
.y1f_c00481{bottom:502.601691pt;}
.y1e_c00481{bottom:522.432883pt;}
.y1d_c00481{bottom:542.264742pt;}
.y1c_c00481{bottom:562.095934pt;}
.y1b_c00481{bottom:582.085926pt;}
.y1a_c00481{bottom:596.158987pt;}
.y19_c00481{bottom:616.152046pt;}
.y18_c00481{bottom:635.820251pt;}
.y17_c00481{bottom:649.093366pt;}
.y16_c00481{bottom:670.843490pt;}
.y15_c00481{bottom:690.834549pt;}
.y14_c00481{bottom:710.667608pt;}
.y13_c00481{bottom:730.656400pt;}
.y12_c00481{bottom:750.487592pt;}
.y11_c00481{bottom:770.318784pt;}
.y10_c00481{bottom:790.150643pt;}
.yf_c00481{bottom:809.983555pt;}
.ye_c00481{bottom:823.097296pt;}
.yd_c00481{bottom:844.846754pt;}
.yc_c00481{bottom:864.993679pt;}
.yb_c00481{bottom:884.826871pt;}
.ya_c00481{bottom:899.059932pt;}
.y9_c00481{bottom:918.732925pt;}
.y8_c00481{bottom:932.007919pt;}
.y7_c00481{bottom:953.757244pt;}
.y6_c00481{bottom:972.949236pt;}
.y5_c00481{bottom:996.777227pt;}
.y4_c00481{bottom:1037.877077pt;}
.y3_c00481{bottom:1064.425200pt;}
.y2_c00481{bottom:1086.654524pt;}
.hc_c00481{height:12.794400pt;}
.h6_c00481{height:37.343076pt;}
.h7_c00481{height:40.739093pt;}
.h9_c00481{height:40.739626pt;}
.ha_c00481{height:40.743359pt;}
.hb_c00481{height:40.751359pt;}
.h8_c00481{height:40.758826pt;}
.h4_c00481{height:42.010770pt;}
.h3_c00481{height:42.101604pt;}
.h5_c00481{height:52.514326pt;}
.h2_c00481{height:66.660420pt;}
.h1_c00481{height:1122.161626pt;}
.hd_c00481{height:1122.559167pt;}
.h0_c00481{height:1122.666667pt;}
.w2_c00481{width:35.984000pt;}
.w1_c00481{width:792.977400pt;}
.w3_c00481{width:793.257550pt;}
.w0_c00481{width:793.333333pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:95.316162pt;}
.x2_c00481{left:182.316260pt;}
.x3_c00481{left:358.076298pt;}
.x4_c00481{left:473.385415pt;}
.x5_c00481{left:707.886400pt;}
.x6_c00481{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.107000;font-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_c00482{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:-22.489802px;}
.ws2_c00482{word-spacing:-14.204182px;}
.ws3_c00482{word-spacing:0.000000px;}
.ws1_c00482{word-spacing:77.036738px;}
._17_c00482{margin-left:-15.917526px;}
._19_c00482{margin-left:-11.586354px;}
._12_c00482{margin-left:-7.191064px;}
._18_c00482{margin-left:-6.172078px;}
._14_c00482{margin-left:-5.139341px;}
._3_c00482{margin-left:-3.965365px;}
._5_c00482{margin-left:-2.298813px;}
._2_c00482{margin-left:-1.171893px;}
._1_c00482{width:1.539031px;}
._4_c00482{width:2.815000px;}
._0_c00482{width:4.683097px;}
._13_c00482{width:32.722177px;}
._a_c00482{width:129.923251px;}
._8_c00482{width:139.549574px;}
._16_c00482{width:141.346142px;}
._d_c00482{width:167.921011px;}
._10_c00482{width:171.920317px;}
._9_c00482{width:176.192461px;}
._6_c00482{width:211.709891px;}
._b_c00482{width:215.018117px;}
._f_c00482{width:282.070318px;}
._15_c00482{width:290.817709px;}
._e_c00482{width:303.719255px;}
._7_c00482{width:471.608940px;}
._11_c00482{width:1021.041054px;}
._1a_c00482{width:1051.303556px;}
._c_c00482{width:1279.813113px;}
.fc0_c00482{color:rgb(35,31,32);}
.fs2_c00482{font-size:46.834961px;}
.fs1_c00482{font-size:51.094180px;}
.fs0_c00482{font-size:80.898568px;}
.y0_c00482{bottom:0.000000px;}
.y32_c00482{bottom:0.120938px;}
.y1_c00482{bottom:0.556171px;}
.y31_c00482{bottom:2.879281px;}
.y34_c00482{bottom:68.744500px;}
.y30_c00482{bottom:70.124040px;}
.y33_c00482{bottom:72.882383px;}
.y2f_c00482{bottom:260.823074px;}
.y2e_c00482{bottom:287.634214px;}
.y2d_c00482{bottom:309.941605px;}
.y2c_c00482{bottom:332.253196px;}
.y2b_c00482{bottom:354.378142px;}
.y2a_c00482{bottom:369.311806px;}
.y29_c00482{bottom:384.246175px;}
.y28_c00482{bottom:408.716415px;}
.y27_c00482{bottom:431.203656px;}
.y26_c00482{bottom:453.517347px;}
.y25_c00482{bottom:476.004738px;}
.y24_c00482{bottom:498.316329px;}
.y23_c00482{bottom:520.623720px;}
.y22_c00482{bottom:536.635914px;}
.y21_c00482{bottom:558.948105px;}
.y20_c00482{bottom:581.259096px;}
.y1f_c00482{bottom:605.727986px;}
.y1e_c00482{bottom:628.216727px;}
.y1d_c00482{bottom:650.526818px;}
.y1c_c00482{bottom:672.837659px;}
.y1b_c00482{bottom:695.327750px;}
.y19_c00482{bottom:717.636492px;}
.y1a_c00482{bottom:733.649435px;}
.y18_c00482{bottom:733.650935px;}
.y17_c00482{bottom:755.961026px;}
.y16_c00482{bottom:778.088552px;}
.y15_c00482{bottom:793.021511px;}
.y14_c00482{bottom:817.490402px;}
.y13_c00482{bottom:839.980943px;}
.y12_c00482{bottom:862.291034px;}
.y11_c00482{bottom:884.779775px;}
.y10_c00482{bottom:907.088516px;}
.yf_c00482{bottom:929.399357px;}
.ye_c00482{bottom:951.710948px;}
.yd_c00482{bottom:974.023679px;}
.yc_c00482{bottom:988.955933px;}
.yb_c00482{bottom:1013.426323px;}
.ya_c00482{bottom:1035.914614px;}
.y9_c00482{bottom:1058.222005px;}
.y8_c00482{bottom:1080.535696px;}
.y7_c00482{bottom:1103.023087px;}
.y6_c00482{bottom:1125.333178px;}
.y5_c00482{bottom:1141.346872px;}
.y4_c00482{bottom:1167.611712px;}
.y3_c00482{bottom:1197.478350px;}
.y2_c00482{bottom:1222.486340px;}
.ha_c00482{height:14.393700px;}
.h7_c00482{height:42.010960px;}
.h5_c00482{height:45.831479px;}
.h8_c00482{height:45.836879px;}
.h9_c00482{height:45.837479px;}
.h6_c00482{height:45.838679px;}
.h4_c00482{height:47.262116px;}
.h3_c00482{height:47.364304px;}
.h2_c00482{height:74.992972px;}
.h1_c00482{height:1262.431829px;}
.hb_c00482{height:1262.879062px;}
.h0_c00482{height:1263.000000px;}
.w2_c00482{width:40.482000px;}
.w1_c00482{width:892.099575px;}
.w3_c00482{width:892.414744px;}
.w0_c00482{width:892.500000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:107.230682px;}
.x2_c00482{left:205.105793px;}
.x3_c00482{left:402.835835px;}
.x4_c00482{left:532.558592px;}
.x5_c00482{left:575.194172px;}
.x6_c00482{left:796.372200px;}
.x7_c00482{left:851.774003px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:-19.990935pt;}
.ws2_c00482{word-spacing:-12.625939pt;}
.ws3_c00482{word-spacing:0.000000pt;}
.ws1_c00482{word-spacing:68.477101pt;}
._17_c00482{margin-left:-14.148912pt;}
._19_c00482{margin-left:-10.298981pt;}
._12_c00482{margin-left:-6.392057pt;}
._18_c00482{margin-left:-5.486291pt;}
._14_c00482{margin-left:-4.568303pt;}
._3_c00482{margin-left:-3.524769pt;}
._5_c00482{margin-left:-2.043390pt;}
._2_c00482{margin-left:-1.041682pt;}
._1_c00482{width:1.368027pt;}
._4_c00482{width:2.502222pt;}
._0_c00482{width:4.162753pt;}
._13_c00482{width:29.086379pt;}
._a_c00482{width:115.487334pt;}
._8_c00482{width:124.044066pt;}
._16_c00482{width:125.641015pt;}
._d_c00482{width:149.263121pt;}
._10_c00482{width:152.818060pt;}
._9_c00482{width:156.615521pt;}
._6_c00482{width:188.186570pt;}
._b_c00482{width:191.127215pt;}
._f_c00482{width:250.729171pt;}
._15_c00482{width:258.504630pt;}
._e_c00482{width:269.972671pt;}
._7_c00482{width:419.207947pt;}
._11_c00482{width:907.592048pt;}
._1a_c00482{width:934.492049pt;}
._c_c00482{width:1137.611656pt;}
.fs2_c00482{font-size:41.631077pt;}
.fs1_c00482{font-size:45.417048pt;}
.fs0_c00482{font-size:71.909838pt;}
.y0_c00482{bottom:0.000000pt;}
.y32_c00482{bottom:0.107500pt;}
.y1_c00482{bottom:0.494374pt;}
.y31_c00482{bottom:2.559361pt;}
.y34_c00482{bottom:61.106222pt;}
.y30_c00482{bottom:62.332480pt;}
.y33_c00482{bottom:64.784341pt;}
.y2f_c00482{bottom:231.842733pt;}
.y2e_c00482{bottom:255.674856pt;}
.y2d_c00482{bottom:275.503649pt;}
.y2c_c00482{bottom:295.336174pt;}
.y2b_c00482{bottom:315.002793pt;}
.y2a_c00482{bottom:328.277161pt;}
.y29_c00482{bottom:341.552155pt;}
.y28_c00482{bottom:363.303480pt;}
.y27_c00482{bottom:383.292139pt;}
.y26_c00482{bottom:403.126531pt;}
.y25_c00482{bottom:423.115323pt;}
.y24_c00482{bottom:442.947848pt;}
.y23_c00482{bottom:462.776640pt;}
.y22_c00482{bottom:477.009701pt;}
.y21_c00482{bottom:496.842760pt;}
.y20_c00482{bottom:516.674752pt;}
.y1f_c00482{bottom:538.424877pt;}
.y1e_c00482{bottom:558.414869pt;}
.y1d_c00482{bottom:578.246061pt;}
.y1c_c00482{bottom:598.077920pt;}
.y1b_c00482{bottom:618.069112pt;}
.y19_c00482{bottom:637.899104pt;}
.y1a_c00482{bottom:652.132831pt;}
.y18_c00482{bottom:652.134165pt;}
.y17_c00482{bottom:671.965357pt;}
.y16_c00482{bottom:691.634269pt;}
.y15_c00482{bottom:704.908010pt;}
.y14_c00482{bottom:726.658135pt;}
.y13_c00482{bottom:746.649727pt;}
.y12_c00482{bottom:766.480919pt;}
.y11_c00482{bottom:786.470911pt;}
.y10_c00482{bottom:806.300903pt;}
.yf_c00482{bottom:826.132762pt;}
.ye_c00482{bottom:845.965287pt;}
.yd_c00482{bottom:865.798826pt;}
.yc_c00482{bottom:879.071940pt;}
.yb_c00482{bottom:900.823398pt;}
.ya_c00482{bottom:920.812990pt;}
.y9_c00482{bottom:940.641782pt;}
.y8_c00482{bottom:960.476175pt;}
.y7_c00482{bottom:980.464967pt;}
.y6_c00482{bottom:1000.296159pt;}
.y5_c00482{bottom:1014.530553pt;}
.y4_c00482{bottom:1037.877077pt;}
.y3_c00482{bottom:1064.425200pt;}
.y2_c00482{bottom:1086.654524pt;}
.ha_c00482{height:12.794400pt;}
.h7_c00482{height:37.343076pt;}
.h5_c00482{height:40.739093pt;}
.h8_c00482{height:40.743893pt;}
.h9_c00482{height:40.744426pt;}
.h6_c00482{height:40.745493pt;}
.h4_c00482{height:42.010770pt;}
.h3_c00482{height:42.101604pt;}
.h2_c00482{height:66.660420pt;}
.h1_c00482{height:1122.161626pt;}
.hb_c00482{height:1122.559167pt;}
.h0_c00482{height:1122.666667pt;}
.w2_c00482{width:35.984000pt;}
.w1_c00482{width:792.977400pt;}
.w3_c00482{width:793.257550pt;}
.w0_c00482{width:793.333333pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:95.316162pt;}
.x2_c00482{left:182.316260pt;}
.x3_c00482{left:358.076298pt;}
.x4_c00482{left:473.385415pt;}
.x5_c00482{left:511.283709pt;}
.x6_c00482{left:707.886400pt;}
.x7_c00482{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.137000;font-style:normal;font-weight:normal;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_15f79470968d99875de04212.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.107000;font-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_c00483{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:-22.489802px;}
.ws2_c00483{word-spacing:-14.204182px;}
.ws3_c00483{word-spacing:0.000000px;}
.ws1_c00483{word-spacing:77.036738px;}
._14_c00483{margin-left:-6.111294px;}
._c_c00483{margin-left:-5.061774px;}
._3_c00483{margin-left:-3.965365px;}
._5_c00483{margin-left:-2.298813px;}
._2_c00483{margin-left:-1.171893px;}
._1_c00483{width:1.539031px;}
._4_c00483{width:2.815000px;}
._0_c00483{width:4.683097px;}
._18_c00483{width:6.911486px;}
._13_c00483{width:8.235707px;}
._e_c00483{width:32.722156px;}
._23_c00483{width:70.943822px;}
._d_c00483{width:84.590668px;}
._a_c00483{width:129.923251px;}
._8_c00483{width:139.549574px;}
._11_c00483{width:167.921011px;}
._1a_c00483{width:171.969213px;}
._9_c00483{width:176.192461px;}
._6_c00483{width:211.709891px;}
._b_c00483{width:215.018117px;}
._20_c00483{width:315.597215px;}
._22_c00483{width:364.049792px;}
._15_c00483{width:374.988931px;}
._f_c00483{width:404.542315px;}
._1c_c00483{width:443.555366px;}
._24_c00483{width:449.031030px;}
._7_c00483{width:471.608940px;}
._1f_c00483{width:491.131825px;}
._21_c00483{width:504.296082px;}
._19_c00483{width:606.819523px;}
._1d_c00483{width:610.180916px;}
._1b_c00483{width:887.913138px;}
._1e_c00483{width:991.499642px;}
._17_c00483{width:1021.047054px;}
._12_c00483{width:1051.303556px;}
._16_c00483{width:1249.140730px;}
._10_c00483{width:1279.816727px;}
.fc0_c00483{color:rgb(35,31,32);}
.fs3_c00483{font-size:46.834961px;}
.fs1_c00483{font-size:51.094180px;}
.fs2_c00483{font-size:63.868774px;}
.fs0_c00483{font-size:80.898568px;}
.y0_c00483{bottom:0.000000px;}
.y35_c00483{bottom:0.120938px;}
.y1_c00483{bottom:0.556171px;}
.y34_c00483{bottom:2.879281px;}
.y37_c00483{bottom:68.744500px;}
.y33_c00483{bottom:70.124040px;}
.y36_c00483{bottom:72.882383px;}
.y32_c00483{bottom:134.338475px;}
.y31_c00483{bottom:156.647216px;}
.y30_c00483{bottom:178.958807px;}
.y2f_c00483{bottom:194.971751px;}
.y2e_c00483{bottom:217.104242px;}
.y2d_c00483{bottom:241.571632px;}
.y2c_c00483{bottom:264.061273px;}
.y2b_c00483{bottom:286.550014px;}
.y2a_c00483{bottom:308.861005px;}
.y29_c00483{bottom:324.873199px;}
.y28_c00483{bottom:347.007190px;}
.y27_c00483{bottom:371.472930px;}
.y26_c00483{bottom:393.963621px;}
.y25_c00483{bottom:416.272362px;}
.y24_c00483{bottom:438.763953px;}
.y23_c00483{bottom:454.596147px;}
.y22_c00483{bottom:476.905878px;}
.y21_c00483{bottom:491.838132px;}
.y20_c00483{bottom:516.309122px;}
.y1f_c00483{bottom:537.895613px;}
.y1e_c00483{bottom:597.089490px;}
.y1d_c00483{bottom:623.900029px;}
.y1c_c00483{bottom:646.212220px;}
.y1b_c00483{bottom:668.698861px;}
.y1a_c00483{bottom:691.011052px;}
.y19_c00483{bottom:713.137498px;}
.y18_c00483{bottom:728.073277px;}
.y17_c00483{bottom:743.005531px;}
.y16_c00483{bottom:767.472922px;}
.y15_c00483{bottom:789.963313px;}
.y14_c00483{bottom:812.273404px;}
.y13_c00483{bottom:834.762895px;}
.y12_c00483{bottom:857.074486px;}
.y11_c00483{bottom:879.205102px;}
.y10_c00483{bottom:894.139471px;}
.yf_c00483{bottom:918.608361px;}
.ye_c00483{bottom:941.096352px;}
.yd_c00483{bottom:963.406443px;}
.yc_c00483{bottom:985.717674px;}
.yb_c00483{bottom:1000.649928px;}
.ya_c00483{bottom:1025.118819px;}
.y9_c00483{bottom:1047.608310px;}
.y8_c00483{bottom:1069.918401px;}
.y7_c00483{bottom:1092.047892px;}
.y6_c00483{bottom:1116.515882px;}
.y5_c00483{bottom:1138.286873px;}
.y4_c00483{bottom:1167.611712px;}
.y3_c00483{bottom:1197.478350px;}
.y2_c00483{bottom:1222.486340px;}
.hb_c00483{height:14.393700px;}
.h6_c00483{height:42.010960px;}
.h7_c00483{height:45.831479px;}
.ha_c00483{height:45.833279px;}
.h8_c00483{height:45.833879px;}
.h9_c00483{height:45.839879px;}
.h4_c00483{height:47.262116px;}
.h3_c00483{height:47.364304px;}
.h5_c00483{height:59.078616px;}
.h2_c00483{height:74.992972px;}
.h1_c00483{height:1262.431829px;}
.hc_c00483{height:1262.879062px;}
.h0_c00483{height:1263.000000px;}
.w2_c00483{width:40.482000px;}
.w1_c00483{width:892.099575px;}
.w3_c00483{width:892.414744px;}
.w0_c00483{width:892.500000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:107.230682px;}
.x2_c00483{left:205.105793px;}
.x5_c00483{left:402.835835px;}
.x3_c00483{left:532.558592px;}
.x4_c00483{left:575.194172px;}
.x6_c00483{left:796.372200px;}
.x7_c00483{left:851.774003px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:-19.990935pt;}
.ws2_c00483{word-spacing:-12.625939pt;}
.ws3_c00483{word-spacing:0.000000pt;}
.ws1_c00483{word-spacing:68.477101pt;}
._14_c00483{margin-left:-5.432262pt;}
._c_c00483{margin-left:-4.499355pt;}
._3_c00483{margin-left:-3.524769pt;}
._5_c00483{margin-left:-2.043390pt;}
._2_c00483{margin-left:-1.041682pt;}
._1_c00483{width:1.368027pt;}
._4_c00483{width:2.502222pt;}
._0_c00483{width:4.162753pt;}
._18_c00483{width:6.143543pt;}
._13_c00483{width:7.320629pt;}
._e_c00483{width:29.086361pt;}
._23_c00483{width:63.061175pt;}
._d_c00483{width:75.191705pt;}
._a_c00483{width:115.487334pt;}
._8_c00483{width:124.044066pt;}
._11_c00483{width:149.263121pt;}
._1a_c00483{width:152.861523pt;}
._9_c00483{width:156.615521pt;}
._6_c00483{width:188.186570pt;}
._b_c00483{width:191.127215pt;}
._20_c00483{width:280.530858pt;}
._22_c00483{width:323.599815pt;}
._15_c00483{width:333.323494pt;}
._f_c00483{width:359.593169pt;}
._1c_c00483{width:394.271436pt;}
._24_c00483{width:399.138694pt;}
._7_c00483{width:419.207947pt;}
._1f_c00483{width:436.561622pt;}
._21_c00483{width:448.263184pt;}
._19_c00483{width:539.395131pt;}
._1d_c00483{width:542.383036pt;}
._1b_c00483{width:789.256122pt;}
._1e_c00483{width:881.333015pt;}
._17_c00483{width:907.597382pt;}
._12_c00483{width:934.492049pt;}
._16_c00483{width:1110.347315pt;}
._10_c00483{width:1137.614869pt;}
.fs3_c00483{font-size:41.631077pt;}
.fs1_c00483{font-size:45.417048pt;}
.fs2_c00483{font-size:56.772244pt;}
.fs0_c00483{font-size:71.909838pt;}
.y0_c00483{bottom:0.000000pt;}
.y35_c00483{bottom:0.107500pt;}
.y1_c00483{bottom:0.494374pt;}
.y34_c00483{bottom:2.559361pt;}
.y37_c00483{bottom:61.106222pt;}
.y33_c00483{bottom:62.332480pt;}
.y36_c00483{bottom:64.784341pt;}
.y32_c00483{bottom:119.411978pt;}
.y31_c00483{bottom:139.241970pt;}
.y30_c00483{bottom:159.074495pt;}
.y2f_c00483{bottom:173.308223pt;}
.y2e_c00483{bottom:192.981548pt;}
.y2d_c00483{bottom:214.730340pt;}
.y2c_c00483{bottom:234.721132pt;}
.y2b_c00483{bottom:254.711124pt;}
.y2a_c00483{bottom:274.543116pt;}
.y29_c00483{bottom:288.776177pt;}
.y28_c00483{bottom:308.450835pt;}
.y27_c00483{bottom:330.198160pt;}
.y26_c00483{bottom:350.189885pt;}
.y25_c00483{bottom:370.019877pt;}
.y24_c00483{bottom:390.012403pt;}
.y23_c00483{bottom:404.085464pt;}
.y22_c00483{bottom:423.916336pt;}
.y21_c00483{bottom:437.189451pt;}
.y20_c00483{bottom:458.941442pt;}
.y1f_c00483{bottom:478.129434pt;}
.y1e_c00483{bottom:530.746213pt;}
.y1d_c00483{bottom:554.577804pt;}
.y1c_c00483{bottom:574.410862pt;}
.y1b_c00483{bottom:594.398988pt;}
.y1a_c00483{bottom:614.232046pt;}
.y19_c00483{bottom:633.899999pt;}
.y18_c00483{bottom:647.176247pt;}
.y17_c00483{bottom:660.449361pt;}
.y16_c00483{bottom:682.198153pt;}
.y15_c00483{bottom:702.189611pt;}
.y14_c00483{bottom:722.020803pt;}
.y13_c00483{bottom:742.011462pt;}
.y12_c00483{bottom:761.843987pt;}
.y11_c00483{bottom:781.515646pt;}
.y10_c00483{bottom:794.790641pt;}
.yf_c00483{bottom:816.540765pt;}
.ye_c00483{bottom:836.530091pt;}
.yd_c00483{bottom:856.361283pt;}
.yc_c00483{bottom:876.193488pt;}
.yb_c00483{bottom:889.466603pt;}
.ya_c00483{bottom:911.216728pt;}
.y9_c00483{bottom:931.207386pt;}
.y8_c00483{bottom:951.038578pt;}
.y7_c00483{bottom:970.709237pt;}
.y6_c00483{bottom:992.458562pt;}
.y5_c00483{bottom:1011.810554pt;}
.y4_c00483{bottom:1037.877077pt;}
.y3_c00483{bottom:1064.425200pt;}
.y2_c00483{bottom:1086.654524pt;}
.hb_c00483{height:12.794400pt;}
.h6_c00483{height:37.343076pt;}
.h7_c00483{height:40.739093pt;}
.ha_c00483{height:40.740693pt;}
.h8_c00483{height:40.741226pt;}
.h9_c00483{height:40.746559pt;}
.h4_c00483{height:42.010770pt;}
.h3_c00483{height:42.101604pt;}
.h5_c00483{height:52.514326pt;}
.h2_c00483{height:66.660420pt;}
.h1_c00483{height:1122.161626pt;}
.hc_c00483{height:1122.559167pt;}
.h0_c00483{height:1122.666667pt;}
.w2_c00483{width:35.984000pt;}
.w1_c00483{width:792.977400pt;}
.w3_c00483{width:793.257550pt;}
.w0_c00483{width:793.333333pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:95.316162pt;}
.x2_c00483{left:182.316260pt;}
.x5_c00483{left:358.076298pt;}
.x3_c00483{left:473.385415pt;}
.x4_c00483{left:511.283709pt;}
.x6_c00483{left:707.886400pt;}
.x7_c00483{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.137000;font-style:normal;font-weight:normal;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_02fcc591fb1f6fce508ee51d.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.136000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00484{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00484{word-spacing:-22.489802px;}
.ws2_c00484{word-spacing:-14.204182px;}
.ws3_c00484{word-spacing:0.000000px;}
.ws1_c00484{word-spacing:77.036738px;}
._c_c00484{margin-left:-7.191156px;}
._e_c00484{margin-left:-5.139341px;}
._3_c00484{margin-left:-3.965365px;}
._5_c00484{margin-left:-2.298813px;}
._2_c00484{margin-left:-1.171893px;}
._1_c00484{width:1.539031px;}
._4_c00484{width:2.815000px;}
._0_c00484{width:4.683097px;}
._f_c00484{width:8.586552px;}
._11_c00484{width:11.568865px;}
._12_c00484{width:15.739183px;}
._10_c00484{width:17.062749px;}
._d_c00484{width:27.816019px;}
._a_c00484{width:129.923251px;}
._8_c00484{width:139.549574px;}
._14_c00484{width:167.921011px;}
._9_c00484{width:176.192461px;}
._6_c00484{width:211.709891px;}
._b_c00484{width:215.018117px;}
._15_c00484{width:341.187913px;}
._7_c00484{width:471.608940px;}
._16_c00484{width:1051.303556px;}
._13_c00484{width:1279.813113px;}
.fc0_c00484{color:rgb(35,31,32);}
.fs2_c00484{font-size:46.834961px;}
.fs1_c00484{font-size:51.094180px;}
.fs0_c00484{font-size:80.898568px;}
.y0_c00484{bottom:0.000000px;}
.y15_c00484{bottom:0.120938px;}
.y1_c00484{bottom:0.556171px;}
.y14_c00484{bottom:2.879281px;}
.y17_c00484{bottom:68.744500px;}
.y13_c00484{bottom:70.124040px;}
.y16_c00484{bottom:72.882383px;}
.y12_c00484{bottom:856.894486px;}
.y11_c00484{bottom:917.528212px;}
.y10_c00484{bottom:944.335901px;}
.yf_c00484{bottom:966.644642px;}
.ye_c00484{bottom:988.954733px;}
.yd_c00484{bottom:1004.968427px;}
.yc_c00484{bottom:1027.274513px;}
.yb_c00484{bottom:1042.028882px;}
.ya_c00484{bottom:1056.963251px;}
.y9_c00484{bottom:1071.895505px;}
.y8_c00484{bottom:1086.827759px;}
.y7_c00484{bottom:1101.762128px;}
.y6_c00484{bottom:1116.694382px;}
.y5_c00484{bottom:1141.166872px;}
.y4_c00484{bottom:1167.611712px;}
.y3_c00484{bottom:1197.478350px;}
.y2_c00484{bottom:1222.486340px;}
.h8_c00484{height:14.393700px;}
.h5_c00484{height:42.010960px;}
.h6_c00484{height:45.831479px;}
.h7_c00484{height:45.835679px;}
.h4_c00484{height:47.262116px;}
.h3_c00484{height:47.364304px;}
.h2_c00484{height:74.992972px;}
.h1_c00484{height:1262.431829px;}
.h9_c00484{height:1262.879062px;}
.h0_c00484{height:1263.000000px;}
.w2_c00484{width:40.482000px;}
.w1_c00484{width:892.099575px;}
.w3_c00484{width:892.414744px;}
.w0_c00484{width:892.500000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:107.230682px;}
.x2_c00484{left:205.105793px;}
.x3_c00484{left:402.835835px;}
.x4_c00484{left:532.558592px;}
.x5_c00484{left:575.194172px;}
.x6_c00484{left:796.372200px;}
.x7_c00484{left:851.774003px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:-19.990935pt;}
.ws2_c00484{word-spacing:-12.625939pt;}
.ws3_c00484{word-spacing:0.000000pt;}
.ws1_c00484{word-spacing:68.477101pt;}
._c_c00484{margin-left:-6.392138pt;}
._e_c00484{margin-left:-4.568303pt;}
._3_c00484{margin-left:-3.524769pt;}
._5_c00484{margin-left:-2.043390pt;}
._2_c00484{margin-left:-1.041682pt;}
._1_c00484{width:1.368027pt;}
._4_c00484{width:2.502222pt;}
._0_c00484{width:4.162753pt;}
._f_c00484{width:7.632491pt;}
._11_c00484{width:10.283436pt;}
._12_c00484{width:13.990385pt;}
._10_c00484{width:15.166888pt;}
._d_c00484{width:24.725350pt;}
._a_c00484{width:115.487334pt;}
._8_c00484{width:124.044066pt;}
._14_c00484{width:149.263121pt;}
._9_c00484{width:156.615521pt;}
._6_c00484{width:188.186570pt;}
._b_c00484{width:191.127215pt;}
._15_c00484{width:303.278145pt;}
._7_c00484{width:419.207947pt;}
._16_c00484{width:934.492049pt;}
._13_c00484{width:1137.611656pt;}
.fs2_c00484{font-size:41.631077pt;}
.fs1_c00484{font-size:45.417048pt;}
.fs0_c00484{font-size:71.909838pt;}
.y0_c00484{bottom:0.000000pt;}
.y15_c00484{bottom:0.107500pt;}
.y1_c00484{bottom:0.494374pt;}
.y14_c00484{bottom:2.559361pt;}
.y17_c00484{bottom:61.106222pt;}
.y13_c00484{bottom:62.332480pt;}
.y16_c00484{bottom:64.784341pt;}
.y12_c00484{bottom:761.683987pt;}
.y11_c00484{bottom:815.580633pt;}
.y10_c00484{bottom:839.409690pt;}
.yf_c00484{bottom:859.239682pt;}
.ye_c00484{bottom:879.070874pt;}
.yd_c00484{bottom:893.305268pt;}
.yc_c00484{bottom:913.132900pt;}
.yb_c00484{bottom:926.247895pt;}
.ya_c00484{bottom:939.522890pt;}
.y9_c00484{bottom:952.796004pt;}
.y8_c00484{bottom:966.069119pt;}
.y7_c00484{bottom:979.344114pt;}
.y6_c00484{bottom:992.617228pt;}
.y5_c00484{bottom:1014.370553pt;}
.y4_c00484{bottom:1037.877077pt;}
.y3_c00484{bottom:1064.425200pt;}
.y2_c00484{bottom:1086.654524pt;}
.h8_c00484{height:12.794400pt;}
.h5_c00484{height:37.343076pt;}
.h6_c00484{height:40.739093pt;}
.h7_c00484{height:40.742826pt;}
.h4_c00484{height:42.010770pt;}
.h3_c00484{height:42.101604pt;}
.h2_c00484{height:66.660420pt;}
.h1_c00484{height:1122.161626pt;}
.h9_c00484{height:1122.559167pt;}
.h0_c00484{height:1122.666667pt;}
.w2_c00484{width:35.984000pt;}
.w1_c00484{width:792.977400pt;}
.w3_c00484{width:793.257550pt;}
.w0_c00484{width:793.333333pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:95.316162pt;}
.x2_c00484{left:182.316260pt;}
.x3_c00484{left:358.076298pt;}
.x4_c00484{left:473.385415pt;}
.x5_c00484{left:511.283709pt;}
.x6_c00484{left:707.886400pt;}
.x7_c00484{left:757.132447pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.113000;font-style: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.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls0_c00485{letter-spacing:0.000000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:0.000000px;}
._0_c00485{width:1.246830px;}
.fc0_c00485{color:rgb(35,31,32);}
.fs0_c00485{font-size:107.951957px;}
.y0_c00485{bottom:0.000000px;}
.y1_c00485{bottom:0.120938px;}
.y2_c00485{bottom:509.184359px;}
.h2_c00485{height:96.832905px;}
.h1_c00485{height:1262.879062px;}
.h0_c00485{height:1263.000000px;}
.w1_c00485{width:892.414744px;}
.w0_c00485{width:892.500000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:107.988651px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
._0_c00485{width:1.108293pt;}
.fs0_c00485{font-size:95.957295pt;}
.y0_c00485{bottom:0.000000pt;}
.y1_c00485{bottom:0.107500pt;}
.y2_c00485{bottom:452.608319pt;}
.h2_c00485{height:86.073694pt;}
.h1_c00485{height:1122.559167pt;}
.h0_c00485{height:1122.666667pt;}
.w1_c00485{width:793.257550pt;}
.w0_c00485{width:793.333333pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:95.989912pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.113000;font-style: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.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls0_c00486{letter-spacing:0.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:0.000000px;}
._0_c00486{width:1.374871px;}
.fc0_c00486{color:rgb(35,31,32);}
.fs0_c00486{font-size:107.951957px;}
.y0_c00486{bottom:0.000000px;}
.y1_c00486{bottom:0.120938px;}
.y2_c00486{bottom:535.095348px;}
.h2_c00486{height:96.832905px;}
.h1_c00486{height:1262.879062px;}
.h0_c00486{height:1263.000000px;}
.w1_c00486{width:892.414744px;}
.w0_c00486{width:892.500000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:107.988651px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
._0_c00486{width:1.222108pt;}
.fs0_c00486{font-size:95.957295pt;}
.y0_c00486{bottom:0.000000pt;}
.y1_c00486{bottom:0.107500pt;}
.y2_c00486{bottom:475.640310pt;}
.h2_c00486{height:86.073694pt;}
.h1_c00486{height:1122.559167pt;}
.h0_c00486{height:1122.666667pt;}
.w1_c00486{width:793.257550pt;}
.w0_c00486{width:793.333333pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:95.989912pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.107000;font-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_c00487{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00487{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls0_c00487{letter-spacing:0.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:-14.204182px;}
.ws2_c00487{word-spacing:0.000000px;}
.ws1_c00487{word-spacing:20.816688px;}
._7_c00487{margin-left:-5.210115px;}
._8_c00487{margin-left:-4.042318px;}
._1_c00487{margin-left:-2.913141px;}
._2_c00487{margin-left:-1.100382px;}
._0_c00487{width:1.411089px;}
._3_c00487{width:2.561223px;}
._a_c00487{width:3.878973px;}
._4_c00487{width:4.977321px;}
._10_c00487{width:6.047828px;}
._e_c00487{width:7.605091px;}
._f_c00487{width:10.213154px;}
._b_c00487{width:11.472571px;}
._1e_c00487{width:12.487951px;}
._16_c00487{width:15.816329px;}
._1c_c00487{width:41.469360px;}
._c_c00487{width:75.969659px;}
._17_c00487{width:84.091935px;}
._14_c00487{width:91.589853px;}
._1a_c00487{width:95.350394px;}
._11_c00487{width:155.141750px;}
._6_c00487{width:164.578698px;}
._18_c00487{width:458.286458px;}
._15_c00487{width:539.030070px;}
._d_c00487{width:642.684197px;}
._9_c00487{width:693.668517px;}
._1b_c00487{width:709.597677px;}
._12_c00487{width:732.460259px;}
._19_c00487{width:752.187914px;}
._13_c00487{width:787.747551px;}
._1d_c00487{width:856.025781px;}
._5_c00487{width:1671.460100px;}
.fc0_c00487{color:rgb(35,31,32);}
.fs1_c00487{font-size:51.094180px;}
.fs2_c00487{font-size:68.126973px;}
.fs0_c00487{font-size:80.898568px;}
.y0_c00487{bottom:0.000000px;}
.y1_c00487{bottom:0.120938px;}
.y6_c00487{bottom:0.556171px;}
.y5_c00487{bottom:2.873233px;}
.y40_c00487{bottom:2.879315px;}
.y3f_c00487{bottom:58.431060px;}
.y41_c00487{bottom:61.189438px;}
.y3e_c00487{bottom:63.992103px;}
.y3d_c00487{bottom:94.940091px;}
.y3c_c00487{bottom:121.566730px;}
.y3b_c00487{bottom:137.399674px;}
.y3a_c00487{bottom:153.411867px;}
.y39_c00487{bottom:169.425561px;}
.y38_c00487{bottom:186.157754px;}
.y37_c00487{bottom:210.985144px;}
.y36_c00487{bottom:237.435234px;}
.y35_c00487{bottom:253.447427px;}
.y34_c00487{bottom:269.461871px;}
.y33_c00487{bottom:285.472714px;}
.y32_c00487{bottom:302.206408px;}
.y31_c00487{bottom:326.853798px;}
.y30_c00487{bottom:342.867491px;}
.y2f_c00487{bottom:369.494881px;}
.y2e_c00487{bottom:385.509924px;}
.y2d_c00487{bottom:401.519418px;}
.y2c_c00487{bottom:417.352362px;}
.y2b_c00487{bottom:433.366055px;}
.y2a_c00487{bottom:450.278248px;}
.y29_c00487{bottom:474.928339px;}
.y28_c00487{bottom:501.555728px;}
.y27_c00487{bottom:517.389422px;}
.y26_c00487{bottom:533.401615px;}
.y25_c00487{bottom:549.412459px;}
.y24_c00487{bottom:566.328252px;}
.y23_c00487{bottom:590.975642px;}
.y22_c00487{bottom:617.603632px;}
.y21_c00487{bottom:633.436575px;}
.y20_c00487{bottom:649.450269px;}
.y1f_c00487{bottom:665.461112px;}
.y1e_c00487{bottom:682.371956px;}
.y1d_c00487{bottom:707.024896px;}
.y1c_c00487{bottom:733.650785px;}
.y1b_c00487{bottom:749.484479px;}
.y1a_c00487{bottom:766.396672px;}
.y19_c00487{bottom:791.045412px;}
.y18_c00487{bottom:817.674152px;}
.y17_c00487{bottom:833.686345px;}
.y16_c00487{bottom:850.418538px;}
.y15_c00487{bottom:875.067279px;}
.y14_c00487{bottom:901.694668px;}
.y13_c00487{bottom:917.706861px;}
.y12_c00487{bottom:933.720555px;}
.y11_c00487{bottom:949.731399px;}
.y10_c00487{bottom:965.565842px;}
.yf_c00487{bottom:981.578036px;}
.ye_c00487{bottom:998.490229px;}
.yd_c00487{bottom:1023.140319px;}
.yc_c00487{bottom:1049.769059px;}
.yb_c00487{bottom:1065.601252px;}
.ya_c00487{bottom:1081.615696px;}
.y9_c00487{bottom:1098.527889px;}
.y8_c00487{bottom:1126.232878px;}
.y4_c00487{bottom:1163.494800px;}
.y7_c00487{bottom:1165.811862px;}
.y3_c00487{bottom:1195.755084px;}
.y2_c00487{bottom:1222.921573px;}
.h8_c00487{height:14.392260px;}
.h4_c00487{height:14.394600px;}
.h5_c00487{height:45.831479px;}
.h3_c00487{height:47.364304px;}
.h7_c00487{height:63.153704px;}
.h2_c00487{height:74.992972px;}
.h6_c00487{height:1262.431829px;}
.h1_c00487{height:1262.879062px;}
.h0_c00487{height:1263.000000px;}
.w4_c00487{width:40.482000px;}
.w2_c00487{width:41.380920px;}
.w3_c00487{width:892.099575px;}
.w1_c00487{width:892.414744px;}
.w0_c00487{width:892.500000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:107.268651px;}
.x2_c00487{left:209.245791px;}
.x3_c00487{left:498.550780px;}
.x4_c00487{left:798.532200px;}
.x5_c00487{left:858.071001px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:-12.625939pt;}
.ws2_c00487{word-spacing:0.000000pt;}
.ws1_c00487{word-spacing:18.503723pt;}
._7_c00487{margin-left:-4.631213pt;}
._8_c00487{margin-left:-3.593172pt;}
._1_c00487{margin-left:-2.589459pt;}
._2_c00487{margin-left:-0.978118pt;}
._0_c00487{width:1.254302pt;}
._3_c00487{width:2.276643pt;}
._a_c00487{width:3.447976pt;}
._4_c00487{width:4.424285pt;}
._10_c00487{width:5.375847pt;}
._e_c00487{width:6.760081pt;}
._f_c00487{width:9.078359pt;}
._b_c00487{width:10.197841pt;}
._1e_c00487{width:11.100401pt;}
._16_c00487{width:14.058959pt;}
._1c_c00487{width:36.861653pt;}
._c_c00487{width:67.528586pt;}
._17_c00487{width:74.748386pt;}
._14_c00487{width:81.413203pt;}
._1a_c00487{width:84.755906pt;}
._11_c00487{width:137.903777pt;}
._6_c00487{width:146.292176pt;}
._18_c00487{width:407.365741pt;}
._15_c00487{width:479.137840pt;}
._d_c00487{width:571.274842pt;}
._9_c00487{width:616.594237pt;}
._1b_c00487{width:630.753491pt;}
._12_c00487{width:651.075785pt;}
._19_c00487{width:668.611479pt;}
._13_c00487{width:700.220045pt;}
._1d_c00487{width:760.911805pt;}
._5_c00487{width:1485.742311pt;}
.fs1_c00487{font-size:45.417048pt;}
.fs2_c00487{font-size:60.557309pt;}
.fs0_c00487{font-size:71.909838pt;}
.y0_c00487{bottom:0.000000pt;}
.y1_c00487{bottom:0.107500pt;}
.y6_c00487{bottom:0.494374pt;}
.y5_c00487{bottom:2.553985pt;}
.y40_c00487{bottom:2.559392pt;}
.y3f_c00487{bottom:51.938720pt;}
.y41_c00487{bottom:54.390612pt;}
.y3e_c00487{bottom:56.881869pt;}
.y3d_c00487{bottom:84.391192pt;}
.y3c_c00487{bottom:108.059316pt;}
.y3b_c00487{bottom:122.133043pt;}
.y3a_c00487{bottom:136.366104pt;}
.y39_c00487{bottom:150.600498pt;}
.y38_c00487{bottom:165.473559pt;}
.y37_c00487{bottom:187.542350pt;}
.y36_c00487{bottom:211.053541pt;}
.y35_c00487{bottom:225.286602pt;}
.y34_c00487{bottom:239.521663pt;}
.y33_c00487{bottom:253.753524pt;}
.y32_c00487{bottom:268.627918pt;}
.y31_c00487{bottom:290.536709pt;}
.y30_c00487{bottom:304.771103pt;}
.y2f_c00487{bottom:328.439894pt;}
.y2e_c00487{bottom:342.675488pt;}
.y2d_c00487{bottom:356.906149pt;}
.y2c_c00487{bottom:370.979877pt;}
.y2b_c00487{bottom:385.214271pt;}
.y2a_c00487{bottom:400.247332pt;}
.y29_c00487{bottom:422.158523pt;}
.y28_c00487{bottom:445.827314pt;}
.y27_c00487{bottom:459.901708pt;}
.y26_c00487{bottom:474.134769pt;}
.y25_c00487{bottom:488.366630pt;}
.y24_c00487{bottom:503.402891pt;}
.y23_c00487{bottom:525.311682pt;}
.y22_c00487{bottom:548.981006pt;}
.y21_c00487{bottom:563.054734pt;}
.y20_c00487{bottom:577.289128pt;}
.y1f_c00487{bottom:591.520989pt;}
.y1e_c00487{bottom:606.552849pt;}
.y1d_c00487{bottom:628.466574pt;}
.y1c_c00487{bottom:652.134031pt;}
.y1b_c00487{bottom:666.208426pt;}
.y1a_c00487{bottom:681.241486pt;}
.y19_c00487{bottom:703.151477pt;}
.y18_c00487{bottom:726.821468pt;}
.y17_c00487{bottom:741.054529pt;}
.y16_c00487{bottom:755.927590pt;}
.y15_c00487{bottom:777.837581pt;}
.y14_c00487{bottom:801.506371pt;}
.y13_c00487{bottom:815.739432pt;}
.y12_c00487{bottom:829.973827pt;}
.y11_c00487{bottom:844.205688pt;}
.y10_c00487{bottom:858.280749pt;}
.yf_c00487{bottom:872.513810pt;}
.ye_c00487{bottom:887.546870pt;}
.yd_c00487{bottom:909.458062pt;}
.yc_c00487{bottom:933.128052pt;}
.yb_c00487{bottom:947.201113pt;}
.ya_c00487{bottom:961.436174pt;}
.y9_c00487{bottom:976.469235pt;}
.y8_c00487{bottom:1001.095892pt;}
.y4_c00487{bottom:1034.217600pt;}
.y7_c00487{bottom:1036.277211pt;}
.y3_c00487{bottom:1062.893408pt;}
.y2_c00487{bottom:1087.041398pt;}
.h8_c00487{height:12.793120pt;}
.h4_c00487{height:12.795200pt;}
.h5_c00487{height:40.739093pt;}
.h3_c00487{height:42.101604pt;}
.h7_c00487{height:56.136626pt;}
.h2_c00487{height:66.660420pt;}
.h6_c00487{height:1122.161626pt;}
.h1_c00487{height:1122.559167pt;}
.h0_c00487{height:1122.666667pt;}
.w4_c00487{width:35.984000pt;}
.w2_c00487{width:36.783040pt;}
.w3_c00487{width:792.977400pt;}
.w1_c00487{width:793.257550pt;}
.w0_c00487{width:793.333333pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:95.349912pt;}
.x2_c00487{left:185.996259pt;}
.x3_c00487{left:443.156249pt;}
.x4_c00487{left:709.806400pt;}
.x5_c00487{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.107000;font-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_c00488{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:-14.204182px;}
.ws2_c00488{word-spacing:0.000000px;}
.ws1_c00488{word-spacing:20.816688px;}
._6_c00488{margin-left:-5.708447px;}
._7_c00488{margin-left:-4.527394px;}
._1_c00488{margin-left:-2.913141px;}
._2_c00488{margin-left:-1.100382px;}
._0_c00488{width:1.411089px;}
._3_c00488{width:2.561223px;}
._a_c00488{width:3.783307px;}
._4_c00488{width:4.977321px;}
._e_c00488{width:7.020630px;}
._b_c00488{width:8.214876px;}
._15_c00488{width:15.534238px;}
._16_c00488{width:16.596020px;}
._14_c00488{width:20.015385px;}
._19_c00488{width:28.664863px;}
._1a_c00488{width:33.109193px;}
._17_c00488{width:75.195260px;}
._8_c00488{width:80.066214px;}
._f_c00488{width:86.873369px;}
._c_c00488{width:91.299725px;}
._11_c00488{width:96.781307px;}
._12_c00488{width:668.385515px;}
._13_c00488{width:705.681501px;}
._10_c00488{width:723.013392px;}
._d_c00488{width:740.627354px;}
._9_c00488{width:744.960866px;}
._18_c00488{width:753.150270px;}
._5_c00488{width:1671.460100px;}
.fc0_c00488{color:rgb(35,31,32);}
.fs1_c00488{font-size:51.094180px;}
.fs2_c00488{font-size:68.126973px;}
.fs3_c00488{font-size:72.382771px;}
.fs0_c00488{font-size:80.898568px;}
.y0_c00488{bottom:0.000000px;}
.y1_c00488{bottom:0.120938px;}
.y6_c00488{bottom:0.556171px;}
.y5_c00488{bottom:2.873233px;}
.y30_c00488{bottom:2.879315px;}
.y2f_c00488{bottom:58.431060px;}
.y31_c00488{bottom:61.189438px;}
.y2e_c00488{bottom:63.992253px;}
.y2d_c00488{bottom:388.743623px;}
.y2c_c00488{bottom:404.575217px;}
.y2b_c00488{bottom:431.204706px;}
.y2a_c00488{bottom:447.219150px;}
.y29_c00488{bottom:463.229993px;}
.y28_c00488{bottom:479.063687px;}
.y27_c00488{bottom:495.975880px;}
.y26_c00488{bottom:520.624620px;}
.y25_c00488{bottom:547.252010px;}
.y24_c00488{bottom:563.264203px;}
.y23_c00488{bottom:579.277897px;}
.y22_c00488{bottom:595.109491px;}
.y21_c00488{bottom:612.023184px;}
.y20_c00488{bottom:636.673274px;}
.y1f_c00488{bottom:663.302013px;}
.y1e_c00488{bottom:679.314207px;}
.y1d_c00488{bottom:695.326400px;}
.y1c_c00488{bottom:711.158594px;}
.y1b_c00488{bottom:728.073037px;}
.y1a_c00488{bottom:747.324030px;}
.y19_c00488{bottom:776.109318px;}
.y18_c00488{bottom:802.738057px;}
.y17_c00488{bottom:818.753851px;}
.y16_c00488{bottom:834.766045px;}
.y15_c00488{bottom:851.495538px;}
.y14_c00488{bottom:876.147128px;}
.y13_c00488{bottom:902.773767px;}
.y12_c00488{bottom:918.786711px;}
.y11_c00488{bottom:934.798905px;}
.y10_c00488{bottom:951.531098px;}
.yf_c00488{bottom:976.181188px;}
.ye_c00488{bottom:1002.809927px;}
.yd_c00488{bottom:1018.823621px;}
.yc_c00488{bottom:1034.834465px;}
.yb_c00488{bottom:1051.748908px;}
.ya_c00488{bottom:1070.998400px;}
.y9_c00488{bottom:1093.307891px;}
.y8_c00488{bottom:1126.232878px;}
.y4_c00488{bottom:1163.494800px;}
.y7_c00488{bottom:1165.811862px;}
.y3_c00488{bottom:1195.755084px;}
.y2_c00488{bottom:1222.921573px;}
.h9_c00488{height:14.392260px;}
.h4_c00488{height:14.394600px;}
.h5_c00488{height:45.831479px;}
.h3_c00488{height:47.364304px;}
.h7_c00488{height:63.153704px;}
.h8_c00488{height:67.098829px;}
.h2_c00488{height:74.992972px;}
.h6_c00488{height:1262.431829px;}
.h1_c00488{height:1262.879062px;}
.h0_c00488{height:1263.000000px;}
.w4_c00488{width:40.482000px;}
.w2_c00488{width:41.380920px;}
.w3_c00488{width:892.099575px;}
.w1_c00488{width:892.414744px;}
.w0_c00488{width:892.500000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:107.268651px;}
.x2_c00488{left:209.245791px;}
.x3_c00488{left:498.557131px;}
.x4_c00488{left:798.532200px;}
.x5_c00488{left:858.071001px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:-12.625939pt;}
.ws2_c00488{word-spacing:0.000000pt;}
.ws1_c00488{word-spacing:18.503723pt;}
._6_c00488{margin-left:-5.074175pt;}
._7_c00488{margin-left:-4.024350pt;}
._1_c00488{margin-left:-2.589459pt;}
._2_c00488{margin-left:-0.978118pt;}
._0_c00488{width:1.254302pt;}
._3_c00488{width:2.276643pt;}
._a_c00488{width:3.362940pt;}
._4_c00488{width:4.424285pt;}
._e_c00488{width:6.240560pt;}
._b_c00488{width:7.302112pt;}
._15_c00488{width:13.808212pt;}
._16_c00488{width:14.752018pt;}
._14_c00488{width:17.791453pt;}
._19_c00488{width:25.479878pt;}
._1a_c00488{width:29.430394pt;}
._17_c00488{width:66.840231pt;}
._8_c00488{width:71.169968pt;}
._f_c00488{width:77.220773pt;}
._c_c00488{width:81.155311pt;}
._11_c00488{width:86.027828pt;}
._12_c00488{width:594.120458pt;}
._13_c00488{width:627.272445pt;}
._10_c00488{width:642.678571pt;}
._d_c00488{width:658.335426pt;}
._9_c00488{width:662.187436pt;}
._18_c00488{width:669.466907pt;}
._5_c00488{width:1485.742311pt;}
.fs1_c00488{font-size:45.417048pt;}
.fs2_c00488{font-size:60.557309pt;}
.fs3_c00488{font-size:64.340241pt;}
.fs0_c00488{font-size:71.909838pt;}
.y0_c00488{bottom:0.000000pt;}
.y1_c00488{bottom:0.107500pt;}
.y6_c00488{bottom:0.494374pt;}
.y5_c00488{bottom:2.553985pt;}
.y30_c00488{bottom:2.559392pt;}
.y2f_c00488{bottom:51.938720pt;}
.y31_c00488{bottom:54.390612pt;}
.y2e_c00488{bottom:56.882003pt;}
.y2d_c00488{bottom:345.549887pt;}
.y2c_c00488{bottom:359.622415pt;}
.y2b_c00488{bottom:383.293072pt;}
.y2a_c00488{bottom:397.528133pt;}
.y29_c00488{bottom:411.759994pt;}
.y28_c00488{bottom:425.834388pt;}
.y27_c00488{bottom:440.867449pt;}
.y26_c00488{bottom:462.777440pt;}
.y25_c00488{bottom:486.446231pt;}
.y24_c00488{bottom:500.679292pt;}
.y23_c00488{bottom:514.913686pt;}
.y22_c00488{bottom:528.986214pt;}
.y21_c00488{bottom:544.020608pt;}
.y20_c00488{bottom:565.931799pt;}
.y1f_c00488{bottom:589.601790pt;}
.y1e_c00488{bottom:603.834851pt;}
.y1d_c00488{bottom:618.067912pt;}
.y1c_c00488{bottom:632.140973pt;}
.y1b_c00488{bottom:647.176033pt;}
.y1a_c00488{bottom:664.288026pt;}
.y19_c00488{bottom:689.874949pt;}
.y18_c00488{bottom:713.544940pt;}
.y17_c00488{bottom:727.781201pt;}
.y16_c00488{bottom:742.014262pt;}
.y15_c00488{bottom:756.884923pt;}
.y14_c00488{bottom:778.797447pt;}
.y13_c00488{bottom:802.465571pt;}
.y12_c00488{bottom:816.699299pt;}
.y11_c00488{bottom:830.932360pt;}
.y10_c00488{bottom:845.805420pt;}
.yf_c00488{bottom:867.716612pt;}
.ye_c00488{bottom:891.386602pt;}
.yd_c00488{bottom:905.620996pt;}
.yc_c00488{bottom:919.852857pt;}
.yb_c00488{bottom:934.887918pt;}
.ya_c00488{bottom:951.998578pt;}
.y9_c00488{bottom:971.829237pt;}
.y8_c00488{bottom:1001.095892pt;}
.y4_c00488{bottom:1034.217600pt;}
.y7_c00488{bottom:1036.277211pt;}
.y3_c00488{bottom:1062.893408pt;}
.y2_c00488{bottom:1087.041398pt;}
.h9_c00488{height:12.793120pt;}
.h4_c00488{height:12.795200pt;}
.h5_c00488{height:40.739093pt;}
.h3_c00488{height:42.101604pt;}
.h7_c00488{height:56.136626pt;}
.h8_c00488{height:59.643403pt;}
.h2_c00488{height:66.660420pt;}
.h6_c00488{height:1122.161626pt;}
.h1_c00488{height:1122.559167pt;}
.h0_c00488{height:1122.666667pt;}
.w4_c00488{width:35.984000pt;}
.w2_c00488{width:36.783040pt;}
.w3_c00488{width:792.977400pt;}
.w1_c00488{width:793.257550pt;}
.w0_c00488{width:793.333333pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:95.349912pt;}
.x2_c00488{left:185.996259pt;}
.x3_c00488{left:443.161894pt;}
.x4_c00488{left:709.806400pt;}
.x5_c00488{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.107000;font-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_c00489{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls0_c00489{letter-spacing:0.000000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:-14.204182px;}
.ws2_c00489{word-spacing:0.000000px;}
.ws1_c00489{word-spacing:20.816688px;}
._a_c00489{margin-left:-5.559245px;}
._6_c00489{margin-left:-4.527394px;}
._1_c00489{margin-left:-2.913141px;}
._2_c00489{margin-left:-1.100382px;}
._0_c00489{width:1.411089px;}
._3_c00489{width:2.561223px;}
._9_c00489{width:3.889713px;}
._4_c00489{width:4.977321px;}
._10_c00489{width:6.955307px;}
._17_c00489{width:8.312865px;}
._15_c00489{width:28.664863px;}
._16_c00489{width:32.884504px;}
._11_c00489{width:49.182107px;}
._d_c00489{width:66.609576px;}
._13_c00489{width:75.195260px;}
._7_c00489{width:86.873459px;}
._b_c00489{width:95.902448px;}
._19_c00489{width:100.339464px;}
._1a_c00489{width:545.203851px;}
._e_c00489{width:675.577346px;}
._f_c00489{width:684.018730px;}
._12_c00489{width:689.276112px;}
._8_c00489{width:709.454564px;}
._c_c00489{width:748.491562px;}
._14_c00489{width:753.162086px;}
._18_c00489{width:765.074111px;}
._5_c00489{width:1671.460100px;}
.fc0_c00489{color:rgb(35,31,32);}
.fs1_c00489{font-size:51.094180px;}
.fs2_c00489{font-size:68.126973px;}
.fs0_c00489{font-size:80.898568px;}
.y0_c00489{bottom:0.000000px;}
.y1_c00489{bottom:0.120938px;}
.y6_c00489{bottom:0.556171px;}
.y5_c00489{bottom:2.873233px;}
.y3a_c00489{bottom:2.879315px;}
.y39_c00489{bottom:58.431060px;}
.y3b_c00489{bottom:61.189438px;}
.y38_c00489{bottom:63.992553px;}
.y37_c00489{bottom:220.520490px;}
.y36_c00489{bottom:247.148480px;}
.y35_c00489{bottom:262.980673px;}
.y34_c00489{bottom:278.996467px;}
.y33_c00489{bottom:295.005961px;}
.y32_c00489{bottom:311.018154px;}
.y31_c00489{bottom:327.752597px;}
.y30_c00489{bottom:352.404188px;}
.y2f_c00489{bottom:379.029477px;}
.y2e_c00489{bottom:395.043171px;}
.y2d_c00489{bottom:411.056114px;}
.y2c_c00489{bottom:427.068308px;}
.y2b_c00489{bottom:442.900501px;}
.y2a_c00489{bottom:458.914945px;}
.y29_c00489{bottom:475.827138px;}
.y28_c00489{bottom:495.076631px;}
.y27_c00489{bottom:523.859969px;}
.y26_c00489{bottom:539.875763px;}
.y25_c00489{bottom:566.501052px;}
.y24_c00489{bottom:582.335496px;}
.y23_c00489{bottom:598.347689px;}
.y22_c00489{bottom:614.361383px;}
.y21_c00489{bottom:631.274326px;}
.y20_c00489{bottom:655.920966px;}
.y1f_c00489{bottom:671.755410px;}
.y1e_c00489{bottom:698.383399px;}
.y1d_c00489{bottom:714.396343px;}
.y1c_c00489{bottom:731.307186px;}
.y1b_c00489{bottom:755.957276px;}
.y1a_c00489{bottom:782.583916px;}
.y19_c00489{bottom:798.418359px;}
.y18_c00489{bottom:814.430553px;}
.y17_c00489{bottom:831.342746px;}
.y16_c00489{bottom:855.992836px;}
.y15_c00489{bottom:882.620226px;}
.y14_c00489{bottom:898.633919px;}
.y13_c00489{bottom:915.364762px;}
.y12_c00489{bottom:940.014853px;}
.y11_c00489{bottom:956.027046px;}
.y10_c00489{bottom:982.657136px;}
.yf_c00489{bottom:998.666629px;}
.ye_c00489{bottom:1015.398822px;}
.yd_c00489{bottom:1040.048913px;}
.yc_c00489{bottom:1066.676302px;}
.yb_c00489{bottom:1082.688496px;}
.ya_c00489{bottom:1098.702189px;}
.y9_c00489{bottom:1115.614382px;}
.y8_c00489{bottom:1134.866875px;}
.y4_c00489{bottom:1163.494800px;}
.y7_c00489{bottom:1165.811862px;}
.y3_c00489{bottom:1195.755084px;}
.y2_c00489{bottom:1222.921573px;}
.h8_c00489{height:14.392260px;}
.h4_c00489{height:14.394600px;}
.h5_c00489{height:45.831479px;}
.h3_c00489{height:47.364304px;}
.h7_c00489{height:63.153704px;}
.h2_c00489{height:74.992972px;}
.h6_c00489{height:1262.431829px;}
.h1_c00489{height:1262.879062px;}
.h0_c00489{height:1263.000000px;}
.w4_c00489{width:40.482000px;}
.w2_c00489{width:41.380920px;}
.w3_c00489{width:892.099575px;}
.w1_c00489{width:892.414744px;}
.w0_c00489{width:892.500000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:107.268651px;}
.x2_c00489{left:209.245791px;}
.x3_c00489{left:498.554135px;}
.x4_c00489{left:798.532200px;}
.x5_c00489{left:858.071001px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:-12.625939pt;}
.ws2_c00489{word-spacing:0.000000pt;}
.ws1_c00489{word-spacing:18.503723pt;}
._a_c00489{margin-left:-4.941551pt;}
._6_c00489{margin-left:-4.024350pt;}
._1_c00489{margin-left:-2.589459pt;}
._2_c00489{margin-left:-0.978118pt;}
._0_c00489{width:1.254302pt;}
._3_c00489{width:2.276643pt;}
._9_c00489{width:3.457523pt;}
._4_c00489{width:4.424285pt;}
._10_c00489{width:6.182495pt;}
._17_c00489{width:7.389214pt;}
._15_c00489{width:25.479878pt;}
._16_c00489{width:29.230670pt;}
._11_c00489{width:43.717428pt;}
._d_c00489{width:59.208512pt;}
._13_c00489{width:66.840231pt;}
._7_c00489{width:77.220852pt;}
._b_c00489{width:85.246620pt;}
._19_c00489{width:89.190635pt;}
._1a_c00489{width:484.625645pt;}
._e_c00489{width:600.513196pt;}
._f_c00489{width:608.016649pt;}
._12_c00489{width:612.689877pt;}
._8_c00489{width:630.626279pt;}
._c_c00489{width:665.325833pt;}
._14_c00489{width:669.477410pt;}
._18_c00489{width:680.065877pt;}
._5_c00489{width:1485.742311pt;}
.fs1_c00489{font-size:45.417048pt;}
.fs2_c00489{font-size:60.557309pt;}
.fs0_c00489{font-size:71.909838pt;}
.y0_c00489{bottom:0.000000pt;}
.y1_c00489{bottom:0.107500pt;}
.y6_c00489{bottom:0.494374pt;}
.y5_c00489{bottom:2.553985pt;}
.y3a_c00489{bottom:2.559392pt;}
.y39_c00489{bottom:51.938720pt;}
.y3b_c00489{bottom:54.390612pt;}
.y38_c00489{bottom:56.882269pt;}
.y37_c00489{bottom:196.018214pt;}
.y36_c00489{bottom:219.687538pt;}
.y35_c00489{bottom:233.760599pt;}
.y34_c00489{bottom:247.996860pt;}
.y33_c00489{bottom:262.227521pt;}
.y32_c00489{bottom:276.460581pt;}
.y31_c00489{bottom:291.335642pt;}
.y30_c00489{bottom:313.248167pt;}
.y2f_c00489{bottom:336.915091pt;}
.y2e_c00489{bottom:351.149485pt;}
.y2d_c00489{bottom:365.383213pt;}
.y2c_c00489{bottom:379.616274pt;}
.y2b_c00489{bottom:393.689335pt;}
.y2a_c00489{bottom:407.924396pt;}
.y29_c00489{bottom:422.957456pt;}
.y28_c00489{bottom:440.068116pt;}
.y27_c00489{bottom:465.653306pt;}
.y26_c00489{bottom:479.889567pt;}
.y25_c00489{bottom:503.556491pt;}
.y24_c00489{bottom:517.631552pt;}
.y23_c00489{bottom:531.864613pt;}
.y22_c00489{bottom:546.099007pt;}
.y21_c00489{bottom:561.132734pt;}
.y20_c00489{bottom:583.040859pt;}
.y1f_c00489{bottom:597.115920pt;}
.y1e_c00489{bottom:620.785244pt;}
.y1d_c00489{bottom:635.018971pt;}
.y1c_c00489{bottom:650.050832pt;}
.y1b_c00489{bottom:671.962023pt;}
.y1a_c00489{bottom:695.630147pt;}
.y19_c00489{bottom:709.705208pt;}
.y18_c00489{bottom:723.938269pt;}
.y17_c00489{bottom:738.971330pt;}
.y16_c00489{bottom:760.882521pt;}
.y15_c00489{bottom:784.551312pt;}
.y14_c00489{bottom:798.785706pt;}
.y13_c00489{bottom:813.657567pt;}
.y12_c00489{bottom:835.568758pt;}
.y11_c00489{bottom:849.801819pt;}
.y10_c00489{bottom:873.473009pt;}
.yf_c00489{bottom:887.703670pt;}
.ye_c00489{bottom:902.576731pt;}
.yd_c00489{bottom:924.487922pt;}
.yc_c00489{bottom:948.156713pt;}
.yb_c00489{bottom:962.389774pt;}
.ya_c00489{bottom:976.624168pt;}
.y9_c00489{bottom:991.657229pt;}
.y8_c00489{bottom:1008.770555pt;}
.y4_c00489{bottom:1034.217600pt;}
.y7_c00489{bottom:1036.277211pt;}
.y3_c00489{bottom:1062.893408pt;}
.y2_c00489{bottom:1087.041398pt;}
.h8_c00489{height:12.793120pt;}
.h4_c00489{height:12.795200pt;}
.h5_c00489{height:40.739093pt;}
.h3_c00489{height:42.101604pt;}
.h7_c00489{height:56.136626pt;}
.h2_c00489{height:66.660420pt;}
.h6_c00489{height:1122.161626pt;}
.h1_c00489{height:1122.559167pt;}
.h0_c00489{height:1122.666667pt;}
.w4_c00489{width:35.984000pt;}
.w2_c00489{width:36.783040pt;}
.w3_c00489{width:792.977400pt;}
.w1_c00489{width:793.257550pt;}
.w0_c00489{width:793.333333pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:95.349912pt;}
.x2_c00489{left:185.996259pt;}
.x3_c00489{left:443.159231pt;}
.x4_c00489{left:709.806400pt;}
.x5_c00489{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.107000;font-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_c00490{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:-14.204182px;}
.ws2_c00490{word-spacing:0.000000px;}
.ws1_c00490{word-spacing:20.816688px;}
._14_c00490{margin-left:-6.144016px;}
._6_c00490{margin-left:-4.527394px;}
._1_c00490{margin-left:-2.913141px;}
._2_c00490{margin-left:-1.100382px;}
._0_c00490{width:1.411089px;}
._3_c00490{width:2.561223px;}
._b_c00490{width:3.883869px;}
._4_c00490{width:4.977321px;}
._c_c00490{width:6.176543px;}
._9_c00490{width:7.261919px;}
._a_c00490{width:11.365668px;}
._d_c00490{width:12.616679px;}
._11_c00490{width:16.268888px;}
._10_c00490{width:18.901665px;}
._12_c00490{width:20.276444px;}
._16_c00490{width:69.935929px;}
._7_c00490{width:74.196117px;}
._13_c00490{width:80.065994px;}
._e_c00490{width:100.028885px;}
._18_c00490{width:406.523192px;}
._f_c00490{width:534.852624px;}
._15_c00490{width:574.732688px;}
._17_c00490{width:598.869238px;}
._8_c00490{width:685.005869px;}
._5_c00490{width:1671.460100px;}
.fc0_c00490{color:rgb(35,31,32);}
.fs1_c00490{font-size:51.094180px;}
.fs2_c00490{font-size:68.126973px;}
.fs0_c00490{font-size:80.898568px;}
.y0_c00490{bottom:0.000000px;}
.y1_c00490{bottom:0.120938px;}
.y6_c00490{bottom:0.556171px;}
.y5_c00490{bottom:2.873233px;}
.y45_c00490{bottom:2.879315px;}
.y44_c00490{bottom:58.431060px;}
.y46_c00490{bottom:61.189438px;}
.y43_c00490{bottom:63.986553px;}
.y42_c00490{bottom:92.776641px;}
.y41_c00490{bottom:119.404631px;}
.y40_c00490{bottom:135.237574px;}
.y3f_c00490{bottom:151.249768px;}
.y3e_c00490{bottom:167.263462px;}
.y3d_c00490{bottom:183.276405px;}
.y3c_c00490{bottom:199.108599px;}
.y3b_c00490{bottom:216.019442px;}
.y3a_c00490{bottom:240.668182px;}
.y39_c00490{bottom:267.298272px;}
.y38_c00490{bottom:283.309115px;}
.y37_c00490{bottom:299.322809px;}
.y36_c00490{bottom:315.157253px;}
.y35_c00490{bottom:331.168096px;}
.y34_c00490{bottom:347.178940px;}
.y33_c00490{bottom:363.913983px;}
.y32_c00490{bottom:388.742723px;}
.y31_c00490{bottom:404.577167px;}
.y30_c00490{bottom:431.203806px;}
.y2f_c00490{bottom:447.216000px;}
.y2e_c00490{bottom:463.228943px;}
.y2d_c00490{bottom:479.062637px;}
.y2c_c00490{bottom:495.074831px;}
.y2b_c00490{bottom:511.087774px;}
.y2a_c00490{bottom:527.099968px;}
.y29_c00490{bottom:542.932161px;}
.y28_c00490{bottom:559.846605px;}
.y27_c00490{bottom:584.494595px;}
.y26_c00490{bottom:611.123334px;}
.y25_c00490{bottom:627.135528px;}
.y24_c00490{bottom:643.148471px;}
.y23_c00490{bottom:658.982165px;}
.y22_c00490{bottom:674.993009px;}
.y21_c00490{bottom:691.005952px;}
.y20_c00490{bottom:707.019646px;}
.y1f_c00490{bottom:723.753339px;}
.y1e_c00490{bottom:748.402079px;}
.y1d_c00490{bottom:775.027369px;}
.y1c_c00490{bottom:791.041812px;}
.y1b_c00490{bottom:807.054006px;}
.y1a_c00490{bottom:823.066199px;}
.y19_c00490{bottom:838.899143px;}
.y18_c00490{bottom:854.911337px;}
.y17_c00490{bottom:870.925780px;}
.y16_c00490{bottom:886.757974px;}
.y15_c00490{bottom:902.771667px;}
.y14_c00490{bottom:919.683861px;}
.y13_c00490{bottom:944.332601px;}
.y12_c00490{bottom:970.959990px;}
.y11_c00490{bottom:986.972184px;}
.y10_c00490{bottom:1002.805877px;}
.yf_c00490{bottom:1018.818821px;}
.ye_c00490{bottom:1034.829665px;}
.yd_c00490{bottom:1050.843358px;}
.yc_c00490{bottom:1066.676302px;}
.yb_c00490{bottom:1082.688496px;}
.ya_c00490{bottom:1098.702189px;}
.y9_c00490{bottom:1115.614382px;}
.y8_c00490{bottom:1134.866875px;}
.y4_c00490{bottom:1163.494800px;}
.y7_c00490{bottom:1165.811862px;}
.y3_c00490{bottom:1195.755084px;}
.y2_c00490{bottom:1222.921573px;}
.h8_c00490{height:14.392260px;}
.h4_c00490{height:14.394600px;}
.h5_c00490{height:45.831479px;}
.h3_c00490{height:47.364304px;}
.h7_c00490{height:63.153704px;}
.h2_c00490{height:74.992972px;}
.h6_c00490{height:1262.431829px;}
.h1_c00490{height:1262.879062px;}
.h0_c00490{height:1263.000000px;}
.w4_c00490{width:40.482000px;}
.w2_c00490{width:41.380920px;}
.w3_c00490{width:892.099575px;}
.w1_c00490{width:892.414744px;}
.w0_c00490{width:892.500000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:107.268651px;}
.x2_c00490{left:209.245791px;}
.x3_c00490{left:498.551140px;}
.x4_c00490{left:798.532200px;}
.x5_c00490{left:858.071001px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:-12.625939pt;}
.ws2_c00490{word-spacing:0.000000pt;}
.ws1_c00490{word-spacing:18.503723pt;}
._14_c00490{margin-left:-5.461347pt;}
._6_c00490{margin-left:-4.024350pt;}
._1_c00490{margin-left:-2.589459pt;}
._2_c00490{margin-left:-0.978118pt;}
._0_c00490{width:1.254302pt;}
._3_c00490{width:2.276643pt;}
._b_c00490{width:3.452328pt;}
._4_c00490{width:4.424285pt;}
._c_c00490{width:5.490260pt;}
._9_c00490{width:6.455039pt;}
._a_c00490{width:10.102816pt;}
._d_c00490{width:11.214826pt;}
._11_c00490{width:14.461234pt;}
._10_c00490{width:16.801480pt;}
._12_c00490{width:18.023506pt;}
._16_c00490{width:62.165271pt;}
._7_c00490{width:65.952104pt;}
._13_c00490{width:71.169773pt;}
._e_c00490{width:88.914564pt;}
._18_c00490{width:361.353948pt;}
._f_c00490{width:475.424555pt;}
._15_c00490{width:510.873500pt;}
._17_c00490{width:532.328212pt;}
._8_c00490{width:608.894106pt;}
._5_c00490{width:1485.742311pt;}
.fs1_c00490{font-size:45.417048pt;}
.fs2_c00490{font-size:60.557309pt;}
.fs0_c00490{font-size:71.909838pt;}
.y0_c00490{bottom:0.000000pt;}
.y1_c00490{bottom:0.107500pt;}
.y6_c00490{bottom:0.494374pt;}
.y5_c00490{bottom:2.553985pt;}
.y45_c00490{bottom:2.559392pt;}
.y44_c00490{bottom:51.938720pt;}
.y46_c00490{bottom:54.390612pt;}
.y43_c00490{bottom:56.876936pt;}
.y42_c00490{bottom:82.468126pt;}
.y41_c00490{bottom:106.137450pt;}
.y40_c00490{bottom:120.211177pt;}
.y3f_c00490{bottom:134.444238pt;}
.y3e_c00490{bottom:148.678633pt;}
.y3d_c00490{bottom:162.912360pt;}
.y3c_c00490{bottom:176.985421pt;}
.y3b_c00490{bottom:192.017282pt;}
.y3a_c00490{bottom:213.927273pt;}
.y39_c00490{bottom:237.598464pt;}
.y38_c00490{bottom:251.830325pt;}
.y37_c00490{bottom:266.064719pt;}
.y36_c00490{bottom:280.139780pt;}
.y35_c00490{bottom:294.371641pt;}
.y34_c00490{bottom:308.603502pt;}
.y33_c00490{bottom:323.479096pt;}
.y32_c00490{bottom:345.549087pt;}
.y31_c00490{bottom:359.624148pt;}
.y30_c00490{bottom:383.292272pt;}
.y2f_c00490{bottom:397.525333pt;}
.y2e_c00490{bottom:411.759061pt;}
.y2d_c00490{bottom:425.833455pt;}
.y2c_c00490{bottom:440.066516pt;}
.y2b_c00490{bottom:454.300244pt;}
.y2a_c00490{bottom:468.533305pt;}
.y29_c00490{bottom:482.606366pt;}
.y28_c00490{bottom:497.641426pt;}
.y27_c00490{bottom:519.550751pt;}
.y26_c00490{bottom:543.220741pt;}
.y25_c00490{bottom:557.453802pt;}
.y24_c00490{bottom:571.687530pt;}
.y23_c00490{bottom:585.761924pt;}
.y22_c00490{bottom:599.993785pt;}
.y21_c00490{bottom:614.227513pt;}
.y20_c00490{bottom:628.461907pt;}
.y1f_c00490{bottom:643.336301pt;}
.y1e_c00490{bottom:665.246293pt;}
.y1d_c00490{bottom:688.913217pt;}
.y1c_c00490{bottom:703.148277pt;}
.y1b_c00490{bottom:717.381338pt;}
.y1a_c00490{bottom:731.614399pt;}
.y19_c00490{bottom:745.688127pt;}
.y18_c00490{bottom:759.921188pt;}
.y17_c00490{bottom:774.156249pt;}
.y16_c00490{bottom:788.229310pt;}
.y15_c00490{bottom:802.463704pt;}
.y14_c00490{bottom:817.496765pt;}
.y13_c00490{bottom:839.406756pt;}
.y12_c00490{bottom:863.075547pt;}
.y11_c00490{bottom:877.308608pt;}
.y10_c00490{bottom:891.383002pt;}
.yf_c00490{bottom:905.616730pt;}
.ye_c00490{bottom:919.848591pt;}
.yd_c00490{bottom:934.082985pt;}
.yc_c00490{bottom:948.156713pt;}
.yb_c00490{bottom:962.389774pt;}
.ya_c00490{bottom:976.624168pt;}
.y9_c00490{bottom:991.657229pt;}
.y8_c00490{bottom:1008.770555pt;}
.y4_c00490{bottom:1034.217600pt;}
.y7_c00490{bottom:1036.277211pt;}
.y3_c00490{bottom:1062.893408pt;}
.y2_c00490{bottom:1087.041398pt;}
.h8_c00490{height:12.793120pt;}
.h4_c00490{height:12.795200pt;}
.h5_c00490{height:40.739093pt;}
.h3_c00490{height:42.101604pt;}
.h7_c00490{height:56.136626pt;}
.h2_c00490{height:66.660420pt;}
.h6_c00490{height:1122.161626pt;}
.h1_c00490{height:1122.559167pt;}
.h0_c00490{height:1122.666667pt;}
.w4_c00490{width:35.984000pt;}
.w2_c00490{width:36.783040pt;}
.w3_c00490{width:792.977400pt;}
.w1_c00490{width:793.257550pt;}
.w0_c00490{width:793.333333pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:95.349912pt;}
.x2_c00490{left:185.996259pt;}
.x3_c00490{left:443.156569pt;}
.x4_c00490{left:709.806400pt;}
.x5_c00490{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.107000;font-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_c00491{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:-14.204182px;}
.ws2_c00491{word-spacing:0.000000px;}
.ws1_c00491{word-spacing:20.816688px;}
._6_c00491{margin-left:-4.527394px;}
._1_c00491{margin-left:-2.913141px;}
._2_c00491{margin-left:-1.100382px;}
._0_c00491{width:1.411089px;}
._3_c00491{width:2.561223px;}
._d_c00491{width:3.692425px;}
._4_c00491{width:4.977321px;}
._10_c00491{width:6.619747px;}
._11_c00491{width:7.778857px;}
._c_c00491{width:10.581791px;}
._a_c00491{width:11.929748px;}
._9_c00491{width:15.735888px;}
._b_c00491{width:16.911419px;}
._e_c00491{width:53.406750px;}
._12_c00491{width:61.360094px;}
._14_c00491{width:66.610045px;}
._7_c00491{width:96.781307px;}
._8_c00491{width:545.104015px;}
._13_c00491{width:621.044076px;}
._15_c00491{width:659.974246px;}
._f_c00491{width:739.273867px;}
._5_c00491{width:1671.460100px;}
.fc0_c00491{color:rgb(35,31,32);}
.fs1_c00491{font-size:51.094180px;}
.fs2_c00491{font-size:68.126973px;}
.fs0_c00491{font-size:80.898568px;}
.y0_c00491{bottom:0.000000px;}
.y1_c00491{bottom:0.120938px;}
.y6_c00491{bottom:0.556171px;}
.y5_c00491{bottom:2.873233px;}
.y2e_c00491{bottom:2.879315px;}
.y2d_c00491{bottom:58.431060px;}
.y2f_c00491{bottom:61.189438px;}
.y2c_c00491{bottom:63.990303px;}
.y2b_c00491{bottom:500.473628px;}
.y2a_c00491{bottom:516.485822px;}
.y29_c00491{bottom:542.932461px;}
.y28_c00491{bottom:558.945405px;}
.y27_c00491{bottom:574.957599px;}
.y26_c00491{bottom:591.871292px;}
.y25_c00491{bottom:616.520032px;}
.y24_c00491{bottom:632.352226px;}
.y23_c00491{bottom:658.980965px;}
.y22_c00491{bottom:674.993159px;}
.y21_c00491{bottom:691.006102px;}
.y20_c00491{bottom:707.019796px;}
.y1f_c00491{bottom:722.851989px;}
.y1e_c00491{bottom:738.864933px;}
.y1d_c00491{bottom:754.877127px;}
.y1c_c00491{bottom:770.889320px;}
.y1b_c00491{bottom:787.623764px;}
.y1a_c00491{bottom:812.271754px;}
.y19_c00491{bottom:828.286197px;}
.y18_c00491{bottom:854.914187px;}
.y17_c00491{bottom:870.927130px;}
.y16_c00491{bottom:886.759324px;}
.y15_c00491{bottom:902.773017px;}
.y14_c00491{bottom:918.785961px;}
.y13_c00491{bottom:934.796805px;}
.y12_c00491{bottom:950.630498px;}
.y11_c00491{bottom:967.544942px;}
.y10_c00491{bottom:986.797434px;}
.yf_c00491{bottom:1015.582572px;}
.ye_c00491{bottom:1031.595516px;}
.yd_c00491{bottom:1058.222155px;}
.yc_c00491{bottom:1074.236599px;}
.yb_c00491{bottom:1090.248792px;}
.ya_c00491{bottom:1106.080986px;}
.y9_c00491{bottom:1122.096030px;}
.y8_c00491{bottom:1139.006873px;}
.y4_c00491{bottom:1163.494800px;}
.y7_c00491{bottom:1165.811862px;}
.y3_c00491{bottom:1195.755084px;}
.y2_c00491{bottom:1222.921573px;}
.h8_c00491{height:14.392260px;}
.h4_c00491{height:14.394600px;}
.h5_c00491{height:45.831479px;}
.h3_c00491{height:47.364304px;}
.h7_c00491{height:63.153704px;}
.h2_c00491{height:74.992972px;}
.h6_c00491{height:1262.431829px;}
.h1_c00491{height:1262.879062px;}
.h0_c00491{height:1263.000000px;}
.w4_c00491{width:40.482000px;}
.w2_c00491{width:41.380920px;}
.w3_c00491{width:892.099575px;}
.w1_c00491{width:892.414744px;}
.w0_c00491{width:892.500000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:107.268651px;}
.x2_c00491{left:209.245791px;}
.x3_c00491{left:498.557131px;}
.x4_c00491{left:798.532200px;}
.x5_c00491{left:858.071001px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:-12.625939pt;}
.ws2_c00491{word-spacing:0.000000pt;}
.ws1_c00491{word-spacing:18.503723pt;}
._6_c00491{margin-left:-4.024350pt;}
._1_c00491{margin-left:-2.589459pt;}
._2_c00491{margin-left:-0.978118pt;}
._0_c00491{width:1.254302pt;}
._3_c00491{width:2.276643pt;}
._d_c00491{width:3.282156pt;}
._4_c00491{width:4.424285pt;}
._10_c00491{width:5.884220pt;}
._11_c00491{width:6.914540pt;}
._c_c00491{width:9.406037pt;}
._a_c00491{width:10.604220pt;}
._9_c00491{width:13.987456pt;}
._b_c00491{width:15.032373pt;}
._e_c00491{width:47.472667pt;}
._12_c00491{width:54.542305pt;}
._14_c00491{width:59.208929pt;}
._7_c00491{width:86.027828pt;}
._8_c00491{width:484.536902pt;}
._13_c00491{width:552.039178pt;}
._15_c00491{width:586.643774pt;}
._f_c00491{width:657.132326pt;}
._5_c00491{width:1485.742311pt;}
.fs1_c00491{font-size:45.417048pt;}
.fs2_c00491{font-size:60.557309pt;}
.fs0_c00491{font-size:71.909838pt;}
.y0_c00491{bottom:0.000000pt;}
.y1_c00491{bottom:0.107500pt;}
.y6_c00491{bottom:0.494374pt;}
.y5_c00491{bottom:2.553985pt;}
.y2e_c00491{bottom:2.559392pt;}
.y2d_c00491{bottom:51.938720pt;}
.y2f_c00491{bottom:54.390612pt;}
.y2c_c00491{bottom:56.880269pt;}
.y2b_c00491{bottom:444.865447pt;}
.y2a_c00491{bottom:459.098508pt;}
.y29_c00491{bottom:482.606632pt;}
.y28_c00491{bottom:496.840360pt;}
.y27_c00491{bottom:511.073421pt;}
.y26_c00491{bottom:526.107815pt;}
.y25_c00491{bottom:548.017806pt;}
.y24_c00491{bottom:562.090867pt;}
.y23_c00491{bottom:585.760858pt;}
.y22_c00491{bottom:599.993919pt;}
.y21_c00491{bottom:614.227646pt;}
.y20_c00491{bottom:628.462041pt;}
.y1f_c00491{bottom:642.535102pt;}
.y1e_c00491{bottom:656.768829pt;}
.y1d_c00491{bottom:671.001890pt;}
.y1c_c00491{bottom:685.234951pt;}
.y1b_c00491{bottom:700.110012pt;}
.y1a_c00491{bottom:722.019337pt;}
.y19_c00491{bottom:736.254398pt;}
.y18_c00491{bottom:759.923721pt;}
.y17_c00491{bottom:774.157449pt;}
.y16_c00491{bottom:788.230510pt;}
.y15_c00491{bottom:802.464904pt;}
.y14_c00491{bottom:816.698632pt;}
.y13_c00491{bottom:830.930493pt;}
.y12_c00491{bottom:845.004887pt;}
.y11_c00491{bottom:860.039948pt;}
.y10_c00491{bottom:877.153275pt;}
.yf_c00491{bottom:902.740064pt;}
.ye_c00491{bottom:916.973792pt;}
.yd_c00491{bottom:940.641916pt;}
.yc_c00491{bottom:954.876977pt;}
.yb_c00491{bottom:969.110038pt;}
.ya_c00491{bottom:983.183099pt;}
.y9_c00491{bottom:997.418693pt;}
.y8_c00491{bottom:1012.450554pt;}
.y4_c00491{bottom:1034.217600pt;}
.y7_c00491{bottom:1036.277211pt;}
.y3_c00491{bottom:1062.893408pt;}
.y2_c00491{bottom:1087.041398pt;}
.h8_c00491{height:12.793120pt;}
.h4_c00491{height:12.795200pt;}
.h5_c00491{height:40.739093pt;}
.h3_c00491{height:42.101604pt;}
.h7_c00491{height:56.136626pt;}
.h2_c00491{height:66.660420pt;}
.h6_c00491{height:1122.161626pt;}
.h1_c00491{height:1122.559167pt;}
.h0_c00491{height:1122.666667pt;}
.w4_c00491{width:35.984000pt;}
.w2_c00491{width:36.783040pt;}
.w3_c00491{width:792.977400pt;}
.w1_c00491{width:793.257550pt;}
.w0_c00491{width:793.333333pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:95.349912pt;}
.x2_c00491{left:185.996259pt;}
.x3_c00491{left:443.161894pt;}
.x4_c00491{left:709.806400pt;}
.x5_c00491{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.107000;font-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_c00492{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-14.204182px;}
.ws2_c00492{word-spacing:0.000000px;}
.ws1_c00492{word-spacing:20.816688px;}
._a_c00492{margin-left:-6.365556px;}
._8_c00492{margin-left:-4.964779px;}
._7_c00492{margin-left:-3.937519px;}
._1_c00492{margin-left:-2.913141px;}
._2_c00492{margin-left:-1.100382px;}
._0_c00492{width:1.411089px;}
._3_c00492{width:2.561223px;}
._b_c00492{width:3.902857px;}
._4_c00492{width:4.977321px;}
._c_c00492{width:7.417587px;}
._f_c00492{width:11.527245px;}
._6_c00492{width:41.309033px;}
._12_c00492{width:45.979607px;}
._17_c00492{width:52.998352px;}
._d_c00492{width:86.872997px;}
._10_c00492{width:104.230077px;}
._13_c00492{width:105.707880px;}
._15_c00492{width:155.397586px;}
._14_c00492{width:433.823859px;}
._9_c00492{width:531.463603px;}
._18_c00492{width:700.897489px;}
._11_c00492{width:714.148205px;}
._16_c00492{width:787.637836px;}
._e_c00492{width:850.581617px;}
._5_c00492{width:1671.460100px;}
.fc0_c00492{color:rgb(35,31,32);}
.fs1_c00492{font-size:51.094180px;}
.fs2_c00492{font-size:68.126973px;}
.fs3_c00492{font-size:72.382771px;}
.fs0_c00492{font-size:80.898568px;}
.y0_c00492{bottom:0.000000px;}
.y1_c00492{bottom:0.120938px;}
.y6_c00492{bottom:0.556171px;}
.y5_c00492{bottom:2.873233px;}
.y30_c00492{bottom:2.879315px;}
.y2f_c00492{bottom:58.431060px;}
.y31_c00492{bottom:61.189438px;}
.y2e_c00492{bottom:63.992253px;}
.y2d_c00492{bottom:405.656116px;}
.y2c_c00492{bottom:421.669810px;}
.y2b_c00492{bottom:448.297799px;}
.y2a_c00492{bottom:464.310743px;}
.y29_c00492{bottom:480.142937px;}
.y28_c00492{bottom:497.056630px;}
.y27_c00492{bottom:516.309122px;}
.y26_c00492{bottom:545.093811px;}
.y25_c00492{bottom:571.721200px;}
.y24_c00492{bottom:587.733393px;}
.y23_c00492{bottom:604.647087px;}
.y22_c00492{bottom:629.297177px;}
.y21_c00492{bottom:656.824566px;}
.y20_c00492{bottom:676.074058px;}
.y1f_c00492{bottom:698.385049px;}
.y1e_c00492{bottom:728.251987px;}
.y1d_c00492{bottom:744.265681px;}
.y1c_c00492{bottom:770.892320px;}
.y1b_c00492{bottom:786.725264px;}
.y1a_c00492{bottom:802.736107px;}
.y19_c00492{bottom:818.748301px;}
.y18_c00492{bottom:835.660494px;}
.y17_c00492{bottom:860.310584px;}
.y16_c00492{bottom:876.143528px;}
.y15_c00492{bottom:902.771517px;}
.y14_c00492{bottom:918.785961px;}
.y13_c00492{bottom:934.796805px;}
.y12_c00492{bottom:950.630498px;}
.y11_c00492{bottom:967.542692px;}
.y10_c00492{bottom:992.190082px;}
.yf_c00492{bottom:1008.202275px;}
.ye_c00492{bottom:1034.829665px;}
.yd_c00492{bottom:1050.843358px;}
.yc_c00492{bottom:1066.676302px;}
.yb_c00492{bottom:1082.688496px;}
.ya_c00492{bottom:1098.702189px;}
.y9_c00492{bottom:1115.614382px;}
.y8_c00492{bottom:1134.866875px;}
.y4_c00492{bottom:1163.494800px;}
.y7_c00492{bottom:1165.811862px;}
.y3_c00492{bottom:1195.755084px;}
.y2_c00492{bottom:1222.921573px;}
.h9_c00492{height:14.392260px;}
.h4_c00492{height:14.394600px;}
.h5_c00492{height:45.831479px;}
.h3_c00492{height:47.364304px;}
.h7_c00492{height:63.153704px;}
.h8_c00492{height:67.098829px;}
.h2_c00492{height:74.992972px;}
.h6_c00492{height:1262.431829px;}
.h1_c00492{height:1262.879062px;}
.h0_c00492{height:1263.000000px;}
.w4_c00492{width:40.482000px;}
.w2_c00492{width:41.380920px;}
.w3_c00492{width:892.099575px;}
.w1_c00492{width:892.414744px;}
.w0_c00492{width:892.500000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:107.268651px;}
.x2_c00492{left:209.245791px;}
.x3_c00492{left:498.554135px;}
.x4_c00492{left:798.532200px;}
.x5_c00492{left:858.071001px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:-12.625939pt;}
.ws2_c00492{word-spacing:0.000000pt;}
.ws1_c00492{word-spacing:18.503723pt;}
._a_c00492{margin-left:-5.658272pt;}
._8_c00492{margin-left:-4.413137pt;}
._7_c00492{margin-left:-3.500017pt;}
._1_c00492{margin-left:-2.589459pt;}
._2_c00492{margin-left:-0.978118pt;}
._0_c00492{width:1.254302pt;}
._3_c00492{width:2.276643pt;}
._b_c00492{width:3.469207pt;}
._4_c00492{width:4.424285pt;}
._c_c00492{width:6.593411pt;}
._f_c00492{width:10.246440pt;}
._6_c00492{width:36.719141pt;}
._12_c00492{width:40.870762pt;}
._17_c00492{width:47.109646pt;}
._d_c00492{width:77.220442pt;}
._10_c00492{width:92.648957pt;}
._13_c00492{width:93.962560pt;}
._15_c00492{width:138.131188pt;}
._14_c00492{width:385.621208pt;}
._9_c00492{width:472.412092pt;}
._18_c00492{width:623.019991pt;}
._11_c00492{width:634.798405pt;}
._16_c00492{width:700.122521pt;}
._e_c00492{width:756.072548pt;}
._5_c00492{width:1485.742311pt;}
.fs1_c00492{font-size:45.417048pt;}
.fs2_c00492{font-size:60.557309pt;}
.fs3_c00492{font-size:64.340241pt;}
.fs0_c00492{font-size:71.909838pt;}
.y0_c00492{bottom:0.000000pt;}
.y1_c00492{bottom:0.107500pt;}
.y6_c00492{bottom:0.494374pt;}
.y5_c00492{bottom:2.553985pt;}
.y30_c00492{bottom:2.559392pt;}
.y2f_c00492{bottom:51.938720pt;}
.y31_c00492{bottom:54.390612pt;}
.y2e_c00492{bottom:56.882003pt;}
.y2d_c00492{bottom:360.583215pt;}
.y2c_c00492{bottom:374.817609pt;}
.y2b_c00492{bottom:398.486933pt;}
.y2a_c00492{bottom:412.720660pt;}
.y29_c00492{bottom:426.793721pt;}
.y28_c00492{bottom:441.828115pt;}
.y27_c00492{bottom:458.941442pt;}
.y26_c00492{bottom:484.527832pt;}
.y25_c00492{bottom:508.196622pt;}
.y24_c00492{bottom:522.429683pt;}
.y23_c00492{bottom:537.464077pt;}
.y22_c00492{bottom:559.375268pt;}
.y21_c00492{bottom:583.844059pt;}
.y20_c00492{bottom:600.954718pt;}
.y1f_c00492{bottom:620.786710pt;}
.y1e_c00492{bottom:647.335100pt;}
.y1d_c00492{bottom:661.569494pt;}
.y1c_c00492{bottom:685.237618pt;}
.y1b_c00492{bottom:699.311346pt;}
.y1a_c00492{bottom:713.543207pt;}
.y19_c00492{bottom:727.776268pt;}
.y18_c00492{bottom:742.809328pt;}
.y17_c00492{bottom:764.720520pt;}
.y16_c00492{bottom:778.794247pt;}
.y15_c00492{bottom:802.463571pt;}
.y14_c00492{bottom:816.698632pt;}
.y13_c00492{bottom:830.930493pt;}
.y12_c00492{bottom:845.004887pt;}
.y11_c00492{bottom:860.037948pt;}
.y10_c00492{bottom:881.946739pt;}
.yf_c00492{bottom:896.179800pt;}
.ye_c00492{bottom:919.848591pt;}
.yd_c00492{bottom:934.082985pt;}
.yc_c00492{bottom:948.156713pt;}
.yb_c00492{bottom:962.389774pt;}
.ya_c00492{bottom:976.624168pt;}
.y9_c00492{bottom:991.657229pt;}
.y8_c00492{bottom:1008.770555pt;}
.y4_c00492{bottom:1034.217600pt;}
.y7_c00492{bottom:1036.277211pt;}
.y3_c00492{bottom:1062.893408pt;}
.y2_c00492{bottom:1087.041398pt;}
.h9_c00492{height:12.793120pt;}
.h4_c00492{height:12.795200pt;}
.h5_c00492{height:40.739093pt;}
.h3_c00492{height:42.101604pt;}
.h7_c00492{height:56.136626pt;}
.h8_c00492{height:59.643403pt;}
.h2_c00492{height:66.660420pt;}
.h6_c00492{height:1122.161626pt;}
.h1_c00492{height:1122.559167pt;}
.h0_c00492{height:1122.666667pt;}
.w4_c00492{width:35.984000pt;}
.w2_c00492{width:36.783040pt;}
.w3_c00492{width:792.977400pt;}
.w1_c00492{width:793.257550pt;}
.w0_c00492{width:793.333333pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:95.349912pt;}
.x2_c00492{left:185.996259pt;}
.x3_c00492{left:443.159231pt;}
.x4_c00492{left:709.806400pt;}
.x5_c00492{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.107000;font-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_c00493{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00493{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:-14.204182px;}
.ws2_c00493{word-spacing:0.000000px;}
.ws1_c00493{word-spacing:20.816688px;}
._8_c00493{margin-left:-5.088146px;}
._7_c00493{margin-left:-3.936910px;}
._1_c00493{margin-left:-2.913141px;}
._2_c00493{margin-left:-1.100382px;}
._0_c00493{width:1.411089px;}
._3_c00493{width:2.561223px;}
._a_c00493{width:3.976406px;}
._4_c00493{width:4.977321px;}
._d_c00493{width:7.417587px;}
._f_c00493{width:11.483578px;}
._12_c00493{width:15.534049px;}
._11_c00493{width:20.014397px;}
._13_c00493{width:21.058731px;}
._b_c00493{width:39.992065px;}
._6_c00493{width:62.284412px;}
._14_c00493{width:75.227144px;}
._16_c00493{width:96.914819px;}
._c_c00493{width:530.068228px;}
._9_c00493{width:581.713096px;}
._e_c00493{width:633.027005px;}
._10_c00493{width:641.144452px;}
._17_c00493{width:709.404771px;}
._15_c00493{width:752.194562px;}
._5_c00493{width:1671.460100px;}
.fc0_c00493{color:rgb(35,31,32);}
.fs1_c00493{font-size:51.094180px;}
.fs2_c00493{font-size:68.126973px;}
.fs0_c00493{font-size:80.898568px;}
.y0_c00493{bottom:0.000000px;}
.y1_c00493{bottom:0.120938px;}
.y6_c00493{bottom:0.556171px;}
.y5_c00493{bottom:2.873233px;}
.y36_c00493{bottom:2.879315px;}
.y35_c00493{bottom:58.431060px;}
.y37_c00493{bottom:61.189438px;}
.y34_c00493{bottom:63.993753px;}
.y33_c00493{bottom:324.875149px;}
.y32_c00493{bottom:351.323888px;}
.y31_c00493{bottom:367.334732px;}
.y30_c00493{bottom:383.348425px;}
.y2f_c00493{bottom:399.361369px;}
.y2e_c00493{bottom:416.095062px;}
.y2d_c00493{bottom:440.743802px;}
.y2c_c00493{bottom:456.757496px;}
.y2b_c00493{bottom:483.384885px;}
.y2a_c00493{bottom:499.397079px;}
.y29_c00493{bottom:515.409272px;}
.y28_c00493{bottom:531.243716px;}
.y27_c00493{bottom:547.255910px;}
.y26_c00493{bottom:564.168103px;}
.y25_c00493{bottom:583.417595px;}
.y24_c00493{bottom:612.201084px;}
.y23_c00493{bottom:628.211927px;}
.y22_c00493{bottom:654.840667px;}
.y21_c00493{bottom:670.674360px;}
.y20_c00493{bottom:686.690154px;}
.y1f_c00493{bottom:703.598897px;}
.y1e_c00493{bottom:728.248987px;}
.y1d_c00493{bottom:744.264031px;}
.y1c_c00493{bottom:770.889320px;}
.y1b_c00493{bottom:786.725114px;}
.y1a_c00493{bottom:802.735957px;}
.y19_c00493{bottom:818.748151px;}
.y18_c00493{bottom:834.761095px;}
.y17_c00493{bottom:851.494788px;}
.y16_c00493{bottom:876.142178px;}
.y15_c00493{bottom:892.157222px;}
.y14_c00493{bottom:918.785961px;}
.y13_c00493{bottom:934.796805px;}
.y12_c00493{bottom:950.627648px;}
.y11_c00493{bottom:966.643442px;}
.y10_c00493{bottom:982.657136px;}
.yf_c00493{bottom:999.566629px;}
.ye_c00493{bottom:1024.216719px;}
.yd_c00493{bottom:1040.048913px;}
.yc_c00493{bottom:1066.676302px;}
.yb_c00493{bottom:1082.688496px;}
.ya_c00493{bottom:1098.702189px;}
.y9_c00493{bottom:1115.614382px;}
.y8_c00493{bottom:1134.866875px;}
.y4_c00493{bottom:1163.494800px;}
.y7_c00493{bottom:1165.811862px;}
.y3_c00493{bottom:1195.755084px;}
.y2_c00493{bottom:1222.921573px;}
.h8_c00493{height:14.392260px;}
.h4_c00493{height:14.394600px;}
.h5_c00493{height:45.831479px;}
.h3_c00493{height:47.364304px;}
.h7_c00493{height:63.153704px;}
.h2_c00493{height:74.992972px;}
.h6_c00493{height:1262.431829px;}
.h1_c00493{height:1262.879062px;}
.h0_c00493{height:1263.000000px;}
.w4_c00493{width:40.482000px;}
.w2_c00493{width:41.380920px;}
.w3_c00493{width:892.099575px;}
.w1_c00493{width:892.414744px;}
.w0_c00493{width:892.500000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:107.268651px;}
.x2_c00493{left:209.245791px;}
.x3_c00493{left:498.557131px;}
.x4_c00493{left:798.532200px;}
.x5_c00493{left:858.071001px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:-12.625939pt;}
.ws2_c00493{word-spacing:0.000000pt;}
.ws1_c00493{word-spacing:18.503723pt;}
._8_c00493{margin-left:-4.522797pt;}
._7_c00493{margin-left:-3.499475pt;}
._1_c00493{margin-left:-2.589459pt;}
._2_c00493{margin-left:-0.978118pt;}
._0_c00493{width:1.254302pt;}
._3_c00493{width:2.276643pt;}
._a_c00493{width:3.534583pt;}
._4_c00493{width:4.424285pt;}
._d_c00493{width:6.593411pt;}
._f_c00493{width:10.207625pt;}
._12_c00493{width:13.808043pt;}
._11_c00493{width:17.790575pt;}
._13_c00493{width:18.718872pt;}
._b_c00493{width:35.548503pt;}
._6_c00493{width:55.363922pt;}
._14_c00493{width:66.868572pt;}
._16_c00493{width:86.146506pt;}
._c_c00493{width:471.171758pt;}
._9_c00493{width:517.078307pt;}
._e_c00493{width:562.690672pt;}
._10_c00493{width:569.906179pt;}
._17_c00493{width:630.582019pt;}
._15_c00493{width:668.617388pt;}
._5_c00493{width:1485.742311pt;}
.fs1_c00493{font-size:45.417048pt;}
.fs2_c00493{font-size:60.557309pt;}
.fs0_c00493{font-size:71.909838pt;}
.y0_c00493{bottom:0.000000pt;}
.y1_c00493{bottom:0.107500pt;}
.y6_c00493{bottom:0.494374pt;}
.y5_c00493{bottom:2.553985pt;}
.y36_c00493{bottom:2.559392pt;}
.y35_c00493{bottom:51.938720pt;}
.y37_c00493{bottom:54.390612pt;}
.y34_c00493{bottom:56.883336pt;}
.y33_c00493{bottom:288.777910pt;}
.y32_c00493{bottom:312.287900pt;}
.y31_c00493{bottom:326.519761pt;}
.y30_c00493{bottom:340.754156pt;}
.y2f_c00493{bottom:354.987883pt;}
.y2e_c00493{bottom:369.862277pt;}
.y2d_c00493{bottom:391.772269pt;}
.y2c_c00493{bottom:406.006663pt;}
.y2b_c00493{bottom:429.675454pt;}
.y2a_c00493{bottom:443.908515pt;}
.y29_c00493{bottom:458.141575pt;}
.y28_c00493{bottom:472.216637pt;}
.y27_c00493{bottom:486.449697pt;}
.y26_c00493{bottom:501.482758pt;}
.y25_c00493{bottom:518.593418pt;}
.y24_c00493{bottom:544.178741pt;}
.y23_c00493{bottom:558.410602pt;}
.y22_c00493{bottom:582.080593pt;}
.y21_c00493{bottom:596.154987pt;}
.y20_c00493{bottom:610.391248pt;}
.y1f_c00493{bottom:625.421242pt;}
.y1e_c00493{bottom:647.332433pt;}
.y1d_c00493{bottom:661.568027pt;}
.y1c_c00493{bottom:685.234951pt;}
.y1b_c00493{bottom:699.311212pt;}
.y1a_c00493{bottom:713.543073pt;}
.y19_c00493{bottom:727.776134pt;}
.y18_c00493{bottom:742.009862pt;}
.y17_c00493{bottom:756.884256pt;}
.y16_c00493{bottom:778.793047pt;}
.y15_c00493{bottom:793.028642pt;}
.y14_c00493{bottom:816.698632pt;}
.y13_c00493{bottom:830.930493pt;}
.y12_c00493{bottom:845.002354pt;}
.y11_c00493{bottom:859.238615pt;}
.y10_c00493{bottom:873.473009pt;}
.yf_c00493{bottom:888.503670pt;}
.ye_c00493{bottom:910.414861pt;}
.yd_c00493{bottom:924.487922pt;}
.yc_c00493{bottom:948.156713pt;}
.yb_c00493{bottom:962.389774pt;}
.ya_c00493{bottom:976.624168pt;}
.y9_c00493{bottom:991.657229pt;}
.y8_c00493{bottom:1008.770555pt;}
.y4_c00493{bottom:1034.217600pt;}
.y7_c00493{bottom:1036.277211pt;}
.y3_c00493{bottom:1062.893408pt;}
.y2_c00493{bottom:1087.041398pt;}
.h8_c00493{height:12.793120pt;}
.h4_c00493{height:12.795200pt;}
.h5_c00493{height:40.739093pt;}
.h3_c00493{height:42.101604pt;}
.h7_c00493{height:56.136626pt;}
.h2_c00493{height:66.660420pt;}
.h6_c00493{height:1122.161626pt;}
.h1_c00493{height:1122.559167pt;}
.h0_c00493{height:1122.666667pt;}
.w4_c00493{width:35.984000pt;}
.w2_c00493{width:36.783040pt;}
.w3_c00493{width:792.977400pt;}
.w1_c00493{width:793.257550pt;}
.w0_c00493{width:793.333333pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:95.349912pt;}
.x2_c00493{left:185.996259pt;}
.x3_c00493{left:443.161894pt;}
.x4_c00493{left:709.806400pt;}
.x5_c00493{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.107000;font-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_c00494{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:-14.204182px;}
.ws2_c00494{word-spacing:0.000000px;}
.ws1_c00494{word-spacing:20.816688px;}
._10_c00494{margin-left:-6.730611px;}
._9_c00494{margin-left:-5.262838px;}
._8_c00494{margin-left:-4.009470px;}
._1_c00494{margin-left:-2.913141px;}
._2_c00494{margin-left:-1.100382px;}
._0_c00494{width:1.411089px;}
._3_c00494{width:2.561223px;}
._b_c00494{width:3.845529px;}
._4_c00494{width:4.977321px;}
._11_c00494{width:7.471498px;}
._d_c00494{width:11.109190px;}
._c_c00494{width:15.830831px;}
._7_c00494{width:19.375935px;}
._15_c00494{width:27.949488px;}
._14_c00494{width:29.161763px;}
._e_c00494{width:113.323597px;}
._6_c00494{width:142.297135px;}
._12_c00494{width:155.194432px;}
._a_c00494{width:398.230802px;}
._f_c00494{width:530.999608px;}
._13_c00494{width:838.723801px;}
._5_c00494{width:1671.460100px;}
.fc0_c00494{color:rgb(35,31,32);}
.fs1_c00494{font-size:51.094180px;}
.fs2_c00494{font-size:68.126973px;}
.fs0_c00494{font-size:80.898568px;}
.y0_c00494{bottom:0.000000px;}
.y1_c00494{bottom:0.120938px;}
.y6_c00494{bottom:0.556171px;}
.y5_c00494{bottom:2.873233px;}
.y1e_c00494{bottom:2.879315px;}
.y1d_c00494{bottom:58.431060px;}
.y1f_c00494{bottom:61.189438px;}
.y1c_c00494{bottom:63.993903px;}
.y1b_c00494{bottom:759.198625px;}
.y1a_c00494{bottom:785.648714px;}
.y19_c00494{bottom:801.659558px;}
.y18_c00494{bottom:817.674002px;}
.y17_c00494{bottom:833.686195px;}
.y16_c00494{bottom:849.518389px;}
.y15_c00494{bottom:866.432832px;}
.y14_c00494{bottom:891.079472px;}
.y13_c00494{bottom:917.706861px;}
.y12_c00494{bottom:933.720555px;}
.y11_c00494{bottom:949.731399px;}
.y10_c00494{bottom:965.565842px;}
.yf_c00494{bottom:981.578036px;}
.ye_c00494{bottom:998.490229px;}
.yd_c00494{bottom:1023.140319px;}
.yc_c00494{bottom:1049.769059px;}
.yb_c00494{bottom:1065.601252px;}
.ya_c00494{bottom:1081.615696px;}
.y9_c00494{bottom:1098.527889px;}
.y8_c00494{bottom:1126.232878px;}
.y4_c00494{bottom:1163.494800px;}
.y7_c00494{bottom:1165.811862px;}
.y3_c00494{bottom:1195.755084px;}
.y2_c00494{bottom:1222.921573px;}
.h8_c00494{height:14.392260px;}
.h4_c00494{height:14.394600px;}
.h5_c00494{height:45.831479px;}
.h3_c00494{height:47.364304px;}
.h7_c00494{height:63.153704px;}
.h2_c00494{height:74.992972px;}
.h6_c00494{height:1262.431829px;}
.h1_c00494{height:1262.879062px;}
.h0_c00494{height:1263.000000px;}
.w4_c00494{width:40.482000px;}
.w2_c00494{width:41.380920px;}
.w3_c00494{width:892.099575px;}
.w1_c00494{width:892.414744px;}
.w0_c00494{width:892.500000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:107.268651px;}
.x2_c00494{left:209.245791px;}
.x3_c00494{left:498.553776px;}
.x4_c00494{left:798.532200px;}
.x5_c00494{left:858.071001px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:-12.625939pt;}
.ws2_c00494{word-spacing:0.000000pt;}
.ws1_c00494{word-spacing:18.503723pt;}
._10_c00494{margin-left:-5.982765pt;}
._9_c00494{margin-left:-4.678078pt;}
._8_c00494{margin-left:-3.563973pt;}
._1_c00494{margin-left:-2.589459pt;}
._2_c00494{margin-left:-0.978118pt;}
._0_c00494{width:1.254302pt;}
._3_c00494{width:2.276643pt;}
._b_c00494{width:3.418248pt;}
._4_c00494{width:4.424285pt;}
._11_c00494{width:6.641331pt;}
._d_c00494{width:9.874835pt;}
._c_c00494{width:14.071849pt;}
._7_c00494{width:17.223053pt;}
._15_c00494{width:24.843989pt;}
._14_c00494{width:25.921567pt;}
._e_c00494{width:100.732086pt;}
._6_c00494{width:126.486342pt;}
._12_c00494{width:137.950606pt;}
._a_c00494{width:353.982936pt;}
._f_c00494{width:471.999652pt;}
._13_c00494{width:745.532267pt;}
._5_c00494{width:1485.742311pt;}
.fs1_c00494{font-size:45.417048pt;}
.fs2_c00494{font-size:60.557309pt;}
.fs0_c00494{font-size:71.909838pt;}
.y0_c00494{bottom:0.000000pt;}
.y1_c00494{bottom:0.107500pt;}
.y6_c00494{bottom:0.494374pt;}
.y5_c00494{bottom:2.553985pt;}
.y1e_c00494{bottom:2.559392pt;}
.y1d_c00494{bottom:51.938720pt;}
.y1f_c00494{bottom:54.390612pt;}
.y1c_c00494{bottom:56.883469pt;}
.y1b_c00494{bottom:674.843222pt;}
.y1a_c00494{bottom:698.354413pt;}
.y19_c00494{bottom:712.586274pt;}
.y18_c00494{bottom:726.821335pt;}
.y17_c00494{bottom:741.054396pt;}
.y16_c00494{bottom:755.127457pt;}
.y15_c00494{bottom:770.162517pt;}
.y14_c00494{bottom:792.070642pt;}
.y13_c00494{bottom:815.739432pt;}
.y12_c00494{bottom:829.973827pt;}
.y11_c00494{bottom:844.205688pt;}
.y10_c00494{bottom:858.280749pt;}
.yf_c00494{bottom:872.513810pt;}
.ye_c00494{bottom:887.546870pt;}
.yd_c00494{bottom:909.458062pt;}
.yc_c00494{bottom:933.128052pt;}
.yb_c00494{bottom:947.201113pt;}
.ya_c00494{bottom:961.436174pt;}
.y9_c00494{bottom:976.469235pt;}
.y8_c00494{bottom:1001.095892pt;}
.y4_c00494{bottom:1034.217600pt;}
.y7_c00494{bottom:1036.277211pt;}
.y3_c00494{bottom:1062.893408pt;}
.y2_c00494{bottom:1087.041398pt;}
.h8_c00494{height:12.793120pt;}
.h4_c00494{height:12.795200pt;}
.h5_c00494{height:40.739093pt;}
.h3_c00494{height:42.101604pt;}
.h7_c00494{height:56.136626pt;}
.h2_c00494{height:66.660420pt;}
.h6_c00494{height:1122.161626pt;}
.h1_c00494{height:1122.559167pt;}
.h0_c00494{height:1122.666667pt;}
.w4_c00494{width:35.984000pt;}
.w2_c00494{width:36.783040pt;}
.w3_c00494{width:792.977400pt;}
.w1_c00494{width:793.257550pt;}
.w0_c00494{width:793.333333pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:95.349912pt;}
.x2_c00494{left:185.996259pt;}
.x3_c00494{left:443.158912pt;}
.x4_c00494{left:709.806400pt;}
.x5_c00494{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.107000;font-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_c00495{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:-14.204182px;}
.ws2_c00495{word-spacing:0.000000px;}
.ws1_c00495{word-spacing:20.816688px;}
._6_c00495{margin-left:-5.708447px;}
._7_c00495{margin-left:-4.527394px;}
._1_c00495{margin-left:-2.913141px;}
._2_c00495{margin-left:-1.100382px;}
._0_c00495{width:1.411089px;}
._3_c00495{width:2.561223px;}
._a_c00495{width:3.799052px;}
._4_c00495{width:4.977321px;}
._c_c00495{width:6.057339px;}
._b_c00495{width:7.963642px;}
._12_c00495{width:27.995966px;}
._11_c00495{width:29.161763px;}
._13_c00495{width:75.503743px;}
._e_c00495{width:150.817458px;}
._8_c00495{width:155.348196px;}
._f_c00495{width:628.701864px;}
._14_c00495{width:633.876063px;}
._10_c00495{width:705.634337px;}
._9_c00495{width:794.239511px;}
._d_c00495{width:836.965712px;}
._5_c00495{width:1671.460100px;}
.fc0_c00495{color:rgb(35,31,32);}
.fs1_c00495{font-size:51.094180px;}
.fs2_c00495{font-size:68.126973px;}
.fs3_c00495{font-size:72.382771px;}
.fs0_c00495{font-size:80.898568px;}
.y0_c00495{bottom:0.000000px;}
.y1_c00495{bottom:0.120938px;}
.y6_c00495{bottom:0.556171px;}
.y5_c00495{bottom:2.873233px;}
.y2d_c00495{bottom:2.879315px;}
.y2c_c00495{bottom:58.431060px;}
.y2e_c00495{bottom:61.189438px;}
.y2b_c00495{bottom:63.986553px;}
.y2a_c00495{bottom:451.533898px;}
.y29_c00495{bottom:478.160537px;}
.y28_c00495{bottom:493.994231px;}
.y27_c00495{bottom:510.010025px;}
.y26_c00495{bottom:526.020868px;}
.y25_c00495{bottom:542.751711px;}
.y24_c00495{bottom:567.581802px;}
.y23_c00495{bottom:594.030541px;}
.y22_c00495{bottom:610.042735px;}
.y21_c00495{bottom:626.054928px;}
.y20_c00495{bottom:642.069372px;}
.y1f_c00495{bottom:657.901565px;}
.y1e_c00495{bottom:674.813759px;}
.y1d_c00495{bottom:699.462499px;}
.y1c_c00495{bottom:726.992588px;}
.y1b_c00495{bottom:751.641328px;}
.y1a_c00495{bottom:778.267967px;}
.y19_c00495{bottom:794.280161px;}
.y18_c00495{bottom:810.294604px;}
.y17_c00495{bottom:827.025448px;}
.y16_c00495{bottom:851.675538px;}
.y15_c00495{bottom:867.687732px;}
.y14_c00495{bottom:894.315121px;}
.y13_c00495{bottom:910.328814px;}
.y12_c00495{bottom:927.059658px;}
.y11_c00495{bottom:951.708398px;}
.y10_c00495{bottom:967.723441px;}
.yf_c00495{bottom:994.352181px;}
.ye_c00495{bottom:1010.364374px;}
.yd_c00495{bottom:1026.377318px;}
.yc_c00495{bottom:1042.209512px;}
.yb_c00495{bottom:1058.223205px;}
.ya_c00495{bottom:1075.135399px;}
.y9_c00495{bottom:1093.307891px;}
.y8_c00495{bottom:1126.232878px;}
.y4_c00495{bottom:1163.494800px;}
.y7_c00495{bottom:1165.811862px;}
.y3_c00495{bottom:1195.755084px;}
.y2_c00495{bottom:1222.921573px;}
.h9_c00495{height:14.392260px;}
.h4_c00495{height:14.394600px;}
.h5_c00495{height:45.831479px;}
.h3_c00495{height:47.364304px;}
.h7_c00495{height:63.153704px;}
.h8_c00495{height:67.098829px;}
.h2_c00495{height:74.992972px;}
.h6_c00495{height:1262.431829px;}
.h1_c00495{height:1262.879062px;}
.h0_c00495{height:1263.000000px;}
.w4_c00495{width:40.482000px;}
.w2_c00495{width:41.380920px;}
.w3_c00495{width:892.099575px;}
.w1_c00495{width:892.414744px;}
.w0_c00495{width:892.500000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:107.268651px;}
.x2_c00495{left:209.245791px;}
.x3_c00495{left:498.552638px;}
.x4_c00495{left:798.532200px;}
.x5_c00495{left:858.071001px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:-12.625939pt;}
.ws2_c00495{word-spacing:0.000000pt;}
.ws1_c00495{word-spacing:18.503723pt;}
._6_c00495{margin-left:-5.074175pt;}
._7_c00495{margin-left:-4.024350pt;}
._1_c00495{margin-left:-2.589459pt;}
._2_c00495{margin-left:-0.978118pt;}
._0_c00495{width:1.254302pt;}
._3_c00495{width:2.276643pt;}
._a_c00495{width:3.376935pt;}
._4_c00495{width:4.424285pt;}
._c_c00495{width:5.384302pt;}
._b_c00495{width:7.078792pt;}
._12_c00495{width:24.885303pt;}
._11_c00495{width:25.921567pt;}
._13_c00495{width:67.114439pt;}
._e_c00495{width:134.059963pt;}
._8_c00495{width:138.087286pt;}
._f_c00495{width:558.846102pt;}
._14_c00495{width:563.445390pt;}
._10_c00495{width:627.230522pt;}
._9_c00495{width:705.990676pt;}
._d_c00495{width:743.969522pt;}
._5_c00495{width:1485.742311pt;}
.fs1_c00495{font-size:45.417048pt;}
.fs2_c00495{font-size:60.557309pt;}
.fs3_c00495{font-size:64.340241pt;}
.fs0_c00495{font-size:71.909838pt;}
.y0_c00495{bottom:0.000000pt;}
.y1_c00495{bottom:0.107500pt;}
.y6_c00495{bottom:0.494374pt;}
.y5_c00495{bottom:2.553985pt;}
.y2d_c00495{bottom:2.559392pt;}
.y2c_c00495{bottom:51.938720pt;}
.y2e_c00495{bottom:54.390612pt;}
.y2b_c00495{bottom:56.876936pt;}
.y2a_c00495{bottom:401.363465pt;}
.y29_c00495{bottom:425.031589pt;}
.y28_c00495{bottom:439.105983pt;}
.y27_c00495{bottom:453.342244pt;}
.y26_c00495{bottom:467.574105pt;}
.y25_c00495{bottom:482.445966pt;}
.y24_c00495{bottom:504.517157pt;}
.y23_c00495{bottom:528.027148pt;}
.y22_c00495{bottom:542.260208pt;}
.y21_c00495{bottom:556.493269pt;}
.y20_c00495{bottom:570.728330pt;}
.y1f_c00495{bottom:584.801391pt;}
.y1e_c00495{bottom:599.834452pt;}
.y1d_c00495{bottom:621.744443pt;}
.y1c_c00495{bottom:646.215634pt;}
.y1b_c00495{bottom:668.125625pt;}
.y1a_c00495{bottom:691.793749pt;}
.y19_c00495{bottom:706.026810pt;}
.y18_c00495{bottom:720.261871pt;}
.y17_c00495{bottom:735.133731pt;}
.y16_c00495{bottom:757.044923pt;}
.y15_c00495{bottom:771.277984pt;}
.y14_c00495{bottom:794.946774pt;}
.y13_c00495{bottom:809.181168pt;}
.y12_c00495{bottom:824.053029pt;}
.y11_c00495{bottom:845.963020pt;}
.y10_c00495{bottom:860.198615pt;}
.yf_c00495{bottom:883.868605pt;}
.ye_c00495{bottom:898.101666pt;}
.yd_c00495{bottom:912.335394pt;}
.yc_c00495{bottom:926.408455pt;}
.yb_c00495{bottom:940.642849pt;}
.ya_c00495{bottom:955.675910pt;}
.y9_c00495{bottom:971.829237pt;}
.y8_c00495{bottom:1001.095892pt;}
.y4_c00495{bottom:1034.217600pt;}
.y7_c00495{bottom:1036.277211pt;}
.y3_c00495{bottom:1062.893408pt;}
.y2_c00495{bottom:1087.041398pt;}
.h9_c00495{height:12.793120pt;}
.h4_c00495{height:12.795200pt;}
.h5_c00495{height:40.739093pt;}
.h3_c00495{height:42.101604pt;}
.h7_c00495{height:56.136626pt;}
.h8_c00495{height:59.643403pt;}
.h2_c00495{height:66.660420pt;}
.h6_c00495{height:1122.161626pt;}
.h1_c00495{height:1122.559167pt;}
.h0_c00495{height:1122.666667pt;}
.w4_c00495{width:35.984000pt;}
.w2_c00495{width:36.783040pt;}
.w3_c00495{width:792.977400pt;}
.w1_c00495{width:793.257550pt;}
.w0_c00495{width:793.333333pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:95.349912pt;}
.x2_c00495{left:185.996259pt;}
.x3_c00495{left:443.157900pt;}
.x4_c00495{left:709.806400pt;}
.x5_c00495{left:762.729778pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.107000;font-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_c00496{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:-14.204182px;}
.ws2_c00496{word-spacing:0.000000px;}
.ws1_c00496{word-spacing:20.816688px;}
._6_c00496{margin-left:-5.708447px;}
._7_c00496{margin-left:-4.414135px;}
._1_c00496{margin-left:-2.913141px;}
._2_c00496{margin-left:-1.100382px;}
._0_c00496{width:1.411089px;}
._3_c00496{width:2.561223px;}
._c_c00496{width:3.918625px;}
._4_c00496{width:4.977321px;}
._a_c00496{width:6.823818px;}
._b_c00496{width:8.134509px;}
._10_c00496{width:11.532244px;}
._d_c00496{width:133.864112px;}
._8_c00496{width:150.817586px;}
._e_c00496{width:381.182294px;}
._f_c00496{width:624.216466px;}
._9_c00496{width:690.068316px;}
._5_c00496{width:1671.460100px;}
.fc0_c00496{color:rgb(35,31,32);}
.fs1_c00496{font-size:51.094180px;}
.fs2_c00496{font-size:72.382771px;}
.fs0_c00496{font-size:80.898568px;}
.y0_c00496{bottom:0.000000px;}
.y1_c00496{bottom:0.120938px;}
.y6_c00496{bottom:0.556171px;}
.y5_c00496{bottom:2.873233px;}
.y21_c00496{bottom:2.879315px;}
.y20_c00496{bottom:58.431060px;}
.y22_c00496{bottom:61.189438px;}
.y1f_c00496{bottom:63.987753px;}
.y1e_c00496{bottom:728.250487px;}
.y1d_c00496{bottom:744.262681px;}
.y1c_c00496{bottom:770.889320px;}
.y1b_c00496{bottom:786.723764px;}
.y1a_c00496{bottom:802.735957px;}
.y19_c00496{bottom:818.746801px;}
.y18_c00496{bottom:834.762595px;}
.y17_c00496{bottom:850.593438px;}
.y16_c00496{bottom:866.607132px;}
.y15_c00496{bottom:882.620076px;}
.y14_c00496{bottom:898.633769px;}
.y13_c00496{bottom:915.364612px;}
.y12_c00496{bottom:940.014703px;}
.y11_c00496{bottom:967.542692px;}
.y10_c00496{bottom:992.190082px;}
.yf_c00496{bottom:1008.202275px;}
.ye_c00496{bottom:1034.829665px;}
.yd_c00496{bottom:1050.843358px;}
.yc_c00496{bottom:1066.676302px;}
.yb_c00496{bottom:1082.688496px;}
.ya_c00496{bottom:1098.702189px;}
.y9_c00496{bottom:1115.614382px;}
.y8_c00496{bottom:1133.786875px;}
.y4_c00496{bottom:1163.494800px;}
.y7_c00496{bottom:1165.811862px;}
.y3_c00496{bottom:1195.755084px;}
.y2_c00496{bottom:1222.921573px;}
.h8_c00496{height:14.392260px;}
.h4_c00496{height:14.394600px;}
.h5_c00496{height:45.831479px;}
.h3_c00496{height:47.364304px;}
.h7_c00496{height:67.098829px;}
.h2_c00496{height:74.992972px;}
.h6_c00496{height:1262.431829px;}
.h1_c00496{height:1262.879062px;}
.h0_c00496{height:1263.000000px;}
.w4_c00496{width:40.482000px;}
.w2_c00496{width:41.380920px;}
.w3_c00496{width:892.099575px;}
.w1_c00496{width:892.414744px;}
.w0_c00496{width:892.500000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:107.268651px;}
.x2_c00496{left:209.245791px;}
.x3_c00496{left:498.554135px;}
.x4_c00496{left:798.532200px;}
.x5_c00496{left:850.694003px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:-12.625939pt;}
.ws2_c00496{word-spacing:0.000000pt;}
.ws1_c00496{word-spacing:18.503723pt;}
._6_c00496{margin-left:-5.074175pt;}
._7_c00496{margin-left:-3.923675pt;}
._1_c00496{margin-left:-2.589459pt;}
._2_c00496{margin-left:-0.978118pt;}
._0_c00496{width:1.254302pt;}
._3_c00496{width:2.276643pt;}
._c_c00496{width:3.483222pt;}
._4_c00496{width:4.424285pt;}
._a_c00496{width:6.065616pt;}
._b_c00496{width:7.230674pt;}
._10_c00496{width:10.250884pt;}
._d_c00496{width:118.990321pt;}
._8_c00496{width:134.060076pt;}
._e_c00496{width:338.828706pt;}
._f_c00496{width:554.859081pt;}
._9_c00496{width:613.394058pt;}
._5_c00496{width:1485.742311pt;}
.fs1_c00496{font-size:45.417048pt;}
.fs2_c00496{font-size:64.340241pt;}
.fs0_c00496{font-size:71.909838pt;}
.y0_c00496{bottom:0.000000pt;}
.y1_c00496{bottom:0.107500pt;}
.y6_c00496{bottom:0.494374pt;}
.y5_c00496{bottom:2.553985pt;}
.y21_c00496{bottom:2.559392pt;}
.y20_c00496{bottom:51.938720pt;}
.y22_c00496{bottom:54.390612pt;}
.y1f_c00496{bottom:56.878003pt;}
.y1e_c00496{bottom:647.333766pt;}
.y1d_c00496{bottom:661.566827pt;}
.y1c_c00496{bottom:685.234951pt;}
.y1b_c00496{bottom:699.310012pt;}
.y1a_c00496{bottom:713.543073pt;}
.y19_c00496{bottom:727.774934pt;}
.y18_c00496{bottom:742.011195pt;}
.y17_c00496{bottom:756.083056pt;}
.y16_c00496{bottom:770.317451pt;}
.y15_c00496{bottom:784.551178pt;}
.y14_c00496{bottom:798.785573pt;}
.y13_c00496{bottom:813.657433pt;}
.y12_c00496{bottom:835.568625pt;}
.y11_c00496{bottom:860.037948pt;}
.y10_c00496{bottom:881.946739pt;}
.yf_c00496{bottom:896.179800pt;}
.ye_c00496{bottom:919.848591pt;}
.yd_c00496{bottom:934.082985pt;}
.yc_c00496{bottom:948.156713pt;}
.yb_c00496{bottom:962.389774pt;}
.ya_c00496{bottom:976.624168pt;}
.y9_c00496{bottom:991.657229pt;}
.y8_c00496{bottom:1007.810556pt;}
.y4_c00496{bottom:1034.217600pt;}
.y7_c00496{bottom:1036.277211pt;}
.y3_c00496{bottom:1062.893408pt;}
.y2_c00496{bottom:1087.041398pt;}
.h8_c00496{height:12.793120pt;}
.h4_c00496{height:12.795200pt;}
.h5_c00496{height:40.739093pt;}
.h3_c00496{height:42.101604pt;}
.h7_c00496{height:59.643403pt;}
.h2_c00496{height:66.660420pt;}
.h6_c00496{height:1122.161626pt;}
.h1_c00496{height:1122.559167pt;}
.h0_c00496{height:1122.666667pt;}
.w4_c00496{width:35.984000pt;}
.w2_c00496{width:36.783040pt;}
.w3_c00496{width:792.977400pt;}
.w1_c00496{width:793.257550pt;}
.w0_c00496{width:793.333333pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:95.349912pt;}
.x2_c00496{left:185.996259pt;}
.x3_c00496{left:443.159231pt;}
.x4_c00496{left:709.806400pt;}
.x5_c00496{left:756.172448pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.107000;font-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_c00497{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing:0.000000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:-14.204182px;}
.ws2_c00497{word-spacing:0.000000px;}
.ws1_c00497{word-spacing:20.816688px;}
._6_c00497{margin-left:-5.289355px;}
._9_c00497{margin-left:-3.945041px;}
._1_c00497{margin-left:-2.913141px;}
._2_c00497{margin-left:-1.100382px;}
._0_c00497{width:1.411089px;}
._3_c00497{width:2.561223px;}
._c_c00497{width:3.706096px;}
._4_c00497{width:4.977321px;}
._b_c00497{width:7.285904px;}
._12_c00497{width:11.054275px;}
._11_c00497{width:12.659153px;}
._f_c00497{width:15.875023px;}
._8_c00497{width:19.375603px;}
._16_c00497{width:95.585798px;}
._7_c00497{width:99.791811px;}
._d_c00497{width:101.367535px;}
._14_c00497{width:112.431858px;}
._18_c00497{width:122.658530px;}
._15_c00497{width:493.873460px;}
._19_c00497{width:624.543912px;}
._17_c00497{width:645.432195px;}
._a_c00497{width:649.655873px;}
._e_c00497{width:659.974669px;}
._10_c00497{width:679.631674px;}
._13_c00497{width:685.509239px;}
._5_c00497{width:1671.460100px;}
.fc0_c00497{color:rgb(35,31,32);}
.fs1_c00497{font-size:51.094180px;}
.fs2_c00497{font-size:68.126973px;}
.fs0_c00497{font-size:80.898568px;}
.y0_c00497{bottom:0.000000px;}
.y1_c00497{bottom:0.120938px;}
.y6_c00497{bottom:0.556171px;}
.y5_c00497{bottom:2.873233px;}
.y36_c00497{bottom:2.879315px;}
.y35_c00497{bottom:58.431060px;}
.y37_c00497{bottom:61.189438px;}
.y34_c00497{bottom:63.993153px;}
.y33_c00497{bottom:295.008061px;}
.y32_c00497{bottom:321.633350px;}
.y31_c00497{bottom:337.649144px;}
.y30_c00497{bottom:353.483587px;}
.y2f_c00497{bottom:370.392330px;}
.y2e_c00497{bottom:395.043921px;}
.y2d_c00497{bottom:411.056864px;}
.y2c_c00497{bottom:437.683504px;}
.y2b_c00497{bottom:453.517947px;}
.y2a_c00497{bottom:469.530141px;}
.y29_c00497{bottom:485.542334px;}
.y28_c00497{bottom:502.454528px;}
.y27_c00497{bottom:527.103268px;}
.y26_c00497{bottom:553.733357px;}
.y25_c00497{bottom:569.564201px;}
.y24_c00497{bottom:585.579994px;}
.y23_c00497{bottom:601.592188px;}
.y22_c00497{bottom:617.603032px;}
.y21_c00497{bottom:634.336725px;}
.y20_c00497{bottom:658.984115px;}
.y1f_c00497{bottom:685.611504px;}
.y1e_c00497{bottom:701.623698px;}
.y1d_c00497{bottom:717.637392px;}
.y1c_c00497{bottom:734.370335px;}
.y1b_c00497{bottom:759.200425px;}
.y1a_c00497{bottom:775.029919px;}
.y19_c00497{bottom:801.659408px;}
.y18_c00497{bottom:817.673852px;}
.y17_c00497{bottom:833.686045px;}
.y16_c00497{bottom:849.520489px;}
.y15_c00497{bottom:866.432682px;}
.y14_c00497{bottom:891.079322px;}
.y13_c00497{bottom:917.706711px;}
.y12_c00497{bottom:933.720405px;}
.y11_c00497{bottom:949.731249px;}
.y10_c00497{bottom:965.565692px;}
.yf_c00497{bottom:982.477886px;}
.ye_c00497{bottom:1007.129476px;}
.yd_c00497{bottom:1033.756865px;}
.yc_c00497{bottom:1049.769059px;}
.yb_c00497{bottom:1065.601252px;}
.ya_c00497{bottom:1081.615696px;}
.y9_c00497{bottom:1098.527889px;}
.y8_c00497{bottom:1126.232878px;}
.y4_c00497{bottom:1163.494800px;}
.y7_c00497{bottom:1165.811862px;}
.y3_c00497{bottom:1195.755084px;}
.y2_c00497{bottom:1222.921573px;}
.h8_c00497{height:14.392260px;}
.h4_c00497{height:14.394600px;}
.h5_c00497{height:45.831479px;}
.h3_c00497{height:47.364304px;}
.h7_c00497{height:63.153704px;}
.h2_c00497{height:74.992972px;}
.h6_c00497{height:1262.431829px;}
.h1_c00497{height:1262.879062px;}
.h0_c00497{height:1263.000000px;}
.w4_c00497{width:40.482000px;}
.w2_c00497{width:41.380920px;}
.w3_c00497{width:892.099575px;}
.w1_c00497{width:892.414744px;}
.w0_c00497{width:892.500000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:107.268651px;}
.x2_c00497{left:209.245791px;}
.x3_c00497{left:498.557131px;}
.x4_c00497{left:798.532200px;}
.x5_c00497{left:850.694003px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:-12.625939pt;}
.ws2_c00497{word-spacing:0.000000pt;}
.ws1_c00497{word-spacing:18.503723pt;}
._6_c00497{margin-left:-4.701649pt;}
._9_c00497{margin-left:-3.506703pt;}
._1_c00497{margin-left:-2.589459pt;}
._2_c00497{margin-left:-0.978118pt;}
._0_c00497{width:1.254302pt;}
._3_c00497{width:2.276643pt;}
._c_c00497{width:3.294308pt;}
._4_c00497{width:4.424285pt;}
._b_c00497{width:6.476359pt;}
._12_c00497{width:9.826022pt;}
._11_c00497{width:11.252581pt;}
._f_c00497{width:14.111132pt;}
._8_c00497{width:17.222758pt;}
._16_c00497{width:84.965153pt;}
._7_c00497{width:88.703832pt;}
._d_c00497{width:90.104476pt;}
._14_c00497{width:99.939430pt;}
._18_c00497{width:109.029804pt;}
._15_c00497{width:438.998631pt;}
._19_c00497{width:555.150144pt;}
._17_c00497{width:573.717507pt;}
._a_c00497{width:577.471887pt;}
._e_c00497{width:586.644150pt;}
._10_c00497{width:604.117044pt;}
._13_c00497{width:609.341546pt;}
._5_c00497{width:1485.742311pt;}
.fs1_c00497{font-size:45.417048pt;}
.fs2_c00497{font-size:60.557309pt;}
.fs0_c00497{font-size:71.909838pt;}
.y0_c00497{bottom:0.000000pt;}
.y1_c00497{bottom:0.107500pt;}
.y6_c00497{bottom:0.494374pt;}
.y5_c00497{bottom:2.553985pt;}
.y36_c00497{bottom:2.559392pt;}
.y35_c00497{bottom:51.938720pt;}
.y37_c00497{bottom:54.390612pt;}
.y34_c00497{bottom:56.882803pt;}
.y33_c00497{bottom:262.229387pt;}
.y32_c00497{bottom:285.896311pt;}
.y31_c00497{bottom:300.132572pt;}
.y30_c00497{bottom:314.207633pt;}
.y2f_c00497{bottom:329.237627pt;}
.y2e_c00497{bottom:351.150152pt;}
.y2d_c00497{bottom:365.383879pt;}
.y2c_c00497{bottom:389.052003pt;}
.y2b_c00497{bottom:403.127064pt;}
.y2a_c00497{bottom:417.360125pt;}
.y29_c00497{bottom:431.593186pt;}
.y28_c00497{bottom:446.626247pt;}
.y27_c00497{bottom:468.536238pt;}
.y26_c00497{bottom:492.207429pt;}
.y25_c00497{bottom:506.279290pt;}
.y24_c00497{bottom:520.515551pt;}
.y23_c00497{bottom:534.748612pt;}
.y22_c00497{bottom:548.980472pt;}
.y21_c00497{bottom:563.854867pt;}
.y20_c00497{bottom:585.763658pt;}
.y1f_c00497{bottom:609.432448pt;}
.y1e_c00497{bottom:623.665509pt;}
.y1d_c00497{bottom:637.899904pt;}
.y1c_c00497{bottom:652.773631pt;}
.y1b_c00497{bottom:674.844822pt;}
.y1a_c00497{bottom:688.915483pt;}
.y19_c00497{bottom:712.586140pt;}
.y18_c00497{bottom:726.821201pt;}
.y17_c00497{bottom:741.054262pt;}
.y16_c00497{bottom:755.129323pt;}
.y15_c00497{bottom:770.162384pt;}
.y14_c00497{bottom:792.070509pt;}
.y13_c00497{bottom:815.739299pt;}
.y12_c00497{bottom:829.973693pt;}
.y11_c00497{bottom:844.205554pt;}
.y10_c00497{bottom:858.280615pt;}
.yf_c00497{bottom:873.313676pt;}
.ye_c00497{bottom:895.226201pt;}
.yd_c00497{bottom:918.894991pt;}
.yc_c00497{bottom:933.128052pt;}
.yb_c00497{bottom:947.201113pt;}
.ya_c00497{bottom:961.436174pt;}
.y9_c00497{bottom:976.469235pt;}
.y8_c00497{bottom:1001.095892pt;}
.y4_c00497{bottom:1034.217600pt;}
.y7_c00497{bottom:1036.277211pt;}
.y3_c00497{bottom:1062.893408pt;}
.y2_c00497{bottom:1087.041398pt;}
.h8_c00497{height:12.793120pt;}
.h4_c00497{height:12.795200pt;}
.h5_c00497{height:40.739093pt;}
.h3_c00497{height:42.101604pt;}
.h7_c00497{height:56.136626pt;}
.h2_c00497{height:66.660420pt;}
.h6_c00497{height:1122.161626pt;}
.h1_c00497{height:1122.559167pt;}
.h0_c00497{height:1122.666667pt;}
.w4_c00497{width:35.984000pt;}
.w2_c00497{width:36.783040pt;}
.w3_c00497{width:792.977400pt;}
.w1_c00497{width:793.257550pt;}
.w0_c00497{width:793.333333pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:95.349912pt;}
.x2_c00497{left:185.996259pt;}
.x3_c00497{left:443.161894pt;}
.x4_c00497{left:709.806400pt;}
.x5_c00497{left:756.172448pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.107000;font-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_c00498{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00498{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:-14.204182px;}
.ws2_c00498{word-spacing:0.000000px;}
.ws1_c00498{word-spacing:20.816688px;}
._d_c00498{margin-left:-5.273883px;}
._6_c00498{margin-left:-4.009228px;}
._1_c00498{margin-left:-2.913141px;}
._2_c00498{margin-left:-1.100382px;}
._0_c00498{width:1.411089px;}
._3_c00498{width:2.561223px;}
._9_c00498{width:3.625173px;}
._4_c00498{width:4.977321px;}
._c_c00498{width:6.500730px;}
._a_c00498{width:7.982180px;}
._b_c00498{width:12.341060px;}
._f_c00498{width:150.830519px;}
._7_c00498{width:163.834842px;}
._8_c00498{width:888.143948px;}
._10_c00498{width:897.427305px;}
._e_c00498{width:930.659931px;}
._5_c00498{width:1671.460100px;}
.fc0_c00498{color:rgb(35,31,32);}
.fs1_c00498{font-size:51.094180px;}
.fs2_c00498{font-size:68.126973px;}
.fs0_c00498{font-size:80.898568px;}
.y0_c00498{bottom:0.000000px;}
.y1_c00498{bottom:0.120938px;}
.y6_c00498{bottom:0.556171px;}
.y5_c00498{bottom:2.873233px;}
.y2f_c00498{bottom:2.879315px;}
.y2e_c00498{bottom:58.431060px;}
.y30_c00498{bottom:61.189438px;}
.y2d_c00498{bottom:63.995853px;}
.y2c_c00498{bottom:467.374192px;}
.y2b_c00498{bottom:494.002181px;}
.y2a_c00498{bottom:510.014375px;}
.y29_c00498{bottom:526.025968px;}
.y28_c00498{bottom:542.041012px;}
.y27_c00498{bottom:558.771855px;}
.y26_c00498{bottom:583.420595px;}
.y25_c00498{bottom:599.432789px;}
.y24_c00498{bottom:626.060178px;}
.y23_c00498{bottom:642.072372px;}
.y22_c00498{bottom:657.904565px;}
.y21_c00498{bottom:673.919009px;}
.y20_c00498{bottom:689.931203px;}
.y1f_c00498{bottom:705.943396px;}
.y1e_c00498{bottom:721.774990px;}
.y1d_c00498{bottom:737.790033px;}
.y1c_c00498{bottom:754.702227px;}
.y1b_c00498{bottom:779.349617px;}
.y1a_c00498{bottom:795.361810px;}
.y19_c00498{bottom:821.990550px;}
.y18_c00498{bottom:837.822743px;}
.y17_c00498{bottom:853.837187px;}
.y16_c00498{bottom:869.850881px;}
.y15_c00498{bottom:885.861724px;}
.y14_c00498{bottom:901.694668px;}
.y13_c00498{bottom:917.706861px;}
.y12_c00498{bottom:933.720555px;}
.y11_c00498{bottom:950.451398px;}
.y10_c00498{bottom:975.281488px;}
.yf_c00498{bottom:991.114432px;}
.ye_c00498{bottom:1017.743921px;}
.yd_c00498{bottom:1033.756865px;}
.yc_c00498{bottom:1049.769059px;}
.yb_c00498{bottom:1065.601252px;}
.ya_c00498{bottom:1081.615696px;}
.y9_c00498{bottom:1098.527889px;}
.y8_c00498{bottom:1126.232878px;}
.y4_c00498{bottom:1163.494800px;}
.y7_c00498{bottom:1165.811862px;}
.y3_c00498{bottom:1195.755084px;}
.y2_c00498{bottom:1222.921573px;}
.h8_c00498{height:14.392260px;}
.h4_c00498{height:14.394600px;}
.h5_c00498{height:45.831479px;}
.h3_c00498{height:47.364304px;}
.h7_c00498{height:63.153704px;}
.h2_c00498{height:74.992972px;}
.h6_c00498{height:1262.431829px;}
.h1_c00498{height:1262.879062px;}
.h0_c00498{height:1263.000000px;}
.w4_c00498{width:40.482000px;}
.w2_c00498{width:41.380920px;}
.w3_c00498{width:892.099575px;}
.w1_c00498{width:892.414744px;}
.w0_c00498{width:892.500000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:107.268651px;}
.x2_c00498{left:209.245791px;}
.x3_c00498{left:498.557131px;}
.x4_c00498{left:798.532200px;}
.x5_c00498{left:850.694003px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:-12.625939pt;}
.ws2_c00498{word-spacing:0.000000pt;}
.ws1_c00498{word-spacing:18.503723pt;}
._d_c00498{margin-left:-4.687896pt;}
._6_c00498{margin-left:-3.563758pt;}
._1_c00498{margin-left:-2.589459pt;}
._2_c00498{margin-left:-0.978118pt;}
._0_c00498{width:1.254302pt;}
._3_c00498{width:2.276643pt;}
._9_c00498{width:3.222376pt;}
._4_c00498{width:4.424285pt;}
._c_c00498{width:5.778427pt;}
._a_c00498{width:7.095271pt;}
._b_c00498{width:10.969831pt;}
._f_c00498{width:134.071572pt;}
._7_c00498{width:145.630971pt;}
._8_c00498{width:789.461287pt;}
._10_c00498{width:797.713160pt;}
._e_c00498{width:827.253272pt;}
._5_c00498{width:1485.742311pt;}
.fs1_c00498{font-size:45.417048pt;}
.fs2_c00498{font-size:60.557309pt;}
.fs0_c00498{font-size:71.909838pt;}
.y0_c00498{bottom:0.000000pt;}
.y1_c00498{bottom:0.107500pt;}
.y6_c00498{bottom:0.494374pt;}
.y5_c00498{bottom:2.553985pt;}
.y2f_c00498{bottom:2.559392pt;}
.y2e_c00498{bottom:51.938720pt;}
.y30_c00498{bottom:54.390612pt;}
.y2d_c00498{bottom:56.885203pt;}
.y2c_c00498{bottom:415.443726pt;}
.y2b_c00498{bottom:439.113050pt;}
.y2a_c00498{bottom:453.346111pt;}
.y29_c00498{bottom:467.578638pt;}
.y28_c00498{bottom:481.814233pt;}
.y27_c00498{bottom:496.686093pt;}
.y26_c00498{bottom:518.596085pt;}
.y25_c00498{bottom:532.829146pt;}
.y24_c00498{bottom:556.497936pt;}
.y23_c00498{bottom:570.730997pt;}
.y22_c00498{bottom:584.804058pt;}
.y21_c00498{bottom:599.039119pt;}
.y20_c00498{bottom:613.272180pt;}
.y1f_c00498{bottom:627.505241pt;}
.y1e_c00498{bottom:641.577769pt;}
.y1d_c00498{bottom:655.813363pt;}
.y1c_c00498{bottom:670.846424pt;}
.y1b_c00498{bottom:692.755215pt;}
.y1a_c00498{bottom:706.988276pt;}
.y19_c00498{bottom:730.658266pt;}
.y18_c00498{bottom:744.731328pt;}
.y17_c00498{bottom:758.966388pt;}
.y16_c00498{bottom:773.200783pt;}
.y15_c00498{bottom:787.432644pt;}
.y14_c00498{bottom:801.506371pt;}
.y13_c00498{bottom:815.739432pt;}
.y12_c00498{bottom:829.973827pt;}
.y11_c00498{bottom:844.845687pt;}
.y10_c00498{bottom:866.916879pt;}
.yf_c00498{bottom:880.990606pt;}
.ye_c00498{bottom:904.661264pt;}
.yd_c00498{bottom:918.894991pt;}
.yc_c00498{bottom:933.128052pt;}
.yb_c00498{bottom:947.201113pt;}
.ya_c00498{bottom:961.436174pt;}
.y9_c00498{bottom:976.469235pt;}
.y8_c00498{bottom:1001.095892pt;}
.y4_c00498{bottom:1034.217600pt;}
.y7_c00498{bottom:1036.277211pt;}
.y3_c00498{bottom:1062.893408pt;}
.y2_c00498{bottom:1087.041398pt;}
.h8_c00498{height:12.793120pt;}
.h4_c00498{height:12.795200pt;}
.h5_c00498{height:40.739093pt;}
.h3_c00498{height:42.101604pt;}
.h7_c00498{height:56.136626pt;}
.h2_c00498{height:66.660420pt;}
.h6_c00498{height:1122.161626pt;}
.h1_c00498{height:1122.559167pt;}
.h0_c00498{height:1122.666667pt;}
.w4_c00498{width:35.984000pt;}
.w2_c00498{width:36.783040pt;}
.w3_c00498{width:792.977400pt;}
.w1_c00498{width:793.257550pt;}
.w0_c00498{width:793.333333pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:95.349912pt;}
.x2_c00498{left:185.996259pt;}
.x3_c00498{left:443.161894pt;}
.x4_c00498{left:709.806400pt;}
.x5_c00498{left:756.172448pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.107000;font-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_c00499{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:-14.204182px;}
.ws2_c00499{word-spacing:0.000000px;}
.ws1_c00499{word-spacing:20.816688px;}
._6_c00499{margin-left:-5.874655px;}
._8_c00499{margin-left:-4.871474px;}
._1_c00499{margin-left:-2.913141px;}
._2_c00499{margin-left:-1.100382px;}
._0_c00499{width:1.411089px;}
._3_c00499{width:2.561223px;}
._a_c00499{width:3.923919px;}
._4_c00499{width:4.977321px;}
._d_c00499{width:6.439009px;}
._f_c00499{width:7.776291px;}
._10_c00499{width:10.541377px;}
._e_c00499{width:11.924630px;}
._7_c00499{width:182.108669px;}
._9_c00499{width:501.774489px;}
._11_c00499{width:590.255525px;}
._c_c00499{width:689.908004px;}
._b_c00499{width:736.384208px;}
._12_c00499{width:740.425127px;}
._5_c00499{width:1671.460100px;}
.fc0_c00499{color:rgb(35,31,32);}
.fs1_c00499{font-size:51.094180px;}
.fs2_c00499{font-size:68.126973px;}
.fs0_c00499{font-size:80.898568px;}
.y0_c00499{bottom:0.000000px;}
.y1_c00499{bottom:0.120938px;}
.y6_c00499{bottom:0.556171px;}
.y5_c00499{bottom:2.873233px;}
.y21_c00499{bottom:2.879315px;}
.y20_c00499{bottom:58.431060px;}
.y22_c00499{bottom:61.189438px;}
.y1f_c00499{bottom:63.993303px;}
.y1e_c00499{bottom:670.678560px;}
.y1d_c00499{bottom:697.307300px;}
.y1c_c00499{bottom:714.219493px;}
.y1b_c00499{bottom:738.869583px;}
.y1a_c00499{bottom:765.496222px;}
.y19_c00499{bottom:781.509166px;}
.y18_c00499{bottom:797.521360px;}
.y17_c00499{bottom:814.252203px;}
.y16_c00499{bottom:838.900943px;}
.y15_c00499{bottom:865.532532px;}
.y14_c00499{bottom:881.546226px;}
.y13_c00499{bottom:897.557070px;}
.y12_c00499{bottom:914.291513px;}
.y11_c00499{bottom:938.938153px;}
.y10_c00499{bottom:965.565542px;}
.yf_c00499{bottom:981.577736px;}
.ye_c00499{bottom:997.592180px;}
.yd_c00499{bottom:1014.323023px;}
.yc_c00499{bottom:1039.154613px;}
.yb_c00499{bottom:1065.601252px;}
.ya_c00499{bottom:1081.615696px;}
.y9_c00499{bottom:1098.527889px;}
.y8_c00499{bottom:1126.232878px;}
.y4_c00499{bottom:1163.494800px;}
.y7_c00499{bottom:1165.811862px;}
.y3_c00499{bottom:1195.755084px;}
.y2_c00499{bottom:1222.921573px;}
.h8_c00499{height:14.392260px;}
.h4_c00499{height:14.394600px;}
.h5_c00499{height:45.831479px;}
.h3_c00499{height:47.364304px;}
.h7_c00499{height:63.153704px;}
.h2_c00499{height:74.992972px;}
.h6_c00499{height:1262.431829px;}
.h1_c00499{height:1262.879062px;}
.h0_c00499{height:1263.000000px;}
.w4_c00499{width:40.482000px;}
.w2_c00499{width:41.380920px;}
.w3_c00499{width:892.099575px;}
.w1_c00499{width:892.414744px;}
.w0_c00499{width:892.500000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:107.268651px;}
.x2_c00499{left:209.245791px;}
.x3_c00499{left:498.557131px;}
.x4_c00499{left:798.532200px;}
.x5_c00499{left:850.694003px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:-12.625939pt;}
.ws2_c00499{word-spacing:0.000000pt;}
.ws1_c00499{word-spacing:18.503723pt;}
._6_c00499{margin-left:-5.221916pt;}
._8_c00499{margin-left:-4.330199pt;}
._1_c00499{margin-left:-2.589459pt;}
._2_c00499{margin-left:-0.978118pt;}
._0_c00499{width:1.254302pt;}
._3_c00499{width:2.276643pt;}
._a_c00499{width:3.487928pt;}
._4_c00499{width:4.424285pt;}
._d_c00499{width:5.723564pt;}
._f_c00499{width:6.912258pt;}
._10_c00499{width:9.370113pt;}
._e_c00499{width:10.599671pt;}
._7_c00499{width:161.874373pt;}
._9_c00499{width:446.021768pt;}
._11_c00499{width:524.671578pt;}
._c_c00499{width:613.251559pt;}
._b_c00499{width:654.563740pt;}
._12_c00499{width:658.155668pt;}
._5_c00499{width:1485.742311pt;}
.fs1_c00499{font-size:45.417048pt;}
.fs2_c00499{font-size:60.557309pt;}
.fs0_c00499{font-size:71.909838pt;}
.y0_c00499{bottom:0.000000pt;}
.y1_c00499{bottom:0.107500pt;}
.y6_c00499{bottom:0.494374pt;}
.y5_c00499{bottom:2.553985pt;}
.y21_c00499{bottom:2.559392pt;}
.y20_c00499{bottom:51.938720pt;}
.y22_c00499{bottom:54.390612pt;}
.y1f_c00499{bottom:56.882936pt;}
.y1e_c00499{bottom:596.158720pt;}
.y1d_c00499{bottom:619.828711pt;}
.y1c_c00499{bottom:634.861771pt;}
.y1b_c00499{bottom:656.772963pt;}
.y1a_c00499{bottom:680.441087pt;}
.y19_c00499{bottom:694.674814pt;}
.y18_c00499{bottom:708.907875pt;}
.y17_c00499{bottom:723.779736pt;}
.y16_c00499{bottom:745.689727pt;}
.y15_c00499{bottom:769.362251pt;}
.y14_c00499{bottom:783.596645pt;}
.y13_c00499{bottom:797.828506pt;}
.y12_c00499{bottom:812.703567pt;}
.y11_c00499{bottom:834.611692pt;}
.y10_c00499{bottom:858.280482pt;}
.yf_c00499{bottom:872.513543pt;}
.ye_c00499{bottom:886.748604pt;}
.yd_c00499{bottom:901.620465pt;}
.yc_c00499{bottom:923.692989pt;}
.yb_c00499{bottom:947.201113pt;}
.ya_c00499{bottom:961.436174pt;}
.y9_c00499{bottom:976.469235pt;}
.y8_c00499{bottom:1001.095892pt;}
.y4_c00499{bottom:1034.217600pt;}
.y7_c00499{bottom:1036.277211pt;}
.y3_c00499{bottom:1062.893408pt;}
.y2_c00499{bottom:1087.041398pt;}
.h8_c00499{height:12.793120pt;}
.h4_c00499{height:12.795200pt;}
.h5_c00499{height:40.739093pt;}
.h3_c00499{height:42.101604pt;}
.h7_c00499{height:56.136626pt;}
.h2_c00499{height:66.660420pt;}
.h6_c00499{height:1122.161626pt;}
.h1_c00499{height:1122.559167pt;}
.h0_c00499{height:1122.666667pt;}
.w4_c00499{width:35.984000pt;}
.w2_c00499{width:36.783040pt;}
.w3_c00499{width:792.977400pt;}
.w1_c00499{width:793.257550pt;}
.w0_c00499{width:793.333333pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:95.349912pt;}
.x2_c00499{left:185.996259pt;}
.x3_c00499{left:443.161894pt;}
.x4_c00499{left:709.806400pt;}
.x5_c00499{left:756.172448pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341e564acae9458186cd4070.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.137000;font-style:normal;font-weight:normal;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_e98e0ae1e8bc40535211b4d8.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.107000;font-style:normal;font-weight:normal;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_0325cc93d7fccab3216b79e7.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.113000;font-style:normal;font-weight:normal;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_15f79470968d99875de04212.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.136000;font-style:normal;font-weight:normal;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_265c73b30bb3f330a8f3e8a1.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_8b68c295bd8970abea09ba38.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.862000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00001{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v1_c00001{vertical-align:-8.637177px;}
.v2_c00001{vertical-align:-4.317184px;}
.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;}
}
.ws19_c00001{word-spacing:-38.320635px;}
.ws17_c00001{word-spacing:-25.547090px;}
.ws18_c00001{word-spacing:-23.417481px;}
.wse_c00001{word-spacing:-17.755519px;}
.wsc_c00001{word-spacing:-15.388178px;}
.ws0_c00001{word-spacing:-14.204182px;}
.ws7_c00001{word-spacing:-13.020119px;}
.ws5_c00001{word-spacing:-1.549738px;}
.ws3_c00001{word-spacing:-1.549584px;}
.ws2_c00001{word-spacing:0.000000px;}
.ws1a_c00001{word-spacing:17.212225px;}
.ws1_c00001{word-spacing:20.816688px;}
.ws9_c00001{word-spacing:110.896340px;}
.ws13_c00001{word-spacing:110.896851px;}
.wsa_c00001{word-spacing:110.897362px;}
.ws8_c00001{word-spacing:140.444615px;}
.ws12_c00001{word-spacing:140.445126px;}
.wsf_c00001{word-spacing:140.445637px;}
.ws10_c00001{word-spacing:182.966213px;}
.wsb_c00001{word-spacing:182.967235px;}
.wsd_c00001{word-spacing:213.235938px;}
.ws11_c00001{word-spacing:213.236960px;}
.ws4_c00001{word-spacing:218.820532px;}
.ws6_c00001{word-spacing:218.821043px;}
.ws16_c00001{word-spacing:227.149905px;}
.ws15_c00001{word-spacing:234.889140px;}
.ws14_c00001{word-spacing:242.784213px;}
._61_c00001{margin-left:-8.428826px;}
._5a_c00001{margin-left:-6.798240px;}
._6_c00001{margin-left:-5.708447px;}
._7_c00001{margin-left:-4.527394px;}
._1_c00001{margin-left:-2.913141px;}
._2_c00001{margin-left:-1.100382px;}
._0_c00001{width:1.411089px;}
._3_c00001{width:2.561223px;}
._b_c00001{width:3.841901px;}
._4_c00001{width:4.977321px;}
._2e_c00001{width:6.162693px;}
._a_c00001{width:7.175040px;}
._1e_c00001{width:8.415979px;}
._d_c00001{width:10.232239px;}
._10_c00001{width:11.913861px;}
._66_c00001{width:13.737934px;}
._44_c00001{width:15.232816px;}
._11_c00001{width:16.242641px;}
._2f_c00001{width:20.015385px;}
._4d_c00001{width:26.364852px;}
._30_c00001{width:28.664863px;}
._5e_c00001{width:31.871622px;}
._31_c00001{width:33.050683px;}
._49_c00001{width:34.992545px;}
._53_c00001{width:36.141702px;}
._4c_c00001{width:37.653913px;}
._2c_c00001{width:40.016893px;}
._3d_c00001{width:41.309033px;}
._3f_c00001{width:45.924759px;}
._35_c00001{width:49.181988px;}
._79_c00001{width:52.107586px;}
._3b_c00001{width:53.406750px;}
._48_c00001{width:55.516466px;}
._69_c00001{width:57.366448px;}
._3c_c00001{width:61.360956px;}
._34_c00001{width:66.609508px;}
._3a_c00001{width:69.935934px;}
._26_c00001{width:75.093442px;}
._55_c00001{width:78.301478px;}
._2d_c00001{width:80.066214px;}
._2b_c00001{width:83.911462px;}
._1f_c00001{width:86.873369px;}
._2a_c00001{width:91.231631px;}
._36_c00001{width:95.356548px;}
._8_c00001{width:96.882403px;}
._37_c00001{width:100.028578px;}
._18_c00001{width:101.207992px;}
._3e_c00001{width:104.536140px;}
._41_c00001{width:113.418480px;}
._4a_c00001{width:119.405958px;}
._45_c00001{width:122.275969px;}
._39_c00001{width:125.850566px;}
._60_c00001{width:128.704705px;}
._38_c00001{width:130.755542px;}
._4b_c00001{width:132.393088px;}
._43_c00001{width:133.863900px;}
._54_c00001{width:137.805397px;}
._40_c00001{width:142.297135px;}
._73_c00001{width:146.975159px;}
._42_c00001{width:150.817453px;}
._27_c00001{width:155.348973px;}
._5d_c00001{width:158.765078px;}
._57_c00001{width:159.904989px;}
._23_c00001{width:164.578698px;}
._33_c00001{width:168.376252px;}
._32_c00001{width:173.896526px;}
._46_c00001{width:180.842079px;}
._51_c00001{width:190.004278px;}
._29_c00001{width:198.649553px;}
._28_c00001{width:204.168954px;}
._6b_c00001{width:206.788578px;}
._25_c00001{width:228.201405px;}
._24_c00001{width:233.722522px;}
._7a_c00001{width:259.129717px;}
._5f_c00001{width:274.194830px;}
._4f_c00001{width:303.968030px;}
._64_c00001{width:316.856115px;}
._65_c00001{width:333.025405px;}
._50_c00001{width:352.527322px;}
._56_c00001{width:395.048920px;}
._6c_c00001{width:403.329599px;}
._5c_c00001{width:424.597195px;}
._47_c00001{width:431.696036px;}
._59_c00001{width:454.866409px;}
._78_c00001{width:461.988859px;}
._4e_c00001{width:469.730634px;}
._52_c00001{width:495.260049px;}
._67_c00001{width:513.735496px;}
._63_c00001{width:542.704932px;}
._14_c00001{width:566.298342px;}
._62_c00001{width:571.985704px;}
._1c_c00001{width:574.477106px;}
._1d_c00001{width:598.425640px;}
._1a_c00001{width:620.838998px;}
._22_c00001{width:623.939498px;}
._9_c00001{width:625.922317px;}
._15_c00001{width:658.419547px;}
._16_c00001{width:662.874367px;}
._c_c00001{width:687.849357px;}
._17_c00001{width:693.667958px;}
._f_c00001{width:700.965604px;}
._1b_c00001{width:704.993310px;}
._20_c00001{width:736.374142px;}
._5b_c00001{width:772.743379px;}
._19_c00001{width:790.284167px;}
._58_c00001{width:801.841398px;}
._13_c00001{width:813.153120px;}
._12_c00001{width:841.515263px;}
._21_c00001{width:858.868262px;}
._68_c00001{width:874.621275px;}
._e_c00001{width:879.762429px;}
._74_c00001{width:911.110536px;}
._6d_c00001{width:920.283553px;}
._6e_c00001{width:1087.152663px;}
._6f_c00001{width:1150.293863px;}
._71_c00001{width:1162.731593px;}
._72_c00001{width:1165.404293px;}
._77_c00001{width:1185.829933px;}
._75_c00001{width:1210.936235px;}
._76_c00001{width:1216.698674px;}
._70_c00001{width:1243.297525px;}
._5_c00001{width:1671.460100px;}
._6a_c00001{width:1714.872455px;}
.fc0_c00001{color:rgb(35,31,32);}
.fs5_c00001{font-size:46.834961px;}
.fs1_c00001{font-size:51.094180px;}
.fs6_c00001{font-size:55.353158px;}
.fs7_c00001{font-size:63.868774px;}
.fs2_c00001{font-size:68.126973px;}
.fs3_c00001{font-size:72.382771px;}
.fs0_c00001{font-size:80.898568px;}
.fs4_c00001{font-size:107.951957px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:0.120938px;}
.y6_c00001{bottom:0.556171px;}
.y5_c00001{bottom:2.873233px;}
.y36b_c00001{bottom:2.877923px;}
.y3a_c00001{bottom:2.879315px;}
.y38c_c00001{bottom:3.596160px;}
.y467_c00001{bottom:3.596866px;}
.y3bc_c00001{bottom:3.597226px;}
.y413_c00001{bottom:3.597336px;}
.y488_c00001{bottom:3.598256px;}
.y4da_c00001{bottom:3.598392px;}
.y3f9_c00001{bottom:3.598969px;}
.y4bc_c00001{bottom:3.599781px;}
.y498_c00001{bottom:3.599936px;}
.y4b0_c00001{bottom:3.600001px;}
.y39_c00001{bottom:58.431060px;}
.y68c_c00001{bottom:59.511060px;}
.y3b_c00001{bottom:61.189438px;}
.y68d_c00001{bottom:62.269438px;}
.y200_c00001{bottom:63.987303px;}
.y38_c00001{bottom:63.988203px;}
.y244_c00001{bottom:63.988803px;}
.ya0_c00001{bottom:63.989853px;}
.y176_c00001{bottom:63.990003px;}
.yc0_c00001{bottom:63.990303px;}
.y30b_c00001{bottom:63.990753px;}
.y2a6_c00001{bottom:63.991803px;}
.yf1_c00001{bottom:63.991953px;}
.y69_c00001{bottom:63.992253px;}
.y68b_c00001{bottom:63.992553px;}
.y328_c00001{bottom:63.992703px;}
.y147_c00001{bottom:63.993303px;}
.y2b9_c00001{bottom:63.994353px;}
.y22c_c00001{bottom:63.994803px;}
.y36a_c00001{bottom:90.457740px;}
.y369_c00001{bottom:92.779491px;}
.y36c_c00001{bottom:93.214725px;}
.y68a_c00001{bottom:112.930033px;}
.y276_c00001{bottom:113.828083px;}
.y435_c00001{bottom:122.466730px;}
.y1f1_c00001{bottom:123.365979px;}
.y9f_c00001{bottom:124.445979px;}
.y175_c00001{bottom:130.920426px;}
.y3ac_c00001{bottom:131.100426px;}
.y3ab_c00001{bottom:131.999076px;}
.y5e9_c00001{bottom:132.179076px;}
.y4e0_c00001{bottom:132.434309px;}
.y5e8_c00001{bottom:133.079075px;}
.y275_c00001{bottom:134.339825px;}
.y3f2_c00001{bottom:135.239074px;}
.y3f1_c00001{bottom:136.139074px;}
.y4e1_c00001{bottom:136.574308px;}
.y434_c00001{bottom:138.478923px;}
.y1f0_c00001{bottom:143.876221px;}
.y9e_c00001{bottom:144.951571px;}
.y174_c00001{bottom:151.253518px;}
.y274_c00001{bottom:152.332018px;}
.y3aa_c00001{bottom:153.411417px;}
.y5e7_c00001{bottom:154.491267px;}
.y433_c00001{bottom:154.491867px;}
.y5e6_c00001{bottom:155.391266px;}
.y497_c00001{bottom:156.487500px;}
.y367_c00001{bottom:157.551266px;}
.y3f0_c00001{bottom:157.729915px;}
.y496_c00001{bottom:159.531265px;}
.yf0_c00001{bottom:160.608264px;}
.y368_c00001{bottom:161.686764px;}
.y1ef_c00001{bottom:161.867064px;}
.y499_c00001{bottom:162.121998px;}
.y9d_c00001{bottom:162.945263px;}
.y37_c00001{bottom:162.946013px;}
.y4df_c00001{bottom:163.201997px;}
.y68_c00001{bottom:164.026463px;}
.y3a9_c00001{bottom:169.423611px;}
.y173_c00001{bottom:169.424361px;}
.y432_c00001{bottom:170.504060px;}
.y273_c00001{bottom:170.505710px;}
.y3ef_c00001{bottom:173.562859px;}
.y30a_c00001{bottom:174.460759px;}
.y5e5_c00001{bottom:176.800758px;}
.y5e4_c00001{bottom:177.699257px;}
.y1ee_c00001{bottom:180.039257px;}
.y1a3_c00001{bottom:180.937756px;}
.y9c_c00001{bottom:181.117456px;}
.yef_c00001{bottom:181.118506px;}
.y3a8_c00001{bottom:185.438054px;}
.y22b_c00001{bottom:187.237754px;}
.y172_c00001{bottom:187.418054px;}
.y431_c00001{bottom:187.957753px;}
.y366_c00001{bottom:188.317557px;}
.y36_c00001{bottom:189.574753px;}
.y3ee_c00001{bottom:189.576553px;}
.y272_c00001{bottom:192.815801px;}
.y309_c00001{bottom:194.974301px;}
.y1ed_c00001{bottom:198.210099px;}
.y4dd_c00001{bottom:198.466983px;}
.yee_c00001{bottom:199.110699px;}
.y5e3_c00001{bottom:199.111749px;}
.y5e2_c00001{bottom:200.011749px;}
.y1a2_c00001{bottom:201.268148px;}
.y4de_c00001{bottom:201.525482px;}
.y3a7_c00001{bottom:202.170248px;}
.y3a6_c00001{bottom:202.890247px;}
.y9b_c00001{bottom:203.426197px;}
.y35_c00001{bottom:205.585596px;}
.y3ed_c00001{bottom:206.488746px;}
.y689_c00001{bottom:206.667846px;}
.y3ec_c00001{bottom:207.208746px;}
.y22a_c00001{bottom:207.746945px;}
.y271_c00001{bottom:208.830245px;}
.y430_c00001{bottom:209.908745px;}
.y171_c00001{bottom:209.910245px;}
.y308_c00001{bottom:212.965143px;}
.y365_c00001{bottom:215.124243px;}
.y2e2_c00001{bottom:217.104242px;}
.y9a_c00001{bottom:219.440641px;}
.y1a1_c00001{bottom:219.441841px;}
.y1ec_c00001{bottom:220.522290px;}
.y5e1_c00001{bottom:221.599590px;}
.y34_c00001{bottom:221.600640px;}
.yed_c00001{bottom:222.682290px;}
.y3a5_c00001{bottom:224.658239px;}
.y270_c00001{bottom:224.661089px;}
.y229_c00001{bottom:225.739138px;}
.y170_c00001{bottom:225.741088px;}
.y4dc_c00001{bottom:228.151971px;}
.y3eb_c00001{bottom:228.976737px;}
.y307_c00001{bottom:231.137336px;}
.y99_c00001{bottom:235.451484px;}
.y146_c00001{bottom:236.355234px;}
.y1eb_c00001{bottom:236.534484px;}
.y33_c00001{bottom:237.430134px;}
.y2e1_c00001{bottom:237.431634px;}
.y1a0_c00001{bottom:237.432684px;}
.y5e0_c00001{bottom:237.434034px;}
.yec_c00001{bottom:238.513883px;}
.y51e_c00001{bottom:239.592233px;}
.y67_c00001{bottom:240.670582px;}
.y42f_c00001{bottom:240.670732px;}
.y26f_c00001{bottom:240.674782px;}
.y42e_c00001{bottom:241.569232px;}
.y16f_c00001{bottom:241.753282px;}
.y51f_c00001{bottom:242.649232px;}
.y228_c00001{bottom:243.911331px;}
.y364_c00001{bottom:246.069230px;}
.y363_c00001{bottom:246.969230px;}
.y98_c00001{bottom:251.286528px;}
.y2a5_c00001{bottom:252.186228px;}
.y1ea_c00001{bottom:252.366678px;}
.y306_c00001{bottom:253.447427px;}
.y32_c00001{bottom:254.344577px;}
.y5df_c00001{bottom:254.346227px;}
.yeb_c00001{bottom:254.526077px;}
.y5de_c00001{bottom:255.066227px;}
.y2e0_c00001{bottom:255.603826px;}
.y3a4_c00001{bottom:255.606226px;}
.y3a3_c00001{bottom:256.504726px;}
.y145_c00001{bottom:256.683226px;}
.y119_c00001{bottom:257.583226px;}
.y26e_c00001{bottom:257.587726px;}
.y16e_c00001{bottom:257.765475px;}
.y19f_c00001{bottom:259.922775px;}
.y3ea_c00001{bottom:259.923225px;}
.y3e9_c00001{bottom:260.823224px;}
.y42d_c00001{bottom:262.981723px;}
.y42c_c00001{bottom:263.881723px;}
.y4d9_c00001{bottom:265.158000px;}
.y227_c00001{bottom:266.221422px;}
.y97_c00001{bottom:268.199471px;}
.y4d8_c00001{bottom:268.200221px;}
.y362_c00001{bottom:268.375871px;}
.y1e9_c00001{bottom:268.381121px;}
.y51d_c00001{bottom:269.281514px;}
.y305_c00001{bottom:269.459621px;}
.yea_c00001{bottom:270.539770px;}
.y688_c00001{bottom:270.540370px;}
.y4db_c00001{bottom:270.793954px;}
.y2a4_c00001{bottom:272.696919px;}
.y16d_c00001{bottom:273.778419px;}
.y144_c00001{bottom:274.855419px;}
.y19e_c00001{bottom:275.753618px;}
.y5dd_c00001{bottom:276.835718px;}
.y3a2_c00001{bottom:277.915717px;}
.y118_c00001{bottom:277.916467px;}
.y3a1_c00001{bottom:278.815717px;}
.y2df_c00001{bottom:278.992567px;}
.y31_c00001{bottom:278.994667px;}
.y26d_c00001{bottom:282.055716px;}
.y226_c00001{bottom:282.233616px;}
.y3e8_c00001{bottom:282.235566px;}
.y66_c00001{bottom:283.311515px;}
.y361_c00001{bottom:284.388815px;}
.y1e8_c00001{bottom:285.293314px;}
.y42b_c00001{bottom:285.471214px;}
.y304_c00001{bottom:285.472564px;}
.y42a_c00001{bottom:286.369714px;}
.ye9_c00001{bottom:287.451964px;}
.y16c_c00001{bottom:290.510612px;}
.y2a3_c00001{bottom:290.689112px;}
.y19d_c00001{bottom:291.768062px;}
.y96_c00001{bottom:292.668212px;}
.y143_c00001{bottom:292.849861px;}
.y2de_c00001{bottom:295.006261px;}
.y51c_c00001{bottom:296.088210px;}
.y117_c00001{bottom:296.088660px;}
.y4d7_c00001{bottom:296.988060px;}
.y225_c00001{bottom:298.244459px;}
.y3e7_c00001{bottom:298.248509px;}
.y360_c00001{bottom:300.402508px;}
.y3a0_c00001{bottom:300.405208px;}
.y39f_c00001{bottom:301.305208px;}
.y303_c00001{bottom:301.307608px;}
.y26c_c00001{bottom:302.382058px;}
.y30_c00001{bottom:305.621306px;}
.y429_c00001{bottom:307.780705px;}
.y19c_c00001{bottom:307.781755px;}
.y428_c00001{bottom:308.680705px;}
.y2a2_c00001{bottom:308.861305px;}
.y1e7_c00001{bottom:309.760705px;}
.y2dd_c00001{bottom:311.918454px;}
.ye8_c00001{bottom:311.920704px;}
.y95_c00001{bottom:313.178603px;}
.y224_c00001{bottom:314.080253px;}
.y16b_c00001{bottom:314.980703px;}
.y142_c00001{bottom:315.158603px;}
.y3e6_c00001{bottom:315.694702px;}
.y65_c00001{bottom:316.236802px;}
.y35f_c00001{bottom:317.134702px;}
.y35e_c00001{bottom:317.854701px;}
.y302_c00001{bottom:318.218451px;}
.y596_c00001{bottom:319.474701px;}
.y116_c00001{bottom:319.477401px;}
.y26b_c00001{bottom:320.554250px;}
.y618_c00001{bottom:320.554700px;}
.y2f_c00001{bottom:321.635750px;}
.y39e_c00001{bottom:322.714699px;}
.y39d_c00001{bottom:323.614699px;}
.y4d6_c00001{bottom:323.794699px;}
.y19b_c00001{bottom:324.692599px;}
.y51b_c00001{bottom:326.853198px;}
.y51a_c00001{bottom:327.753197px;}
.y427_c00001{bottom:330.090497px;}
.y1e6_c00001{bottom:330.091847px;}
.y5dc_c00001{bottom:330.093197px;}
.y223_c00001{bottom:330.991096px;}
.y5db_c00001{bottom:330.991696px;}
.y2a1_c00001{bottom:331.170046px;}
.y94_c00001{bottom:331.170796px;}
.y466_c00001{bottom:331.191000px;}
.ye7_c00001{bottom:332.248246px;}
.y465_c00001{bottom:334.231695px;}
.y16a_c00001{bottom:335.486594px;}
.y115_c00001{bottom:335.493194px;}
.y2dc_c00001{bottom:336.387194px;}
.y468_c00001{bottom:336.822428px;}
.y3e5_c00001{bottom:337.647194px;}
.y2e_c00001{bottom:338.366593px;}
.y26a_c00001{bottom:338.546443px;}
.y35d_c00001{bottom:339.627193px;}
.y301_c00001{bottom:342.687192px;}
.y64_c00001{bottom:342.864791px;}
.y56d_c00001{bottom:343.947191px;}
.y39c_c00001{bottom:345.027191px;}
.y39b_c00001{bottom:345.927190px;}
.y426_c00001{bottom:346.102690px;}
.y2a0_c00001{bottom:347.182240px;}
.y141_c00001{bottom:347.184490px;}
.y56e_c00001{bottom:348.085689px;}
.y1e5_c00001{bottom:348.264039px;}
.y19a_c00001{bottom:349.162689px;}
.y518_c00001{bottom:349.163814px;}
.y93_c00001{bottom:349.342989px;}
.y595_c00001{bottom:350.244788px;}
.ye6_c00001{bottom:350.420438px;}
.y114_c00001{bottom:351.324038px;}
.y5da_c00001{bottom:352.399838px;}
.y169_c00001{bottom:353.480287px;}
.y4d5_c00001{bottom:354.559687px;}
.y222_c00001{bottom:355.461186px;}
.y2db_c00001{bottom:356.719086px;}
.y63_c00001{bottom:358.876985px;}
.y269_c00001{bottom:361.038034px;}
.y425_c00001{bottom:362.117134px;}
.y464_c00001{bottom:363.019533px;}
.y2d_c00001{bottom:363.194583px;}
.y300_c00001{bottom:363.196233px;}
.y29f_c00001{bottom:363.196683px;}
.y140_c00001{bottom:363.197433px;}
.y519_c00001{bottom:363.198183px;}
.y517_c00001{bottom:364.098183px;}
.y1e4_c00001{bottom:366.256232px;}
.y39a_c00001{bottom:367.333832px;}
.y113_c00001{bottom:367.336232px;}
.y5d9_c00001{bottom:368.412781px;}
.y3e4_c00001{bottom:368.413681px;}
.ye5_c00001{bottom:368.414131px;}
.y3e3_c00001{bottom:369.313681px;}
.y199_c00001{bottom:369.492481px;}
.y35c_c00001{bottom:370.573680px;}
.y35b_c00001{bottom:371.473680px;}
.y92_c00001{bottom:371.650380px;}
.y168_c00001{bottom:371.652480px;}
.y687_c00001{bottom:372.733229px;}
.y56c_c00001{bottom:374.712029px;}
.y62_c00001{bottom:374.891429px;}
.y2da_c00001{bottom:374.892779px;}
.y221_c00001{bottom:375.968428px;}
.y4d4_c00001{bottom:376.869328px;}
.y268_c00001{bottom:376.870228px;}
.y594_c00001{bottom:376.872178px;}
.y424_c00001{bottom:377.949327px;}
.y29e_c00001{bottom:379.028877px;}
.y13f_c00001{bottom:379.031127px;}
.y2ff_c00001{bottom:381.187076px;}
.y399_c00001{bottom:383.346025px;}
.y112_c00001{bottom:384.249925px;}
.y5d8_c00001{bottom:384.426475px;}
.y1e3_c00001{bottom:384.427075px;}
.y516_c00001{bottom:385.506324px;}
.y198_c00001{bottom:387.664674px;}
.y91_c00001{bottom:387.664824px;}
.y686_c00001{bottom:388.746173px;}
.y2c_c00001{bottom:389.643323px;}
.y463_c00001{bottom:389.646173px;}
.y61_c00001{bottom:390.723622px;}
.ye4_c00001{bottom:390.724222px;}
.y3e2_c00001{bottom:390.724522px;}
.y267_c00001{bottom:392.881821px;}
.y495_c00001{bottom:392.882271px;}
.y35a_c00001{bottom:392.884821px;}
.y220_c00001{bottom:393.959271px;}
.y167_c00001{bottom:393.961221px;}
.y423_c00001{bottom:393.961521px;}
.y13e_c00001{bottom:395.043321px;}
.y29d_c00001{bottom:395.941070px;}
.y2d9_c00001{bottom:398.280169px;}
.y398_c00001{bottom:399.358969px;}
.y2fe_c00001{bottom:399.359269px;}
.y5d7_c00001{bottom:401.338668px;}
.y515_c00001{bottom:401.518518px;}
.y56b_c00001{bottom:401.518668px;}
.y5d6_c00001{bottom:402.058668px;}
.y90_c00001{bottom:403.497017px;}
.y2b_c00001{bottom:405.655516px;}
.ye3_c00001{bottom:406.735066px;}
.y60_c00001{bottom:406.735816px;}
.y1e2_c00001{bottom:406.737166px;}
.y3e1_c00001{bottom:406.738216px;}
.y593_c00001{bottom:407.818665px;}
.y111_c00001{bottom:408.718665px;}
.y494_c00001{bottom:408.894465px;}
.y266_c00001{bottom:408.895515px;}
.y359_c00001{bottom:408.897015px;}
.y422_c00001{bottom:409.974465px;}
.y166_c00001{bottom:409.977015px;}
.y197_c00001{bottom:411.053414px;}
.y13d_c00001{bottom:411.056264px;}
.y21f_c00001{bottom:412.131464px;}
.y2d8_c00001{bottom:414.292363px;}
.y327_c00001{bottom:414.295063px;}
.y397_c00001{bottom:416.092662px;}
.y396_c00001{bottom:416.812662px;}
.y514_c00001{bottom:417.352962px;}
.y8f_c00001{bottom:419.510711px;}
.y29c_c00001{bottom:420.411160px;}
.y462_c00001{bottom:420.591160px;}
.y461_c00001{bottom:421.491160px;}
.y2a_c00001{bottom:421.668460px;}
.y2fd_c00001{bottom:421.670860px;}
.ye2_c00001{bottom:422.745909px;}
.y1e1_c00001{bottom:422.750109px;}
.y5f_c00001{bottom:422.750259px;}
.y3e0_c00001{bottom:423.651159px;}
.y5d5_c00001{bottom:423.831159px;}
.y3df_c00001{bottom:424.368159px;}
.y265_c00001{bottom:424.907709px;}
.y358_c00001{bottom:424.911459px;}
.y493_c00001{bottom:425.808158px;}
.y165_c00001{bottom:425.987858px;}
.y492_c00001{bottom:426.528158px;}
.y421_c00001{bottom:426.888158px;}
.y196_c00001{bottom:427.067108px;}
.y13c_c00001{bottom:427.069958px;}
.y420_c00001{bottom:427.608158px;}
.y110_c00001{bottom:429.046357px;}
.y617_c00001{bottom:430.125157px;}
.y592_c00001{bottom:430.125307px;}
.y2d7_c00001{bottom:431.024556px;}
.y616_c00001{bottom:431.025156px;}
.y56a_c00001{bottom:432.285156px;}
.y569_c00001{bottom:433.185155px;}
.y513_c00001{bottom:434.265155px;}
.y21e_c00001{bottom:434.443655px;}
.y512_c00001{bottom:434.985155px;}
.y8e_c00001{bottom:436.421554px;}
.y2fc_c00001{bottom:437.681704px;}
.y29_c00001{bottom:438.580653px;}
.ye1_c00001{bottom:438.761703px;}
.y1e0_c00001{bottom:438.762303px;}
.y5e_c00001{bottom:438.762453px;}
.y395_c00001{bottom:438.765153px;}
.y29b_c00001{bottom:440.743652px;}
.y264_c00001{bottom:441.643502px;}
.y357_c00001{bottom:441.643652px;}
.y164_c00001{bottom:441.820052px;}
.y356_c00001{bottom:442.357652px;}
.y195_c00001{bottom:442.899301px;}
.y13b_c00001{bottom:442.899451px;}
.y460_c00001{bottom:442.899601px;}
.y548_c00001{bottom:444.877651px;}
.y3de_c00001{bottom:446.137650px;}
.y591_c00001{bottom:446.138250px;}
.y10f_c00001{bottom:447.220050px;}
.y652_c00001{bottom:448.117649px;}
.y491_c00001{bottom:448.297649px;}
.y41f_c00001{bottom:449.377649px;}
.y21d_c00001{bottom:450.454498px;}
.y653_c00001{bottom:452.257648px;}
.y615_c00001{bottom:452.616298px;}
.y2fb_c00001{bottom:454.417497px;}
.y1df_c00001{bottom:454.594497px;}
.y5d_c00001{bottom:454.594647px;}
.y5d4_c00001{bottom:454.596147px;}
.y2d6_c00001{bottom:455.496146px;}
.ye0_c00001{bottom:455.496746px;}
.y511_c00001{bottom:456.754646px;}
.y163_c00001{bottom:457.834495px;}
.y45f_c00001{bottom:458.912545px;}
.y194_c00001{bottom:458.913745px;}
.y29a_c00001{bottom:458.914495px;}
.y13a_c00001{bottom:459.815245px;}
.y8d_c00001{bottom:460.893144px;}
.y590_c00001{bottom:462.150444px;}
.y28_c00001{bottom:463.229393px;}
.y355_c00001{bottom:464.310143px;}
.y10e_c00001{bottom:465.392242px;}
.y263_c00001{bottom:466.110142px;}
.y21c_c00001{bottom:466.286692px;}
.y614_c00001{bottom:468.449991px;}
.y394_c00001{bottom:469.530141px;}
.y393_c00001{bottom:470.428640px;}
.y1de_c00001{bottom:470.607440px;}
.y5c_c00001{bottom:470.607590px;}
.y547_c00001{bottom:471.510140px;}
.y5b2_c00001{bottom:471.690140px;}
.y162_c00001{bottom:473.848189px;}
.y685_c00001{bottom:474.745639px;}
.y45e_c00001{bottom:474.924739px;}
.y193_c00001{bottom:474.925939px;}
.y5b3_c00001{bottom:475.827138px;}
.y2d5_c00001{bottom:476.006238px;}
.y3dc_c00001{bottom:476.905878px;}
.y5d3_c00001{bottom:477.085638px;}
.y299_c00001{bottom:477.086688px;}
.y5d2_c00001{bottom:477.985637px;}
.y2fa_c00001{bottom:478.884137px;}
.y490_c00001{bottom:479.064137px;}
.y58f_c00001{bottom:479.604137px;}
.ydf_c00001{bottom:479.964137px;}
.y41e_c00001{bottom:480.142637px;}
.y41d_c00001{bottom:481.042636px;}
.y8c_c00001{bottom:481.223386px;}
.y21b_c00001{bottom:482.298886px;}
.y139_c00001{bottom:484.282635px;}
.y613_c00001{bottom:484.462185px;}
.y262_c00001{bottom:486.618734px;}
.y1dd_c00001{bottom:487.521134px;}
.y5b_c00001{bottom:487.521284px;}
.y10d_c00001{bottom:487.700983px;}
.y510_c00001{bottom:487.701133px;}
.y568_c00001{bottom:488.241133px;}
.y50f_c00001{bottom:488.601133px;}
.y27_c00001{bottom:489.857383px;}
.y161_c00001{bottom:490.760382px;}
.y45d_c00001{bottom:490.936932px;}
.y3dd_c00001{bottom:490.939632px;}
.y326_c00001{bottom:490.942632px;}
.y192_c00001{bottom:491.658132px;}
.y392_c00001{bottom:491.836782px;}
.y3db_c00001{bottom:491.838132px;}
.y2d4_c00001{bottom:493.997081px;}
.y354_c00001{bottom:495.076631px;}
.y298_c00001{bottom:495.077531px;}
.y1bf_c00001{bottom:495.976630px;}
.y21a_c00001{bottom:498.314679px;}
.y8b_c00001{bottom:499.395579px;}
.y5d1_c00001{bottom:499.396629px;}
.y5d0_c00001{bottom:500.296628px;}
.yde_c00001{bottom:500.474828px;}
.y612_c00001{bottom:501.375128px;}
.y48f_c00001{bottom:501.552278px;}
.y58e_c00001{bottom:501.555128px;}
.y611_c00001{bottom:502.095128px;}
.y5b1_c00001{bottom:502.456478px;}
.y41c_c00001{bottom:502.632428px;}
.y684_c00001{bottom:503.713627px;}
.y10c_c00001{bottom:503.714677px;}
.y261_c00001{bottom:504.609577px;}
.y138_c00001{bottom:504.615127px;}
.y26_c00001{bottom:505.690326px;}
.y1dc_c00001{bottom:506.772126px;}
.y45c_c00001{bottom:507.670626px;}
.y391_c00001{bottom:507.848975px;}
.y45b_c00001{bottom:508.390625px;}
.y329_c00001{bottom:509.184359px;}
.y546_c00001{bottom:509.829125px;}
.y567_c00001{bottom:510.009125px;}
.y50e_c00001{bottom:510.009575px;}
.y191_c00001{bottom:511.089124px;}
.y5a_c00001{bottom:512.168674px;}
.y3da_c00001{bottom:513.249123px;}
.y3d9_c00001{bottom:514.149123px;}
.y219_c00001{bottom:515.225522px;}
.y160_c00001{bottom:515.229122px;}
.y1be_c00001{bottom:516.487472px;}
.y651_c00001{bottom:517.209122px;}
.y48e_c00001{bottom:517.385222px;}
.y8a_c00001{bottom:517.386422px;}
.y2d3_c00001{bottom:517.387172px;}
.y297_c00001{bottom:517.387622px;}
.y353_c00001{bottom:517.389272px;}
.y41b_c00001{bottom:518.465371px;}
.y10b_c00001{bottom:520.445520px;}
.y5cf_c00001{bottom:521.706120px;}
.y25_c00001{bottom:522.602520px;}
.y5ce_c00001{bottom:522.604620px;}
.y260_c00001{bottom:522.781769px;}
.y137_c00001{bottom:522.784619px;}
.y390_c00001{bottom:523.861919px;}
.ydd_c00001{bottom:523.863569px;}
.y610_c00001{bottom:523.864619px;}
.y50d_c00001{bottom:526.021768px;}
.y683_c00001{bottom:526.923118px;}
.y59_c00001{bottom:528.182367px;}
.y5b0_c00001{bottom:529.263117px;}
.y45a_c00001{bottom:530.163117px;}
.y682_c00001{bottom:531.063116px;}
.y58c_c00001{bottom:532.143356px;}
.y48d_c00001{bottom:533.397415px;}
.y2d2_c00001{bottom:533.400865px;}
.y296_c00001{bottom:533.401315px;}
.y325_c00001{bottom:533.401465px;}
.y1bd_c00001{bottom:534.476965px;}
.y41a_c00001{bottom:534.479065px;}
.y6a_c00001{bottom:535.095348px;}
.y1db_c00001{bottom:535.378614px;}
.y15f_c00001{bottom:535.554264px;}
.y3d8_c00001{bottom:535.557114px;}
.y89_c00001{bottom:535.560114px;}
.y3d7_c00001{bottom:536.455614px;}
.y545_c00001{bottom:536.461464px;}
.y190_c00001{bottom:539.695613px;}
.ydc_c00001{bottom:539.875763px;}
.y38f_c00001{bottom:540.775612px;}
.y566_c00001{bottom:540.955612px;}
.y136_c00001{bottom:540.958312px;}
.y38e_c00001{bottom:541.495612px;}
.y565_c00001{bottom:541.855612px;}
.y50c_c00001{bottom:542.036212px;}
.y4bb_c00001{bottom:542.952000px;}
.y650_c00001{bottom:543.834711px;}
.y5cd_c00001{bottom:544.015611px;}
.y10a_c00001{bottom:544.915611px;}
.y25f_c00001{bottom:545.093361px;}
.y4ba_c00001{bottom:545.995610px;}
.y58d_c00001{bottom:546.175610px;}
.y58b_c00001{bottom:547.075610px;}
.y24_c00001{bottom:547.254110px;}
.y4bd_c00001{bottom:548.590843px;}
.y631_c00001{bottom:549.235609px;}
.y295_c00001{bottom:549.410809px;}
.y2d1_c00001{bottom:549.411709px;}
.y352_c00001{bottom:549.415909px;}
.y48c_c00001{bottom:550.311108px;}
.y419_c00001{bottom:550.491258px;}
.y48b_c00001{bottom:551.031108px;}
.y1bc_c00001{bottom:552.649158px;}
.y681_c00001{bottom:552.651108px;}
.y15e_c00001{bottom:553.726457px;}
.y680_c00001{bottom:553.731107px;}
.y58_c00001{bottom:554.807657px;}
.y60f_c00001{bottom:554.808107px;}
.ydb_c00001{bottom:555.707956px;}
.y60e_c00001{bottom:555.708106px;}
.y1da_c00001{bottom:555.708856px;}
.y3d6_c00001{bottom:557.868105px;}
.y50b_c00001{bottom:557.868405px;}
.y88_c00001{bottom:557.868855px;}
.y3d5_c00001{bottom:558.768105px;}
.y218_c00001{bottom:560.027355px;}
.y38d_c00001{bottom:560.028105px;}
.y18f_c00001{bottom:560.028855px;}
.y5af_c00001{bottom:560.928104px;}
.y25e_c00001{bottom:561.107804px;}
.y459_c00001{bottom:561.108104px;}
.y458_c00001{bottom:562.008104px;}
.y564_c00001{bottom:563.265253px;}
.y135_c00001{bottom:563.267053px;}
.y544_c00001{bottom:563.268103px;}
.y109_c00001{bottom:565.423302px;}
.y2d0_c00001{bottom:565.426152px;}
.y294_c00001{bottom:565.427952px;}
.y324_c00001{bottom:566.328102px;}
.y5cc_c00001{bottom:566.503152px;}
.y418_c00001{bottom:566.504202px;}
.y351_c00001{bottom:567.048102px;}
.y589_c00001{bottom:568.483226px;}
.y48a_c00001{bottom:569.563601px;}
.y64f_c00001{bottom:570.642100px;}
.y57_c00001{bottom:571.543450px;}
.y15d_c00001{bottom:571.720900px;}
.yda_c00001{bottom:571.722400px;}
.y23_c00001{bottom:573.880749px;}
.y67f_c00001{bottom:573.880853px;}
.y87_c00001{bottom:573.881049px;}
.y1d9_c00001{bottom:573.882549px;}
.y4b9_c00001{bottom:574.779849px;}
.y50a_c00001{bottom:574.780599px;}
.y1bb_c00001{bottom:574.960749px;}
.y509_c00001{bottom:575.500598px;}
.y630_c00001{bottom:575.857702px;}
.y25d_c00001{bottom:577.118648px;}
.y60d_c00001{bottom:577.120598px;}
.y60c_c00001{bottom:578.020597px;}
.y217_c00001{bottom:578.199547px;}
.y18e_c00001{bottom:578.201047px;}
.y563_c00001{bottom:579.277447px;}
.y134_c00001{bottom:579.279247px;}
.y3d4_c00001{bottom:580.358946px;}
.y293_c00001{bottom:581.258796px;}
.y2cf_c00001{bottom:582.158346px;}
.y417_c00001{bottom:582.337896px;}
.y58a_c00001{bottom:582.339096px;}
.y588_c00001{bottom:583.237595px;}
.y108_c00001{bottom:583.415495px;}
.y457_c00001{bottom:583.417595px;}
.y5cb_c00001{bottom:583.957595px;}
.y456_c00001{bottom:584.317595px;}
.y323_c00001{bottom:586.655494px;}
.ybf_c00001{bottom:588.634593px;}
.y350_c00001{bottom:588.814593px;}
.y22_c00001{bottom:589.895193px;}
.y86_c00001{bottom:590.793992px;}
.y1ba_c00001{bottom:590.972942px;}
.y67e_c00001{bottom:592.054592px;}
.y1d8_c00001{bottom:592.054742px;}
.y25c_c00001{bottom:593.850841px;}
.y15c_c00001{bottom:594.029641px;}
.y543_c00001{bottom:594.034591px;}
.y542_c00001{bottom:594.933091px;}
.y562_c00001{bottom:595.110391px;}
.y133_c00001{bottom:595.113691px;}
.y56_c00001{bottom:596.190840px;}
.y216_c00001{bottom:596.191740px;}
.y3d3_c00001{bottom:596.191890px;}
.y18d_c00001{bottom:596.193240px;}
.y508_c00001{bottom:597.270090px;}
.y292_c00001{bottom:597.270990px;}
.y38b_c00001{bottom:597.288600px;}
.y416_c00001{bottom:599.250089px;}
.y60b_c00001{bottom:599.428589px;}
.y415_c00001{bottom:599.968589px;}
.y38a_c00001{bottom:600.328588px;}
.y107_c00001{bottom:601.587688px;}
.y4b8_c00001{bottom:601.588588px;}
.y243_c00001{bottom:602.488588px;}
.y62f_c00001{bottom:602.667088px;}
.y322_c00001{bottom:604.826337px;}
.y587_c00001{bottom:604.827087px;}
.y5ae_c00001{bottom:605.727086px;}
.y455_c00001{bottom:605.907086px;}
.y21_c00001{bottom:606.624686px;}
.y2ce_c00001{bottom:606.627086px;}
.y1b9_c00001{bottom:606.805886px;}
.y454_c00001{bottom:606.807086px;}
.y487_c00001{bottom:606.825000px;}
.yd9_c00001{bottom:607.887085px;}
.ybe_c00001{bottom:608.964535px;}
.y486_c00001{bottom:609.867085px;}
.y15b_c00001{bottom:610.044685px;}
.y132_c00001{bottom:611.125884px;}
.y489_c00001{bottom:612.024084px;}
.y561_c00001{bottom:612.747083px;}
.y3d2_c00001{bottom:613.105583px;}
.y291_c00001{bottom:613.283933px;}
.y3d1_c00001{bottom:613.824083px;}
.y85_c00001{bottom:615.264082px;}
.y1d7_c00001{bottom:615.443482px;}
.y541_c00001{bottom:616.522582px;}
.y540_c00001{bottom:617.422582px;}
.y67d_c00001{bottom:618.319581px;}
.y25b_c00001{bottom:618.499581px;}
.y18c_c00001{bottom:618.681981px;}
.y1ff_c00001{bottom:619.399581px;}
.y215_c00001{bottom:619.400481px;}
.y34f_c00001{bottom:619.579581px;}
.y106_c00001{bottom:619.579881px;}
.y34e_c00001{bottom:620.479580px;}
.y586_c00001{bottom:620.661530px;}
.y60a_c00001{bottom:621.739580px;}
.y609_c00001{bottom:622.639580px;}
.y55_c00001{bottom:622.817479px;}
.y242_c00001{bottom:622.817629px;}
.y321_c00001{bottom:622.820029px;}
.y1b8_c00001{bottom:623.719579px;}
.y64e_c00001{bottom:623.899579px;}
.y64d_c00001{bottom:624.799579px;}
.y15a_c00001{bottom:626.055528px;}
.ybd_c00001{bottom:627.134028px;}
.y2cd_c00001{bottom:627.135228px;}
.y131_c00001{bottom:627.138078px;}
.y5ad_c00001{bottom:627.139578px;}
.y506_c00001{bottom:628.037702px;}
.y5ac_c00001{bottom:628.039577px;}
.y453_c00001{bottom:628.218077px;}
.y389_c00001{bottom:629.117327px;}
.y452_c00001{bottom:629.118077px;}
.y290_c00001{bottom:629.297627px;}
.y20_c00001{bottom:631.454776px;}
.y1d6_c00001{bottom:631.456426px;}
.y4b7_c00001{bottom:632.356576px;}
.y4b6_c00001{bottom:633.253575px;}
.y62e_c00001{bottom:633.433575px;}
.y62d_c00001{bottom:634.333575px;}
.y560_c00001{bottom:634.513575px;}
.y18b_c00001{bottom:634.515675px;}
.y2f9_c00001{bottom:635.593124px;}
.y3d0_c00001{bottom:635.593574px;}
.y84_c00001{bottom:635.594324px;}
.yd8_c00001{bottom:636.492074px;}
.y5ca_c00001{bottom:636.672074px;}
.y585_c00001{bottom:636.673724px;}
.y5c9_c00001{bottom:637.572074px;}
.y485_c00001{bottom:638.649823px;}
.y53f_c00001{bottom:638.832073px;}
.y25a_c00001{bottom:638.832673px;}
.y54_c00001{bottom:639.731173px;}
.y53e_c00001{bottom:639.732073px;}
.y1fe_c00001{bottom:639.909673px;}
.y241_c00001{bottom:640.989822px;}
.y67b_c00001{bottom:641.706972px;}
.y105_c00001{bottom:642.069972px;}
.y507_c00001{bottom:642.072072px;}
.y34d_c00001{bottom:642.072222px;}
.y67c_c00001{bottom:642.792071px;}
.y1b7_c00001{bottom:642.972071px;}
.y130_c00001{bottom:643.152521px;}
.y214_c00001{bottom:644.050571px;}
.y608_c00001{bottom:644.230571px;}
.ybc_c00001{bottom:645.127721px;}
.y320_c00001{bottom:645.128771px;}
.y2cc_c00001{bottom:645.129671px;}
.y607_c00001{bottom:645.130571px;}
.y28f_c00001{bottom:646.029820px;}
.y64c_c00001{bottom:646.207870px;}
.y1d5_c00001{bottom:647.290120px;}
.y5ab_c00001{bottom:649.444869px;}
.y451_c00001{bottom:650.526068px;}
.y18a_c00001{bottom:650.528618px;}
.y450_c00001{bottom:651.426068px;}
.y584_c00001{bottom:652.685918px;}
.y2f8_c00001{bottom:653.765317px;}
.y83_c00001{bottom:653.768017px;}
.y4b5_c00001{bottom:654.845917px;}
.y412_c00001{bottom:655.763400px;}
.y388_c00001{bottom:655.926066px;}
.y62c_c00001{bottom:656.824566px;}
.yd7_c00001{bottom:656.999466px;}
.y259_c00001{bottom:657.004866px;}
.y104_c00001{bottom:657.900815px;}
.y1f_c00001{bottom:657.901415px;}
.y1fd_c00001{bottom:657.901865px;}
.y34c_c00001{bottom:657.904415px;}
.y411_c00001{bottom:658.804565px;}
.y240_c00001{bottom:658.982015px;}
.y5c8_c00001{bottom:658.984565px;}
.y12f_c00001{bottom:658.984715px;}
.y5c7_c00001{bottom:659.884565px;}
.y678_c00001{bottom:660.780964px;}
.y414_c00001{bottom:660.960064px;}
.y53d_c00001{bottom:661.141864px;}
.y31f_c00001{bottom:661.143214px;}
.y679_c00001{bottom:661.858564px;}
.y64b_c00001{bottom:662.220814px;}
.y67a_c00001{bottom:663.298563px;}
.ybb_c00001{bottom:663.299913px;}
.y1d4_c00001{bottom:664.200963px;}
.y213_c00001{bottom:664.379463px;}
.y53_c00001{bottom:664.379913px;}
.y505_c00001{bottom:665.278562px;}
.y484_c00001{bottom:665.458562px;}
.y504_c00001{bottom:665.998562px;}
.y55f_c00001{bottom:666.358562px;}
.y3cf_c00001{bottom:666.538562px;}
.y606_c00001{bottom:666.540362px;}
.y5aa_c00001{bottom:667.078562px;}
.y3ce_c00001{bottom:667.438562px;}
.y189_c00001{bottom:667.442312px;}
.y2cb_c00001{bottom:668.696311px;}
.y583_c00001{bottom:668.698111px;}
.y28e_c00001{bottom:670.498560px;}
.y4b4_c00001{bottom:670.678110px;}
.y1b6_c00001{bottom:671.578560px;}
.y82_c00001{bottom:671.758860px;}
.y44f_c00001{bottom:672.839009px;}
.y1e_c00001{bottom:673.915859px;}
.y103_c00001{bottom:673.916609px;}
.y34b_c00001{bottom:673.918859px;}
.yd6_c00001{bottom:674.993159px;}
.y12e_c00001{bottom:674.997659px;}
.y258_c00001{bottom:674.997809px;}
.y2b8_c00001{bottom:675.896608px;}
.y1fc_c00001{bottom:676.075558px;}
.y2f7_c00001{bottom:677.155408px;}
.y53c_c00001{bottom:677.155558px;}
.y4ee_c00001{bottom:678.055557px;}
.y62b_c00001{bottom:678.234057px;}
.y64a_c00001{bottom:678.234507px;}
.y62a_c00001{bottom:679.135557px;}
.y675_c00001{bottom:680.034957px;}
.y676_c00001{bottom:681.114056px;}
.y23f_c00001{bottom:681.470756px;}
.y5c6_c00001{bottom:681.475556px;}
.y4ef_c00001{bottom:682.191056px;}
.y5c5_c00001{bottom:682.371056px;}
.y677_c00001{bottom:682.551056px;}
.y212_c00001{bottom:682.551656px;}
.y605_c00001{bottom:683.272555px;}
.y604_c00001{bottom:683.991055px;}
.y2ca_c00001{bottom:684.532105px;}
.y582_c00001{bottom:685.432554px;}
.yba_c00001{bottom:685.610754px;}
.y581_c00001{bottom:686.152554px;}
.y387_c00001{bottom:686.691054px;}
.y410_c00001{bottom:687.590154px;}
.y386_c00001{bottom:687.592554px;}
.y503_c00001{bottom:687.771053px;}
.y55e_c00001{bottom:687.771203px;}
.y4b3_c00001{bottom:688.311053px;}
.y1d3_c00001{bottom:688.671053px;}
.y3cd_c00001{bottom:688.851053px;}
.y44e_c00001{bottom:688.851203px;}
.y3cc_c00001{bottom:689.751053px;}
.y1d_c00001{bottom:689.928053px;}
.y81_c00001{bottom:689.931053px;}
.y102_c00001{bottom:690.827452px;}
.y34a_c00001{bottom:690.831052px;}
.y52_c00001{bottom:691.008652px;}
.y28d_c00001{bottom:691.009552px;}
.y12d_c00001{bottom:691.009852px;}
.y349_c00001{bottom:691.551052px;}
.y188_c00001{bottom:691.911052px;}
.y1b5_c00001{bottom:692.087752px;}
.yd5_c00001{bottom:693.165351px;}
.y31e_c00001{bottom:693.166251px;}
.y2f6_c00001{bottom:693.167601px;}
.y53b_c00001{bottom:693.167751px;}
.y649_c00001{bottom:694.246701px;}
.y483_c00001{bottom:696.225050px;}
.y482_c00001{bottom:697.125050px;}
.y23e_c00001{bottom:697.306550px;}
.y257_c00001{bottom:697.307900px;}
.y1fb_c00001{bottom:698.387749px;}
.y673_c00001{bottom:700.365048px;}
.y211_c00001{bottom:700.543848px;}
.y629_c00001{bottom:700.545198px;}
.y2c9_c00001{bottom:701.444298px;}
.y674_c00001{bottom:701.445048px;}
.yb9_c00001{bottom:701.622948px;}
.y2b7_c00001{bottom:701.623998px;}
.y55d_c00001{bottom:703.784147px;}
.y5c4_c00001{bottom:703.785047px;}
.y5c3_c00001{bottom:704.685047px;}
.y44d_c00001{bottom:704.864147px;}
.y1c_c00001{bottom:705.941746px;}
.y603_c00001{bottom:705.945046px;}
.y4b2_c00001{bottom:706.843546px;}
.y51_c00001{bottom:707.022346px;}
.y12c_c00001{bottom:707.923545px;}
.y580_c00001{bottom:708.103545px;}
.y4ed_c00001{bottom:708.822045px;}
.y1d2_c00001{bottom:708.998445px;}
.y385_c00001{bottom:708.999645px;}
.y53a_c00001{bottom:709.000695px;}
.y28c_c00001{bottom:709.001745px;}
.y31d_c00001{bottom:709.002045px;}
.y2f5_c00001{bottom:709.900545px;}
.y1b4_c00001{bottom:710.077845px;}
.y648_c00001{bottom:710.079645px;}
.y3cb_c00001{bottom:711.157394px;}
.y187_c00001{bottom:712.238294px;}
.y80_c00001{bottom:712.239794px;}
.y23d_c00001{bottom:713.317393px;}
.y348_c00001{bottom:713.317543px;}
.y256_c00001{bottom:713.320093px;}
.y40f_c00001{bottom:714.397543px;}
.y1fa_c00001{bottom:714.398593px;}
.y101_c00001{bottom:715.297542px;}
.yd4_c00001{bottom:715.476192px;}
.y628_c00001{bottom:716.558142px;}
.yb8_c00001{bottom:717.635142px;}
.y2b6_c00001{bottom:718.536191px;}
.y4d3_c00001{bottom:718.715891px;}
.y481_c00001{bottom:718.717541px;}
.y480_c00001{bottom:719.617541px;}
.y55c_c00001{bottom:719.796341px;}
.y5a9_c00001{bottom:719.797541px;}
.y5a8_c00001{bottom:720.697540px;}
.y44c_c00001{bottom:720.876340px;}
.y1b_c00001{bottom:722.672590px;}
.y210_c00001{bottom:722.853939px;}
.y50_c00001{bottom:723.754539px;}
.y539_c00001{bottom:725.012889px;}
.y384_c00001{bottom:725.013339px;}
.y31c_c00001{bottom:725.014239px;}
.y2c8_c00001{bottom:725.913038px;}
.y5c2_c00001{bottom:726.093038px;}
.y647_c00001{bottom:726.093338px;}
.y5c1_c00001{bottom:726.993038px;}
.y3ca_c00001{bottom:727.171838px;}
.y1d1_c00001{bottom:727.172138px;}
.y28b_c00001{bottom:727.172588px;}
.y12b_c00001{bottom:727.173038px;}
.y1b3_c00001{bottom:728.250037px;}
.y2f4_c00001{bottom:728.253037px;}
.y7f_c00001{bottom:728.255587px;}
.y23c_c00001{bottom:729.329587px;}
.y255_c00001{bottom:729.332287px;}
.y1f9_c00001{bottom:730.409436px;}
.y186_c00001{bottom:730.411986px;}
.yd3_c00001{bottom:731.488386px;}
.y627_c00001{bottom:732.570336px;}
.yb7_c00001{bottom:733.649585px;}
.y4d2_c00001{bottom:734.550335px;}
.y159_c00001{bottom:735.625834px;}
.y100_c00001{bottom:735.627484px;}
.y4ec_c00001{bottom:735.630034px;}
.y55b_c00001{bottom:736.530034px;}
.y602_c00001{bottom:736.710034px;}
.y55a_c00001{bottom:737.250034px;}
.y44b_c00001{bottom:737.610034px;}
.y44a_c00001{bottom:738.327033px;}
.y672_c00001{bottom:738.687033px;}
.y20f_c00001{bottom:738.866883px;}
.y57f_c00001{bottom:738.867033px;}
.y57e_c00001{bottom:739.767033px;}
.y501_c00001{bottom:740.846657px;}
.y538_c00001{bottom:741.025082px;}
.y47f_c00001{bottom:741.025532px;}
.y31b_c00001{bottom:741.026432px;}
.y4f_c00001{bottom:741.925532px;}
.y5a7_c00001{bottom:742.103882px;}
.y383_c00001{bottom:742.645532px;}
.y646_c00001{bottom:743.005531px;}
.y2b5_c00001{bottom:743.006281px;}
.y645_c00001{bottom:743.725531px;}
.y3c9_c00001{bottom:744.084031px;}
.y4af_c00001{bottom:744.100200px;}
.y347_c00001{bottom:744.264031px;}
.y3c8_c00001{bottom:744.804031px;}
.y346_c00001{bottom:745.164031px;}
.y7e_c00001{bottom:745.167781px;}
.y23b_c00001{bottom:745.342530px;}
.y40e_c00001{bottom:745.344030px;}
.y28a_c00001{bottom:745.344780px;}
.y254_c00001{bottom:745.345230px;}
.y40d_c00001{bottom:746.244030px;}
.y2c7_c00001{bottom:746.422680px;}
.y1f8_c00001{bottom:746.423130px;}
.y1b2_c00001{bottom:746.424480px;}
.y4ae_c00001{bottom:747.144030px;}
.y1a_c00001{bottom:747.322680px;}
.yd2_c00001{bottom:747.323430px;}
.y185_c00001{bottom:748.404179px;}
.y5c0_c00001{bottom:748.404329px;}
.y4b1_c00001{bottom:749.304029px;}
.y626_c00001{bottom:750.022529px;}
.yb6_c00001{bottom:750.381778px;}
.y1d0_c00001{bottom:750.560878px;}
.y4d1_c00001{bottom:751.462528px;}
.y4d0_c00001{bottom:752.182528px;}
.y158_c00001{bottom:753.798027px;}
.yff_c00001{bottom:753.798327px;}
.y502_c00001{bottom:754.881027px;}
.y20e_c00001{bottom:754.881927px;}
.y12a_c00001{bottom:755.781026px;}
.y31a_c00001{bottom:757.039376px;}
.y2f3_c00001{bottom:757.939525px;}
.y5a6_c00001{bottom:758.118325px;}
.y537_c00001{bottom:758.658025px;}
.y671_c00001{bottom:759.018025px;}
.y559_c00001{bottom:759.196525px;}
.y449_c00001{bottom:760.096525px;}
.y57d_c00001{bottom:761.176524px;}
.y23a_c00001{bottom:761.177574px;}
.y57c_c00001{bottom:762.076524px;}
.y253_c00001{bottom:762.078924px;}
.y1f7_c00001{bottom:762.256074px;}
.y47e_c00001{bottom:763.335623px;}
.yd1_c00001{bottom:764.234273px;}
.y382_c00001{bottom:764.416523px;}
.y2c6_c00001{bottom:764.417123px;}
.y5bf_c00001{bottom:765.316522px;}
.y644_c00001{bottom:765.496522px;}
.y5be_c00001{bottom:766.036522px;}
.y1cf_c00001{bottom:766.574572px;}
.y345_c00001{bottom:766.575172px;}
.y3c7_c00001{bottom:766.576522px;}
.y4eb_c00001{bottom:767.476522px;}
.y289_c00001{bottom:767.654872px;}
.y40c_c00001{bottom:767.656522px;}
.y40b_c00001{bottom:768.556521px;}
.y1b1_c00001{bottom:768.731871px;}
.y2b4_c00001{bottom:768.735021px;}
.y7d_c00001{bottom:769.636521px;}
.y184_c00001{bottom:770.892920px;}
.y20d_c00001{bottom:771.791420px;}
.y157_c00001{bottom:771.968870px;}
.y4e_c00001{bottom:771.969320px;}
.yfe_c00001{bottom:771.970520px;}
.y625_c00001{bottom:771.972020px;}
.y319_c00001{bottom:772.873069px;}
.y19_c00001{bottom:773.950069px;}
.y4cf_c00001{bottom:773.950519px;}
.yb5_c00001{bottom:774.850519px;}
.y5a5_c00001{bottom:775.570518px;}
.y66e_c00001{bottom:775.749918px;}
.y4ad_c00001{bottom:775.928418px;}
.y129_c00001{bottom:776.109468px;}
.y66f_c00001{bottom:776.829018px;}
.y239_c00001{bottom:777.187068px;}
.y500_c00001{bottom:777.188868px;}
.y670_c00001{bottom:778.269017px;}
.y2f2_c00001{bottom:778.269767px;}
.y1f6_c00001{bottom:779.169767px;}
.y47d_c00001{bottom:779.349317px;}
.y536_c00001{bottom:780.429016px;}
.y601_c00001{bottom:781.509016px;}
.y600_c00001{bottom:782.409016px;}
.y1ce_c00001{bottom:782.585416px;}
.y344_c00001{bottom:782.587366px;}
.y288_c00001{bottom:783.665715px;}
.y57b_c00001{bottom:783.669015px;}
.y57a_c00001{bottom:784.569015px;}
.y1b0_c00001{bottom:784.745565px;}
.y2b3_c00001{bottom:784.748715px;}
.y252_c00001{bottom:786.549014px;}
.y183_c00001{bottom:786.728714px;}
.y5bd_c00001{bottom:787.803013px;}
.y2c5_c00001{bottom:787.805863px;}
.yd0_c00001{bottom:788.703013px;}
.y4ea_c00001{bottom:788.884213px;}
.y318_c00001{bottom:789.783913px;}
.y558_c00001{bottom:789.963013px;}
.y40a_c00001{bottom:789.963463px;}
.y18_c00001{bottom:789.963763px;}
.y7c_c00001{bottom:789.965413px;}
.y557_c00001{bottom:790.863012px;}
.y448_c00001{bottom:791.043012px;}
.y447_c00001{bottom:791.941512px;}
.y4ff_c00001{bottom:793.201811px;}
.y238_c00001{bottom:793.202861px;}
.y156_c00001{bottom:794.277611px;}
.yfd_c00001{bottom:794.279261px;}
.y128_c00001{bottom:794.281661px;}
.y66c_c00001{bottom:795.001811px;}
.yb4_c00001{bottom:795.360610px;}
.y381_c00001{bottom:795.361510px;}
.y66d_c00001{bottom:796.081510px;}
.y20c_c00001{bottom:796.261510px;}
.y643_c00001{bottom:796.441510px;}
.y2f1_c00001{bottom:796.441960px;}
.y47c_c00001{bottom:796.981510px;}
.y642_c00001{bottom:797.341510px;}
.y3c6_c00001{bottom:797.521510px;}
.y4d_c00001{bottom:798.418059px;}
.y1cd_c00001{bottom:798.419859px;}
.y3c5_c00001{bottom:798.421509px;}
.y343_c00001{bottom:798.421809px;}
.y287_c00001{bottom:799.500159px;}
.y2b2_c00001{bottom:800.581658px;}
.y1af_c00001{bottom:801.476408px;}
.y182_c00001{bottom:802.738207px;}
.y4ac_c00001{bottom:802.738507px;}
.y1f5_c00001{bottom:803.638507px;}
.y5ff_c00001{bottom:803.818507px;}
.y2c4_c00001{bottom:803.819557px;}
.y5fe_c00001{bottom:804.718507px;}
.y4e9_c00001{bottom:804.897157px;}
.y4ce_c00001{bottom:804.898507px;}
.y4cd_c00001{bottom:805.798506px;}
.y409_c00001{bottom:805.975656px;}
.y579_c00001{bottom:805.978506px;}
.y17_c00001{bottom:806.875956px;}
.y578_c00001{bottom:806.878506px;}
.y251_c00001{bottom:807.054156px;}
.y7b_c00001{bottom:808.139105px;}
.y237_c00001{bottom:809.213705px;}
.ycf_c00001{bottom:809.216405px;}
.y4fe_c00001{bottom:810.115505px;}
.y155_c00001{bottom:810.292054px;}
.yfc_c00001{bottom:810.295054px;}
.y4fd_c00001{bottom:810.835504px;}
.y535_c00001{bottom:811.195504px;}
.y534_c00001{bottom:812.095504px;}
.y127_c00001{bottom:812.276104px;}
.y446_c00001{bottom:813.354003px;}
.yb3_c00001{bottom:813.354303px;}
.y317_c00001{bottom:814.254003px;}
.y4c_c00001{bottom:814.430253px;}
.y1cc_c00001{bottom:814.430703px;}
.y342_c00001{bottom:815.334002px;}
.y286_c00001{bottom:815.511002px;}
.y341_c00001{bottom:816.054002px;}
.y66b_c00001{bottom:816.414002px;}
.y20b_c00001{bottom:816.588302px;}
.y2b1_c00001{bottom:817.493852px;}
.y380_c00001{bottom:817.674002px;}
.y37f_c00001{bottom:818.574001px;}
.y181_c00001{bottom:818.754001px;}
.y5bc_c00001{bottom:819.654001px;}
.y3c4_c00001{bottom:819.832501px;}
.y2f0_c00001{bottom:819.833551px;}
.y3c3_c00001{bottom:820.731000px;}
.y2c3_c00001{bottom:820.731750px;}
.y4e8_c00001{bottom:820.910850px;}
.y408_c00001{bottom:821.990100px;}
.y1f4_c00001{bottom:823.970849px;}
.y250_c00001{bottom:825.046349px;}
.y624_c00001{bottom:825.047999px;}
.y236_c00001{bottom:825.947398px;}
.y1ae_c00001{bottom:825.947998px;}
.y154_c00001{bottom:826.122898px;}
.y5fd_c00001{bottom:826.127998px;}
.y7a_c00001{bottom:826.129948px;}
.yfb_c00001{bottom:827.027248px;}
.y5fc_c00001{bottom:827.027998px;}
.y4cc_c00001{bottom:827.207998px;}
.yce_c00001{bottom:827.208598px;}
.y5a4_c00001{bottom:828.287997px;}
.y556_c00001{bottom:828.288297px;}
.y577_c00001{bottom:828.288747px;}
.y5a3_c00001{bottom:829.187997px;}
.y4b_c00001{bottom:830.442446px;}
.y1cb_c00001{bottom:831.344396px;}
.y285_c00001{bottom:831.523196px;}
.y16_c00001{bottom:831.524696px;}
.yb2_c00001{bottom:831.526496px;}
.y4fc_c00001{bottom:832.607996px;}
.y532_c00001{bottom:833.505325px;}
.y4ab_c00001{bottom:833.684995px;}
.y4aa_c00001{bottom:834.583495px;}
.y20a_c00001{bottom:834.761245px;}
.y126_c00001{bottom:834.764845px;}
.y180_c00001{bottom:834.766195px;}
.y66a_c00001{bottom:835.661994px;}
.y445_c00001{bottom:835.843794px;}
.y2ef_c00001{bottom:835.846494px;}
.y4e7_c00001{bottom:836.743794px;}
.y340_c00001{bottom:837.821993px;}
.y407_c00001{bottom:837.822293px;}
.y37e_c00001{bottom:839.980493px;}
.y37d_c00001{bottom:840.880492px;}
.y5bb_c00001{bottom:841.060492px;}
.y641_c00001{bottom:841.062292px;}
.y5ba_c00001{bottom:841.960492px;}
.y2b0_c00001{bottom:841.961242px;}
.y153_c00001{bottom:842.137942px;}
.y3c2_c00001{bottom:842.140342px;}
.y1f3_c00001{bottom:842.140942px;}
.y24f_c00001{bottom:843.220041px;}
.y4cb_c00001{bottom:843.221691px;}
.y79_c00001{bottom:844.300791px;}
.y576_c00001{bottom:844.300941px;}
.y2c2_c00001{bottom:845.200490px;}
.ycd_c00001{bottom:845.380790px;}
.y555_c00001{bottom:845.920490px;}
.y4a_c00001{bottom:846.456890px;}
.y1ad_c00001{bottom:846.460490px;}
.y284_c00001{bottom:847.536890px;}
.y533_c00001{bottom:847.540490px;}
.y531_c00001{bottom:848.438989px;}
.y5fb_c00001{bottom:848.617339px;}
.y47b_c00001{bottom:849.517339px;}
.yb1_c00001{bottom:849.518689px;}
.y235_c00001{bottom:850.417488px;}
.y5a2_c00001{bottom:850.595838px;}
.y17f_c00001{bottom:850.598388px;}
.y125_c00001{bottom:850.598538px;}
.yfa_c00001{bottom:851.495988px;}
.y444_c00001{bottom:851.675988px;}
.y2ee_c00001{bottom:851.677338px;}
.y316_c00001{bottom:852.754937px;}
.y4e6_c00001{bottom:853.655987px;}
.y669_c00001{bottom:853.834187px;}
.y4e5_c00001{bottom:854.375987px;}
.y406_c00001{bottom:854.734487px;}
.y405_c00001{bottom:855.454486px;}
.y4a8_c00001{bottom:855.812611px;}
.y1ca_c00001{bottom:855.814486px;}
.y640_c00001{bottom:857.974485px;}
.y152_c00001{bottom:858.149535px;}
.y209_c00001{bottom:858.149985px;}
.y3c1_c00001{bottom:858.153285px;}
.y15_c00001{bottom:858.153435px;}
.y63f_c00001{bottom:858.694485px;}
.y4ca_c00001{bottom:859.233285px;}
.y1f2_c00001{bottom:860.313134px;}
.y37c_c00001{bottom:862.294484px;}
.y49_c00001{bottom:863.189083px;}
.y37b_c00001{bottom:863.194483px;}
.y283_c00001{bottom:863.369833px;}
.y4fb_c00001{bottom:863.374483px;}
.y4fa_c00001{bottom:864.272983px;}
.y5fa_c00001{bottom:864.450283px;}
.y1ac_c00001{bottom:864.451333px;}
.y2c1_c00001{bottom:865.527282px;}
.y24e_c00001{bottom:865.528782px;}
.y47a_c00001{bottom:865.529532px;}
.y5a1_c00001{bottom:866.608032px;}
.y17e_c00001{bottom:866.609232px;}
.y124_c00001{bottom:866.611482px;}
.y78_c00001{bottom:866.611632px;}
.y443_c00001{bottom:867.686832px;}
.y554_c00001{bottom:867.688482px;}
.ycc_c00001{bottom:867.689532px;}
.y2af_c00001{bottom:867.690732px;}
.y2ed_c00001{bottom:867.693132px;}
.y33f_c00001{bottom:868.768481px;}
.y33e_c00001{bottom:869.666981px;}
.y530_c00001{bottom:869.667311px;}
.y4a9_c00001{bottom:869.846981px;}
.y623_c00001{bottom:869.847581px;}
.y4a7_c00001{bottom:870.746980px;}
.y234_c00001{bottom:870.927430px;}
.y668_c00001{bottom:872.006380px;}
.yb0_c00001{bottom:872.007430px;}
.yf9_c00001{bottom:872.007580px;}
.y151_c00001{bottom:874.163229px;}
.y208_c00001{bottom:874.163679px;}
.y14_c00001{bottom:874.165629px;}
.y3c0_c00001{bottom:874.886979px;}
.y3bf_c00001{bottom:875.606978px;}
.y4c9_c00001{bottom:875.966978px;}
.y1c9_c00001{bottom:876.142178px;}
.y315_c00001{bottom:876.143678px;}
.y575_c00001{bottom:876.146078px;}
.y4e4_c00001{bottom:876.146978px;}
.y4c8_c00001{bottom:876.686978px;}
.y404_c00001{bottom:877.226978px;}
.y282_c00001{bottom:879.383527px;}
.y63e_c00001{bottom:880.463976px;}
.y5f9_c00001{bottom:881.363976px;}
.y479_c00001{bottom:881.541126px;}
.y24d_c00001{bottom:881.543226px;}
.y5f8_c00001{bottom:882.083976px;}
.y1ab_c00001{bottom:882.622176px;}
.y123_c00001{bottom:882.622326px;}
.y17d_c00001{bottom:882.625026px;}
.y77_c00001{bottom:882.625326px;}
.y5a0_c00001{bottom:883.522475px;}
.y2c0_c00001{bottom:883.699475px;}
.y442_c00001{bottom:883.701275px;}
.y2ae_c00001{bottom:883.702325px;}
.ycb_c00001{bottom:883.702475px;}
.y59f_c00001{bottom:884.240975px;}
.y52f_c00001{bottom:884.600975px;}
.y2ec_c00001{bottom:884.601875px;}
.y37a_c00001{bottom:884.780975px;}
.y379_c00001{bottom:885.680974px;}
.y4f9_c00001{bottom:885.859474px;}
.y622_c00001{bottom:885.859774px;}
.y4f8_c00001{bottom:886.759474px;}
.y48_c00001{bottom:887.837823px;}
.yaf_c00001{bottom:887.840373px;}
.y233_c00001{bottom:888.919623px;}
.y150_c00001{bottom:889.995423px;}
.y667_c00001{bottom:889.998573px;}
.yf8_c00001{bottom:890.000523px;}
.y207_c00001{bottom:890.895872px;}
.y13_c00001{bottom:890.896472px;}
.y33d_c00001{bottom:891.079472px;}
.y33c_c00001{bottom:891.979472px;}
.y4a6_c00001{bottom:892.159322px;}
.y574_c00001{bottom:892.159772px;}
.y314_c00001{bottom:893.055871px;}
.y1c8_c00001{bottom:894.315871px;}
.y3be_c00001{bottom:894.319471px;}
.y281_c00001{bottom:896.294370px;}
.y24c_c00001{bottom:897.554070px;}
.y478_c00001{bottom:897.554820px;}
.y4c7_c00001{bottom:898.634969px;}
.y122_c00001{bottom:898.636019px;}
.y76_c00001{bottom:898.636169px;}
.y17c_c00001{bottom:899.355869px;}
.y553_c00001{bottom:899.534969px;}
.y2ad_c00001{bottom:899.536019px;}
.yca_c00001{bottom:899.536169px;}
.y441_c00001{bottom:900.434968px;}
.y1aa_c00001{bottom:900.615868px;}
.y440_c00001{bottom:901.153468px;}
.y621_c00001{bottom:902.593468px;}
.y620_c00001{bottom:903.313467px;}
.yae_c00001{bottom:903.852567px;}
.y5f7_c00001{bottom:903.853467px;}
.y14f_c00001{bottom:906.009866px;}
.y59e_c00001{bottom:906.013466px;}
.y52e_c00001{bottom:906.911966px;}
.y2bf_c00001{bottom:907.086866px;}
.y4e3_c00001{bottom:907.091966px;}
.y378_c00001{bottom:907.092566px;}
.y52d_c00001{bottom:907.631966px;}
.y4e2_c00001{bottom:907.991965px;}
.y666_c00001{bottom:908.170765px;}
.y403_c00001{bottom:908.171965px;}
.y4a5_c00001{bottom:908.172265px;}
.yf7_c00001{bottom:908.172715px;}
.y2eb_c00001{bottom:909.071965px;}
.y573_c00001{bottom:909.791965px;}
.y63d_c00001{bottom:911.411964px;}
.y63c_c00001{bottom:912.311964px;}
.y232_c00001{bottom:913.208363px;}
.y477_c00001{bottom:913.387013px;}
.y33b_c00001{bottom:913.387163px;}
.y24b_c00001{bottom:913.389863px;}
.y47_c00001{bottom:914.464463px;}
.y75_c00001{bottom:914.467013px;}
.y206_c00001{bottom:915.365962px;}
.y121_c00001{bottom:915.366862px;}
.y12_c00001{bottom:915.546562px;}
.y2ac_c00001{bottom:916.446862px;}
.yc9_c00001{bottom:916.448362px;}
.y313_c00001{bottom:917.525962px;}
.y1c7_c00001{bottom:917.707461px;}
.yad_c00001{bottom:919.867011px;}
.y280_c00001{bottom:920.765960px;}
.y552_c00001{bottom:920.944310px;}
.y14e_c00001{bottom:922.919359px;}
.y2be_c00001{bottom:923.104009px;}
.y43f_c00001{bottom:923.105959px;}
.y377_c00001{bottom:923.106259px;}
.y17b_c00001{bottom:924.005959px;}
.y663_c00001{bottom:924.722809px;}
.y4a4_c00001{bottom:924.905959px;}
.y61f_c00001{bottom:925.085959px;}
.y4a3_c00001{bottom:925.625958px;}
.y664_c00001{bottom:925.805958px;}
.y665_c00001{bottom:927.242958px;}
.y2ea_c00001{bottom:929.399507px;}
.y33a_c00001{bottom:929.400107px;}
.y4c6_c00001{bottom:929.401457px;}
.y24a_c00001{bottom:930.299356px;}
.y476_c00001{bottom:930.301456px;}
.y46_c00001{bottom:930.478906px;}
.y5b9_c00001{bottom:930.480556px;}
.y74_c00001{bottom:930.481456px;}
.y475_c00001{bottom:931.021456px;}
.y402_c00001{bottom:931.381456px;}
.y3bb_c00001{bottom:931.397400px;}
.y572_c00001{bottom:931.561456px;}
.y1c6_c00001{bottom:933.718305px;}
.y63b_c00001{bottom:933.718455px;}
.y3ba_c00001{bottom:934.438455px;}
.y63a_c00001{bottom:934.618455px;}
.y5f6_c00001{bottom:934.798455px;}
.y5f5_c00001{bottom:935.698454px;}
.y205_c00001{bottom:935.877554px;}
.y3bd_c00001{bottom:936.598454px;}
.yac_c00001{bottom:936.777854px;}
.y551_c00001{bottom:936.957254px;}
.y59d_c00001{bottom:936.958454px;}
.y231_c00001{bottom:937.678454px;}
.y312_c00001{bottom:937.854703px;}
.y59c_c00001{bottom:937.858453px;}
.y2bd_c00001{bottom:939.834853px;}
.y120_c00001{bottom:939.838453px;}
.y376_c00001{bottom:940.558452px;}
.yc8_c00001{bottom:940.918452px;}
.y27f_c00001{bottom:941.097102px;}
.y11_c00001{bottom:942.173952px;}
.y1a9_c00001{bottom:943.256951px;}
.y17a_c00001{bottom:944.332751px;}
.y339_c00001{bottom:945.412300px;}
.y662_c00001{bottom:945.412900px;}
.y5b8_c00001{bottom:946.492750px;}
.y73_c00001{bottom:946.495150px;}
.y14d_c00001{bottom:947.390950px;}
.y45_c00001{bottom:947.391100px;}
.y4a2_c00001{bottom:947.570950px;}
.y2e9_c00001{bottom:947.571700px;}
.y1c5_c00001{bottom:949.730499px;}
.y4c5_c00001{bottom:951.709598px;}
.y474_c00001{bottom:952.790947px;}
.y401_c00001{bottom:952.792897px;}
.y550_c00001{bottom:953.690947px;}
.y204_c00001{bottom:953.868397px;}
.y43e_c00001{bottom:953.870947px;}
.y54f_c00001{bottom:954.410947px;}
.y249_c00001{bottom:954.770947px;}
.y311_c00001{bottom:956.026896px;}
.y61e_c00001{bottom:956.030946px;}
.y639_c00001{bottom:956.031246px;}
.y61d_c00001{bottom:956.930946px;}
.y5f4_c00001{bottom:957.110946px;}
.y5f3_c00001{bottom:958.010945px;}
.y230_c00001{bottom:958.185695px;}
.y10_c00001{bottom:958.187645px;}
.y59b_c00001{bottom:959.265545px;}
.y27e_c00001{bottom:959.267945px;}
.y11f_c00001{bottom:960.343444px;}
.y52c_c00001{bottom:960.349444px;}
.yab_c00001{bottom:961.249444px;}
.y338_c00001{bottom:961.424494px;}
.yc7_c00001{bottom:961.427644px;}
.y179_c00001{bottom:962.504944px;}
.y375_c00001{bottom:962.506444px;}
.y3b9_c00001{bottom:963.222843px;}
.y5b7_c00001{bottom:963.226443px;}
.y72_c00001{bottom:963.227343px;}
.y661_c00001{bottom:963.403743px;}
.y571_c00001{bottom:963.406443px;}
.y5b6_c00001{bottom:963.944943px;}
.y2bc_c00001{bottom:964.304943px;}
.y1c4_c00001{bottom:965.563442px;}
.y1a8_c00001{bottom:965.564942px;}
.y2ab_c00001{bottom:966.645842px;}
.y4c4_c00001{bottom:967.725391px;}
.y14c_c00001{bottom:967.725991px;}
.y400_c00001{bottom:968.805091px;}
.y2e8_c00001{bottom:970.960440px;}
.y44_c00001{bottom:972.037740px;}
.y203_c00001{bottom:972.040590px;}
.y638_c00001{bottom:972.943439px;}
.y637_c00001{bottom:973.663439px;}
.yf_c00001{bottom:975.098489px;}
.y59a_c00001{bottom:975.279238px;}
.y248_c00001{bottom:975.281488px;}
.y22f_c00001{bottom:976.177888px;}
.y43d_c00001{bottom:976.178788px;}
.y54e_c00001{bottom:976.180438px;}
.y27d_c00001{bottom:977.260138px;}
.y337_c00001{bottom:978.158937px;}
.y4a0_c00001{bottom:978.159177px;}
.y11e_c00001{bottom:978.337887px;}
.y61c_c00001{bottom:978.338037px;}
.y4f7_c00001{bottom:978.338937px;}
.y336_c00001{bottom:978.878937px;}
.y4f6_c00001{bottom:979.237437px;}
.y310_c00001{bottom:979.416987px;}
.y5f2_c00001{bottom:979.417437px;}
.yc6_c00001{bottom:979.417737px;}
.y5f1_c00001{bottom:980.317436px;}
.y178_c00001{bottom:980.495786px;}
.y1c3_c00001{bottom:981.575636px;}
.y660_c00001{bottom:981.575936px;}
.yaa_c00001{bottom:981.576686px;}
.y52a_c00001{bottom:982.476971px;}
.y2aa_c00001{bottom:982.658036px;}
.y4c3_c00001{bottom:983.736235px;}
.y473_c00001{bottom:983.737435px;}
.y472_c00001{bottom:984.637435px;}
.y2bb_c00001{bottom:984.816385px;}
.y570_c00001{bottom:984.817435px;}
.y3ff_c00001{bottom:984.818035px;}
.y56f_c00001{bottom:985.717434px;}
.y5b5_c00001{bottom:985.897434px;}
.y14b_c00001{bottom:985.898184px;}
.y2e7_c00001{bottom:986.974134px;}
.y71_c00001{bottom:987.877433px;}
.y3b8_c00001{bottom:990.034433px;}
.y599_c00001{bottom:992.011432px;}
.y4a1_c00001{bottom:992.191432px;}
.y43c_c00001{bottom:992.192482px;}
.y598_c00001{bottom:992.731431px;}
.y49f_c00001{bottom:993.091431px;}
.y374_c00001{bottom:993.271431px;}
.y247_c00001{bottom:993.275181px;}
.y373_c00001{bottom:994.171431px;}
.y22e_c00001{bottom:994.350081px;}
.y61b_c00001{bottom:994.350231px;}
.y202_c00001{bottom:994.352181px;}
.y1a7_c00001{bottom:995.251430px;}
.y636_c00001{bottom:995.429930px;}
.y27c_c00001{bottom:995.433830px;}
.y30f_c00001{bottom:996.327830px;}
.y11d_c00001{bottom:996.507980px;}
.y52b_c00001{bottom:996.509930px;}
.y529_c00001{bottom:997.409930px;}
.y1c2_c00001{bottom:998.487829px;}
.y43_c00001{bottom:998.666479px;}
.y2a9_c00001{bottom:998.670229px;}
.y65f_c00001{bottom:999.748129px;}
.ye_c00001{bottom:999.748579px;}
.ya9_c00001{bottom:999.748879px;}
.y4c2_c00001{bottom:1000.649928px;}
.y335_c00001{bottom:1000.829928px;}
.y3fe_c00001{bottom:1000.830228px;}
.y4c1_c00001{bottom:1001.369928px;}
.y4f5_c00001{bottom:1001.729928px;}
.y5f0_c00001{bottom:1002.629928px;}
.y177_c00001{bottom:1002.805877px;}
.y2ba_c00001{bottom:1002.806477px;}
.yc5_c00001{bottom:1002.809927px;}
.y2e6_c00001{bottom:1003.706327px;}
.y14a_c00001{bottom:1003.890377px;}
.y471_c00001{bottom:1006.048426px;}
.y470_c00001{bottom:1006.948426px;}
.y54d_c00001{bottom:1007.126926px;}
.y54c_c00001{bottom:1008.025425px;}
.yf6_c00001{bottom:1008.202275px;}
.y43b_c00001{bottom:1008.203325px;}
.y70_c00001{bottom:1008.208125px;}
.y201_c00001{bottom:1010.364374px;}
.y27a_c00001{bottom:1011.262424px;}
.y246_c00001{bottom:1011.444674px;}
.y61a_c00001{bottom:1011.982424px;}
.y22d_c00001{bottom:1012.520924px;}
.y42_c00001{bottom:1014.498673px;}
.y597_c00001{bottom:1014.503923px;}
.y2a8_c00001{bottom:1015.402422px;}
.y372_c00001{bottom:1015.582272px;}
.y1a6_c00001{bottom:1015.582722px;}
.y49e_c00001{bottom:1016.122422px;}
.y5b4_c00001{bottom:1016.662422px;}
.y3fd_c00001{bottom:1017.563922px;}
.y65e_c00001{bottom:1017.740321px;}
.ya8_c00001{bottom:1017.742571px;}
.y27b_c00001{bottom:1017.743921px;}
.y3fc_c00001{bottom:1018.283921px;}
.y527_c00001{bottom:1018.643456px;}
.y11c_c00001{bottom:1018.818821px;}
.yc4_c00001{bottom:1018.823621px;}
.y30e_c00001{bottom:1020.797920px;}
.y3b7_c00001{bottom:1020.977920px;}
.y3b6_c00001{bottom:1021.876420px;}
.y1c1_c00001{bottom:1022.957919px;}
.y4c0_c00001{bottom:1023.137919px;}
.y4f4_c00001{bottom:1023.138069px;}
.y43a_c00001{bottom:1024.217769px;}
.y5ef_c00001{bottom:1024.217919px;}
.y5ee_c00001{bottom:1025.117919px;}
.y635_c00001{bottom:1026.376418px;}
.yf5_c00001{bottom:1026.376718px;}
.yd_c00001{bottom:1026.377318px;}
.y149_c00001{bottom:1026.377768px;}
.y6f_c00001{bottom:1026.380318px;}
.y634_c00001{bottom:1027.276418px;}
.y2e5_c00001{bottom:1028.176417px;}
.y46f_c00001{bottom:1028.356417px;}
.y54b_c00001{bottom:1029.436417px;}
.y54a_c00001{bottom:1030.336416px;}
.y41_c00001{bottom:1031.413116px;}
.y333_c00001{bottom:1031.415246px;}
.y371_c00001{bottom:1031.595216px;}
.y279_c00001{bottom:1031.595516px;}
.y528_c00001{bottom:1032.676416px;}
.y526_c00001{bottom:1033.576415px;}
.y1a5_c00001{bottom:1033.754915px;}
.y619_c00001{bottom:1033.756415px;}
.y245_c00001{bottom:1033.756865px;}
.y11b_c00001{bottom:1034.829665px;}
.yc3_c00001{bottom:1034.834465px;}
.y49d_c00001{bottom:1034.836415px;}
.y65d_c00001{bottom:1035.912514px;}
.ya7_c00001{bottom:1035.914764px;}
.y3fb_c00001{bottom:1036.816414px;}
.y4f3_c00001{bottom:1039.152513px;}
.y2a7_c00001{bottom:1039.874613px;}
.y439_c00001{bottom:1040.049963px;}
.y30d_c00001{bottom:1041.128912px;}
.yc_c00001{bottom:1042.209512px;}
.y148_c00001{bottom:1042.209962px;}
.y1c0_c00001{bottom:1043.288911px;}
.y3b5_c00001{bottom:1044.188911px;}
.yf4_c00001{bottom:1044.368911px;}
.y46e_c00001{bottom:1044.369361px;}
.y334_c00001{bottom:1045.448910px;}
.y332_c00001{bottom:1046.348910px;}
.y5ed_c00001{bottom:1046.528760px;}
.y370_c00001{bottom:1048.508909px;}
.y633_c00001{bottom:1048.688909px;}
.y2e4_c00001{bottom:1048.689209px;}
.y36f_c00001{bottom:1049.228909px;}
.y632_c00001{bottom:1049.588909px;}
.y6e_c00001{bottom:1049.769059px;}
.y278_c00001{bottom:1049.769209px;}
.y11a_c00001{bottom:1050.843358px;}
.yc2_c00001{bottom:1051.748908px;}
.y1a4_c00001{bottom:1051.927108px;}
.y549_c00001{bottom:1051.928158px;}
.y65c_c00001{bottom:1053.904707px;}
.y4bf_c00001{bottom:1053.905907px;}
.y4be_c00001{bottom:1054.805907px;}
.y525_c00001{bottom:1054.984557px;}
.y4f2_c00001{bottom:1054.984707px;}
.y40_c00001{bottom:1056.063206px;}
.y438_c00001{bottom:1056.964406px;}
.y437_c00001{bottom:1057.682906px;}
.ya6_c00001{bottom:1058.222155px;}
.yb_c00001{bottom:1058.223205px;}
.y30c_c00001{bottom:1059.301105px;}
.y46d_c00001{bottom:1060.381554px;}
.y5ec_c00001{bottom:1062.541704px;}
.y49c_c00001{bottom:1064.701403px;}
.y6d_c00001{bottom:1065.601252px;}
.y3b4_c00001{bottom:1065.601402px;}
.y3b3_c00001{bottom:1066.501402px;}
.yf3_c00001{bottom:1066.676302px;}
.y2e3_c00001{bottom:1066.681402px;}
.y331_c00001{bottom:1067.759001px;}
.y36e_c00001{bottom:1067.759901px;}
.y277_c00001{bottom:1067.760051px;}
.y659_c00001{bottom:1070.635700px;}
.y524_c00001{bottom:1070.998250px;}
.yc1_c00001{bottom:1070.998400px;}
.y65a_c00001{bottom:1071.716900px;}
.y4f1_c00001{bottom:1071.896900px;}
.y4f0_c00001{bottom:1072.616900px;}
.y65b_c00001{bottom:1073.156899px;}
.y3f8_c00001{bottom:1074.072600px;}
.ya5_c00001{bottom:1074.236599px;}
.ya_c00001{bottom:1075.135399px;}
.y46c_c00001{bottom:1076.393748px;}
.y3f7_c00001{bottom:1077.550631px;}
.y3fa_c00001{bottom:1079.275397px;}
.y436_c00001{bottom:1079.455397px;}
.y5eb_c00001{bottom:1079.995397px;}
.y6c_c00001{bottom:1081.615696px;}
.y3f_c00001{bottom:1082.688496px;}
.y330_c00001{bottom:1083.772695px;}
.y523_c00001{bottom:1087.010444px;}
.y3b2_c00001{bottom:1088.089393px;}
.y3b1_c00001{bottom:1088.987893px;}
.ya4_c00001{bottom:1090.248792px;}
.y657_c00001{bottom:1090.967892px;}
.y658_c00001{bottom:1092.047892px;}
.y46b_c00001{bottom:1092.226692px;}
.y9_c00001{bottom:1093.307891px;}
.y36d_c00001{bottom:1097.807889px;}
.y6b_c00001{bottom:1098.527889px;}
.y3e_c00001{bottom:1098.702189px;}
.y49a_c00001{bottom:1098.707889px;}
.y32f_c00001{bottom:1100.686388px;}
.y32e_c00001{bottom:1101.404888px;}
.y49b_c00001{bottom:1101.764888px;}
.y5ea_c00001{bottom:1101.944888px;}
.y522_c00001{bottom:1103.743387px;}
.y521_c00001{bottom:1104.460387px;}
.ya3_c00001{bottom:1106.080986px;}
.y3f6_c00001{bottom:1106.335470px;}
.y46a_c00001{bottom:1109.140385px;}
.y469_c00001{bottom:1109.860385px;}
.y656_c00001{bottom:1110.220384px;}
.y3b0_c00001{bottom:1110.400384px;}
.y3af_c00001{bottom:1111.300384px;}
.y3d_c00001{bottom:1115.614382px;}
.ya2_c00001{bottom:1122.096030px;}
.y8_c00001{bottom:1126.232878px;}
.y32d_c00001{bottom:1128.389877px;}
.y520_c00001{bottom:1129.646877px;}
.y3ae_c00001{bottom:1132.706875px;}
.y3f5_c00001{bottom:1133.142109px;}
.y3ad_c00001{bottom:1133.606875px;}
.y3c_c00001{bottom:1133.786875px;}
.yf2_c00001{bottom:1134.866875px;}
.y655_c00001{bottom:1135.946874px;}
.ya1_c00001{bottom:1139.006873px;}
.y32c_c00001{bottom:1155.019367px;}
.y3f4_c00001{bottom:1155.454600px;}
.y4_c00001{bottom:1163.494800px;}
.y7_c00001{bottom:1165.811862px;}
.y3_c00001{bottom:1195.755084px;}
.y32b_c00001{bottom:1197.478350px;}
.y3f3_c00001{bottom:1197.913583px;}
.y32a_c00001{bottom:1222.486340px;}
.y2_c00001{bottom:1222.921573px;}
.y654_c00001{bottom:1225.366338px;}
.h9_c00001{height:14.392260px;}
.h4_c00001{height:14.394600px;}
.h16_c00001{height:18.529200px;}
.h15_c00001{height:18.531000px;}
.h17_c00001{height:18.531540px;}
.h14_c00001{height:18.532800px;}
.h13_c00001{height:18.534600px;}
.h18_c00001{height:18.536400px;}
.h1b_c00001{height:36.685621px;}
.hc_c00001{height:42.010960px;}
.hb_c00001{height:43.416009px;}
.h5_c00001{height:45.831479px;}
.h1a_c00001{height:46.319777px;}
.he_c00001{height:46.638677px;}
.hd_c00001{height:46.644305px;}
.hf_c00001{height:46.647119px;}
.h3_c00001{height:47.364304px;}
.h19_c00001{height:50.532144px;}
.h10_c00001{height:51.312377px;}
.h11_c00001{height:59.078616px;}
.h12_c00001{height:59.206354px;}
.h7_c00001{height:63.153704px;}
.h8_c00001{height:67.098829px;}
.h2_c00001{height:74.992972px;}
.ha_c00001{height:96.832905px;}
.h6_c00001{height:1262.431829px;}
.h1_c00001{height:1262.879062px;}
.h0_c00001{height:1263.000000px;}
.w8_c00001{width:40.298400px;}
.w5_c00001{width:40.478400px;}
.w4_c00001{width:40.482000px;}
.w2_c00001{width:41.380920px;}
.w7_c00001{width:190.350000px;}
.w6_c00001{width:198.808200px;}
.w3_c00001{width:892.099575px;}
.w1_c00001{width:892.414744px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:107.268651px;}
.x1e_c00001{left:108.310682px;}
.x20_c00001{left:120.005412px;}
.x23_c00001{left:158.325212px;}
.xb_c00001{left:196.471796px;}
.x15_c00001{left:205.105793px;}
.x2_c00001{left:209.245791px;}
.x21_c00001{left:217.879788px;}
.x2c_c00001{left:284.809641px;}
.x29_c00001{left:339.147239px;}
.x2a_c00001{left:346.523831px;}
.x28_c00001{left:356.062831px;}
.x30_c00001{left:383.767721px;}
.x33_c00001{left:387.899418px;}
.xf_c00001{left:400.680215px;}
.x10_c00001{left:403.917213px;}
.x31_c00001{left:404.991700px;}
.xe_c00001{left:407.154212px;}
.x8_c00001{left:409.320185px;}
.xc_c00001{left:411.472710px;}
.x6_c00001{left:422.095963px;}
.x2e_c00001{left:424.065968px;}
.x32_c00001{left:434.679737px;}
.x7_c00001{left:443.324726px;}
.x3_c00001{left:498.554135px;}
.x9_c00001{left:499.635175px;}
.xd_c00001{left:528.420164px;}
.x2f_c00001{left:547.491156px;}
.x11_c00001{left:575.198438px;}
.x16_c00001{left:578.489400px;}
.x1a_c00001{left:586.947600px;}
.x22_c00001{left:658.141612px;}
.x25_c00001{left:665.520109px;}
.x26_c00001{left:676.134105px;}
.x2d_c00001{left:691.066599px;}
.x27_c00001{left:697.366596px;}
.x2b_c00001{left:702.760594px;}
.x1c_c00001{left:719.859087px;}
.x12_c00001{left:797.398556px;}
.x4_c00001{left:798.532200px;}
.x13_c00001{left:800.690400px;}
.x34_c00001{left:801.770400px;}
.x19_c00001{left:804.993522px;}
.x1f_c00001{left:811.254050px;}
.x18_c00001{left:812.332550px;}
.x24_c00001{left:818.629548px;}
.x17_c00001{left:824.029545px;}
.x1b_c00001{left:831.621511px;}
.x1d_c00001{left:847.454005px;}
.x5_c00001{left:850.694003px;}
.x14_c00001{left:855.014002px;}
.xa_c00001{left:858.071001px;}
.x35_c00001{left:860.229500px;}
@media print{
.v1_c00001{vertical-align:-7.677490pt;}
.v2_c00001{vertical-align:-3.837497pt;}
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws19_c00001{word-spacing:-34.062786pt;}
.ws17_c00001{word-spacing:-22.708524pt;}
.ws18_c00001{word-spacing:-20.815538pt;}
.wse_c00001{word-spacing:-15.782684pt;}
.wsc_c00001{word-spacing:-13.678380pt;}
.ws0_c00001{word-spacing:-12.625939pt;}
.ws7_c00001{word-spacing:-11.573439pt;}
.ws5_c00001{word-spacing:-1.377544pt;}
.ws3_c00001{word-spacing:-1.377408pt;}
.ws2_c00001{word-spacing:0.000000pt;}
.ws1a_c00001{word-spacing:15.299756pt;}
.ws1_c00001{word-spacing:18.503723pt;}
.ws9_c00001{word-spacing:98.574525pt;}
.ws13_c00001{word-spacing:98.574979pt;}
.wsa_c00001{word-spacing:98.575433pt;}
.ws8_c00001{word-spacing:124.839658pt;}
.ws12_c00001{word-spacing:124.840112pt;}
.wsf_c00001{word-spacing:124.840566pt;}
.ws10_c00001{word-spacing:162.636634pt;}
.wsb_c00001{word-spacing:162.637542pt;}
.wsd_c00001{word-spacing:189.543056pt;}
.ws11_c00001{word-spacing:189.543964pt;}
.ws4_c00001{word-spacing:194.507139pt;}
.ws6_c00001{word-spacing:194.507594pt;}
.ws16_c00001{word-spacing:201.911027pt;}
.ws15_c00001{word-spacing:208.790347pt;}
.ws14_c00001{word-spacing:215.808189pt;}
._61_c00001{margin-left:-7.492290pt;}
._5a_c00001{margin-left:-6.042880pt;}
._6_c00001{margin-left:-5.074175pt;}
._7_c00001{margin-left:-4.024350pt;}
._1_c00001{margin-left:-2.589459pt;}
._2_c00001{margin-left:-0.978118pt;}
._0_c00001{width:1.254302pt;}
._3_c00001{width:2.276643pt;}
._b_c00001{width:3.415023pt;}
._4_c00001{width:4.424285pt;}
._2e_c00001{width:5.477949pt;}
._a_c00001{width:6.377813pt;}
._1e_c00001{width:7.480871pt;}
._d_c00001{width:9.095324pt;}
._10_c00001{width:10.590099pt;}
._66_c00001{width:12.211497pt;}
._44_c00001{width:13.540281pt;}
._11_c00001{width:14.437903pt;}
._2f_c00001{width:17.791453pt;}
._4d_c00001{width:23.435424pt;}
._30_c00001{width:25.479878pt;}
._5e_c00001{width:28.330331pt;}
._31_c00001{width:29.378385pt;}
._49_c00001{width:31.104485pt;}
._53_c00001{width:32.125957pt;}
._4c_c00001{width:33.470145pt;}
._2c_c00001{width:35.570571pt;}
._3d_c00001{width:36.719141pt;}
._3f_c00001{width:40.822008pt;}
._35_c00001{width:43.717323pt;}
._79_c00001{width:46.317854pt;}
._3b_c00001{width:47.472667pt;}
._48_c00001{width:49.347969pt;}
._69_c00001{width:50.992398pt;}
._3c_c00001{width:54.543072pt;}
._34_c00001{width:59.208451pt;}
._3a_c00001{width:62.165275pt;}
._26_c00001{width:66.749726pt;}
._55_c00001{width:69.601314pt;}
._2d_c00001{width:71.169968pt;}
._2b_c00001{width:74.587966pt;}
._1f_c00001{width:77.220773pt;}
._2a_c00001{width:81.094783pt;}
._36_c00001{width:84.761376pt;}
._8_c00001{width:86.117692pt;}
._37_c00001{width:88.914292pt;}
._18_c00001{width:89.962660pt;}
._3e_c00001{width:92.921014pt;}
._41_c00001{width:100.816427pt;}
._4a_c00001{width:106.138629pt;}
._45_c00001{width:108.689750pt;}
._39_c00001{width:111.867170pt;}
._60_c00001{width:114.404183pt;}
._38_c00001{width:116.227149pt;}
._4b_c00001{width:117.682745pt;}
._43_c00001{width:118.990133pt;}
._54_c00001{width:122.493686pt;}
._40_c00001{width:126.486342pt;}
._73_c00001{width:130.644586pt;}
._42_c00001{width:134.059958pt;}
._27_c00001{width:138.087976pt;}
._5d_c00001{width:141.124514pt;}
._57_c00001{width:142.137768pt;}
._23_c00001{width:146.292176pt;}
._33_c00001{width:149.667779pt;}
._32_c00001{width:154.574690pt;}
._46_c00001{width:160.748515pt;}
._51_c00001{width:168.892692pt;}
._29_c00001{width:176.577381pt;}
._28_c00001{width:181.483514pt;}
._6b_c00001{width:183.812070pt;}
._25_c00001{width:202.845693pt;}
._24_c00001{width:207.753353pt;}
._7a_c00001{width:230.337527pt;}
._5f_c00001{width:243.728738pt;}
._4f_c00001{width:270.193805pt;}
._64_c00001{width:281.649880pt;}
._65_c00001{width:296.022582pt;}
._50_c00001{width:313.357619pt;}
._56_c00001{width:351.154596pt;}
._6c_c00001{width:358.515199pt;}
._5c_c00001{width:377.419729pt;}
._47_c00001{width:383.729810pt;}
._59_c00001{width:404.325697pt;}
._78_c00001{width:410.656763pt;}
._4e_c00001{width:417.538341pt;}
._52_c00001{width:440.231155pt;}
._67_c00001{width:456.653774pt;}
._63_c00001{width:482.404384pt;}
._14_c00001{width:503.376304pt;}
._62_c00001{width:508.431737pt;}
._1c_c00001{width:510.646317pt;}
._1d_c00001{width:531.933903pt;}
._1a_c00001{width:551.856887pt;}
._22_c00001{width:554.612887pt;}
._9_c00001{width:556.375393pt;}
._15_c00001{width:585.261820pt;}
._16_c00001{width:589.221660pt;}
._c_c00001{width:611.421651pt;}
._17_c00001{width:616.593740pt;}
._f_c00001{width:623.080537pt;}
._1b_c00001{width:626.660720pt;}
._20_c00001{width:654.554793pt;}
._5b_c00001{width:686.883003pt;}
._19_c00001{width:702.474815pt;}
._58_c00001{width:712.747909pt;}
._13_c00001{width:722.802774pt;}
._12_c00001{width:748.013567pt;}
._21_c00001{width:763.438455pt;}
._68_c00001{width:777.441133pt;}
._e_c00001{width:782.011048pt;}
._74_c00001{width:809.876032pt;}
._6d_c00001{width:818.029825pt;}
._6e_c00001{width:966.357922pt;}
._6f_c00001{width:1022.483434pt;}
._71_c00001{width:1033.539194pt;}
._72_c00001{width:1035.914927pt;}
._77_c00001{width:1054.071051pt;}
._75_c00001{width:1076.387764pt;}
._76_c00001{width:1081.509933pt;}
._70_c00001{width:1105.153356pt;}
._5_c00001{width:1485.742311pt;}
._6a_c00001{width:1524.331071pt;}
.fs5_c00001{font-size:41.631077pt;}
.fs1_c00001{font-size:45.417048pt;}
.fs6_c00001{font-size:49.202807pt;}
.fs7_c00001{font-size:56.772244pt;}
.fs2_c00001{font-size:60.557309pt;}
.fs3_c00001{font-size:64.340241pt;}
.fs0_c00001{font-size:71.909838pt;}
.fs4_c00001{font-size:95.957295pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:0.107500pt;}
.y6_c00001{bottom:0.494374pt;}
.y5_c00001{bottom:2.553985pt;}
.y36b_c00001{bottom:2.558153pt;}
.y3a_c00001{bottom:2.559392pt;}
.y38c_c00001{bottom:3.196586pt;}
.y467_c00001{bottom:3.197214pt;}
.y3bc_c00001{bottom:3.197534pt;}
.y413_c00001{bottom:3.197632pt;}
.y488_c00001{bottom:3.198450pt;}
.y4da_c00001{bottom:3.198571pt;}
.y3f9_c00001{bottom:3.199083pt;}
.y4bc_c00001{bottom:3.199806pt;}
.y498_c00001{bottom:3.199943pt;}
.y4b0_c00001{bottom:3.200001pt;}
.y39_c00001{bottom:51.938720pt;}
.y68c_c00001{bottom:52.898720pt;}
.y3b_c00001{bottom:54.390612pt;}
.y68d_c00001{bottom:55.350611pt;}
.y200_c00001{bottom:56.877603pt;}
.y38_c00001{bottom:56.878403pt;}
.y244_c00001{bottom:56.878936pt;}
.ya0_c00001{bottom:56.879869pt;}
.y176_c00001{bottom:56.880003pt;}
.yc0_c00001{bottom:56.880269pt;}
.y30b_c00001{bottom:56.880669pt;}
.y2a6_c00001{bottom:56.881603pt;}
.yf1_c00001{bottom:56.881736pt;}
.y69_c00001{bottom:56.882003pt;}
.y68b_c00001{bottom:56.882269pt;}
.y328_c00001{bottom:56.882403pt;}
.y147_c00001{bottom:56.882936pt;}
.y2b9_c00001{bottom:56.883869pt;}
.y22c_c00001{bottom:56.884269pt;}
.y36a_c00001{bottom:80.406880pt;}
.y369_c00001{bottom:82.470659pt;}
.y36c_c00001{bottom:82.857533pt;}
.y68a_c00001{bottom:100.382252pt;}
.y276_c00001{bottom:101.180518pt;}
.y435_c00001{bottom:108.859315pt;}
.y1f1_c00001{bottom:109.658648pt;}
.y9f_c00001{bottom:110.618648pt;}
.y175_c00001{bottom:116.373712pt;}
.y3ac_c00001{bottom:116.533712pt;}
.y3ab_c00001{bottom:117.332512pt;}
.y5e9_c00001{bottom:117.492512pt;}
.y4e0_c00001{bottom:117.719386pt;}
.y5e8_c00001{bottom:118.292511pt;}
.y275_c00001{bottom:119.413178pt;}
.y3f2_c00001{bottom:120.212511pt;}
.y3f1_c00001{bottom:121.012510pt;}
.y4e1_c00001{bottom:121.399385pt;}
.y434_c00001{bottom:123.092376pt;}
.y1f0_c00001{bottom:127.889974pt;}
.y9e_c00001{bottom:128.845841pt;}
.y174_c00001{bottom:134.447572pt;}
.y274_c00001{bottom:135.406238pt;}
.y3aa_c00001{bottom:136.365704pt;}
.y5e7_c00001{bottom:137.325570pt;}
.y433_c00001{bottom:137.326104pt;}
.y5e6_c00001{bottom:138.125570pt;}
.y497_c00001{bottom:139.100000pt;}
.y367_c00001{bottom:140.045569pt;}
.y3f0_c00001{bottom:140.204369pt;}
.y496_c00001{bottom:141.805569pt;}
.yf0_c00001{bottom:142.762902pt;}
.y368_c00001{bottom:143.721568pt;}
.y1ef_c00001{bottom:143.881835pt;}
.y499_c00001{bottom:144.108442pt;}
.y9d_c00001{bottom:144.840234pt;}
.y37_c00001{bottom:144.840901pt;}
.y4df_c00001{bottom:145.068442pt;}
.y68_c00001{bottom:145.801300pt;}
.y3a9_c00001{bottom:150.598765pt;}
.y173_c00001{bottom:150.599432pt;}
.y432_c00001{bottom:151.559165pt;}
.y273_c00001{bottom:151.560631pt;}
.y3ef_c00001{bottom:154.278097pt;}
.y30a_c00001{bottom:155.076230pt;}
.y5e5_c00001{bottom:157.156229pt;}
.y5e4_c00001{bottom:157.954896pt;}
.y1ee_c00001{bottom:160.034895pt;}
.y1a3_c00001{bottom:160.833561pt;}
.y9c_c00001{bottom:160.993294pt;}
.yef_c00001{bottom:160.994228pt;}
.y3a8_c00001{bottom:164.833826pt;}
.y22b_c00001{bottom:166.433559pt;}
.y172_c00001{bottom:166.593825pt;}
.y431_c00001{bottom:167.073559pt;}
.y366_c00001{bottom:167.393384pt;}
.y36_c00001{bottom:168.510891pt;}
.y3ee_c00001{bottom:168.512491pt;}
.y272_c00001{bottom:171.391824pt;}
.y309_c00001{bottom:173.310489pt;}
.y1ed_c00001{bottom:176.186755pt;}
.y4dd_c00001{bottom:176.415096pt;}
.yee_c00001{bottom:176.987288pt;}
.y5e3_c00001{bottom:176.988221pt;}
.y5e2_c00001{bottom:177.788221pt;}
.y1a2_c00001{bottom:178.905021pt;}
.y4de_c00001{bottom:179.133762pt;}
.y3a7_c00001{bottom:179.706887pt;}
.y3a6_c00001{bottom:180.346887pt;}
.y9b_c00001{bottom:180.823286pt;}
.y35_c00001{bottom:182.742752pt;}
.y3ed_c00001{bottom:183.545552pt;}
.y689_c00001{bottom:183.704752pt;}
.y3ec_c00001{bottom:184.185552pt;}
.y22a_c00001{bottom:184.663952pt;}
.y271_c00001{bottom:185.626884pt;}
.y430_c00001{bottom:186.585551pt;}
.y171_c00001{bottom:186.586884pt;}
.y308_c00001{bottom:189.302350pt;}
.y365_c00001{bottom:191.221549pt;}
.y2e2_c00001{bottom:192.981548pt;}
.y9a_c00001{bottom:195.058347pt;}
.y1a1_c00001{bottom:195.059414pt;}
.y1ec_c00001{bottom:196.019814pt;}
.y5e1_c00001{bottom:196.977413pt;}
.y34_c00001{bottom:196.978347pt;}
.yed_c00001{bottom:197.939813pt;}
.y3a5_c00001{bottom:199.696212pt;}
.y270_c00001{bottom:199.698746pt;}
.y229_c00001{bottom:200.657012pt;}
.y170_c00001{bottom:200.658745pt;}
.y4dc_c00001{bottom:202.801752pt;}
.y3eb_c00001{bottom:203.534877pt;}
.y307_c00001{bottom:205.455410pt;}
.y99_c00001{bottom:209.290208pt;}
.y146_c00001{bottom:210.093541pt;}
.y1eb_c00001{bottom:210.252875pt;}
.y33_c00001{bottom:211.049008pt;}
.y2e1_c00001{bottom:211.050341pt;}
.y1a0_c00001{bottom:211.051274pt;}
.y5e0_c00001{bottom:211.052474pt;}
.yec_c00001{bottom:212.012341pt;}
.y51e_c00001{bottom:212.970874pt;}
.y67_c00001{bottom:213.929406pt;}
.y42f_c00001{bottom:213.929540pt;}
.y26f_c00001{bottom:213.933140pt;}
.y42e_c00001{bottom:214.728206pt;}
.y16f_c00001{bottom:214.891806pt;}
.y51f_c00001{bottom:215.688206pt;}
.y228_c00001{bottom:216.810072pt;}
.y364_c00001{bottom:218.728205pt;}
.y363_c00001{bottom:219.528204pt;}
.y98_c00001{bottom:223.365803pt;}
.y2a5_c00001{bottom:224.165536pt;}
.y1ea_c00001{bottom:224.325936pt;}
.y306_c00001{bottom:225.286602pt;}
.y32_c00001{bottom:226.084068pt;}
.y5df_c00001{bottom:226.085535pt;}
.yeb_c00001{bottom:226.245402pt;}
.y5de_c00001{bottom:226.725535pt;}
.y2e0_c00001{bottom:227.203401pt;}
.y3a4_c00001{bottom:227.205535pt;}
.y3a3_c00001{bottom:228.004201pt;}
.y145_c00001{bottom:228.162867pt;}
.y119_c00001{bottom:228.962867pt;}
.y26e_c00001{bottom:228.966867pt;}
.y16e_c00001{bottom:229.124867pt;}
.y19f_c00001{bottom:231.042466pt;}
.y3ea_c00001{bottom:231.042866pt;}
.y3e9_c00001{bottom:231.842866pt;}
.y42d_c00001{bottom:233.761532pt;}
.y42c_c00001{bottom:234.561532pt;}
.y4d9_c00001{bottom:235.696000pt;}
.y227_c00001{bottom:236.641264pt;}
.y97_c00001{bottom:238.399530pt;}
.y4d8_c00001{bottom:238.400197pt;}
.y362_c00001{bottom:238.556330pt;}
.y1e9_c00001{bottom:238.560997pt;}
.y51d_c00001{bottom:239.361346pt;}
.y305_c00001{bottom:239.519663pt;}
.yea_c00001{bottom:240.479796pt;}
.y688_c00001{bottom:240.480329pt;}
.y4db_c00001{bottom:240.705737pt;}
.y2a4_c00001{bottom:242.397262pt;}
.y16d_c00001{bottom:243.358595pt;}
.y144_c00001{bottom:244.315928pt;}
.y19e_c00001{bottom:245.114327pt;}
.y5dd_c00001{bottom:246.076194pt;}
.y3a2_c00001{bottom:247.036193pt;}
.y118_c00001{bottom:247.036860pt;}
.y3a1_c00001{bottom:247.836193pt;}
.y2df_c00001{bottom:247.993393pt;}
.y31_c00001{bottom:247.995260pt;}
.y26d_c00001{bottom:250.716192pt;}
.y226_c00001{bottom:250.874325pt;}
.y3e8_c00001{bottom:250.876058pt;}
.y66_c00001{bottom:251.832458pt;}
.y361_c00001{bottom:252.790058pt;}
.y1e8_c00001{bottom:253.594057pt;}
.y42b_c00001{bottom:253.752191pt;}
.y304_c00001{bottom:253.753391pt;}
.y42a_c00001{bottom:254.550857pt;}
.ye9_c00001{bottom:255.512857pt;}
.y16c_c00001{bottom:258.231655pt;}
.y2a3_c00001{bottom:258.390322pt;}
.y19d_c00001{bottom:259.349388pt;}
.y96_c00001{bottom:260.149521pt;}
.y143_c00001{bottom:260.310988pt;}
.y2de_c00001{bottom:262.227787pt;}
.y51c_c00001{bottom:263.189520pt;}
.y117_c00001{bottom:263.189920pt;}
.y4d7_c00001{bottom:263.989386pt;}
.y225_c00001{bottom:265.106186pt;}
.y3e7_c00001{bottom:265.109786pt;}
.y360_c00001{bottom:267.024452pt;}
.y3a0_c00001{bottom:267.026852pt;}
.y39f_c00001{bottom:267.826852pt;}
.y303_c00001{bottom:267.828985pt;}
.y26c_c00001{bottom:268.784051pt;}
.y30_c00001{bottom:271.663383pt;}
.y429_c00001{bottom:273.582849pt;}
.y19c_c00001{bottom:273.583783pt;}
.y428_c00001{bottom:274.382849pt;}
.y2a2_c00001{bottom:274.543382pt;}
.y1e7_c00001{bottom:275.342849pt;}
.y2dd_c00001{bottom:277.260848pt;}
.ye8_c00001{bottom:277.262848pt;}
.y95_c00001{bottom:278.380981pt;}
.y224_c00001{bottom:279.182447pt;}
.y16b_c00001{bottom:279.982847pt;}
.y142_c00001{bottom:280.140980pt;}
.y3e6_c00001{bottom:280.617513pt;}
.y65_c00001{bottom:281.099380pt;}
.y35f_c00001{bottom:281.897513pt;}
.y35e_c00001{bottom:282.537512pt;}
.y302_c00001{bottom:282.860846pt;}
.y596_c00001{bottom:283.977512pt;}
.y116_c00001{bottom:283.979912pt;}
.y26b_c00001{bottom:284.937111pt;}
.y618_c00001{bottom:284.937511pt;}
.y2f_c00001{bottom:285.898444pt;}
.y39e_c00001{bottom:286.857511pt;}
.y39d_c00001{bottom:287.657510pt;}
.y4d6_c00001{bottom:287.817510pt;}
.y19b_c00001{bottom:288.615643pt;}
.y51b_c00001{bottom:290.536176pt;}
.y51a_c00001{bottom:291.336176pt;}
.y427_c00001{bottom:293.413775pt;}
.y1e6_c00001{bottom:293.414975pt;}
.y5dc_c00001{bottom:293.416175pt;}
.y223_c00001{bottom:294.214308pt;}
.y5db_c00001{bottom:294.214841pt;}
.y2a1_c00001{bottom:294.373374pt;}
.y94_c00001{bottom:294.374041pt;}
.y466_c00001{bottom:294.392000pt;}
.ye7_c00001{bottom:295.331774pt;}
.y465_c00001{bottom:297.094840pt;}
.y16a_c00001{bottom:298.210306pt;}
.y115_c00001{bottom:298.216173pt;}
.y2dc_c00001{bottom:299.010839pt;}
.y468_c00001{bottom:299.397714pt;}
.y3e5_c00001{bottom:300.130839pt;}
.y2e_c00001{bottom:300.770305pt;}
.y26a_c00001{bottom:300.930172pt;}
.y35d_c00001{bottom:301.890838pt;}
.y301_c00001{bottom:304.610837pt;}
.y64_c00001{bottom:304.768703pt;}
.y56d_c00001{bottom:305.730836pt;}
.y39c_c00001{bottom:306.690836pt;}
.y39b_c00001{bottom:307.490836pt;}
.y426_c00001{bottom:307.646836pt;}
.y2a0_c00001{bottom:308.606435pt;}
.y141_c00001{bottom:308.608435pt;}
.y56e_c00001{bottom:309.409502pt;}
.y1e5_c00001{bottom:309.568035pt;}
.y19a_c00001{bottom:310.366835pt;}
.y518_c00001{bottom:310.367835pt;}
.y93_c00001{bottom:310.527101pt;}
.y595_c00001{bottom:311.328701pt;}
.ye6_c00001{bottom:311.484834pt;}
.y114_c00001{bottom:312.288034pt;}
.y5da_c00001{bottom:313.244300pt;}
.y169_c00001{bottom:314.204700pt;}
.y4d5_c00001{bottom:315.164166pt;}
.y222_c00001{bottom:315.965499pt;}
.y2db_c00001{bottom:317.083632pt;}
.y63_c00001{bottom:319.001764pt;}
.y269_c00001{bottom:320.922697pt;}
.y425_c00001{bottom:321.881897pt;}
.y464_c00001{bottom:322.684030pt;}
.y2d_c00001{bottom:322.839630pt;}
.y300_c00001{bottom:322.841096pt;}
.y29f_c00001{bottom:322.841496pt;}
.y140_c00001{bottom:322.842163pt;}
.y519_c00001{bottom:322.842830pt;}
.y517_c00001{bottom:323.642829pt;}
.y1e4_c00001{bottom:325.561095pt;}
.y39a_c00001{bottom:326.518961pt;}
.y113_c00001{bottom:326.521095pt;}
.y5d9_c00001{bottom:327.478028pt;}
.y3e4_c00001{bottom:327.478828pt;}
.ye5_c00001{bottom:327.479228pt;}
.y3e3_c00001{bottom:328.278827pt;}
.y199_c00001{bottom:328.437761pt;}
.y35c_c00001{bottom:329.398827pt;}
.y35b_c00001{bottom:330.198827pt;}
.y92_c00001{bottom:330.355893pt;}
.y168_c00001{bottom:330.357760pt;}
.y687_c00001{bottom:331.318426pt;}
.y56c_c00001{bottom:333.077359pt;}
.y62_c00001{bottom:333.236825pt;}
.y2da_c00001{bottom:333.238025pt;}
.y221_c00001{bottom:334.194158pt;}
.y4d4_c00001{bottom:334.994958pt;}
.y268_c00001{bottom:334.995758pt;}
.y594_c00001{bottom:334.997491pt;}
.y424_c00001{bottom:335.954958pt;}
.y29e_c00001{bottom:336.914557pt;}
.y13f_c00001{bottom:336.916557pt;}
.y2ff_c00001{bottom:338.832957pt;}
.y399_c00001{bottom:340.752022pt;}
.y112_c00001{bottom:341.555489pt;}
.y5d8_c00001{bottom:341.712422pt;}
.y1e3_c00001{bottom:341.712955pt;}
.y516_c00001{bottom:342.672288pt;}
.y198_c00001{bottom:344.590821pt;}
.y91_c00001{bottom:344.590954pt;}
.y686_c00001{bottom:345.552154pt;}
.y2c_c00001{bottom:346.349620pt;}
.y463_c00001{bottom:346.352154pt;}
.y61_c00001{bottom:347.309886pt;}
.ye4_c00001{bottom:347.310420pt;}
.y3e2_c00001{bottom:347.310686pt;}
.y267_c00001{bottom:349.228286pt;}
.y495_c00001{bottom:349.228686pt;}
.y35a_c00001{bottom:349.230952pt;}
.y220_c00001{bottom:350.186019pt;}
.y167_c00001{bottom:350.187752pt;}
.y423_c00001{bottom:350.188019pt;}
.y13e_c00001{bottom:351.149618pt;}
.y29d_c00001{bottom:351.947618pt;}
.y2d9_c00001{bottom:354.026817pt;}
.y398_c00001{bottom:354.985750pt;}
.y2fe_c00001{bottom:354.986017pt;}
.y5d7_c00001{bottom:356.745483pt;}
.y515_c00001{bottom:356.905349pt;}
.y56b_c00001{bottom:356.905483pt;}
.y5d6_c00001{bottom:357.385482pt;}
.y90_c00001{bottom:358.664015pt;}
.y2b_c00001{bottom:360.582681pt;}
.ye3_c00001{bottom:361.542281pt;}
.y60_c00001{bottom:361.542947pt;}
.y1e2_c00001{bottom:361.544147pt;}
.y3e1_c00001{bottom:361.545081pt;}
.y593_c00001{bottom:362.505480pt;}
.y111_c00001{bottom:363.305480pt;}
.y494_c00001{bottom:363.461747pt;}
.y266_c00001{bottom:363.462680pt;}
.y359_c00001{bottom:363.464013pt;}
.y422_c00001{bottom:364.421746pt;}
.y166_c00001{bottom:364.424013pt;}
.y197_c00001{bottom:365.380813pt;}
.y13d_c00001{bottom:365.383346pt;}
.y21f_c00001{bottom:366.339079pt;}
.y2d8_c00001{bottom:368.259878pt;}
.y327_c00001{bottom:368.262278pt;}
.y397_c00001{bottom:369.860144pt;}
.y396_c00001{bottom:370.500144pt;}
.y514_c00001{bottom:370.980410pt;}
.y8f_c00001{bottom:372.898410pt;}
.y29c_c00001{bottom:373.698809pt;}
.y462_c00001{bottom:373.858809pt;}
.y461_c00001{bottom:374.658809pt;}
.y2a_c00001{bottom:374.816409pt;}
.y2fd_c00001{bottom:374.818542pt;}
.ye2_c00001{bottom:375.774142pt;}
.y1e1_c00001{bottom:375.777875pt;}
.y5f_c00001{bottom:375.778008pt;}
.y3e0_c00001{bottom:376.578808pt;}
.y5d5_c00001{bottom:376.738808pt;}
.y3df_c00001{bottom:377.216141pt;}
.y265_c00001{bottom:377.695741pt;}
.y358_c00001{bottom:377.699074pt;}
.y493_c00001{bottom:378.496141pt;}
.y165_c00001{bottom:378.655874pt;}
.y492_c00001{bottom:379.136140pt;}
.y421_c00001{bottom:379.456140pt;}
.y196_c00001{bottom:379.615207pt;}
.y13c_c00001{bottom:379.617740pt;}
.y420_c00001{bottom:380.096140pt;}
.y110_c00001{bottom:381.374540pt;}
.y617_c00001{bottom:382.333472pt;}
.y592_c00001{bottom:382.333606pt;}
.y2d7_c00001{bottom:383.132939pt;}
.y616_c00001{bottom:383.133472pt;}
.y56a_c00001{bottom:384.253472pt;}
.y569_c00001{bottom:385.053471pt;}
.y513_c00001{bottom:386.013471pt;}
.y21e_c00001{bottom:386.172138pt;}
.y512_c00001{bottom:386.653471pt;}
.y8e_c00001{bottom:387.930270pt;}
.y2fc_c00001{bottom:389.050403pt;}
.y29_c00001{bottom:389.849469pt;}
.ye1_c00001{bottom:390.010403pt;}
.y1e0_c00001{bottom:390.010936pt;}
.y5e_c00001{bottom:390.011069pt;}
.y395_c00001{bottom:390.013469pt;}
.y29b_c00001{bottom:391.772135pt;}
.y264_c00001{bottom:392.572002pt;}
.y357_c00001{bottom:392.572135pt;}
.y164_c00001{bottom:392.728935pt;}
.y356_c00001{bottom:393.206801pt;}
.y195_c00001{bottom:393.688268pt;}
.y13b_c00001{bottom:393.688401pt;}
.y460_c00001{bottom:393.688535pt;}
.y548_c00001{bottom:395.446801pt;}
.y3de_c00001{bottom:396.566800pt;}
.y591_c00001{bottom:396.567333pt;}
.y10f_c00001{bottom:397.528933pt;}
.y652_c00001{bottom:398.326799pt;}
.y491_c00001{bottom:398.486799pt;}
.y41f_c00001{bottom:399.446799pt;}
.y21d_c00001{bottom:400.403999pt;}
.y653_c00001{bottom:402.006798pt;}
.y615_c00001{bottom:402.325598pt;}
.y2fb_c00001{bottom:403.926664pt;}
.y1df_c00001{bottom:404.083997pt;}
.y5d_c00001{bottom:404.084130pt;}
.y5d4_c00001{bottom:404.085464pt;}
.y2d6_c00001{bottom:404.885463pt;}
.ye0_c00001{bottom:404.885997pt;}
.y511_c00001{bottom:406.004130pt;}
.y163_c00001{bottom:406.963996pt;}
.y45f_c00001{bottom:407.922262pt;}
.y194_c00001{bottom:407.923329pt;}
.y29a_c00001{bottom:407.923996pt;}
.y13a_c00001{bottom:408.724662pt;}
.y8d_c00001{bottom:409.682795pt;}
.y590_c00001{bottom:410.800394pt;}
.y28_c00001{bottom:411.759461pt;}
.y355_c00001{bottom:412.720127pt;}
.y10e_c00001{bottom:413.681993pt;}
.y263_c00001{bottom:414.320126pt;}
.y21c_c00001{bottom:414.477060pt;}
.y614_c00001{bottom:416.399992pt;}
.y394_c00001{bottom:417.360125pt;}
.y393_c00001{bottom:418.158791pt;}
.y1de_c00001{bottom:418.317725pt;}
.y5c_c00001{bottom:418.317858pt;}
.y547_c00001{bottom:419.120124pt;}
.y5b2_c00001{bottom:419.280124pt;}
.y162_c00001{bottom:421.198390pt;}
.y685_c00001{bottom:421.996123pt;}
.y45e_c00001{bottom:422.155323pt;}
.y193_c00001{bottom:422.156390pt;}
.y5b3_c00001{bottom:422.957456pt;}
.y2d5_c00001{bottom:423.116656pt;}
.y3dc_c00001{bottom:423.916336pt;}
.y5d3_c00001{bottom:424.076122pt;}
.y299_c00001{bottom:424.077056pt;}
.y5d2_c00001{bottom:424.876122pt;}
.y2fa_c00001{bottom:425.674788pt;}
.y490_c00001{bottom:425.834788pt;}
.y58f_c00001{bottom:426.314788pt;}
.ydf_c00001{bottom:426.634788pt;}
.y41e_c00001{bottom:426.793455pt;}
.y41d_c00001{bottom:427.593454pt;}
.y8c_c00001{bottom:427.754121pt;}
.y21b_c00001{bottom:428.710121pt;}
.y139_c00001{bottom:430.473453pt;}
.y613_c00001{bottom:430.633053pt;}
.y262_c00001{bottom:432.549986pt;}
.y1dd_c00001{bottom:433.352119pt;}
.y5b_c00001{bottom:433.352252pt;}
.y10d_c00001{bottom:433.511985pt;}
.y510_c00001{bottom:433.512119pt;}
.y568_c00001{bottom:433.992118pt;}
.y50f_c00001{bottom:434.312118pt;}
.y27_c00001{bottom:435.428785pt;}
.y161_c00001{bottom:436.231451pt;}
.y45d_c00001{bottom:436.388384pt;}
.y3dd_c00001{bottom:436.390784pt;}
.y326_c00001{bottom:436.393451pt;}
.y192_c00001{bottom:437.029451pt;}
.y392_c00001{bottom:437.188251pt;}
.y3db_c00001{bottom:437.189451pt;}
.y2d4_c00001{bottom:439.108516pt;}
.y354_c00001{bottom:440.068116pt;}
.y298_c00001{bottom:440.068916pt;}
.y1bf_c00001{bottom:440.868116pt;}
.y21a_c00001{bottom:442.946382pt;}
.y8b_c00001{bottom:443.907181pt;}
.y5d1_c00001{bottom:443.908115pt;}
.y5d0_c00001{bottom:444.708114pt;}
.yde_c00001{bottom:444.866514pt;}
.y612_c00001{bottom:445.666780pt;}
.y48f_c00001{bottom:445.824247pt;}
.y58e_c00001{bottom:445.826780pt;}
.y611_c00001{bottom:446.306780pt;}
.y5b1_c00001{bottom:446.627980pt;}
.y41c_c00001{bottom:446.784380pt;}
.y684_c00001{bottom:447.745446pt;}
.y10c_c00001{bottom:447.746380pt;}
.y261_c00001{bottom:448.541846pt;}
.y138_c00001{bottom:448.546779pt;}
.y26_c00001{bottom:449.502512pt;}
.y1dc_c00001{bottom:450.464112pt;}
.y45c_c00001{bottom:451.262778pt;}
.y391_c00001{bottom:451.421312pt;}
.y45b_c00001{bottom:451.902778pt;}
.y329_c00001{bottom:452.608319pt;}
.y546_c00001{bottom:453.181444pt;}
.y567_c00001{bottom:453.341444pt;}
.y50e_c00001{bottom:453.341844pt;}
.y191_c00001{bottom:454.301444pt;}
.y5a_c00001{bottom:455.261043pt;}
.y3da_c00001{bottom:456.221443pt;}
.y3d9_c00001{bottom:457.021443pt;}
.y219_c00001{bottom:457.978242pt;}
.y160_c00001{bottom:457.981442pt;}
.y1be_c00001{bottom:459.099975pt;}
.y651_c00001{bottom:459.741442pt;}
.y48e_c00001{bottom:459.897975pt;}
.y8a_c00001{bottom:459.899041pt;}
.y2d3_c00001{bottom:459.899708pt;}
.y297_c00001{bottom:459.900108pt;}
.y353_c00001{bottom:459.901575pt;}
.y41b_c00001{bottom:460.858108pt;}
.y10b_c00001{bottom:462.618240pt;}
.y5cf_c00001{bottom:463.738773pt;}
.y25_c00001{bottom:464.535573pt;}
.y5ce_c00001{bottom:464.537440pt;}
.y260_c00001{bottom:464.694906pt;}
.y137_c00001{bottom:464.697440pt;}
.y390_c00001{bottom:465.655039pt;}
.ydd_c00001{bottom:465.656506pt;}
.y610_c00001{bottom:465.657439pt;}
.y50d_c00001{bottom:467.574905pt;}
.y683_c00001{bottom:468.376105pt;}
.y59_c00001{bottom:469.495438pt;}
.y5b0_c00001{bottom:470.456104pt;}
.y45a_c00001{bottom:471.256104pt;}
.y682_c00001{bottom:472.056103pt;}
.y58c_c00001{bottom:473.016316pt;}
.y48d_c00001{bottom:474.131036pt;}
.y2d2_c00001{bottom:474.134102pt;}
.y296_c00001{bottom:474.134502pt;}
.y325_c00001{bottom:474.134636pt;}
.y1bd_c00001{bottom:475.090635pt;}
.y41a_c00001{bottom:475.092502pt;}
.y6a_c00001{bottom:475.640310pt;}
.y1db_c00001{bottom:475.892102pt;}
.y15f_c00001{bottom:476.048235pt;}
.y3d8_c00001{bottom:476.050768pt;}
.y89_c00001{bottom:476.053435pt;}
.y3d7_c00001{bottom:476.849435pt;}
.y545_c00001{bottom:476.854635pt;}
.y190_c00001{bottom:479.729434pt;}
.ydc_c00001{bottom:479.889567pt;}
.y38f_c00001{bottom:480.689433pt;}
.y566_c00001{bottom:480.849433pt;}
.y136_c00001{bottom:480.851833pt;}
.y38e_c00001{bottom:481.329433pt;}
.y565_c00001{bottom:481.649433pt;}
.y50c_c00001{bottom:481.809966pt;}
.y4bb_c00001{bottom:482.624000pt;}
.y650_c00001{bottom:483.408632pt;}
.y5cd_c00001{bottom:483.569432pt;}
.y10a_c00001{bottom:484.369432pt;}
.y25f_c00001{bottom:484.527432pt;}
.y4ba_c00001{bottom:485.329431pt;}
.y58d_c00001{bottom:485.489431pt;}
.y58b_c00001{bottom:486.289431pt;}
.y24_c00001{bottom:486.448097pt;}
.y4bd_c00001{bottom:487.636305pt;}
.y631_c00001{bottom:488.209430pt;}
.y295_c00001{bottom:488.365163pt;}
.y2d1_c00001{bottom:488.365963pt;}
.y352_c00001{bottom:488.369697pt;}
.y48c_c00001{bottom:489.165430pt;}
.y419_c00001{bottom:489.325563pt;}
.y48b_c00001{bottom:489.805429pt;}
.y1bc_c00001{bottom:491.243696pt;}
.y681_c00001{bottom:491.245429pt;}
.y15e_c00001{bottom:492.201295pt;}
.y680_c00001{bottom:492.205429pt;}
.y58_c00001{bottom:493.162361pt;}
.y60f_c00001{bottom:493.162761pt;}
.ydb_c00001{bottom:493.962628pt;}
.y60e_c00001{bottom:493.962761pt;}
.y1da_c00001{bottom:493.963428pt;}
.y3d6_c00001{bottom:495.882760pt;}
.y50b_c00001{bottom:495.883027pt;}
.y88_c00001{bottom:495.883427pt;}
.y3d5_c00001{bottom:496.682760pt;}
.y218_c00001{bottom:497.802093pt;}
.y38d_c00001{bottom:497.802760pt;}
.y18f_c00001{bottom:497.803426pt;}
.y5af_c00001{bottom:498.602759pt;}
.y25e_c00001{bottom:498.762493pt;}
.y459_c00001{bottom:498.762759pt;}
.y458_c00001{bottom:499.562759pt;}
.y564_c00001{bottom:500.680225pt;}
.y135_c00001{bottom:500.681825pt;}
.y544_c00001{bottom:500.682758pt;}
.y109_c00001{bottom:502.598491pt;}
.y2d0_c00001{bottom:502.601024pt;}
.y294_c00001{bottom:502.602624pt;}
.y324_c00001{bottom:503.402757pt;}
.y5cc_c00001{bottom:503.558357pt;}
.y418_c00001{bottom:503.559291pt;}
.y351_c00001{bottom:504.042757pt;}
.y589_c00001{bottom:505.318423pt;}
.y48a_c00001{bottom:506.278756pt;}
.y64f_c00001{bottom:507.237423pt;}
.y57_c00001{bottom:508.038622pt;}
.y15d_c00001{bottom:508.196355pt;}
.yda_c00001{bottom:508.197689pt;}
.y23_c00001{bottom:510.116221pt;}
.y67f_c00001{bottom:510.116313pt;}
.y87_c00001{bottom:510.116488pt;}
.y1d9_c00001{bottom:510.117821pt;}
.y4b9_c00001{bottom:510.915421pt;}
.y50a_c00001{bottom:510.916088pt;}
.y1bb_c00001{bottom:511.076221pt;}
.y509_c00001{bottom:511.556087pt;}
.y630_c00001{bottom:511.873513pt;}
.y25d_c00001{bottom:512.994354pt;}
.y60d_c00001{bottom:512.996087pt;}
.y60c_c00001{bottom:513.796087pt;}
.y217_c00001{bottom:513.955153pt;}
.y18e_c00001{bottom:513.956486pt;}
.y563_c00001{bottom:514.913286pt;}
.y134_c00001{bottom:514.914886pt;}
.y3d4_c00001{bottom:515.874619pt;}
.y293_c00001{bottom:516.674485pt;}
.y2cf_c00001{bottom:517.474085pt;}
.y417_c00001{bottom:517.633685pt;}
.y58a_c00001{bottom:517.634752pt;}
.y588_c00001{bottom:518.433418pt;}
.y108_c00001{bottom:518.591551pt;}
.y457_c00001{bottom:518.593418pt;}
.y5cb_c00001{bottom:519.073418pt;}
.y456_c00001{bottom:519.393418pt;}
.y323_c00001{bottom:521.471550pt;}
.ybf_c00001{bottom:523.230749pt;}
.y350_c00001{bottom:523.390749pt;}
.y22_c00001{bottom:524.351282pt;}
.y86_c00001{bottom:525.150215pt;}
.y1ba_c00001{bottom:525.309282pt;}
.y67e_c00001{bottom:526.270748pt;}
.y1d8_c00001{bottom:526.270882pt;}
.y25c_c00001{bottom:527.867414pt;}
.y15c_c00001{bottom:528.026348pt;}
.y543_c00001{bottom:528.030748pt;}
.y542_c00001{bottom:528.829414pt;}
.y562_c00001{bottom:528.987014pt;}
.y133_c00001{bottom:528.989947pt;}
.y56_c00001{bottom:529.947413pt;}
.y216_c00001{bottom:529.948213pt;}
.y3d3_c00001{bottom:529.948347pt;}
.y18d_c00001{bottom:529.949547pt;}
.y508_c00001{bottom:530.906746pt;}
.y292_c00001{bottom:530.907546pt;}
.y38b_c00001{bottom:530.923200pt;}
.y416_c00001{bottom:532.666746pt;}
.y60b_c00001{bottom:532.825412pt;}
.y415_c00001{bottom:533.305412pt;}
.y38a_c00001{bottom:533.625412pt;}
.y107_c00001{bottom:534.744612pt;}
.y4b8_c00001{bottom:534.745412pt;}
.y243_c00001{bottom:535.545411pt;}
.y62f_c00001{bottom:535.704078pt;}
.y322_c00001{bottom:537.623410pt;}
.y587_c00001{bottom:537.624077pt;}
.y5ae_c00001{bottom:538.424077pt;}
.y455_c00001{bottom:538.584077pt;}
.y21_c00001{bottom:539.221943pt;}
.y2ce_c00001{bottom:539.224076pt;}
.y1b9_c00001{bottom:539.383010pt;}
.y454_c00001{bottom:539.384076pt;}
.y487_c00001{bottom:539.400000pt;}
.yd9_c00001{bottom:540.344076pt;}
.ybe_c00001{bottom:541.301809pt;}
.y486_c00001{bottom:542.104075pt;}
.y15b_c00001{bottom:542.261942pt;}
.y132_c00001{bottom:543.223008pt;}
.y489_c00001{bottom:544.021408pt;}
.y561_c00001{bottom:544.664074pt;}
.y3d2_c00001{bottom:544.982741pt;}
.y291_c00001{bottom:545.141274pt;}
.y3d1_c00001{bottom:545.621407pt;}
.y85_c00001{bottom:546.901407pt;}
.y1d7_c00001{bottom:547.060873pt;}
.y541_c00001{bottom:548.020073pt;}
.y540_c00001{bottom:548.820073pt;}
.y67d_c00001{bottom:549.617406pt;}
.y25b_c00001{bottom:549.777405pt;}
.y18c_c00001{bottom:549.939539pt;}
.y1ff_c00001{bottom:550.577405pt;}
.y215_c00001{bottom:550.578205pt;}
.y34f_c00001{bottom:550.737405pt;}
.y106_c00001{bottom:550.737672pt;}
.y34e_c00001{bottom:551.537405pt;}
.y586_c00001{bottom:551.699138pt;}
.y60a_c00001{bottom:552.657404pt;}
.y609_c00001{bottom:553.457404pt;}
.y55_c00001{bottom:553.615537pt;}
.y242_c00001{bottom:553.615671pt;}
.y321_c00001{bottom:553.617804pt;}
.y1b8_c00001{bottom:554.417404pt;}
.y64e_c00001{bottom:554.577404pt;}
.y64d_c00001{bottom:555.377403pt;}
.y15a_c00001{bottom:556.493803pt;}
.ybd_c00001{bottom:557.452469pt;}
.y2cd_c00001{bottom:557.453536pt;}
.y131_c00001{bottom:557.456069pt;}
.y5ad_c00001{bottom:557.457402pt;}
.y506_c00001{bottom:558.255735pt;}
.y5ac_c00001{bottom:558.257402pt;}
.y453_c00001{bottom:558.416069pt;}
.y389_c00001{bottom:559.215402pt;}
.y452_c00001{bottom:559.216068pt;}
.y290_c00001{bottom:559.375668pt;}
.y20_c00001{bottom:561.293134pt;}
.y1d6_c00001{bottom:561.294601pt;}
.y4b7_c00001{bottom:562.094734pt;}
.y4b6_c00001{bottom:562.892067pt;}
.y62e_c00001{bottom:563.052067pt;}
.y62d_c00001{bottom:563.852067pt;}
.y560_c00001{bottom:564.012066pt;}
.y18b_c00001{bottom:564.013933pt;}
.y2f9_c00001{bottom:564.971666pt;}
.y3d0_c00001{bottom:564.972066pt;}
.y84_c00001{bottom:564.972733pt;}
.yd8_c00001{bottom:565.770732pt;}
.y5ca_c00001{bottom:565.930732pt;}
.y585_c00001{bottom:565.932199pt;}
.y5c9_c00001{bottom:566.730732pt;}
.y485_c00001{bottom:567.688732pt;}
.y53f_c00001{bottom:567.850732pt;}
.y25a_c00001{bottom:567.851265pt;}
.y54_c00001{bottom:568.649931pt;}
.y53e_c00001{bottom:568.650731pt;}
.y1fe_c00001{bottom:568.808598pt;}
.y241_c00001{bottom:569.768731pt;}
.y67b_c00001{bottom:570.406197pt;}
.y105_c00001{bottom:570.728864pt;}
.y507_c00001{bottom:570.730730pt;}
.y34d_c00001{bottom:570.730864pt;}
.y67c_c00001{bottom:571.370730pt;}
.y1b7_c00001{bottom:571.530730pt;}
.y130_c00001{bottom:571.691130pt;}
.y214_c00001{bottom:572.489396pt;}
.y608_c00001{bottom:572.649396pt;}
.ybc_c00001{bottom:573.446863pt;}
.y320_c00001{bottom:573.447796pt;}
.y2cc_c00001{bottom:573.448596pt;}
.y607_c00001{bottom:573.449396pt;}
.y28f_c00001{bottom:574.248729pt;}
.y64c_c00001{bottom:574.406996pt;}
.y1d5_c00001{bottom:575.368995pt;}
.y5ab_c00001{bottom:577.284328pt;}
.y451_c00001{bottom:578.245394pt;}
.y18a_c00001{bottom:578.247661pt;}
.y450_c00001{bottom:579.045394pt;}
.y584_c00001{bottom:580.165260pt;}
.y2f8_c00001{bottom:581.124726pt;}
.y83_c00001{bottom:581.127126pt;}
.y4b5_c00001{bottom:582.085259pt;}
.y412_c00001{bottom:582.900800pt;}
.y388_c00001{bottom:583.045392pt;}
.y62c_c00001{bottom:583.844059pt;}
.yd7_c00001{bottom:583.999525pt;}
.y259_c00001{bottom:584.004325pt;}
.y104_c00001{bottom:584.800725pt;}
.y1f_c00001{bottom:584.801258pt;}
.y1fd_c00001{bottom:584.801658pt;}
.y34c_c00001{bottom:584.803925pt;}
.y411_c00001{bottom:585.604058pt;}
.y240_c00001{bottom:585.761791pt;}
.y5c8_c00001{bottom:585.764058pt;}
.y12f_c00001{bottom:585.764191pt;}
.y5c7_c00001{bottom:586.564057pt;}
.y678_c00001{bottom:587.360857pt;}
.y414_c00001{bottom:587.520057pt;}
.y53d_c00001{bottom:587.681657pt;}
.y31f_c00001{bottom:587.682857pt;}
.y679_c00001{bottom:588.318723pt;}
.y64b_c00001{bottom:588.640723pt;}
.y67a_c00001{bottom:589.598723pt;}
.ybb_c00001{bottom:589.599923pt;}
.y1d4_c00001{bottom:590.400856pt;}
.y213_c00001{bottom:590.559523pt;}
.y53_c00001{bottom:590.559923pt;}
.y505_c00001{bottom:591.358722pt;}
.y484_c00001{bottom:591.518722pt;}
.y504_c00001{bottom:591.998722pt;}
.y55f_c00001{bottom:592.318722pt;}
.y3cf_c00001{bottom:592.478722pt;}
.y606_c00001{bottom:592.480322pt;}
.y5aa_c00001{bottom:592.958722pt;}
.y3ce_c00001{bottom:593.278721pt;}
.y189_c00001{bottom:593.282055pt;}
.y2cb_c00001{bottom:594.396721pt;}
.y583_c00001{bottom:594.398321pt;}
.y28e_c00001{bottom:595.998720pt;}
.y4b4_c00001{bottom:596.158320pt;}
.y1b6_c00001{bottom:596.958720pt;}
.y82_c00001{bottom:597.118987pt;}
.y44f_c00001{bottom:598.079120pt;}
.y1e_c00001{bottom:599.036319pt;}
.y103_c00001{bottom:599.036986pt;}
.y34b_c00001{bottom:599.038986pt;}
.yd6_c00001{bottom:599.993919pt;}
.y12e_c00001{bottom:599.997919pt;}
.y258_c00001{bottom:599.998052pt;}
.y2b8_c00001{bottom:600.796985pt;}
.y1fc_c00001{bottom:600.956052pt;}
.y2f7_c00001{bottom:601.915918pt;}
.y53c_c00001{bottom:601.916051pt;}
.y4ee_c00001{bottom:602.716051pt;}
.y62b_c00001{bottom:602.874718pt;}
.y64a_c00001{bottom:602.875118pt;}
.y62a_c00001{bottom:603.676051pt;}
.y675_c00001{bottom:604.475517pt;}
.y676_c00001{bottom:605.434717pt;}
.y23f_c00001{bottom:605.751783pt;}
.y5c6_c00001{bottom:605.756050pt;}
.y4ef_c00001{bottom:606.392050pt;}
.y5c5_c00001{bottom:606.552049pt;}
.y677_c00001{bottom:606.712049pt;}
.y212_c00001{bottom:606.712583pt;}
.y605_c00001{bottom:607.353382pt;}
.y604_c00001{bottom:607.992049pt;}
.y2ca_c00001{bottom:608.472982pt;}
.y582_c00001{bottom:609.273382pt;}
.yba_c00001{bottom:609.431782pt;}
.y581_c00001{bottom:609.913381pt;}
.y387_c00001{bottom:610.392048pt;}
.y410_c00001{bottom:611.191248pt;}
.y386_c00001{bottom:611.193381pt;}
.y503_c00001{bottom:611.352048pt;}
.y55e_c00001{bottom:611.352181pt;}
.y4b3_c00001{bottom:611.832047pt;}
.y1d3_c00001{bottom:612.152047pt;}
.y3cd_c00001{bottom:612.312047pt;}
.y44e_c00001{bottom:612.312180pt;}
.y3cc_c00001{bottom:613.112047pt;}
.y1d_c00001{bottom:613.269380pt;}
.y81_c00001{bottom:613.272047pt;}
.y102_c00001{bottom:614.068846pt;}
.y34a_c00001{bottom:614.072046pt;}
.y52_c00001{bottom:614.229913pt;}
.y28d_c00001{bottom:614.230713pt;}
.y12d_c00001{bottom:614.230980pt;}
.y349_c00001{bottom:614.712046pt;}
.y188_c00001{bottom:615.032046pt;}
.y1b5_c00001{bottom:615.189113pt;}
.yd5_c00001{bottom:616.146979pt;}
.y31e_c00001{bottom:616.147779pt;}
.y2f6_c00001{bottom:616.148979pt;}
.y53b_c00001{bottom:616.149112pt;}
.y649_c00001{bottom:617.108179pt;}
.y483_c00001{bottom:618.866711pt;}
.y482_c00001{bottom:619.666711pt;}
.y23e_c00001{bottom:619.828044pt;}
.y257_c00001{bottom:619.829244pt;}
.y1fb_c00001{bottom:620.789110pt;}
.y673_c00001{bottom:622.546710pt;}
.y211_c00001{bottom:622.705643pt;}
.y629_c00001{bottom:622.706843pt;}
.y2c9_c00001{bottom:623.506043pt;}
.y674_c00001{bottom:623.506709pt;}
.yb9_c00001{bottom:623.664843pt;}
.y2b7_c00001{bottom:623.665776pt;}
.y55d_c00001{bottom:625.585909pt;}
.y5c4_c00001{bottom:625.586709pt;}
.y5c3_c00001{bottom:626.386708pt;}
.y44d_c00001{bottom:626.545908pt;}
.y1c_c00001{bottom:627.503774pt;}
.y603_c00001{bottom:627.506708pt;}
.y4b2_c00001{bottom:628.305374pt;}
.y51_c00001{bottom:628.464307pt;}
.y12c_c00001{bottom:629.265374pt;}
.y580_c00001{bottom:629.425374pt;}
.y4ed_c00001{bottom:630.064040pt;}
.y1d2_c00001{bottom:630.220840pt;}
.y385_c00001{bottom:630.221907pt;}
.y53a_c00001{bottom:630.222840pt;}
.y28c_c00001{bottom:630.223773pt;}
.y31d_c00001{bottom:630.224040pt;}
.y2f5_c00001{bottom:631.022706pt;}
.y1b4_c00001{bottom:631.180306pt;}
.y648_c00001{bottom:631.181906pt;}
.y3cb_c00001{bottom:632.139906pt;}
.y187_c00001{bottom:633.100705pt;}
.y80_c00001{bottom:633.102039pt;}
.y23d_c00001{bottom:634.059905pt;}
.y348_c00001{bottom:634.060038pt;}
.y256_c00001{bottom:634.062305pt;}
.y40f_c00001{bottom:635.020038pt;}
.y1fa_c00001{bottom:635.020971pt;}
.y101_c00001{bottom:635.820038pt;}
.yd4_c00001{bottom:635.978838pt;}
.y628_c00001{bottom:636.940571pt;}
.yb8_c00001{bottom:637.897904pt;}
.y2b6_c00001{bottom:638.698837pt;}
.y4d3_c00001{bottom:638.858570pt;}
.y481_c00001{bottom:638.860037pt;}
.y480_c00001{bottom:639.660036pt;}
.y55c_c00001{bottom:639.818969pt;}
.y5a9_c00001{bottom:639.820036pt;}
.y5a8_c00001{bottom:640.620036pt;}
.y44c_c00001{bottom:640.778969pt;}
.y1b_c00001{bottom:642.375635pt;}
.y210_c00001{bottom:642.536835pt;}
.y50_c00001{bottom:643.337368pt;}
.y539_c00001{bottom:644.455901pt;}
.y384_c00001{bottom:644.456301pt;}
.y31c_c00001{bottom:644.457101pt;}
.y2c8_c00001{bottom:645.256034pt;}
.y5c2_c00001{bottom:645.416034pt;}
.y647_c00001{bottom:645.416301pt;}
.y5c1_c00001{bottom:646.216034pt;}
.y3ca_c00001{bottom:646.374967pt;}
.y1d1_c00001{bottom:646.375234pt;}
.y28b_c00001{bottom:646.375634pt;}
.y12b_c00001{bottom:646.376034pt;}
.y1b3_c00001{bottom:647.333366pt;}
.y2f4_c00001{bottom:647.336033pt;}
.y7f_c00001{bottom:647.338300pt;}
.y23c_c00001{bottom:648.292966pt;}
.y255_c00001{bottom:648.295366pt;}
.y1f9_c00001{bottom:649.252832pt;}
.y186_c00001{bottom:649.255099pt;}
.yd3_c00001{bottom:650.211899pt;}
.y627_c00001{bottom:651.173632pt;}
.yb7_c00001{bottom:652.132965pt;}
.y4d2_c00001{bottom:652.933631pt;}
.y159_c00001{bottom:653.889631pt;}
.y100_c00001{bottom:653.891097pt;}
.y4ec_c00001{bottom:653.893364pt;}
.y55b_c00001{bottom:654.693364pt;}
.y602_c00001{bottom:654.853363pt;}
.y55a_c00001{bottom:655.333363pt;}
.y44b_c00001{bottom:655.653363pt;}
.y44a_c00001{bottom:656.290696pt;}
.y672_c00001{bottom:656.610696pt;}
.y20f_c00001{bottom:656.770563pt;}
.y57f_c00001{bottom:656.770696pt;}
.y57e_c00001{bottom:657.570696pt;}
.y501_c00001{bottom:658.530362pt;}
.y538_c00001{bottom:658.688962pt;}
.y47f_c00001{bottom:658.689362pt;}
.y31b_c00001{bottom:658.690162pt;}
.y4f_c00001{bottom:659.489362pt;}
.y5a7_c00001{bottom:659.647895pt;}
.y383_c00001{bottom:660.129361pt;}
.y646_c00001{bottom:660.449361pt;}
.y2b5_c00001{bottom:660.450028pt;}
.y645_c00001{bottom:661.089361pt;}
.y3c9_c00001{bottom:661.408028pt;}
.y4af_c00001{bottom:661.422400pt;}
.y347_c00001{bottom:661.568027pt;}
.y3c8_c00001{bottom:662.048027pt;}
.y346_c00001{bottom:662.368027pt;}
.y7e_c00001{bottom:662.371360pt;}
.y23b_c00001{bottom:662.526694pt;}
.y40e_c00001{bottom:662.528027pt;}
.y28a_c00001{bottom:662.528694pt;}
.y254_c00001{bottom:662.529094pt;}
.y40d_c00001{bottom:663.328027pt;}
.y2c7_c00001{bottom:663.486827pt;}
.y1f8_c00001{bottom:663.487227pt;}
.y1b2_c00001{bottom:663.488427pt;}
.y4ae_c00001{bottom:664.128026pt;}
.y1a_c00001{bottom:664.286826pt;}
.yd2_c00001{bottom:664.287493pt;}
.y185_c00001{bottom:665.248159pt;}
.y5c0_c00001{bottom:665.248293pt;}
.y4b1_c00001{bottom:666.048026pt;}
.y626_c00001{bottom:666.686692pt;}
.yb6_c00001{bottom:667.006025pt;}
.y1d0_c00001{bottom:667.165225pt;}
.y4d1_c00001{bottom:667.966692pt;}
.y4d0_c00001{bottom:668.606691pt;}
.y158_c00001{bottom:670.042691pt;}
.yff_c00001{bottom:670.042957pt;}
.y502_c00001{bottom:671.005357pt;}
.y20e_c00001{bottom:671.006157pt;}
.y12a_c00001{bottom:671.805357pt;}
.y31a_c00001{bottom:672.923890pt;}
.y2f3_c00001{bottom:673.724023pt;}
.y5a6_c00001{bottom:673.882956pt;}
.y537_c00001{bottom:674.362689pt;}
.y671_c00001{bottom:674.682689pt;}
.y559_c00001{bottom:674.841355pt;}
.y449_c00001{bottom:675.641355pt;}
.y57d_c00001{bottom:676.601355pt;}
.y23a_c00001{bottom:676.602288pt;}
.y57c_c00001{bottom:677.401354pt;}
.y253_c00001{bottom:677.403488pt;}
.y1f7_c00001{bottom:677.560954pt;}
.y47e_c00001{bottom:678.520554pt;}
.yd1_c00001{bottom:679.319354pt;}
.y382_c00001{bottom:679.481354pt;}
.y2c6_c00001{bottom:679.481887pt;}
.y5bf_c00001{bottom:680.281353pt;}
.y644_c00001{bottom:680.441353pt;}
.y5be_c00001{bottom:680.921353pt;}
.y1cf_c00001{bottom:681.399620pt;}
.y345_c00001{bottom:681.400153pt;}
.y3c7_c00001{bottom:681.401353pt;}
.y4eb_c00001{bottom:682.201353pt;}
.y289_c00001{bottom:682.359886pt;}
.y40c_c00001{bottom:682.361352pt;}
.y40b_c00001{bottom:683.161352pt;}
.y1b1_c00001{bottom:683.317219pt;}
.y2b4_c00001{bottom:683.320019pt;}
.y7d_c00001{bottom:684.121352pt;}
.y184_c00001{bottom:685.238151pt;}
.y20d_c00001{bottom:686.036818pt;}
.y157_c00001{bottom:686.194551pt;}
.y4e_c00001{bottom:686.194951pt;}
.yfe_c00001{bottom:686.196018pt;}
.y625_c00001{bottom:686.197351pt;}
.y319_c00001{bottom:686.998284pt;}
.y19_c00001{bottom:687.955617pt;}
.y4cf_c00001{bottom:687.956017pt;}
.yb5_c00001{bottom:688.756017pt;}
.y5a5_c00001{bottom:689.396016pt;}
.y66e_c00001{bottom:689.555483pt;}
.y4ad_c00001{bottom:689.714150pt;}
.y129_c00001{bottom:689.875083pt;}
.y66f_c00001{bottom:690.514683pt;}
.y239_c00001{bottom:690.832949pt;}
.y500_c00001{bottom:690.834549pt;}
.y670_c00001{bottom:691.794682pt;}
.y2f2_c00001{bottom:691.795349pt;}
.y1f6_c00001{bottom:692.595348pt;}
.y47d_c00001{bottom:692.754948pt;}
.y536_c00001{bottom:693.714681pt;}
.y601_c00001{bottom:694.674681pt;}
.y600_c00001{bottom:695.474681pt;}
.y1ce_c00001{bottom:695.631480pt;}
.y344_c00001{bottom:695.633214pt;}
.y288_c00001{bottom:696.591747pt;}
.y57b_c00001{bottom:696.594680pt;}
.y57a_c00001{bottom:697.394680pt;}
.y1b0_c00001{bottom:697.551613pt;}
.y2b3_c00001{bottom:697.554413pt;}
.y252_c00001{bottom:699.154679pt;}
.y183_c00001{bottom:699.314412pt;}
.y5bd_c00001{bottom:700.269345pt;}
.y2c5_c00001{bottom:700.271879pt;}
.yd0_c00001{bottom:701.069345pt;}
.y4ea_c00001{bottom:701.230412pt;}
.y318_c00001{bottom:702.030145pt;}
.y558_c00001{bottom:702.189345pt;}
.y40a_c00001{bottom:702.189745pt;}
.y18_c00001{bottom:702.190011pt;}
.y7c_c00001{bottom:702.191478pt;}
.y557_c00001{bottom:702.989344pt;}
.y448_c00001{bottom:703.149344pt;}
.y447_c00001{bottom:703.948010pt;}
.y4ff_c00001{bottom:705.068277pt;}
.y238_c00001{bottom:705.069210pt;}
.y156_c00001{bottom:706.024543pt;}
.yfd_c00001{bottom:706.026010pt;}
.y128_c00001{bottom:706.028143pt;}
.y66c_c00001{bottom:706.668276pt;}
.yb4_c00001{bottom:706.987209pt;}
.y381_c00001{bottom:706.988009pt;}
.y66d_c00001{bottom:707.628009pt;}
.y20c_c00001{bottom:707.788009pt;}
.y643_c00001{bottom:707.948009pt;}
.y2f1_c00001{bottom:707.948409pt;}
.y47c_c00001{bottom:708.428009pt;}
.y642_c00001{bottom:708.748009pt;}
.y3c6_c00001{bottom:708.908009pt;}
.y4d_c00001{bottom:709.704942pt;}
.y1cd_c00001{bottom:709.706542pt;}
.y3c5_c00001{bottom:709.708008pt;}
.y343_c00001{bottom:709.708275pt;}
.y287_c00001{bottom:710.666808pt;}
.y2b2_c00001{bottom:711.628141pt;}
.y1af_c00001{bottom:712.423474pt;}
.y182_c00001{bottom:713.545073pt;}
.y4ac_c00001{bottom:713.545340pt;}
.y1f5_c00001{bottom:714.345340pt;}
.y5ff_c00001{bottom:714.505340pt;}
.y2c4_c00001{bottom:714.506273pt;}
.y5fe_c00001{bottom:715.305339pt;}
.y4e9_c00001{bottom:715.464139pt;}
.y4ce_c00001{bottom:715.465339pt;}
.y4cd_c00001{bottom:716.265339pt;}
.y409_c00001{bottom:716.422805pt;}
.y579_c00001{bottom:716.425339pt;}
.y17_c00001{bottom:717.223072pt;}
.y578_c00001{bottom:717.225339pt;}
.y251_c00001{bottom:717.381472pt;}
.y7b_c00001{bottom:718.345871pt;}
.y237_c00001{bottom:719.301071pt;}
.ycf_c00001{bottom:719.303471pt;}
.y4fe_c00001{bottom:720.102671pt;}
.y155_c00001{bottom:720.259604pt;}
.yfc_c00001{bottom:720.262271pt;}
.y4fd_c00001{bottom:720.742670pt;}
.y535_c00001{bottom:721.062670pt;}
.y534_c00001{bottom:721.862670pt;}
.y127_c00001{bottom:722.023203pt;}
.y446_c00001{bottom:722.981336pt;}
.yb3_c00001{bottom:722.981603pt;}
.y317_c00001{bottom:723.781336pt;}
.y4c_c00001{bottom:723.938002pt;}
.y1cc_c00001{bottom:723.938402pt;}
.y342_c00001{bottom:724.741336pt;}
.y286_c00001{bottom:724.898669pt;}
.y341_c00001{bottom:725.381335pt;}
.y66b_c00001{bottom:725.701335pt;}
.y20b_c00001{bottom:725.856268pt;}
.y2b1_c00001{bottom:726.661201pt;}
.y380_c00001{bottom:726.821335pt;}
.y37f_c00001{bottom:727.621334pt;}
.y181_c00001{bottom:727.781334pt;}
.y5bc_c00001{bottom:728.581334pt;}
.y3c4_c00001{bottom:728.740001pt;}
.y2f0_c00001{bottom:728.740934pt;}
.y3c3_c00001{bottom:729.538667pt;}
.y2c3_c00001{bottom:729.539334pt;}
.y4e8_c00001{bottom:729.698534pt;}
.y408_c00001{bottom:730.657866pt;}
.y1f4_c00001{bottom:732.418532pt;}
.y250_c00001{bottom:733.374532pt;}
.y624_c00001{bottom:733.375999pt;}
.y236_c00001{bottom:734.175465pt;}
.y1ae_c00001{bottom:734.175998pt;}
.y154_c00001{bottom:734.331465pt;}
.y5fd_c00001{bottom:734.335998pt;}
.y7a_c00001{bottom:734.337732pt;}
.yfb_c00001{bottom:735.135331pt;}
.y5fc_c00001{bottom:735.135998pt;}
.y4cc_c00001{bottom:735.295998pt;}
.yce_c00001{bottom:735.296531pt;}
.y5a4_c00001{bottom:736.255998pt;}
.y556_c00001{bottom:736.256264pt;}
.y577_c00001{bottom:736.256664pt;}
.y5a3_c00001{bottom:737.055997pt;}
.y4b_c00001{bottom:738.171063pt;}
.y1cb_c00001{bottom:738.972796pt;}
.y285_c00001{bottom:739.131730pt;}
.y16_c00001{bottom:739.133063pt;}
.yb2_c00001{bottom:739.134663pt;}
.y4fc_c00001{bottom:740.095996pt;}
.y532_c00001{bottom:740.893622pt;}
.y4ab_c00001{bottom:741.053329pt;}
.y4aa_c00001{bottom:741.851995pt;}
.y20a_c00001{bottom:742.009995pt;}
.y126_c00001{bottom:742.013195pt;}
.y180_c00001{bottom:742.014395pt;}
.y66a_c00001{bottom:742.810662pt;}
.y445_c00001{bottom:742.972262pt;}
.y2ef_c00001{bottom:742.974662pt;}
.y4e7_c00001{bottom:743.772261pt;}
.y340_c00001{bottom:744.730661pt;}
.y407_c00001{bottom:744.730928pt;}
.y37e_c00001{bottom:746.649327pt;}
.y37d_c00001{bottom:747.449326pt;}
.y5bb_c00001{bottom:747.609326pt;}
.y641_c00001{bottom:747.610926pt;}
.y5ba_c00001{bottom:748.409326pt;}
.y2b0_c00001{bottom:748.409993pt;}
.y153_c00001{bottom:748.567059pt;}
.y3c2_c00001{bottom:748.569193pt;}
.y1f3_c00001{bottom:748.569726pt;}
.y24f_c00001{bottom:749.528926pt;}
.y4cb_c00001{bottom:749.530392pt;}
.y79_c00001{bottom:750.489592pt;}
.y576_c00001{bottom:750.489725pt;}
.y2c2_c00001{bottom:751.289325pt;}
.ycd_c00001{bottom:751.449591pt;}
.y555_c00001{bottom:751.929325pt;}
.y4a_c00001{bottom:752.406124pt;}
.y1ad_c00001{bottom:752.409324pt;}
.y284_c00001{bottom:753.366124pt;}
.y533_c00001{bottom:753.369324pt;}
.y531_c00001{bottom:754.167990pt;}
.y5fb_c00001{bottom:754.326524pt;}
.y47b_c00001{bottom:755.126523pt;}
.yb1_c00001{bottom:755.127723pt;}
.y235_c00001{bottom:755.926656pt;}
.y5a2_c00001{bottom:756.085190pt;}
.y17f_c00001{bottom:756.087456pt;}
.y125_c00001{bottom:756.087590pt;}
.yfa_c00001{bottom:756.885323pt;}
.y444_c00001{bottom:757.045323pt;}
.y2ee_c00001{bottom:757.046523pt;}
.y316_c00001{bottom:758.004389pt;}
.y4e6_c00001{bottom:758.805322pt;}
.y669_c00001{bottom:758.963722pt;}
.y4e5_c00001{bottom:759.445322pt;}
.y406_c00001{bottom:759.763988pt;}
.y405_c00001{bottom:760.403988pt;}
.y4a8_c00001{bottom:760.722321pt;}
.y1ca_c00001{bottom:760.723988pt;}
.y640_c00001{bottom:762.643987pt;}
.y152_c00001{bottom:762.799587pt;}
.y209_c00001{bottom:762.799987pt;}
.y3c1_c00001{bottom:762.802920pt;}
.y15_c00001{bottom:762.803054pt;}
.y63f_c00001{bottom:763.283987pt;}
.y4ca_c00001{bottom:763.762920pt;}
.y1f2_c00001{bottom:764.722786pt;}
.y37c_c00001{bottom:766.483985pt;}
.y49_c00001{bottom:767.279185pt;}
.y37b_c00001{bottom:767.283985pt;}
.y283_c00001{bottom:767.439852pt;}
.y4fb_c00001{bottom:767.443985pt;}
.y4fa_c00001{bottom:768.242651pt;}
.y5fa_c00001{bottom:768.400251pt;}
.y1ac_c00001{bottom:768.401185pt;}
.y2c1_c00001{bottom:769.357584pt;}
.y24e_c00001{bottom:769.358918pt;}
.y47a_c00001{bottom:769.359584pt;}
.y5a1_c00001{bottom:770.318251pt;}
.y17e_c00001{bottom:770.319317pt;}
.y124_c00001{bottom:770.321317pt;}
.y78_c00001{bottom:770.321451pt;}
.y443_c00001{bottom:771.277184pt;}
.y554_c00001{bottom:771.278650pt;}
.ycc_c00001{bottom:771.279584pt;}
.y2af_c00001{bottom:771.280650pt;}
.y2ed_c00001{bottom:771.282784pt;}
.y33f_c00001{bottom:772.238650pt;}
.y33e_c00001{bottom:773.037316pt;}
.y530_c00001{bottom:773.037610pt;}
.y4a9_c00001{bottom:773.197316pt;}
.y623_c00001{bottom:773.197849pt;}
.y4a7_c00001{bottom:773.997316pt;}
.y234_c00001{bottom:774.157716pt;}
.y668_c00001{bottom:775.116782pt;}
.yb0_c00001{bottom:775.117715pt;}
.yf9_c00001{bottom:775.117849pt;}
.y151_c00001{bottom:777.033981pt;}
.y208_c00001{bottom:777.034381pt;}
.y14_c00001{bottom:777.036115pt;}
.y3c0_c00001{bottom:777.677314pt;}
.y3bf_c00001{bottom:778.317314pt;}
.y4c9_c00001{bottom:778.637314pt;}
.y1c9_c00001{bottom:778.793047pt;}
.y315_c00001{bottom:778.794381pt;}
.y575_c00001{bottom:778.796514pt;}
.y4e4_c00001{bottom:778.797314pt;}
.y4c8_c00001{bottom:779.277314pt;}
.y404_c00001{bottom:779.757313pt;}
.y282_c00001{bottom:781.674246pt;}
.y63e_c00001{bottom:782.634646pt;}
.y5f9_c00001{bottom:783.434645pt;}
.y479_c00001{bottom:783.592112pt;}
.y24d_c00001{bottom:783.593979pt;}
.y5f8_c00001{bottom:784.074645pt;}
.y1ab_c00001{bottom:784.553045pt;}
.y123_c00001{bottom:784.553178pt;}
.y17d_c00001{bottom:784.555578pt;}
.y77_c00001{bottom:784.555845pt;}
.y5a0_c00001{bottom:785.353311pt;}
.y2c0_c00001{bottom:785.510645pt;}
.y442_c00001{bottom:785.512245pt;}
.y2ae_c00001{bottom:785.513178pt;}
.ycb_c00001{bottom:785.513311pt;}
.y59f_c00001{bottom:785.991978pt;}
.y52f_c00001{bottom:786.311978pt;}
.y2ec_c00001{bottom:786.312778pt;}
.y37a_c00001{bottom:786.471977pt;}
.y379_c00001{bottom:787.271977pt;}
.y4f9_c00001{bottom:787.430644pt;}
.y622_c00001{bottom:787.430910pt;}
.y4f8_c00001{bottom:788.230643pt;}
.y48_c00001{bottom:789.189176pt;}
.yaf_c00001{bottom:789.191443pt;}
.y233_c00001{bottom:790.150776pt;}
.y150_c00001{bottom:791.107042pt;}
.y667_c00001{bottom:791.109842pt;}
.yf8_c00001{bottom:791.111576pt;}
.y207_c00001{bottom:791.907442pt;}
.y13_c00001{bottom:791.907975pt;}
.y33d_c00001{bottom:792.070642pt;}
.y33c_c00001{bottom:792.870642pt;}
.y4a6_c00001{bottom:793.030508pt;}
.y574_c00001{bottom:793.030908pt;}
.y314_c00001{bottom:793.827441pt;}
.y1c8_c00001{bottom:794.947441pt;}
.y3be_c00001{bottom:794.950641pt;}
.y281_c00001{bottom:796.706107pt;}
.y24c_c00001{bottom:797.825840pt;}
.y478_c00001{bottom:797.826506pt;}
.y4c7_c00001{bottom:798.786639pt;}
.y122_c00001{bottom:798.787573pt;}
.y76_c00001{bottom:798.787706pt;}
.y17c_c00001{bottom:799.427439pt;}
.y553_c00001{bottom:799.586639pt;}
.y2ad_c00001{bottom:799.587572pt;}
.yca_c00001{bottom:799.587706pt;}
.y441_c00001{bottom:800.386639pt;}
.y1aa_c00001{bottom:800.547439pt;}
.y440_c00001{bottom:801.025305pt;}
.y621_c00001{bottom:802.305304pt;}
.y620_c00001{bottom:802.945304pt;}
.yae_c00001{bottom:803.424504pt;}
.y5f7_c00001{bottom:803.425304pt;}
.y14f_c00001{bottom:805.342103pt;}
.y59e_c00001{bottom:805.345303pt;}
.y52e_c00001{bottom:806.143970pt;}
.y2bf_c00001{bottom:806.299436pt;}
.y4e3_c00001{bottom:806.303970pt;}
.y378_c00001{bottom:806.304503pt;}
.y52d_c00001{bottom:806.783969pt;}
.y4e2_c00001{bottom:807.103969pt;}
.y666_c00001{bottom:807.262902pt;}
.y403_c00001{bottom:807.263969pt;}
.y4a5_c00001{bottom:807.264236pt;}
.yf7_c00001{bottom:807.264636pt;}
.y2eb_c00001{bottom:808.063969pt;}
.y573_c00001{bottom:808.703969pt;}
.y63d_c00001{bottom:810.143968pt;}
.y63c_c00001{bottom:810.943968pt;}
.y232_c00001{bottom:811.740767pt;}
.y477_c00001{bottom:811.899567pt;}
.y33b_c00001{bottom:811.899701pt;}
.y24b_c00001{bottom:811.902101pt;}
.y47_c00001{bottom:812.857300pt;}
.y75_c00001{bottom:812.859567pt;}
.y206_c00001{bottom:813.658633pt;}
.y121_c00001{bottom:813.659433pt;}
.y12_c00001{bottom:813.819167pt;}
.y2ac_c00001{bottom:814.619433pt;}
.yc9_c00001{bottom:814.620766pt;}
.y313_c00001{bottom:815.578633pt;}
.y1c7_c00001{bottom:815.739966pt;}
.yad_c00001{bottom:817.659565pt;}
.y280_c00001{bottom:818.458631pt;}
.y552_c00001{bottom:818.617165pt;}
.y14e_c00001{bottom:820.372764pt;}
.y2be_c00001{bottom:820.536897pt;}
.y43f_c00001{bottom:820.538631pt;}
.y377_c00001{bottom:820.538897pt;}
.y17b_c00001{bottom:821.338630pt;}
.y663_c00001{bottom:821.975830pt;}
.y4a4_c00001{bottom:822.138630pt;}
.y61f_c00001{bottom:822.298630pt;}
.y4a3_c00001{bottom:822.778630pt;}
.y664_c00001{bottom:822.938630pt;}
.y665_c00001{bottom:824.215962pt;}
.y2ea_c00001{bottom:826.132895pt;}
.y33a_c00001{bottom:826.133428pt;}
.y4c6_c00001{bottom:826.134628pt;}
.y24a_c00001{bottom:826.932761pt;}
.y476_c00001{bottom:826.934628pt;}
.y46_c00001{bottom:827.092361pt;}
.y5b9_c00001{bottom:827.093828pt;}
.y74_c00001{bottom:827.094628pt;}
.y475_c00001{bottom:827.574628pt;}
.y402_c00001{bottom:827.894628pt;}
.y3bb_c00001{bottom:827.908800pt;}
.y572_c00001{bottom:828.054628pt;}
.y1c6_c00001{bottom:829.971827pt;}
.y63b_c00001{bottom:829.971960pt;}
.y3ba_c00001{bottom:830.611960pt;}
.y63a_c00001{bottom:830.771960pt;}
.y5f6_c00001{bottom:830.931960pt;}
.y5f5_c00001{bottom:831.731959pt;}
.y205_c00001{bottom:831.891159pt;}
.y3bd_c00001{bottom:832.531959pt;}
.yac_c00001{bottom:832.691426pt;}
.y551_c00001{bottom:832.850892pt;}
.y59d_c00001{bottom:832.851959pt;}
.y231_c00001{bottom:833.491959pt;}
.y312_c00001{bottom:833.648625pt;}
.y59c_c00001{bottom:833.651959pt;}
.y2bd_c00001{bottom:835.408758pt;}
.y120_c00001{bottom:835.411958pt;}
.y376_c00001{bottom:836.051958pt;}
.yc8_c00001{bottom:836.371958pt;}
.y27f_c00001{bottom:836.530757pt;}
.y11_c00001{bottom:837.487957pt;}
.y1a9_c00001{bottom:838.450623pt;}
.y17a_c00001{bottom:839.406890pt;}
.y339_c00001{bottom:840.366489pt;}
.y662_c00001{bottom:840.367023pt;}
.y5b8_c00001{bottom:841.326889pt;}
.y73_c00001{bottom:841.329022pt;}
.y14d_c00001{bottom:842.125289pt;}
.y45_c00001{bottom:842.125422pt;}
.y4a2_c00001{bottom:842.285288pt;}
.y2e9_c00001{bottom:842.285955pt;}
.y1c5_c00001{bottom:844.204888pt;}
.y4c5_c00001{bottom:845.964087pt;}
.y474_c00001{bottom:846.925287pt;}
.y401_c00001{bottom:846.927020pt;}
.y550_c00001{bottom:847.725286pt;}
.y204_c00001{bottom:847.883020pt;}
.y43e_c00001{bottom:847.885286pt;}
.y54f_c00001{bottom:848.365286pt;}
.y249_c00001{bottom:848.685286pt;}
.y311_c00001{bottom:849.801685pt;}
.y61e_c00001{bottom:849.805285pt;}
.y639_c00001{bottom:849.805552pt;}
.y61d_c00001{bottom:850.605285pt;}
.y5f4_c00001{bottom:850.765285pt;}
.y5f3_c00001{bottom:851.565285pt;}
.y230_c00001{bottom:851.720618pt;}
.y10_c00001{bottom:851.722351pt;}
.y59b_c00001{bottom:852.680484pt;}
.y27e_c00001{bottom:852.682618pt;}
.y11f_c00001{bottom:853.638617pt;}
.y52c_c00001{bottom:853.643951pt;}
.yab_c00001{bottom:854.443950pt;}
.y338_c00001{bottom:854.599550pt;}
.yc7_c00001{bottom:854.602350pt;}
.y179_c00001{bottom:855.559950pt;}
.y375_c00001{bottom:855.561283pt;}
.y3b9_c00001{bottom:856.198083pt;}
.y5b7_c00001{bottom:856.201283pt;}
.y72_c00001{bottom:856.202083pt;}
.y661_c00001{bottom:856.358883pt;}
.y571_c00001{bottom:856.361283pt;}
.y5b6_c00001{bottom:856.839949pt;}
.y2bc_c00001{bottom:857.159949pt;}
.y1c4_c00001{bottom:858.278615pt;}
.y1a8_c00001{bottom:858.279949pt;}
.y2ab_c00001{bottom:859.240748pt;}
.y4c4_c00001{bottom:860.200348pt;}
.y14c_c00001{bottom:860.200881pt;}
.y400_c00001{bottom:861.160081pt;}
.y2e8_c00001{bottom:863.075947pt;}
.y44_c00001{bottom:864.033546pt;}
.y203_c00001{bottom:864.036080pt;}
.y638_c00001{bottom:864.838613pt;}
.y637_c00001{bottom:865.478613pt;}
.yf_c00001{bottom:866.754212pt;}
.y59a_c00001{bottom:866.914879pt;}
.y248_c00001{bottom:866.916879pt;}
.y22f_c00001{bottom:867.713678pt;}
.y43d_c00001{bottom:867.714478pt;}
.y54e_c00001{bottom:867.715945pt;}
.y27d_c00001{bottom:868.675678pt;}
.y337_c00001{bottom:869.474611pt;}
.y4a0_c00001{bottom:869.474824pt;}
.y11e_c00001{bottom:869.633678pt;}
.y61c_c00001{bottom:869.633811pt;}
.y4f7_c00001{bottom:869.634611pt;}
.y336_c00001{bottom:870.114611pt;}
.y4f6_c00001{bottom:870.433277pt;}
.y310_c00001{bottom:870.592877pt;}
.y5f2_c00001{bottom:870.593277pt;}
.yc6_c00001{bottom:870.593544pt;}
.y5f1_c00001{bottom:871.393277pt;}
.y178_c00001{bottom:871.551810pt;}
.y1c3_c00001{bottom:872.511676pt;}
.y660_c00001{bottom:872.511943pt;}
.yaa_c00001{bottom:872.512610pt;}
.y52a_c00001{bottom:873.312863pt;}
.y2aa_c00001{bottom:873.473809pt;}
.y4c3_c00001{bottom:874.432209pt;}
.y473_c00001{bottom:874.433276pt;}
.y472_c00001{bottom:875.233275pt;}
.y2bb_c00001{bottom:875.392342pt;}
.y570_c00001{bottom:875.393275pt;}
.y3ff_c00001{bottom:875.393809pt;}
.y56f_c00001{bottom:876.193275pt;}
.y5b5_c00001{bottom:876.353275pt;}
.y14b_c00001{bottom:876.353942pt;}
.y2e7_c00001{bottom:877.310341pt;}
.y71_c00001{bottom:878.113274pt;}
.y3b8_c00001{bottom:880.030607pt;}
.y599_c00001{bottom:881.787939pt;}
.y4a1_c00001{bottom:881.947939pt;}
.y43c_c00001{bottom:881.948873pt;}
.y598_c00001{bottom:882.427939pt;}
.y49f_c00001{bottom:882.747939pt;}
.y374_c00001{bottom:882.907939pt;}
.y247_c00001{bottom:882.911272pt;}
.y373_c00001{bottom:883.707939pt;}
.y22e_c00001{bottom:883.866739pt;}
.y61b_c00001{bottom:883.866872pt;}
.y202_c00001{bottom:883.868605pt;}
.y1a7_c00001{bottom:884.667938pt;}
.y636_c00001{bottom:884.826605pt;}
.y27c_c00001{bottom:884.830071pt;}
.y30f_c00001{bottom:885.624738pt;}
.y11d_c00001{bottom:885.784871pt;}
.y52b_c00001{bottom:885.786604pt;}
.y529_c00001{bottom:886.586604pt;}
.y1c2_c00001{bottom:887.544737pt;}
.y43_c00001{bottom:887.703537pt;}
.y2a9_c00001{bottom:887.706870pt;}
.y65f_c00001{bottom:888.665003pt;}
.ye_c00001{bottom:888.665403pt;}
.ya9_c00001{bottom:888.665670pt;}
.y4c2_c00001{bottom:889.466603pt;}
.y335_c00001{bottom:889.626603pt;}
.y3fe_c00001{bottom:889.626870pt;}
.y4c1_c00001{bottom:890.106603pt;}
.y4f5_c00001{bottom:890.426603pt;}
.y5f0_c00001{bottom:891.226602pt;}
.y177_c00001{bottom:891.383002pt;}
.y2ba_c00001{bottom:891.383536pt;}
.yc5_c00001{bottom:891.386602pt;}
.y2e6_c00001{bottom:892.183402pt;}
.y14a_c00001{bottom:892.347002pt;}
.y471_c00001{bottom:894.265268pt;}
.y470_c00001{bottom:895.065267pt;}
.y54d_c00001{bottom:895.223934pt;}
.y54c_c00001{bottom:896.022600pt;}
.yf6_c00001{bottom:896.179800pt;}
.y43b_c00001{bottom:896.180734pt;}
.y70_c00001{bottom:896.185000pt;}
.y201_c00001{bottom:898.101666pt;}
.y27a_c00001{bottom:898.899933pt;}
.y246_c00001{bottom:899.061932pt;}
.y61a_c00001{bottom:899.539932pt;}
.y22d_c00001{bottom:900.018599pt;}
.y42_c00001{bottom:901.776598pt;}
.y597_c00001{bottom:901.781265pt;}
.y2a8_c00001{bottom:902.579931pt;}
.y372_c00001{bottom:902.739798pt;}
.y1a6_c00001{bottom:902.740198pt;}
.y49e_c00001{bottom:903.219931pt;}
.y5b4_c00001{bottom:903.699931pt;}
.y3fd_c00001{bottom:904.501264pt;}
.y65e_c00001{bottom:904.658064pt;}
.ya8_c00001{bottom:904.660064pt;}
.y27b_c00001{bottom:904.661264pt;}
.y3fc_c00001{bottom:905.141263pt;}
.y527_c00001{bottom:905.460850pt;}
.y11c_c00001{bottom:905.616730pt;}
.yc4_c00001{bottom:905.620996pt;}
.y30e_c00001{bottom:907.375929pt;}
.y3b7_c00001{bottom:907.535929pt;}
.y3b6_c00001{bottom:908.334595pt;}
.y1c1_c00001{bottom:909.295928pt;}
.y4c0_c00001{bottom:909.455928pt;}
.y4f4_c00001{bottom:909.456062pt;}
.y43a_c00001{bottom:910.415795pt;}
.y5ef_c00001{bottom:910.415928pt;}
.y5ee_c00001{bottom:911.215928pt;}
.y635_c00001{bottom:912.334594pt;}
.yf5_c00001{bottom:912.334860pt;}
.yd_c00001{bottom:912.335394pt;}
.y149_c00001{bottom:912.335794pt;}
.y6f_c00001{bottom:912.338060pt;}
.y634_c00001{bottom:913.134593pt;}
.y2e5_c00001{bottom:913.934593pt;}
.y46f_c00001{bottom:914.094593pt;}
.y54b_c00001{bottom:915.054593pt;}
.y54a_c00001{bottom:915.854592pt;}
.y41_c00001{bottom:916.811659pt;}
.y333_c00001{bottom:916.813552pt;}
.y371_c00001{bottom:916.973525pt;}
.y279_c00001{bottom:916.973792pt;}
.y528_c00001{bottom:917.934592pt;}
.y526_c00001{bottom:918.734591pt;}
.y1a5_c00001{bottom:918.893258pt;}
.y619_c00001{bottom:918.894591pt;}
.y245_c00001{bottom:918.894991pt;}
.y11b_c00001{bottom:919.848591pt;}
.yc3_c00001{bottom:919.852857pt;}
.y49d_c00001{bottom:919.854591pt;}
.y65d_c00001{bottom:920.811124pt;}
.ya7_c00001{bottom:920.813124pt;}
.y3fb_c00001{bottom:921.614590pt;}
.y4f3_c00001{bottom:923.691123pt;}
.y2a7_c00001{bottom:924.332989pt;}
.y439_c00001{bottom:924.488856pt;}
.y30d_c00001{bottom:925.447922pt;}
.yc_c00001{bottom:926.408455pt;}
.y148_c00001{bottom:926.408855pt;}
.y1c0_c00001{bottom:927.367921pt;}
.y3b5_c00001{bottom:928.167921pt;}
.yf4_c00001{bottom:928.327921pt;}
.y46e_c00001{bottom:928.328321pt;}
.y334_c00001{bottom:929.287920pt;}
.y332_c00001{bottom:930.087920pt;}
.y5ed_c00001{bottom:930.247787pt;}
.y370_c00001{bottom:932.007919pt;}
.y633_c00001{bottom:932.167919pt;}
.y2e4_c00001{bottom:932.168186pt;}
.y36f_c00001{bottom:932.647919pt;}
.y632_c00001{bottom:932.967919pt;}
.y6e_c00001{bottom:933.128052pt;}
.y278_c00001{bottom:933.128185pt;}
.y11a_c00001{bottom:934.082985pt;}
.yc2_c00001{bottom:934.887918pt;}
.y1a4_c00001{bottom:935.046318pt;}
.y549_c00001{bottom:935.047251pt;}
.y65c_c00001{bottom:936.804184pt;}
.y4bf_c00001{bottom:936.805251pt;}
.y4be_c00001{bottom:937.605250pt;}
.y525_c00001{bottom:937.764050pt;}
.y4f2_c00001{bottom:937.764184pt;}
.y40_c00001{bottom:938.722850pt;}
.y438_c00001{bottom:939.523916pt;}
.y437_c00001{bottom:940.162583pt;}
.ya6_c00001{bottom:940.641916pt;}
.yb_c00001{bottom:940.642849pt;}
.y30c_c00001{bottom:941.600982pt;}
.y46d_c00001{bottom:942.561382pt;}
.y5ec_c00001{bottom:944.481514pt;}
.y49c_c00001{bottom:946.401247pt;}
.y6d_c00001{bottom:947.201113pt;}
.y3b4_c00001{bottom:947.201247pt;}
.y3b3_c00001{bottom:948.001246pt;}
.yf3_c00001{bottom:948.156713pt;}
.y2e3_c00001{bottom:948.161246pt;}
.y331_c00001{bottom:949.119112pt;}
.y36e_c00001{bottom:949.119912pt;}
.y277_c00001{bottom:949.120046pt;}
.y659_c00001{bottom:951.676178pt;}
.y524_c00001{bottom:951.998445pt;}
.yc1_c00001{bottom:951.998578pt;}
.y65a_c00001{bottom:952.637244pt;}
.y4f1_c00001{bottom:952.797244pt;}
.y4f0_c00001{bottom:953.437244pt;}
.y65b_c00001{bottom:953.917244pt;}
.y3f8_c00001{bottom:954.731200pt;}
.ya5_c00001{bottom:954.876977pt;}
.ya_c00001{bottom:955.675910pt;}
.y46c_c00001{bottom:956.794443pt;}
.y3f7_c00001{bottom:957.822783pt;}
.y3fa_c00001{bottom:959.355908pt;}
.y436_c00001{bottom:959.515908pt;}
.y5eb_c00001{bottom:959.995908pt;}
.y6c_c00001{bottom:961.436174pt;}
.y3f_c00001{bottom:962.389774pt;}
.y330_c00001{bottom:963.353507pt;}
.y523_c00001{bottom:966.231506pt;}
.y3b2_c00001{bottom:967.190572pt;}
.y3b1_c00001{bottom:967.989238pt;}
.ya4_c00001{bottom:969.110038pt;}
.y657_c00001{bottom:969.749238pt;}
.y658_c00001{bottom:970.709237pt;}
.y46b_c00001{bottom:970.868170pt;}
.y9_c00001{bottom:971.829237pt;}
.y36d_c00001{bottom:975.829235pt;}
.y6b_c00001{bottom:976.469235pt;}
.y3e_c00001{bottom:976.624168pt;}
.y49a_c00001{bottom:976.629235pt;}
.y32f_c00001{bottom:978.387901pt;}
.y32e_c00001{bottom:979.026567pt;}
.y49b_c00001{bottom:979.346567pt;}
.y5ea_c00001{bottom:979.506567pt;}
.y522_c00001{bottom:981.105233pt;}
.y521_c00001{bottom:981.742566pt;}
.ya3_c00001{bottom:983.183099pt;}
.y3f6_c00001{bottom:983.409307pt;}
.y46a_c00001{bottom:985.902564pt;}
.y469_c00001{bottom:986.542564pt;}
.y656_c00001{bottom:986.862564pt;}
.y3b0_c00001{bottom:987.022564pt;}
.y3af_c00001{bottom:987.822564pt;}
.y3d_c00001{bottom:991.657229pt;}
.ya2_c00001{bottom:997.418693pt;}
.y8_c00001{bottom:1001.095892pt;}
.y32d_c00001{bottom:1003.013224pt;}
.y520_c00001{bottom:1004.130557pt;}
.y3ae_c00001{bottom:1006.850556pt;}
.y3f5_c00001{bottom:1007.237430pt;}
.y3ad_c00001{bottom:1007.650556pt;}
.y3c_c00001{bottom:1007.810556pt;}
.yf2_c00001{bottom:1008.770555pt;}
.y655_c00001{bottom:1009.730555pt;}
.ya1_c00001{bottom:1012.450554pt;}
.y32c_c00001{bottom:1026.683881pt;}
.y3f4_c00001{bottom:1027.070756pt;}
.y4_c00001{bottom:1034.217600pt;}
.y7_c00001{bottom:1036.277211pt;}
.y3_c00001{bottom:1062.893408pt;}
.y32b_c00001{bottom:1064.425200pt;}
.y3f3_c00001{bottom:1064.812074pt;}
.y32a_c00001{bottom:1086.654524pt;}
.y2_c00001{bottom:1087.041398pt;}
.y654_c00001{bottom:1089.214523pt;}
.h9_c00001{height:12.793120pt;}
.h4_c00001{height:12.795200pt;}
.h16_c00001{height:16.470400pt;}
.h15_c00001{height:16.472000pt;}
.h17_c00001{height:16.472480pt;}
.h14_c00001{height:16.473600pt;}
.h13_c00001{height:16.475200pt;}
.h18_c00001{height:16.476800pt;}
.h1b_c00001{height:32.609441pt;}
.hc_c00001{height:37.343076pt;}
.hb_c00001{height:38.592008pt;}
.h5_c00001{height:40.739093pt;}
.h1a_c00001{height:41.173135pt;}
.he_c00001{height:41.456602pt;}
.hd_c00001{height:41.461604pt;}
.hf_c00001{height:41.464106pt;}
.h3_c00001{height:42.101604pt;}
.h19_c00001{height:44.917461pt;}
.h10_c00001{height:45.611002pt;}
.h11_c00001{height:52.514326pt;}
.h12_c00001{height:52.627870pt;}
.h7_c00001{height:56.136626pt;}
.h8_c00001{height:59.643403pt;}
.h2_c00001{height:66.660420pt;}
.ha_c00001{height:86.073694pt;}
.h6_c00001{height:1122.161626pt;}
.h1_c00001{height:1122.559167pt;}
.h0_c00001{height:1122.666667pt;}
.w8_c00001{width:35.820800pt;}
.w5_c00001{width:35.980800pt;}
.w4_c00001{width:35.984000pt;}
.w2_c00001{width:36.783040pt;}
.w7_c00001{width:169.200000pt;}
.w6_c00001{width:176.718400pt;}
.w3_c00001{width:792.977400pt;}
.w1_c00001{width:793.257550pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:95.349912pt;}
.x1e_c00001{left:96.276161pt;}
.x20_c00001{left:106.671477pt;}
.x23_c00001{left:140.733522pt;}
.xb_c00001{left:174.641597pt;}
.x15_c00001{left:182.316260pt;}
.x2_c00001{left:185.996259pt;}
.x21_c00001{left:193.670923pt;}
.x2c_c00001{left:253.164125pt;}
.x29_c00001{left:301.464213pt;}
.x2a_c00001{left:308.021183pt;}
.x28_c00001{left:316.500294pt;}
.x30_c00001{left:341.126864pt;}
.x33_c00001{left:344.799482pt;}
.xf_c00001{left:356.160191pt;}
.x10_c00001{left:359.037523pt;}
.x31_c00001{left:359.992622pt;}
.xe_c00001{left:361.914855pt;}
.x8_c00001{left:363.840164pt;}
.xc_c00001{left:365.753520pt;}
.x6_c00001{left:375.196412pt;}
.x2e_c00001{left:376.947527pt;}
.x32_c00001{left:386.381988pt;}
.x7_c00001{left:394.066423pt;}
.x3_c00001{left:443.159231pt;}
.x9_c00001{left:444.120156pt;}
.xd_c00001{left:469.706812pt;}
.x2f_c00001{left:486.658805pt;}
.x11_c00001{left:511.287500pt;}
.x16_c00001{left:514.212800pt;}
.x1a_c00001{left:521.731200pt;}
.x22_c00001{left:585.014766pt;}
.x25_c00001{left:591.573430pt;}
.x26_c00001{left:601.008093pt;}
.x2d_c00001{left:614.281421pt;}
.x27_c00001{left:619.881419pt;}
.x2b_c00001{left:624.676083pt;}
.x1c_c00001{left:639.874744pt;}
.x12_c00001{left:708.798716pt;}
.x4_c00001{left:709.806400pt;}
.x13_c00001{left:711.724800pt;}
.x34_c00001{left:712.684800pt;}
.x19_c00001{left:715.549797pt;}
.x1f_c00001{left:721.114712pt;}
.x18_c00001{left:722.073378pt;}
.x24_c00001{left:727.670709pt;}
.x17_c00001{left:732.470707pt;}
.x1b_c00001{left:739.219121pt;}
.x1d_c00001{left:753.292449pt;}
.x5_c00001{left:756.172448pt;}
.x14_c00001{left:760.012446pt;}
.xa_c00001{left:762.729778pt;}
.x35_c00001{left:764.648444pt;}
}




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